- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 416 for specials (0.39 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
// Check if all predecessors are executed successfully boolean allPredecessorsExecuted = step.predecessors.stream().allMatch(s -> s.status.get() == EXECUTED); // Special case for after:* steps - they should run if their corresponding before:* step ran if (isAfterStep) { String phaseName = step.name.substring(AFTER.length());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
assertNotNull(results); } @Test public void testConvertWithSpecialCharacters() throws IOException { // Test convert with special characters String text = "test@#$%123"; String field = "content"; List<String> results = converter.convert(text, field, "en"); assertNotNull(results); }Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how * that affects users, especially users of the Android Gradle Plugin, since the plugin developers * put in a special hack for us: https://issuetracker.google.com/issues/131431257) */ @DoNotMock("Use the methods in Futures (like immediateFuture) or SettableFuture") @NullMarkedRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
guava/src/com/google/common/hash/SipHashFunction.java
private final int d; // Four 64-bit words of internal state. // The initial state corresponds to the ASCII string "somepseudorandomlygeneratedbytes", // big-endian encoded. There is nothing special about this value; the only requirement // was some asymmetry so that the initial v0 and v1 differ from v2 and v3. private long v0 = 0x736f6d6570736575L; private long v1 = 0x646f72616e646f6dL;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 5.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/JvmConfigParser.java
import java.nio.file.Path; import java.nio.file.Paths; import java.util.ArrayList; import java.util.List; /** * Parses .mvn/jvm.config file for Windows batch/Unix shell scripts. * This avoids the complexity of parsing special characters (pipes, quotes, etc.) in scripts. * * Usage: java JvmConfigParser.java <jvm.config-path> <maven-project-basedir> [output-file] *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 10 16:40:06 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
verify(spy).getFileInformationLevel(); verify(spy).size(); verify(spy).encode(buffer, 0); verify(spy).decode(buffer, 0, 8); // Note: Cannot verify toString() with Mockito - it's a special method // Verify return values assertEquals(FileInformation.FILE_ENDOFFILE_INFO, level); assertEquals(8, size); assertEquals(8, encoded); assertEquals(8, decoded);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
largeContent[i] = (byte) (i % 256); } Files.write(largeDir.resolve("largefile.bin"), largeContent); // Special character files for test_specialCharactersInFileName Path specialDir = publicDir.resolve("special"); Files.createDirectory(specialDir); Files.writeString(specialDir.resolve("file with spaces.txt"), "spaces");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 31.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
result.add(value); if (value == 8) { iter.remove(); } } assertIntact(q); assertThat(result).containsExactly(1, 15, 13, 8, 14); } /** * This tests a special case of the removeAt() call. Moving an element sideways on the heap could * break the invariants. Sometimes we need to bubble an element up instead of trickling down. See * implementation. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 36.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
int bodyOffset = (i * 200) + Smb2Constants.SMB2_HEADER_LENGTH; assertEquals(9, SMBUtil.readInt2(buffer, bodyOffset)); } } @Test @DisplayName("Should handle path with special characters") void testSpecialCharactersInPath() throws Exception { // Given String specialPath = "\\\\server\\share$\\folder@123\\file#test";Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
docs/es/docs/tutorial/header-params.md
`Header` es una clase "hermana" de `Path`, `Query` y `Cookie`. También hereda de la misma clase común `Param`. Pero recuerda que cuando importas `Query`, `Path`, `Header`, y otros de `fastapi`, en realidad son funciones que retornan clases especiales. /// /// info | Información Para declarar headers, necesitas usar `Header`, porque de otra forma los parámetros serían interpretados como parámetros de query. ///
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 3.2K bytes - Viewed (0)