- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 945 for useEmpty (0.29 sec)
-
internal/config/dns/etcd_dns.go
return nil, err } args := &CoreDNS{ etcdClient: etcdClient, } for _, setter := range setters { setter(args) } if len(args.domainNames) == 0 || args.domainIPs.IsEmpty() { return nil, errors.New("invalid argument") } // strip ports off of domainIPs domainIPsWithoutPorts := args.domainIPs.ApplyFunc(func(ip string) string { host, _, err := net.SplitHostPort(ip)Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
cmdList.add("-Djava.io.tmpdir=" + ownTmpDir.getAbsolutePath()); } else { ownTmpDir = null; } } if (!jvmOptions.isEmpty()) { jvmOptions.stream().filter(StringUtil::isNotBlank).forEach(cmdList::add); } cmdList.add(SuggestCreator.class.getCanonicalName()); cmdList.add("--sessionId");
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
return new KeyIterator(); } @Override public int size() { return MapMakerInternalMap.this.size(); } @Override public boolean isEmpty() { return MapMakerInternalMap.this.isEmpty(); } @Override public boolean contains(Object o) { return MapMakerInternalMap.this.containsKey(o); } @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 89.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImplTest.java
UrlQueueImpl<Long> result = service.poll(sessionId); // Verify assertNotNull(result); assertEquals("https://example.com", result.getUrl()); assertTrue(mockQueue.isEmpty()); } public void test_pollEmptyQueue() { // Setup String sessionId = "session123"; Queue<UrlQueueImpl<Long>> mockQueue = new LinkedList<>();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbWatchHandleImplTest.java
List<FileNotifyInformation> result = sut.watch(); assertSame(info, result, "Should return same list instance"); verify(info, times(1)).clear(); assertTrue(result.isEmpty(), "List should be cleared"); } // Parameterized test to exercise SMB2 with different recursive and filter values @ParameterizedTest(name = "SMB2 param: recursive={0}, filter={1}")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java
for (CoreExtension extension : configuration) { List<Artifact> artifacts = resolveExtension(extension, repoSession, repositories, dependencyFilter, interpolator); if (!artifacts.isEmpty()) { extensions.add(new LoadedCoreExtension(extension, createExtension(extension, artifacts))); } } return Collections.unmodifiableList(extensions); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
cmdList.add("-Djava.io.tmpdir=" + ownTmpDir.getAbsolutePath()); } else { ownTmpDir = null; } } if (!jvmOptions.isEmpty()) { jvmOptions.stream().filter(StringUtil::isNotBlank).forEach(cmdList::add); } cmdList.add(ThumbnailGenerator.class.getCanonicalName()); cmdList.add("--sessionId");
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
if (message.isSuccess()) { List<WitnessAsyncNotifyMessage.WitnessNotificationResponse> notifications = message.getNotifications(); if (!notifications.isEmpty()) { log.debug("Received {} notifications", notifications.size()); return notifications.get(0); // Return first notification } } else {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
* @throws CIFSException if initialization fails */ public PreauthIntegrityContext initializeSession(String sessionId, byte[] salt, int hashAlgorithm) throws CIFSException { if (sessionId == null || sessionId.isEmpty()) { throw new CIFSException("Session ID cannot be null or empty"); } if (salt == null || salt.length < 16) { throw new CIFSException("Invalid preauth salt: minimum 16 bytes required");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0)