Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for t1 (0.02 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

             */
    
            SmbTransport t1 = tree.session.transport;
            SmbTransport t2 = dest.tree.session.transport;
    
            if( t1.snd_buf_size < t2.snd_buf_size ) {
                t2.snd_buf_size = t1.snd_buf_size;
            } else {
                t1.snd_buf_size = t2.snd_buf_size;
            }
    
            bsize = Math.min( t1.rcv_buf_size - 70, t1.snd_buf_size - 70 );
            b = new byte[2][bsize];
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat((response1.receivedResponseAtMillis - t0).toDouble()).isCloseTo(0.0, 250.0)
    
        // A conditional cache hit updates the cache.
        Thread.sleep(500) // Make sure t0 and t1 are distinct.
        val t1 = System.currentTimeMillis()
        val response2 = get(server.url("/a"))
        assertThat(response2.code).isEqualTo(HttpURLConnection.HTTP_OK)
        assertThat(response2.body.string()).isEqualTo("A")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre>
    t.z          // t.z
    t.y          // t.T1.y
    t.x          // (*t.T0).x
    
    p.z          // (*p).z
    p.y          // (*p).T1.y
    p.x          // (*(*p).T0).x
    
    q.x          // (*(*q).T0).x        (*q).x is a valid field selector
    
    p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
    p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. cmd/testdata/decryptObjectInfo.json.zst

    -Server-Side-Encryption-Iv":"WOm6haLq+Jv7A3EBkB57gh3iqA+mIgYSKOdJZTG16Bc=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfANs3zFWGiQKmqMC4/UhBAL5U96mr9bqI2TQaJ/t1+DUiiKdPiCVuZWLtkK7HR==","X-Minio-Internal-Server-Side-Encryption-S3-Sealed-Key":"IAAfAO/20Eo+rVZtMbad3EVaUQM2Soqb/WJvgn9MGT7rs5ErqQGfG+o1PbTXcbhn5sLLok8fg==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-typ...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
Back to top