Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 164 (0.01 sec)

  1. cmd/endpoint-ellipses_test.go

    		// Same host cannot export same disk on two ports - special case localhost.
    		{":9001", []string{"http://localhost:900{1...2}/export{1...64}"}, false},
    		// Valid inputs.
    		{":9000", []string{"/export1"}, true},
    		{":9000", []string{"/export1", "/export2", "/export3", "/export4"}, true},
    		{":9000", []string{"/export1{1...64}"}, true},
    		{":9000", []string{"/export1{01...64}"}, true},
    		{":9000", []string{"/export1{1...32}", "/export1{33...64}"}, true},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt

        entry = hpackReader!!.dynamicTable[readerHeaderTableLength() - 1]!!
        checkEntry(entry, ":authority", "www.example.com", 57)
    
        // Table size: 164
        assertThat(hpackReader!!.dynamicTableByteCount).isEqualTo(164)
    
        // Decoded header list:
        assertThat(hpackReader!!.getAndResetHeaderList()).isEqualTo(
          headerEntries(
            ":method",
            "GET",
            ":scheme",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 38.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java

            SMBUtil.writeInt2(24, buffer, 10); // DataOffset
            SMBUtil.writeInt4(32, buffer, 12); // DataLength (standard lease only)
    
            // Write name
            System.arraycopy("DLse".getBytes(), 0, buffer, 16, 4);
    
            // Write lease key
            Smb2LeaseKey key = new Smb2LeaseKey();
            key.encode(buffer, 24);
    
            // Write lease state
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrFilterNamePrefix-159]
    	_ = x[ErrFilterNameSuffix-160]
    	_ = x[ErrFilterValueInvalid-161]
    	_ = x[ErrOverlappingConfigs-162]
    	_ = x[ErrUnsupportedNotification-163]
    	_ = x[ErrContentSHA256Mismatch-164]
    	_ = x[ErrContentChecksumMismatch-165]
    	_ = x[ErrStorageFull-166]
    	_ = x[ErrRequestBodyParse-167]
    	_ = x[ErrObjectExistsAsDirectory-168]
    	_ = x[ErrInvalidObjectName-169]
    	_ = x[ErrInvalidObjectNamePrefixSlash-170]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses.go

    	return ep, nil
    }
    
    // GetAllSets - parses all ellipses input arguments, expands them into
    // corresponding list of endpoints chunked evenly in accordance with a
    // specific set size.
    // For example: {1...64} is divided into 4 sets each of size 16.
    // This applies to even distributed setup syntax as well.
    func GetAllSets(setDriveCount uint64, args ...string) ([][]string, error) {
    	var setArgs [][]string
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

            System.arraycopy("file2".getBytes("UnicodeLittleUnmarked"), 0, buffer, notifyOffset + 12, 10);
    
            // Third notification at offset 164 (120 + 44)
            notifyOffset = 164;
            SMBUtil.writeInt4(0, buffer, notifyOffset); // NextEntryOffset (last)
            SMBUtil.writeInt4(3, buffer, notifyOffset + 4); // Action (MODIFIED)
            SMBUtil.writeInt4(10, buffer, notifyOffset + 8);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  7. cmd/server-main.go

    	CustomHelpTemplate: `NAME:
      {{.HelpName}} - {{.Usage}}
    
    USAGE:
      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR1 [DIR2..]
      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64}
      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} DIR{65...128}
    
    DIR:
      DIR points to a directory on a filesystem. When you want to combine
      multiple drives into a single large system, pass one directory per
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue May 27 15:18:36 UTC 2025
    - 35.9K bytes
    - Viewed (4)
  8. guava/src/com/google/common/net/InetAddresses.java

       */
      private static InetAddress fromBigInteger(BigInteger address, boolean isIpv6) {
        checkArgument(address.signum() >= 0, "BigInteger must be greater than or equal to 0");
    
        int numBytes = isIpv6 ? 16 : 4;
    
        byte[] addressBytes = address.toByteArray();
        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InetAddresses.java

       */
      private static InetAddress fromBigInteger(BigInteger address, boolean isIpv6) {
        checkArgument(address.signum() >= 0, "BigInteger must be greater than or equal to 0");
    
        int numBytes = isIpv6 ? 16 : 4;
    
        byte[] addressBytes = address.toByteArray();
        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
Back to top