- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 1,620 for emptify (0.06 seconds)
-
src/test/java/jcifs/smb/SmbTransportInternalTest.java
assertArrayEquals(key, transport.getServerEncryptionKey()); verify(transport).getServerEncryptionKey(); // Empty array byte[] empty = new byte[0]; when(transport.getServerEncryptionKey()).thenReturn(empty); assertArrayEquals(empty, transport.getServerEncryptionKey()); // Null when(transport.getServerEncryptionKey()).thenReturn(null);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 12.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
@Nonnull Stream<P> problems(BuilderProblem.Severity severity); /** * Creates an "empty" problem collector that doesn't store any problems. * * @param <P> the type of problem * @return an empty problem collector */ @Nonnull static <P extends BuilderProblem> ProblemCollector<P> empty() { return new ProblemCollector<>() { @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jul 18 17:30:19 GMT 2025 - 11.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* * @param modelId The identifier of the model (groupId:artifactId:version) or empty string for the super POM. * @return The active profiles for the specified model or an empty list if the model has no active profiles. * @since 4.0.0 */ @Nonnull List<Profile> getActivePomProfiles(String modelId); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 4.2K bytes - Click Count (0) -
okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/ConfiguredPublicSuffixList.kt
*/ internal class ConfiguredPublicSuffixList : PublicSuffixList { override fun ensureLoaded() { } override var bytes: ByteString = ByteString.EMPTY override var exceptionBytes: ByteString = ByteString.EMPTYCreated: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue May 27 22:00:49 GMT 2025 - 978 bytes - Click Count (0) -
guava/src/com/google/common/collect/ContiguousSet.java
} } catch (NoSuchElementException e) { throw new IllegalArgumentException(e); } boolean empty; if (effectiveRange.isEmpty()) { empty = true; } else { /* * requireNonNull is safe because the effectiveRange operations above would have thrown or * effectiveRange.isEmpty() would have returned true. */Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 9.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/Lists.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 42.6K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
Arguments.of("", "test-project", "1.0.0", "Should return null for empty groupId"), Arguments.of("com.example", "", "1.0.0", "Should return null for empty artifactId"), Arguments.of("com.example", "test-project", "", "Should return null for empty version")); } } @Nested @DisplayName("Artifact Computation")
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 17.3K bytes - Click Count (0) -
internal/ringbuffer/ring_buffer_test.go
t.Fatalf("expect a but got %s. r.w=%d, r.r=%d", rb.Bytes(nil), rb.w, rb.r) } // check empty or full if rb.IsEmpty() { t.Fatalf("expect IsEmpty is false but got true") } if rb.IsFull() { t.Fatalf("expect IsFull is false but got true") } // read two, empty b, err = rb.ReadByte() if err != nil { t.Fatalf("ReadByte failed: %v", err) } if b != 'b' {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 26.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
EMPTY, request); } validateRawRepositories(problems, m.getRepositories(), "repositories.repository.", EMPTY, request); validateRawRepositories( problems, m.getPluginRepositories(), "pluginRepositories.pluginRepository.", EMPTY, request); Build build = m.getBuild();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 03 15:06:05 GMT 2025 - 66.8K bytes - Click Count (0) -
cmd/net.go
return false, err } var addr1Local, addr2Local bool if host1 == "" { // If empty host means it is localhost addr1Local = true } else if addr1Local, err = isLocalHost(host1, port1, port1); err != nil { // Host not empty, check if it is local return false, err } if host2 == "" { // If empty host means it is localhost addr2Local = trueCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9.6K bytes - Click Count (1)