Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for 3902 (0.03 seconds)

  1. internal/s3select/csv/testdata/testdata.zip

    side Heights,3802,1582,223.01,1,Manhattan,022301,1022301,E,MN06,Manhattanville,3802^3389520,2,2014-03-06 01:03:05,2014-03-06 01:04:14,N,1,-73.953048706054688,40.810993194580078,-73.957771301269531,40.811466217041016,1,0.39,3,0.5,0.5,0,0,,,4,1,1,166,166,green,0.00,3.9,0.0,31,16,8.50,1312,209.01,1,Manhattan,020901,1020901,E,MN09,Morningside Heights,3802,1325,211,1,Manhattan,021100,1021100,E,MN09,Morningside Heights,3802^3389521,2,2014-03-06 14:10:31,2014-03-06 14:28:06,N,1,-73.953041076660156,40.8...
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

          MockResponse(
            code = 302,
            headers = headersOf("Location", "/b"),
            body = "A",
          ),
        )
        server.enqueue(MockResponse(body = "B"))
        client =
          client
            .newBuilder()
            .followRedirects(false)
            .build()
        executeSynchronously("/a")
          .assertBody("A")
          .assertCode(302)
      }
    
      @Test
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Nov 04 19:13:52 GMT 2025
    - 147.4K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Oct 03 17:41:45 GMT 2025
    - 116.8K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        val redirectUrl = "http://host\u0000/"
        server.enqueue(
          MockResponse
            .Builder()
            .code(302)
            .addHeaderLenient("Location", redirectUrl)
            .build(),
        )
        val response = getResponse(newRequest("/"))
        assertThat(response.code).isEqualTo(302)
        assertThat(response.header("Location")).isEqualTo(redirectUrl)
      }
    
      @Test
      fun urlWithBadAsciiHost() {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Jun 21 20:36:35 GMT 2025
    - 133.2K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                                    // Add lease context to create request
                                    if (h.isSMB30()) {
                                        // Use Lease V2 for SMB 3.0.2+
                                        req.addLeaseV2Context(leaseKey, requestedState, null, 0);
                                    } else {
                                        // Use Lease V1 for SMB 3.0
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 103.2K bytes
    - Click Count (0)
Back to Top