Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for 23 (0.01 sec)

  1. api/go1.23.txt

    Damien Neil <******@****.***> 1719248507 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Jun 25 17:08:08 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/SetViewTest.java

        assertThat(union(newHashSet(1, 2), newHashSet(2, 3)).immutableCopy()).containsExactly(1, 2, 3);
        assertThat(intersection(newHashSet(1, 2), newHashSet(2, 3)).immutableCopy()).containsExactly(2);
        assertThat(difference(newHashSet(1, 2), newHashSet(2, 3)).immutableCopy()).containsExactly(1);
        assertThat(symmetricDifference(newHashSet(1, 2), newHashSet(2, 3)).immutableCopy())
            .containsExactly(1, 3);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.tailSet(1)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(2)).containsExactly(2, 3).inOrder();
        assertThat(set.tailSet(3)).containsExactly(3).inOrder();
        assertThat(set.tailSet(Integer.MIN_VALUE, false)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(1, false)).containsExactly(2, 3).inOrder();
        assertThat(set.tailSet(2, false)).containsExactly(3).inOrder();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

            // Verify parameter count (4 bytes at position 19)
            assertEquals(50, SMBUtil.readInt4(dst, 19));
    
            // Verify parameter offset (4 bytes at position 23)
            assertEquals(80, SMBUtil.readInt4(dst, 23));
    
            // Verify data count (4 bytes at position 27)
            assertEquals(150, SMBUtil.readInt4(dst, 27));
    
            // Verify data offset (4 bytes at position 31)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

            // parameterDisplacement (4 bytes)
            SMBUtil.writeInt4(0, buffer, bufferIndex + 19);
    
            // dataCount (4 bytes)
            SMBUtil.writeInt4(200, buffer, bufferIndex + 23);
    
            // dataOffset (4 bytes)
            SMBUtil.writeInt4(128, buffer, bufferIndex + 27);
    
            // dataDisplacement (4 bytes)
            SMBUtil.writeInt4(0, buffer, bufferIndex + 31);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt

            .host("host")
            .addPathSegment("=[]:;\"~|?#@^/$%*")
            .build()
        assertThat(url.toString())
          .isEqualTo("http://host/=[]:;%22~%7C%3F%23@%5E%2F$%25*")
        assertThat(url.toUri().toString())
          .isEqualTo("http://host/=%5B%5D:;%22~%7C%3F%23@%5E%2F$%25*")
      }
    
      @Test
      fun toUriQueryParameterNameSpecialCharacters() {
        val url =
          HttpUrl
            .Builder()
            .scheme("http")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.tailSet(1)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(2)).containsExactly(2, 3).inOrder();
        assertThat(set.tailSet(3)).containsExactly(3).inOrder();
        assertThat(set.tailSet(Integer.MIN_VALUE, false)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.tailSet(1, false)).containsExactly(2, 3).inOrder();
        assertThat(set.tailSet(2, false)).containsExactly(3).inOrder();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_2x.md

        TLS_DHE_RSA_WITH_AES_128_CBC_SHA         2.3
        TLS_DHE_DSS_WITH_AES_128_CBC_SHA         2.3
        TLS_DHE_RSA_WITH_AES_256_CBC_SHA         2.3
        TLS_RSA_WITH_AES_128_GCM_SHA256          5.0
        TLS_RSA_WITH_AES_128_CBC_SHA             2.3
        TLS_RSA_WITH_AES_256_CBC_SHA             2.3
        SSL_RSA_WITH_3DES_EDE_CBC_SHA            2.3  (Deprecated in 5.0)
        SSL_RSA_WITH_RC4_128_SHA                 2.3
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

            for (int i = 0; i < 128; i++) {
                buffer[offset + i] = 0;
            }
    
            if (ipv6) {
                // IPv6 sockaddr_in6 structure (Windows AF_INET6 = 23)
                SMBUtil.writeInt2(23, buffer, offset); // sa_family: AF_INET6
                SMBUtil.writeInt2(445, buffer, offset + 2); // sin6_port
                SMBUtil.writeInt4(0, buffer, offset + 4); // sin6_flowinfo
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses_test.go

    		{
    			"...",
    			endpointSet{},
    			false,
    		},
    		// No range specified.
    		{
    			"{...}",
    			endpointSet{},
    			false,
    		},
    		// Invalid range.
    		{
    			"http://minio{2...3}/export/set{1...0}",
    			endpointSet{},
    			false,
    		},
    		// Range cannot be smaller than 4 minimum.
    		{
    			"/export{1..2}",
    			endpointSet{},
    			false,
    		},
    		// Unsupported characters.
    		{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top