- Sort Score
- Num 10 results
- Language All
Results 781 - 790 of 996 for useEmpty (0.06 seconds)
-
cmd/admin-handlers-idp-openid.go
} var id string if idClaim := globalIAMSys.OpenIDConfig.GetUserIDClaim(matchingCfgName); idClaim != "" { id, _ = accessKey.Claims[idClaim].(string) } if !userSet.IsEmpty() && !userSet.Contains(accessKey.ParentUser) && !userSet.Contains(id) { continue // skip if not in the user list } openIDUserAccessKeys, ok := cfgToUsersMap[matchingCfgName][accessKey.ParentUser]
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Sep 06 17:38:46 GMT 2025 - 7.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java
PropertyMetaData property = getProperty(name); if (property.getType() == null) { property.setType(type); } if (property.getRawCommentText() == null || property.getRawCommentText().isEmpty()) { property.setRawCommentText(rawCommentText); } property.setSetter(setterMethod); return property; } public PropertyMetaData findDeclaredProperty(String name) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 10.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
uq.setUrl(d.getUrl()); uq.setWeight(d.getWeight()); return uq; }) .collect(Collectors.toList()); if (!childList.isEmpty()) { CrawlingParameterUtil.getUrlQueueService().offerAll(crawlerContext.getSessionId(), childList); } } /** * Gets the transformer. * * @return the transformer
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Aug 07 02:55:08 GMT 2025 - 12.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java
leaseManager.releaseAll(); assertNull(leaseManager.getLease(key1)); assertNull(leaseManager.getLease(key2)); assertTrue(leaseManager.getAllLeases().isEmpty()); } @Test @DisplayName("Should clean up expired leases") void testCleanupExpiredLeases() throws InterruptedException { String path = "/share/expired.txt";Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 21 00:16:17 GMT 2025 - 13.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingMultiset.java
* {@link ForwardingMultiset#clear}, {@link ForwardingMultiset#contains}, {@link * ForwardingMultiset#containsAll}, {@link ForwardingMultiset#count}, {@link * ForwardingMultiset#isEmpty}, the {@link Set#size} and {@link Set#iterator} methods of {@link * ForwardingMultiset#entrySet}, and {@link ForwardingMultiset#remove(Object, int)}. In manyCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java
for (int base : bases) { assertThat(Long.toString(a, base)).isEqualTo(UnsignedInts.toString((int) a, base)); } } } public void testJoin() { assertThat(join()).isEmpty(); assertThat(join(1)).isEqualTo("1"); assertThat(join(1, 2)).isEqualTo("1,2"); assertThat(join(-1, Integer.MIN_VALUE)).isEqualTo("4294967295,2147483648");
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 12.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jul 18 17:30:19 GMT 2025 - 11.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java
new ConsumerPomArtifactTransformer((session, project, src) -> null) .injectTransformedArtifacts(systemSessionMock, emptyProject); assertTrue(emptyProject.getAttachedArtifacts().isEmpty()); } @Test void testDeployBuildPomEnabledByDefault() { // Test that build POM deployment is enabled by defaultCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 06 18:32:25 GMT 2025 - 13.3K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
final MappingMetadata mappingMetadata = indexMappings != null ? indexMappings.get(index) : null; if (mappingMetadata == null || mappingMetadata.sourceAsMap().isEmpty()) { final AcknowledgedResponse putMappingResponse = fesenClient.get(c -> { final String source = FileUtil.readText("mapping/" + mappingName + ".json");
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
assertTrue(executor.awaitTermination(30, TimeUnit.SECONDS), "All threads should complete within timeout"); // Analyze timing consistency across threads if (!timings.isEmpty()) { double avgTime = timings.stream().mapToLong(Long::longValue).average().orElse(0.0); long maxTime = timings.stream().mapToLong(Long::longValue).max().orElse(0L);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 11.2K bytes - Click Count (0)