- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 268 for constructions (0.07 sec)
-
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
CharMappingItem item = new CharMappingItem(1L, inputs, null); assertNull(item.getOutput()); } public void test_constructor_withUnsortedInputs() { // Test that inputs are sorted during construction String[] inputs = { "z", "a", "m" }; CharMappingItem item = new CharMappingItem(1L, inputs, "output"); assertEquals("a", item.getInputs()[0]); assertEquals("m", item.getInputs()[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmUtilTest.java
byte[] actual = NtlmUtil.getNTLMv2Response(key, server, clientChallenge, nanos1601, avPairs); // Assert assertArrayEquals(expected, actual, "Computed response must match manual construction"); // Also verify client challenge sits at mac(16) + blob offset 16 assertArrayEquals(clientChallenge, Arrays.copyOfRange(actual, 16 + 16, 16 + 16 + 8)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
SmbTreeConnection freshConnection = mock(SmbTreeConnection.class); when(freshConnection.acquire()).thenReturn(freshConnection); // Should not throw NPE during construction SmbTreeHandleImpl handleWithNullLoc = new SmbTreeHandleImpl(null, freshConnection); assertNotNull(handleWithNullLoc); // But operations that use resourceLoc might fail
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
* @return the execution result message or summary */ public abstract String execute(); /** * Returns the execution type identifier for this job. * This type is used for classpath construction, configuration, and logging purposes. * * @return the execution type (e.g., "crawler", "suggest", etc.) */ protected abstract String getExecuteType(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
cmd/bucket-policy-handlers_test.go
) { bucketName1 := fmt.Sprintf("%s-1", bucketName) if err := obj.MakeBucket(GlobalContext, bucketName1, MakeBucketOptions{}); err != nil { t.Fatal(err) } // template for constructing HTTP request body for PUT bucket policy.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
} if (tlsVersions.contains(TLS_1_3)) { println("TLSv1.3 requires an external command run before first traffic is sent") println("Follow instructions at https://github.com/neykov/extract-tls-secrets for TLSv1.3") println("Pid: ${ProcessHandle.current().pid()}") Thread.sleep(10000) } } CommandLine -> {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
.path(requireNonNull(path, "path cannot be null")) .build(); } /** * Creates a new builder for constructing a ProjectBuilderRequest. * * @return a new ProjectBuilderRequestBuilder */ @Nonnull static ProjectBuilderRequestBuilder builder() { return new ProjectBuilderRequestBuilder();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
/** * Default constructor for CommandGenerator. */ public CommandGenerator() { super(); } /** * Initializes the command generator after construction. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } if (baseDir == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java
assertEquals("remove", ex.getMessage()); } @Test @DisplayName("Null tree handle throws NullPointerException during construction") void nullTreeHandle() { // Arrange SmbTreeHandleImpl nullTree = null; // Act + Assert assertThrows(NullPointerException.class,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/s390x.s
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jul 30 19:29:15 UTC 2025 - 22.9K bytes - Viewed (0)