Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 408 (0.01 sec)

  1. src/test/java/jcifs/smb1/smb1/NetShareEnumResponseTest.java

            data[36] = 60;
            data[37] = 0;
            data[38] = 0;
            data[39] = 0; // remark offset
    
            // Remarks data
            System.arraycopy("Remark 1".getBytes(StandardCharsets.US_ASCII), 0, data, 40, 8);
            System.arraycopy("Inter-Process Communication".getBytes(StandardCharsets.US_ASCII), 0, data, 60, 27);
    
            int bytesRead = response.readDataWireFormat(data, 0, data.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

        val response = client.newCall(request).execute()
        assertThat(response.code).isEqualTo(408)
        assertThat(response.body.string()).isEqualTo("You took too long!")
      }
    
      @Test
      fun maxClientRequestTimeoutRetries() {
        server.enqueue(
          MockResponse
            .Builder()
            .code(408)
            .addHeader("Connection", "Close")
            .body("You took too long!")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java

                bb.putShort((short) 3); // rflags
                bb.put("\\srv2\0".getBytes(StandardCharsets.UTF_16LE));
    
                // Position for third referral
                bb.position(40); // 8 header + 16 + 16
    
                // Third Referral v1
                bb.putShort((short) 1); // version
                bb.putShort((short) 16); // size
                bb.putShort((short) 2); // serverType
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. .teamcity/performance-test-durations.json

      "scenario" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.assemble for abi change with configuration caching",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 408,
        "windows" : 773,
        "macOs" : 250
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.assemble for non-abi change",
      "durations" : [ {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Sep 08 06:58:31 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        if (responseCode == HttpURLConnection.HTTP_CLIENT_TIMEOUT) {
          // 408's are a bit of an outlier because we may repeat the request if we encounter this
          // response code. In this scenario, there are 2 responses: the initial 408 and then the 200
          // because of the retry. We just want to ensure the initial 408 isn't cached.
          expectedResponseCode = 200
          server.enqueue(
            MockResponse
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
Back to top