- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 435 for initials (0.04 sec)
-
docs/features/interceptors.md
.header("User-Agent", "OkHttp Example") .build(); Response response = client.newCall(request).execute(); response.body().close(); ``` When we run this code, the interceptor runs twice. Once for the initial request to `http://www.publicobject.com/helloworld.txt`, and another for the redirect to `https://publicobject.com/helloworld.txt`. ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
void testDfsReferralData() throws Exception { String url = "smb://server/share/path/"; DummySmbResourceLocator loc = new DummySmbResourceLocator(url); // Initially no DFS referral assertNull(loc.getDfsReferral()); // Set and retrieve DFS referral loc.setDfsReferral(dfs); assertSame(dfs, loc.getDfsReferral()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
/** Small helper to create a byte buffer larger than the maximum expected * wire format so that we can observe only the bytes written by a method. */ private static byte[] newBuffer(int length) { // initialise with distinct pattern to detect unused trailing bytes byte[] buf = new byte[length]; Arrays.fill(buf, (byte) 0xFF); return buf; } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
this.channelId = channelId; this.failureTime = System.currentTimeMillis(); this.retryCount = 0; this.nextRetryTime = failureTime + 1000; // Initial 1 second delay } /** * Get channel ID * * @return channel identifier */ public String getChannelId() { return channelId;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestWithPathTest.java
assertEquals("server.example.com", testImplementation.getServer()); } @Test @DisplayName("Test resolve in DFS flag toggles") void testResolveInDfsToggle() { // Initial state should be false assertFalse(testImplementation.isResolveInDfs()); // Toggle to true testImplementation.setResolveInDfs(true); assertTrue(testImplementation.isResolveInDfs());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
} /** * Returns the contents read from the reader as a string. * * @param reader * the reader * @param initialCapacity * the initial buffer capacity * @return the string read from the reader */ protected static String read(final Reader reader, final int initialCapacity) { int bufferSize;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
// Search Execute // ============== /** * Displays the initial duplicate host management page. * * @param form the search form * @return HTML response for the duplicate host list page */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java
assertTrue(it.hasNext()); assertEquals("x", it.next().getName()); } @Test @DisplayName("Empty initial results with end-of-search -> closes immediately") void emptyInitialResultsEndOfSearchCloses() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbCopyUtilTest.java
// Act + Assert (no exception expected) assertDoesNotThrow(() -> SmbCopyUtil.copyFile(src, dest, buffers, 1, new WriterThread(), sh, dh)); // Verify that server-side path engaged at least the initial opens verify(src, times(1)).openUnshared(anyInt(), anyInt(), anyInt(), anyInt(), anyInt()); verify(dest, times(1)).openUnshared(anyInt(), anyInt(), anyInt(), anyInt(), anyInt()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
*/ public DataConfigPager() { // Default constructor with explicit documentation } /** * Clears all paging state and search/filter parameters. * Resets the pager to its initial state with default values. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0)