- Sort Score
- Result 10 results
- Languages All
Results 1901 - 1910 of 2,077 for boolean (0.04 sec)
-
guava/src/com/google/common/primitives/UnsignedLong.java
checkNotNull(o); return UnsignedLongs.compare(value, o.value); } @Override public int hashCode() { return Long.hashCode(value); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof UnsignedLong) { UnsignedLong other = (UnsignedLong) obj; return value == other.value; } return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayMapTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 10.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeMap.java
RangeMap<K, V> subRangeMap(Range<K> range); /** * Returns {@code true} if {@code obj} is another {@code RangeMap} that has an equivalent {@link * #asMapOfRanges()}. */ @Override boolean equals(@Nullable Object o); /** Returns {@code asMapOfRanges().hashCode()}. */ @Override int hashCode(); /** Returns a readable string representation of this range map. */ @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java
private static class FakeExecutor implements Executor { final Queue<Runnable> tasks = new ArrayDeque<>(); @Override public void execute(Runnable command) { tasks.add(command); } boolean hasNext() { return !tasks.isEmpty(); } void runNext() { assertTrue("expected at least one task to run", hasNext()); tasks.remove().run(); } void runAll() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
} tagNo |= b & 0x7f; } } return tagNo; } static int readLength(final InputStream s, final int limit, final boolean isParsing) throws IOException { int length = s.read(); if (0 == length >>> 7) { // definite-length short form return length; } if (0x80 == length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
return nextRetryTime; } /** * Check if recovery should be attempted * * @return true if should retry */ public boolean shouldRetry() { return retryCount < 3; } /** * Increment retry count and update next retry time */ public void incrementRetry() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
return createMavenSession(pom, executionProperties, false); } protected MavenSession createMavenSession(File pom, Properties executionProperties, boolean includeModules) throws Exception { MavenExecutionRequest request = createMavenExecutionRequest(pom); ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest()
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
paramMap.put("sum", 30); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("Result: 10 + 20 = 30", result); } // Test evaluate method with boolean values public void test_evaluate_withBooleanValues() { String template = "Is active: ${active}, Is enabled: ${enabled}"; Map<String, Object> paramMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
/** * The permission separator. */ protected String permissionSeparator = "|"; /** * The flag to use ECS format. */ protected boolean useEcsFormat = false; /** * The ECS version. */ protected String ecsVersion = "1.2.0"; /** * The ECS service name. */ protected String ecsServiceName = "fess";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SimpleCircuitBreaker.java
} return (double) totalSuccesses.get() / total; } /** * Check if circuit breaker allows requests * * @return true if requests are allowed */ public boolean allowsRequests() { State current = evaluateState(); return current != State.OPEN; } /** * Get the circuit breaker name * * @return name */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0)