- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 810 for indirectly (0.07 sec)
-
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
testBlock.setUseUnicode(true); // Test reading Unicode string with alignment byte[] buffer = new byte[100]; // Write "Test" in UTF-16LE directly at position 2 (even offset) System.arraycopy(Strings.getUNIBytes("Test\0"), 0, buffer, 2, 10); String result = testBlock.readString(buffer, 2); assertEquals("Test", result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
allTasks.add(setFutureCompleteExceptionallyRunnable); allTasks.add(setFutureCancelRunnable); for (int k = 0; k < 50; k++) { // For each listener we add a task that submits it to the executor directly for the blocking // get use case and another task that adds it as a listener to the future to exercise both // racing addListener calls and addListener calls completing after the future completes.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
}; ComponentUtil.register(factory, "webApiManagerFactory"); // Execute webApiFilter.doFilter(request, response, chain); // Verify manager was called and chain was not called directly assertTrue(managerCalled.get()); assertFalse(chainCalled.get()); } // Test doFilter with ServletRequest and ServletResponse (not HTTP variants)Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Suppliers.java
* delegating calls until it returns valid data. * * <p>If {@code delegate} is an instance created by an earlier call to {@code memoize}, it is * returned directly. */ public static <T extends @Nullable Object> Supplier<T> memoize(Supplier<T> delegate) { if (delegate instanceof NonSerializableMemoizingSupplier || delegate instanceof MemoizingSupplier) {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
docs/em/docs/tutorial/response-model.md
## đ đ¨ đ â đ¤ 5ī¸âŖđ đŧ đâ đ đ¨ đŗ đ đĢ â Pydantic đ & đ â âĢī¸ đĸ, đ´ đ¤ đâđĻē đ đ (đ¨âđ¨, â, âī¸). ### đ¨ đ¨ đ đ â đŧ đ [đŦ đ¨ đ đŦ âĒ đ§ đŠē](../advanced/response-directly.md){.internal-link target=_blank}. {* ../../docs_src/response_model/tutorial003_02.py hl[8,10:11] *} đ đ đŧ đĩ đ FastAPI âŠī¸ đ¨ đ â đ (âī¸ đŋ) `Response`.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.2K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
//// tab | Pydantic v2 {* ../../docs_src/settings/tutorial001.py hl[2,5:8,11] *} //// //// tab | Pydantic v1 /// info In Pydantic v1 you would import `BaseSettings` directly from `pydantic` instead of from `pydantic_settings`. /// {* ../../docs_src/settings/tutorial001_pv1.py hl[2,5:8,11] *} //// /// tipRegistered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
System.arraycopy(buffer, securityBufferOffset, actualToken, 0, token.length); assertArrayEquals(token, actualToken); } @Test @DisplayName("Should test writeBytesWireFormat directly") void testWriteBytesWireFormatDirect() throws Exception { // Given byte[] buffer = new byte[512]; int offset = 100; // First encode to set headerStart
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
cmd/xl-storage-disk-id-check.go
d.tracker.logSuccess() } return n, err } // diskHealthReader provides a wrapper that will update disk health on // ctx, on every successful read. // This should only be used directly at the os/syscall level, // otherwise buffered operations may return false health checks. func diskHealthReader(ctx context.Context, r io.Reader) io.Reader { // Check if context has a disk health check.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 34.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
### Container Images All container images are available as manifest lists and support the described architectures. It is also possible to pull a specific architecture directly by adding the "-$ARCH" suffix to the container image name. name | architectures ---- | -------------
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java
sampleDataList.addAll(misses); Collections.shuffle(sampleDataList); sampleData = sampleDataList.toArray(new String[sampleDataList.size()]); } // Since we can't pass a concrete SomeEnum.class directly, we need to use a raw type. @SuppressWarnings("unchecked") @Benchmark boolean getIfPresent(int repetitions) { boolean retVal = false; for (int i = 0; i < repetitions; ++i) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 29.4K bytes - Viewed (0)