- Sort Score
- Num 10 results
- Language All
Results 1041 - 1050 of 1,248 for _input_ (0.58 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/ImmutableRangeMap.java
private static final ImmutableRangeMap<Comparable<?>, Object> EMPTY = new ImmutableRangeMap<>(ImmutableList.of(), ImmutableList.of()); /** * Returns a {@code Collector} that accumulates the input elements into a new {@code * ImmutableRangeMap}. As in {@link Builder}, overlapping ranges are not permitted. * * @since 33.2.0 (available since 23.1 in guava-jre) */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 14.4K bytes - Click Count (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
} @Test @DisplayName("Available returns underlying stream available when no message buffered") void availableReturnsUnderlyingWhenNoMessage() throws IOException { // Mock input stream that reports available bytes InputStream mockIn = mock(InputStream.class); when(mockIn.available()).thenReturn(42); SocketInputStream sis = new SocketInputStream(mockIn);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/handling-errors.md
"msg": "value is not a valid integer", "type": "type_error.integer" } ] } ``` 你將會改而得到文字版: ``` Validation errors: Field: ('path', 'item_id'), Error: Input should be a valid integer, unable to parse string as an integer ``` ### 覆寫 `HTTPException` 的錯誤處理器 { #override-the-httpexception-error-handler } 同樣地,你也可以覆寫 `HTTPException` 的處理器。 例如,你可能想在這些錯誤時回傳純文字而非 JSON:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java
this.from = from; SortedMap<K, V> emptyMap = delegate.create(); this.entryComparator = entryComparator(emptyMap.comparator()); // derive values for inclusive filtering from the input samples SampleElements<Entry<K, V>> samples = delegate.samples(); List<Entry<K, V>> samplesList = asList(samples.e0(), samples.e1(), samples.e2(), samples.e3(), samples.e4());Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 30 16:59:10 GMT 2025 - 18.2K bytes - Click Count (0) -
src/test/java/jcifs/smb/SIDTest.java
assertTrue(ex.getMessage().contains("domain sid")); } @Test @DisplayName("Static toByteArray null input throws NPE") void testStaticToByteArrayNull() { assertThrows(NullPointerException.class, () -> SID.toByteArray(null)); } } @Nested @DisplayName("Tests requiring mocks")
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
// Test with empty path request = new Smb2CreateRequest(mockConfig, ""); assertEquals("\\", request.getPath()); } @Test @DisplayName("Test setPath with various input formats") void testSetPath() { request = new Smb2CreateRequest(mockConfig, ""); // Test normal path request.setPath("test\\file.txt");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 18.6K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
/** * Decodes a multiline string that contains both a [certificate][certificatePem] and a * [private key][privateKeyPkcs8Pem], both [PEM-encoded][rfc_7468]. A typical input string looks * like this: * * ``` * -----BEGIN CERTIFICATE----- * MIIBYTCCAQegAwIBAgIBKjAKBggqhkjOPQQDAjApMRQwEgYDVQQLEwtlbmdpbmVlCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 21.6K bytes - Click Count (0) -
docs/ko/docs/async.md
이 "다른 무언가를 기다리는 것"은 일반적으로 프로세서와 RAM 메모리 속도에 비해 상대적으로 "느린" <abbr title="Input and Output - 입력/출력">I/O</abbr> 작업을 의미합니다. 예를 들어 다음을 기다리는 것입니다: * 네트워크를 통해 클라이언트가 데이터를 보내는 것 * 네트워크를 통해 클라이언트가 여러분의 프로그램이 보낸 데이터를 받는 것 * 시스템이 디스크의 파일 내용을 읽어서 프로그램에 전달하는 것 * 프로그램이 시스템에 전달한 내용을 디스크에 쓰는 것 * 원격 API 작업 * 데이터베이스 작업이 완료되는 것 * 데이터베이스 쿼리가 결과를 반환하는 것 * 기타 등등
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 27.5K bytes - Click Count (0) -
docs/ja/docs/async.md
この「別の何かを待つ」は、通常 <abbr title="Input and Output - 入出力">I/O</abbr> 操作を指し、(プロセッサや RAM の速度に比べて) 相対的に「遅い」待機を伴います。例えば次のようなものです: * クライアントからネットワーク経由でデータが送られてくるのを待つ * プログラムが送信したデータをクライアントがネットワーク経由で受け取るのを待つ * ディスク上のファイル内容がシステムにより読み取られ、プログラムに渡されるのを待つ * プログラムがシステムに渡した内容がディスクに書き込まれるのを待つ * リモート API 操作 * データベース操作の完了 * データベースクエリが結果を返すのを待つ * など
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 27.9K bytes - Click Count (0) -
cmd/bucket-handlers.go
if _, ok := objectsToDelete[object]; !ok { objectsToDelete[object] = index } } toNames := func(input map[ObjectToDelete]int) (output []ObjectToDelete) { output = make([]ObjectToDelete, len(input)) idx := 0 for obj := range input { output[idx] = obj idx++ } return output } // Disable timeouts and cancellation ctx = bgContext(ctx)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 63.9K bytes - Click Count (0)