代码搜索:blocking

找到约 1,859 项符合「blocking」的源代码

代码结果 1,859
www.eeworm.com/read/240204/4576174

otml weather1.otml

oaa_Solve(weather([in(houston)],_),[blocking(false)]) ev_solved(_,_,_,weather([in(houston)],_),_,[weather([in(houston)],HoustonWeather)])
www.eeworm.com/read/240204/4577696

java singleproducermultipleconsumerloops.java

/* * @test * @synopsis check ordering for blocking queues with 1 producer and multiple consumers */ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and
www.eeworm.com/read/240204/4577707

java producerconsumerloops.java

/* * @test * @synopsis multiple producers and consumers using blocking queues */ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the pub
www.eeworm.com/read/207991/5000228

mal generator08.mal

# the generator optimizer # The flow graph becomes a little more complex # it requires the result of the select to be accumulated # because there is a blocking instruction inbetween mdb.list(); io.p
www.eeworm.com/read/207991/5000264

mal generator09.mal

# the generator optimizer # The flow graph becomes a little more complex # it requires the result of the select to be accumulated # because there is a blocking instruction inbetween mdb.list(); io.p
www.eeworm.com/read/303749/3808862

ini wal.ini

[AppOptions] Mode = 2 Role = 0 Protocol = 0 [Blocking] IoMode= 0 BytesPerIo = 1460 IoPerLoop = 150 LoopInterval = 200 PortNumber = 7 ServiceName = zecho Host = elvis
www.eeworm.com/read/273665/4200901

c winbindd_async.c

/* Unix SMB/CIFS implementation. Async helpers for blocking functions Copyright (C) Volker Lendecke 2005 The helpers always consist of three functions: * A request setup functi
www.eeworm.com/read/395929/2431214

srcs makefile.srcs

SRCS = \ simple_bus.cpp \ simple_bus_arbiter.cpp \ simple_bus_main.cpp \ simple_bus_master_blocking.cpp \ s
www.eeworm.com/read/386607/8736001

java sleepyboundedbuffer.java

package net.jcip.examples; import net.jcip.annotations.*; /** * SleepyBoundedBuffer * * Bounded buffer using crude blocking * * @author Brian Goetz and Tim Peierls */ @ThreadSafe
www.eeworm.com/read/139870/5796752

java consumer.java

// This class encapsulates a Consumer. The consumer dq's from the queue // Supports both a timed and blocking consumer. // Each instance of this class creates a different thread of control. // On