- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 640 for emptify (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/bufio/scan.go
return false } s.token = token if token != nil { if s.err == nil || advance > 0 { s.empties = 0 } else { // Returning tokens not advancing input at EOF. s.empties++ if s.empties > maxConsecutiveEmptyReads { panic("bufio.Scan: too many empty tokens without progressing") } } return true } }Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed May 21 18:05:26 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
/** * Asserts that the argument is neither <code>null</code> nor an empty string. * * @param argName * The name of the argument that must not be {@code null} or an empty string. * @param argValue * The value of the argument. * @throws EmptyArgumentException * If the argument is <code>null</code> or an empty string. */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.5K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketReaderTest.kt
data.write("8a00".decodeHex()) // Pong data.write("80026c6f".decodeHex()) // lo clientReader.processNextFrame() callback.assertPong(EMPTY) callback.assertPong(EMPTY) callback.assertPong(EMPTY) callback.assertPong(EMPTY) callback.assertTextMessage("Hello") } @Test fun clientTwoFrameCompressedHelloWithPongs() {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Nov 04 16:11:23 GMT 2025 - 14.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
} return Optional.empty(); } @Override public Optional<Boolean> nonRecursive() { if (commandLine.hasOption(CLIManager.NON_RECURSIVE)) { return Optional.of(Boolean.TRUE); } return Optional.empty(); } @Override public Optional<Boolean> updateSnapshots() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 25 17:39:57 GMT 2025 - 14.8K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
// Create empty archive } final InputStream in = new ByteArrayInputStream(baos.toByteArray()); final ExtractData result = zipExtractor.getText(in, null); assertNotNull(result); assertNotNull(result.getContent()); assertTrue("Empty archive should produce empty content", result.getContent().trim().isEmpty()); } /**Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 12.6K bytes - Click Count (0) -
src/test/java/jcifs/util/StringsTest.java
if (input == null || input.isEmpty()) { assertEquals(0, result.length, "Null or empty input should produce empty array"); } else { assertTrue(result.length > 0, "Non-empty input should produce non-empty array"); } } } @Nested @DisplayName("Unicode and ASCII Encoding") class UnicodeAndASCIITests {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
} return Optional.empty(); } @Override public Optional<Boolean> showVersionAndExit() { if (commandLine.hasOption(CLIManager.SHOW_VERSION_AND_EXIT)) { return Optional.of(Boolean.TRUE); } return Optional.empty(); } @Override public Optional<Boolean> showVersion() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Oct 08 07:36:42 GMT 2025 - 21.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java
expectContents(); } // retainAll(null) /* * AbstractCollection fails the retainAll(null) test when the subject * collection is empty, but we'd still like to test retainAll(null) when we * can. We split the test into empty and non-empty cases. This allows us to * suppress only the former. */ @CollectionFeature.Require(SUPPORTS_REMOVE) @CollectionSize.Require(ZERO)
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
} /** * Returns the resource from the context class loader. * * @param path * The resource path. Must not be {@literal null} or empty string. * @return The resource {@link URL} * @see #getResource(String, String) */ public static URL getResource(final String path) { assertArgumentNotEmpty("path", path);Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 14.7K bytes - Click Count (0)