- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 1,166 for handle2 (0.04 sec)
-
README.md
implementation("com.squareup.okhttp3:logging-interceptor") } ``` Maven and JVM Projects ---------------------- OkHttp is published as a Kotlin Multiplatform project. While Gradle handles this automatically, Maven projects must select between `okhttp-jvm` and `okhttp-android`. The `okhttp` artifact will be empty in Maven projects. ```xml <dependencyManagement> <dependencies> <dependency>
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
assertEquals("first.txt", notifications.get(0).getFileName()); assertEquals("second.txt", notifications.get(1).getFileName()); } @Test @DisplayName("Test readParametersWireFormat handles empty filename") void testReadParametersWireFormatEmptyFilename() throws Exception { byte[] buffer = createSingleNotificationBuffer("", FileNotifyInformation.FILE_ACTION_ADDED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
}; // Then assertNotNull(iterator, "Iterator should be created"); assertFalse(iterator.hasNext(), "Should not have elements"); } /** * Test that the iterator handles null return from next correctly. */ @Test void testNullReturnFromNext() { // Given when(mockDelegate.hasNext()).thenReturn(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
} // Test case conversion through ParamMap (camelCase to snake_case) public void test_caseConversion() { dataStoreParams.put("camelCaseKey", "value1"); // ParamMap should handle case conversion assertNotNull(dataStoreParams.get("camelCaseKey")); dataStoreParams.put("snake_case_key", "value2"); assertNotNull(dataStoreParams.get("snake_case_key")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
@Override public Logger getLogger() { return logger; } /** * Stores parsed data from response into result data. * Processes HTML content using XPath expressions and handles robots tags. * * @param responseData the response data from crawling * @param resultData the result data to store processed information */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
docs/en/docs/contributing.md
``` </div> ### Docs Structure The documentation uses <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>. And there are extra tools/scripts in place to handle translations in `./scripts/docs.py`. /// tip You don't need to see the code in `./scripts/docs.py`, you just use it in the command line. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
import jcifs.NetbiosName; /** * This class represents a NetBIOS over TCP/IP address. Under normal * conditions, users of jCIFS need not be concerned with this class as * name resolution and session services are handled internally by the smb package. * * * * Applications can use the methods <code>getLocalHost</code>, * <code>getByName</code>, and * <code>getAllByAddress</code> to create a new NbtAddress instance. This
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
import org.opensearch.search.SearchHit; import org.opensearch.search.sort.SortOrder; import org.opensearch.transport.client.Client; /** * SuggestRequest is a class that handles the request for suggestions. * It extends the Request class with a SuggestResponse type. * * <p>This class provides various methods to set parameters for the suggestion request,
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
} public void test_highlightedFields_withNull() { queryFieldConfig.highlightedFields = null; // When highlightedFields is null, the method should handle it gracefully // or throw an exception. Test the actual behavior. queryFieldConfig.highlightedFields(stream -> { // If it doesn't throw NPE, it should provide an empty stream
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
public class RelatedContentHelper extends AbstractConfigHelper { /** * Default constructor for RelatedContentHelper. * The constructor does not perform any initialization logic as the actual * initialization is handled by the {@link #init()} method annotated with * {@code @PostConstruct}. */ public RelatedContentHelper() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0)