- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 109 for volatile (0.11 sec)
-
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
assertBitEquals(x - y, aa.get(i)); } } } } static final long COUNTDOWN = 100000; class Counter extends CheckedRunnable { final AtomicDoubleArray aa; volatile long counts; Counter(AtomicDoubleArray a) { aa = a; } @Override public void realRun() { for (; ; ) { boolean done = true;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 14.6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
public void addMojos(List<MojoDescriptor> mojos) throws DuplicateMojoDescriptorException { for (MojoDescriptor mojoDescriptor : mojos) { addMojo(mojoDescriptor); } } private volatile org.apache.maven.api.plugin.descriptor.PluginDescriptor pluginDescriptorV4; public org.apache.maven.api.plugin.descriptor.PluginDescriptor getPluginDescriptorV4() { if (pluginDescriptorV4 == null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
private final CountDownLatch startLatch = new CountDownLatch(1); private final CountDownLatch stopLatch = new CountDownLatch(1); private volatile boolean running = false; @Override public @Nullable Void call() throws InterruptedException { running = true; startLatch.countDown(); stopLatch.await(); running = false;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 16.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
protected Client client; protected String address; protected List<OnConnectListener> onConnectListenerList = new ArrayList<>(); private volatile boolean connected; protected Scroll scrollForDelete = new Scroll(TimeValue.timeValueMinutes(1)); protected int sizeForDelete = 10; protected long retryInterval = 3 * 1000L;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 19.9K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
Wrappers$SeqWrapper$ SeqWrapper$module; private volatile Wrappers$MutableSeqWrapper$ MutableSeqWrapper$module; private volatile Wrappers$MutableBufferWrapper$ MutableBufferWrapper$module; private volatile Wrappers$JListWrapper$ JListWrapper$module; private volatile Wrappers$MutableSetWrapper$ MutableSetWrapper$module; private volatile Wrappers$JSetWrapper$ JSetWrapper$module; private volatile Wrappers$MutableMapWrapper$ MutableMapWrapper$module; private volatile Wrappers$JMapWrapper$ JMapWrapper$module;...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
guava/src/com/google/common/reflect/Invokable.java
public final boolean isSynchronized() { return Modifier.isSynchronized(getModifiers()); } /** Returns true if the field is volatile. */ final boolean isVolatile() { return Modifier.isVolatile(getModifiers()); } /** Returns true if the field is transient. */ final boolean isTransient() { return Modifier.isTransient(getModifiers()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 19.6K bytes - Viewed (0) -
guava/src/com/google/common/net/InternetDomainName.java
private final ImmutableList<String> parts; /** * Cached value of #publicSuffixIndex(). Do not use directly. * * <p>Since this field isn't {@code volatile}, if an instance of this class is shared across * threads before it is initialized, then each thread is likely to compute their own copy of the * value. */ @SuppressWarnings("Immutable") @LazyInit
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
protected File baseDir; private final List<ThumbnailGenerator> generatorList = new ArrayList<>(); private BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue; private volatile boolean generating; private Thread thumbnailQueueThread; protected int thumbnailPathCacheSize = 10; protected String imageExtention = "png"; protected int splitSize = 10;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 21.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt
internal val connectionSpecIndex: Int, internal val isTlsFallback: Boolean, ) : RoutePlanner.Plan, ExchangeCodec.Carrier { /** True if this connect was canceled; typically because it lost a race. */ @Volatile private var canceled = false // These properties are initialized by connect() and never reassigned. /** The low-level TCP socket. */ private var rawSocket: Socket? = null /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 18.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashSet.java
* Keeps track of metadata like the number of hash table bits and modifications of this data * structure (to make it possible to throw ConcurrentModificationException in the iterator). Note * that we choose not to make this volatile, so we do less of a "best effort" to track such * errors, for better performance. */ private transient int metadata; /** The number of elements contained in the set. */ private transient int size;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24K bytes - Viewed (0)