代码搜索:Threading
找到约 3,703 项符合「Threading」的源代码
代码结果 3,703
www.eeworm.com/read/331534/3411082
cpp condition.cpp
//
// Condition.cpp
//
// $Id: //poco/1.3/Foundation/src/Condition.cpp#1 $
//
// Library: Foundation
// Package: Threading
// Module: Condition
//
// Copyright (c) 2007, Applied Informatics
www.eeworm.com/read/304488/3799154
cs communitiesmodule.cs
namespace ASPNET.StarterKit.Communities {
using System;
using System.Web;
using System.Globalization;
using System.Threading;
using System.IO;
//*******************
www.eeworm.com/read/303435/3810645
readme
This directory contains the source code for the Vthread library.
Despite the promise of the Posix pthread interface, multi-threading
is still a haphazard as far as portable programming is concerned.
F
www.eeworm.com/read/272397/4216850
cs threadlockdemo.cs
using System;
using System.Threading;
class ThreadLockDemo
{
static void Main()
{
Thread.CurrentThread.Name = "主线程";
ThreadLockDemo objDemo = new ThreadLockDemo();
Thread newThread =
www.eeworm.com/read/414420/2146389
sched readme.sched
Notes on the scheduler in sched.c:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'sched.c' provides an very simplistic multi-threading scheduler.
See the example, function 'sched(...)', in the same file fo
www.eeworm.com/read/414257/2152196
vb eventwaithandle.vb
Imports System.Threading
Imports System.Runtime.InteropServices
Public Enum EventResetMode
AutoReset = 0
ManualReset = 1
End Enum
Public Class EventWaitHandle
Inherits WaitHandl
www.eeworm.com/read/411761/2184811
cs sr.cs
namespace Microsoft.VisualStudio.WebHost
{
using System;
using System.Globalization;
using System.Resources;
using System.Threading;
internal sealed class SR
{
www.eeworm.com/read/408818/2242452
sched readme.sched
Notes on the scheduler in sched.c:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'sched.c' provides an very simplistic multi-threading scheduler.
See the example, function 'sched(...)', in the same file fo
www.eeworm.com/read/380043/2665411
dpr delegate.dpr
program Delegate;
{$APPTYPE CONSOLE}
uses
Borland.Delphi.SysUtils,
System.Threading;
type
TMyClass = class
public
procedure myMethod;
end;
var
threadDelegate: System.
www.eeworm.com/read/377893/2694944
cs imageproxy.cs
using System;
using System.Drawing ;
using System.Threading ;
namespace Proxy
{
///
/// Summary description for ImageProxy.
///
public class ImageProxy {
private b