- Sort Score
- Result 10 results
- Languages All
Results 1051 - 1060 of 2,557 for False (0.02 sec)
-
src/test/java/org/codelibs/fess/entity/ParamMapTest.java
assertTrue(paramMap.containsKey("aaaBbb")); assertFalse(paramMap.containsKey("AaaBbb")); // false assertFalse(paramMap.containsKey("aaabbb")); assertTrue(paramMap.containsKey("aaa_bbb_ccc")); assertTrue(paramMap.containsKey("aaaBbbCcc")); assertFalse(paramMap.containsKey("AaaBbbCcc")); // false assertFalse(paramMap.containsKey("aaabbbcc")); assertTrue(paramMap.containsKey("ccc.ddd"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.4K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/util/concurrent/InterruptionUtil.java
private static final class Interruptenator implements Runnable { private final long everyMillis; private final Thread interruptee; private volatile boolean shouldStop = false; Interruptenator(Thread interruptee, long everyMillis) { this.everyMillis = everyMillis; this.interruptee = interruptee; } @Override public void run() { while (true) {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 4.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.4K bytes - Viewed (0) -
cmd/lock-rest-client.go
func (c *lockRESTClient) IsOnline() bool { return c.connection.State() == grid.StateConnected } // Not a local locker func (c *lockRESTClient) IsLocal() bool { return false } // Close - marks the client as closed. func (c *lockRESTClient) Close() error { return nil } // String - returns the remote host of the connection. func (c *lockRESTClient) String() string {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
} @Override public boolean isIgnoreClassName(String className) { return false; } @Override public boolean isHotdeployTargetClassName(String className) { return false; } @Override public boolean isTargetClassName(String className) { return true; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
/** * Create a circuit breaker with default settings * * @param name circuit breaker name for logging */ public SmbCircuitBreaker(String name) { this(name, 5, 3, 60000, 3, false, false, 100); } /** * Create a circuit breaker with custom settings * * @param name circuit breaker name for logging * @param failureThreshold number of failures before openingRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
protected ConstructorDesc findSuitableConstructorDesc(final Object... args) { for (final ConstructorDesc constructorDesc : constructorDescs) { if (isSuitable(constructorDesc.getParameterTypes(), args, false)) { return constructorDesc; } } return null; } /** * Returns a {@link ConstructorDesc} that matches the given arguments. * <p>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
public void setUp() throws Exception { mocks = MockitoAnnotations.openMocks(this); when(context.getConfig()).thenReturn(config); when(config.isDirectoryNotificationsEnabled()).thenReturn(false); // Create real lease manager for integration testing baseLeaseManager = new LeaseManager(context); directoryLeaseManager = new DirectoryLeaseManager(context, baseLeaseManager); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java
} @Test @DisplayName("allowChain should return false when config disallows compound") void testAllowChainDisallowed() { TestServerMessageBlock2Request nextRequest = new TestServerMessageBlock2Request(mockConfig); when(mockConfig.isAllowCompound(anyString())).thenReturn(false); boolean result = testRequest.allowChain(nextRequest);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
*/ private static class TestReadingConverter implements ReadingConverter { private boolean initialized = false; private int initCount = 0; private boolean japaneseMode = false; public void setJapaneseMode(boolean japaneseMode) { this.japaneseMode = japaneseMode; } public boolean isInitialized() {Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0)