threading model
Threading Building Blocks 2.1
This is an award-winning C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance more>> <<less
C Threads 3.6
C Threads 3.6 offers you a wonderful application which provides process scoping, a feature that has been greatly missed in the linux community. more>>
C Threads 3.6 offers you a wonderful application which provides process scoping, a feature that has been greatly missed in the linux community. The aim of this library, is to provide the programmer with an easy to use class, that can be further inherited to provide a rich set of threaded functionality rarely seen in a linux environment.
Full C is provided, without any wrapping around underlying C code, which gives more compact and faster objects. The library provides process scoping, a feature that has been greatly missed in the linux community. This feature allows different programs to share memory and control variables, for synchronization and direct data communications.
It has the ability to simulate asynchronous I/O on file descriptors. An example provided with the library, shows how to communicate with a modem with an asynchronous method where data is obtained and stored in a priority queue, giving the main process full ability to handle other tasks. Such an I/O class, can be used to handle data input from several different file descriptors simultaneously, but is limited to handling only one server file descriptor per class.
<<lessCelko Visitation Model 1.1
This class can be use to manipulate hierarchic trees of records stored in a MySQL database using Joe Celko visitation model. It can perform the following tasks in a very effecient way mostly using one SELECT query statement: - Find out leaf nodes more>> This class can be use to manipulate hierarchic trees of records stored in a MySQL database using Joe Celko visitation model. It can perform the following tasks in a very effecient way mostly using one SELECT query statement: - Find out leaf nodes in the current tree (nodes have no children) - Find out nodes of a sub-tree for given node - Find out the context path of given node - Find out the level or depth of a given node - Find out how many descendants a given node has<<less
Manual Threading in ASP.NET 2.0 1
Explains how to create, manage and synchronize threads manually in ASP.NET. Some times thread pool technique is not sufficient to manage certain cases within your application, and the need for manually creating and fully managing a new thread arises. more>> Explains how to create, manage and synchronize threads manually in ASP.NET. Some times thread pool technique is not sufficient to manage certain cases within your application, and the need for manually creating and fully managing a new thread arises. Creating threads manually is much more complex than using the thread pool, and requires you to have knowledge about threading life cycle and concepts.<<less
Java Threads
A thread, by definition is a light weight process. They are used to increase functionality and performance by performing multiple tasks at the same time, i.e. concurrently... more>> A thread, by definition is a light weight process. They are used to increase functionality and performance by performing multiple tasks at the same time, i.e. concurrently...<<less
forum threads 1.0
This is the result of my attempts to create forum software in PHP. I would have finished it but I feel my site is not ready for a forum yet ^_^. ShowThread() is the only function of interest, all the others are just helper functions. To create a new more>> This is the result of my attempts to create forum software in PHP. I would have finished it but I feel my site is not ready for a forum yet ^_^. ShowThread() is the only function of interest, all the others are just helper functions. To create a new Thread, use ReplyToMessage(null, 0). In ShowMessage() I artificially created a limit to how much recursion there can be in a single thread. To run, this script requires the param() function. I encourage everyone to experiment with the helper functions to achieve different looks. Finally, the guests table has to filled in by hand... I havent implemented a sign-up script yet.<<less
Multi-thread Simulation 1.0
This class can emulate the execution of program threads using separate HTTP requests to the same script. It establishes an HTTP connection to the same Web server to execute the same PHP script. It sends a request passing the name a function to more>> This class can emulate the execution of program threads using separate HTTP requests to the same script. It establishes an HTTP connection to the same Web server to execute the same PHP script. It sends a request passing the name a function to execute and an argument to be passed to that function. The requested script executes some code that detects the thread execution request and calls the specified function. When the thread request script ends, the return values of the called function is returned as a serialized string. The calling script can execute other tasks while the thread script runs. The results may be collected later when the thread script ends.<<less
ASP.NET 2.0 Page Object Model
In this tutorial you will learn about Page Object Model, the Attributes of the @Page directive, the properties of the Page Class, Methods of the Page Class, Page Class Events and the Page Scripting Ob more>> In this tutorial you will learn about Page Object Model, the Attributes of the @Page directive, the properties of the Page Class, Methods of the Page Class, Page Class Events and the Page Scripting Object Model.<<less
Circadian Clock Model Visualisation Tools
Circadian Clock Model Visualisation Tools - Moving 2/3D plots and network diagram of an ode model of the circadian clock gene network more>>
A dynamic moving network diagram of the model can also be displayed. In this case, the blocks representing the model species and the arrows representing species interactions vary in size periodically, corresponding to the varying species levels as the model oscillates. A corresponding time series plot appears alongside the network.
GUI controls allow the user to alter model parameters during a simulation in order to immediately observe the effect on model behavior. It is possible for the user to record their own avi files of simulations.
This program should prove particularly useful in the teaching of circadian biology, but should also be useful for gaining a greater understanding of model dynamics and the effect of perturbations.
Requirements: MATLAB Release: R14SP
ASP.NET 2.0 Tutorials : The Page Object Model
ASP.NET 2.0 Tutorials : The Page Object Model In this tutorial you will learn about Page Object Model, the Attributes of the @Page directive, the properties of the Page Class, Methods of the Page Clas more>> ASP.NET 2.0 Tutorials : The Page Object Model In this tutorial you will learn about Page Object Model, the Attributes of the @Page directive, the properties of the Page Class, Methods of the Page Class, Page Class Events and the Page Scripting Object Model.<<less
MVC Architecture Model In ASP.NET 1
When developing ASP.NET applications the need of reducing code duplication increases along with their complexity. This is because testing and performing changes become very difficult tasks when having many different sources of code with the same more>> When developing ASP.NET applications the need of reducing code duplication increases along with their complexity. This is because testing and performing changes become very difficult tasks when having many different sources of code with the same functionality. This tutorial explains Model View Controller (MVC) architecture, which allows us to separate different parts of our applications into tiers to fulfill this need.<<less
LINQ to XML 1
This tutorial explains how to read, construct and write XML data by using LINQ to XML data provider. LINQ to XML is a built-in LINQ data provider that provides a clean programming model to read, construct and write XML data. more>> This tutorial explains how to read, construct and write XML data by using LINQ to XML data provider. LINQ to XML is a built-in LINQ data provider that provides a clean programming model to read, construct and write XML data.<<less
Herongs Notes on XML Technologies
This book is a collection of notes I wrote while I was learning eXtensible Markup Language (XML) and other related technologies: CSS: Cascading Style Sheet DOM: Document Object Model DTD: Document Typ more>> This book is a collection of notes I wrote while I was learning eXtensible Markup Language (XML) and other related technologies: CSS: Cascading Style Sheet DOM: Document Object Model DTD: Document Type Definition SAX: Simple API for XML XHTML: eXtensible HTML XML: eXtensible Markup Language XQL: XML Query language XSD: XML Schema Definition XSL: eXtensible Style Language XSLT: XSL Transformation<<less
ASP.NET 2.0 Training : Data Source Object Model
ASP.NET 2.0 Training : Data Source Object Model - In this tutorial you will learn about Data Source Object Model in ASP.NET 2.0, the Rationale of DataSource components, Data Source Control Internals, more>> ASP.NET 2.0 Training : Data Source Object Model - In this tutorial you will learn about Data Source Object Model in ASP.NET 2.0, the Rationale of DataSource components, Data Source Control Internals, Tabular DataSource Controls, Hierarchical Data Source Controls, The SqlDataSource Control: Usage and Data Source Parameters.<<less
DOM Browsing 1.0
DOM Browsing is a client-side script that allows you to browse through the Document Object Model. It allows you to view all of the objects and properties contained within an HTML document. more>> DOM Browsing is a client-side script that allows you to browse through the Document Object Model. It allows you to view all of the objects and properties contained within an HTML document.<<less