- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for initialValue (0.1 seconds)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
String testKey = "cache.test"; String initialValue = "initial"; System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, initialValue); try { // Get initial value String value1 = fessConfig.get(testKey); assertEquals(initialValue, value1); // Change system property String newValue = "changed";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.9K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AtomicDouble.java
private transient AtomicLong value; /** * Creates a new {@code AtomicDouble} with the given initial value. * * @param initialValue the initial value */ public AtomicDouble(double initialValue) { value = new AtomicLong(doubleToRawLongBits(initialValue)); } /** Creates a new {@code AtomicDouble} with initial value {@code 0.0}. */ public AtomicDouble() { this(0.0); } /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 7.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
ListeningExecutorService executor = newDirectExecutorService(); ThreadLocal<Integer> threadLocalCount = new ThreadLocal<Integer>() { @Override protected Integer initialValue() { return 0; } }; Runnable incrementTask = () -> threadLocalCount.set(threadLocalCount.get() + 1); FutureTask<@Nullable Void> otherTask = new FutureTask<>(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 26.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
ListeningExecutorService executor = newDirectExecutorService(); ThreadLocal<Integer> threadLocalCount = new ThreadLocal<Integer>() { @Override protected Integer initialValue() { return 0; } }; Runnable incrementTask = () -> threadLocalCount.set(threadLocalCount.get() + 1); FutureTask<@Nullable Void> otherTask = new FutureTask<>(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 26.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/BloomFilterTest.java
public class BloomFilterTest extends TestCase { private static final int NUM_PUTS = 100_000; private static final ThreadLocal<Random> random = new ThreadLocal<Random>() { @Override protected Random initialValue() { return new Random(); } }; private static final int GOLDEN_PRESENT_KEY = random.get().nextInt(); @AndroidIncompatible // OutOfMemoryErrorCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 23K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
// of allocation done on lock()/unlock(). private static final ThreadLocal<List<LockGraphNode>> acquiredLocks = new ThreadLocal<List<LockGraphNode>>() { @Override protected List<LockGraphNode> initialValue() { return newArrayListWithCapacity(3); } }; /** * A Throwable used to record a stack trace that illustrates an example of a specific lock
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 36K bytes - Click Count (0) -
RELEASE.md
usage that user can define their own link function if the `array_ops.identity` does not meet the requirement. * Fix `initialized_value` and `initial_value` behaviors for `ResourceVariables` created from `VariableDef` protos. * Add TensorSpec to represent the specification of Tensors. * Constant folding pass is now deterministic.Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3)