- Sort Score
- Result 10 results
- Languages All
Results 1241 - 1250 of 7,669 for With (0.21 sec)
-
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
IndexUpdateCallback callback = new TestIndexUpdateCallback(); // Execute with null config dataStore.store(null, callback, params); assertTrue(storeCalled.get()); } public void test_store_withNullCallback() { // Test store with null callback final AtomicBoolean storeCalled = new AtomicBoolean(false); dataStore = new DataStore() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
this.nameFormat = nameFormat; return this; } /** * Sets daemon or not for new threads created with this ThreadFactory. * * <p><b>Java 21+ users:</b> use {@link Thread.Builder.OfPlatform#daemon(boolean)} instead. * * @param daemon whether or not new Threads created with this ThreadFactory will be daemon threads * @return this for the builder pattern */ @CanIgnoreReturnValue
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
scriptEngineFactory.add("type1", engine1); scriptEngineFactory.add("type2", engine2); // Execute with first engine Object result1 = scriptExecutor.execute("type1", "script for engine1"); assertEquals("engine1:processed: script for engine1", result1); // Execute with second engine Object result2 = scriptExecutor.execute("type2", "script for engine2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java
// Test with zero-length data byte[] buffer = new byte[100]; int result = response.readDataWireFormat(buffer, 50, 0); assertEquals(0, result); } @Test void testReadDataWireFormatAtBufferBoundary() throws SMBProtocolDecodingException { // Test with data length exactly matching outputBuffer size
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
// Test with normal message String message = "Search operation not supported"; UnsupportedSearchException exception = new UnsupportedSearchException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withEmptyMessage() { // Test with empty message String message = "";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
/** * Constructs a new FessSystemException with the specified detail message and cause. * * @param message the detail message describing the exception * @param cause the cause of this exception */ public FessSystemException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new FessSystemException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
LICENSES/vendor/github.com/containerd/errdefs/LICENSE
the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Sun Sep 22 18:50:45 UTC 2024 - 10.6K bytes - Viewed (0) -
LICENSES/vendor/github.com/containerd/log/LICENSE
the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Sun Sep 22 18:50:45 UTC 2024 - 10.6K bytes - Viewed (0) -
cmd/signature-v4.go
if s3Err != ErrNone { return s3Err } // Extract all the signed headers along with its values. extractedSignedHeaders, errCode := extractSignedHeaders(pSignValues.SignedHeaders, r) if errCode != ErrNone { return errCode } // Check if the metadata headers are equal with signedheaders errMetaCode := checkMetaHeaders(extractedSignedHeaders, r) if errMetaCode != ErrNone {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Dec 13 22:19:12 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/DeleteForm.java
* This constructor initializes the form for plugin deletion operations * in the admin interface with validation rules for plugin information. */ public DeleteForm() { // Default constructor with explicit documentation } /** * The name of the plugin to delete. * Required field with maximum length of 100 characters. */ @Required @Size(max = 100) public String name;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)