- Sort Score
- Result 10 results
- Languages All
Results 1151 - 1160 of 2,557 for FALSE (0.02 sec)
-
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).tailMap("three", false); assertThat(map.entrySet()).containsExactly(immutableEntry("two", 2)); } public void testSubMapExclusiveExclusive() { Map<String, Integer> map = ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", false, "two", false); assertThat(map.entrySet()).containsExactly(immutableEntry("three", 3)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java
Iterator<Restriction> i1 = r1.iterator(); Iterator<Restriction> i2 = r2.iterator(); Restriction res1 = i1.next(); Restriction res2 = i2.next(); boolean done = false; while (!done) { if (res1.getLowerBound() == null || res2.getUpperBound() == null || res1.getLowerBound().compareTo(res2.getUpperBound()) <= 0) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 19K bytes - Viewed (0) -
cmd/metrics-v3-cluster-erasure-set.go
if readTolerance < 0 { readHealthy = false } m.Set(erasureSetReadTolerance, readTolerance, labels...) m.Set(erasureSetReadHealth, b2f(readHealthy), labels...) writeHealthy := true writeTolerance := float64(h.HealthyDrives + h.HealingDrives - h.WriteQuorum) if writeTolerance < 0 { writeHealthy = false } m.Set(erasureSetWriteTolerance, writeTolerance, labels...)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 14 07:25:56 UTC 2024 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleReconnectorTest.java
CompletableFuture<HandleInfo> future = testReconnector.reconnectHandle("/test/file.txt", new IOException("Network error")); assertThrows(ExecutionException.class, () -> { future.get(); }); verify(mockManager).completeReconnect("/test/file.txt", false); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/user-provider-utils.go
s := globalServerConfig.Clone() configs, err := globalIAMSys.OpenIDConfig.GetConfigList(s) if err != nil { return "", false } for _, cfg := range configs { if cfg.RoleARN == roleArn { return cfg.Name, true } } return "", false } func getOpenIDInfoFromClaims(claims map[string]any) madmin.OpenIDSpecificAccessKeyInfo { info := madmin.OpenIDSpecificAccessKeyInfo{}
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
request = new Smb2CreateRequest(mockConfig, "test.txt"); // Initially should be false assertFalse(request.isResolveInDfs()); // Set to true request.setResolveInDfs(true); assertTrue(request.isResolveInDfs()); // Set to false request.setResolveInDfs(false); assertFalse(request.isResolveInDfs()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
assertEqualIgnoringOrder(asList(expected), actual); } public static void assertContains(Iterable<?> actual, Object expected) { boolean contained = false; if (actual instanceof Collection) { contained = ((Collection<?>) actual).contains(expected); } else { for (Object o : actual) { if (equal(o, expected)) { contained = true;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 17.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
* @return true if SIDs should be resolved, false otherwise */ public boolean isResolveSids() { return resolveSids; } /** * Sets whether SIDs (Security Identifiers) should be resolved. * @param resolveSids true to resolve SIDs, false otherwise */ public void setResolveSids(final boolean resolveSids) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 22.5K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
final class Murmur3_32HashFunction extends AbstractHashFunction implements Serializable { static final HashFunction MURMUR3_32 = new Murmur3_32HashFunction(0, /* supplementaryPlaneFix= */ false); static final HashFunction MURMUR3_32_FIXED = new Murmur3_32HashFunction(0, /* supplementaryPlaneFix= */ true); // We can include the non-BMP fix here because Hashing.goodFastHash stresses that the hash is a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
return false; } if ((this.server.scapabilities & SmbConstants.CAP_EXTENDED_SECURITY) != SmbConstants.CAP_EXTENDED_SECURITY && this.server.encryptionKeyLength != 8 && ctx.getConfig().getLanManCompatibility() == 0) { log.warn("Unexpected encryption key length: " + this.server.encryptionKeyLength); return false; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0)