Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,622 for bytesB (0.17 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataAmount.java

        public static Amount<DataAmount> bytes(BigDecimal value) {
            return Amount.valueOf(value, BYTES);
        }
    
        public static Amount<DataAmount> kbytes(BigDecimal value) {
            return Amount.valueOf(value, KILO_BYTES);
        }
    
        public static Amount<DataAmount> mbytes(BigDecimal value) {
            return Amount.valueOf(value, MEGA_BYTES);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. cmd/metrics-v3-replication.go

    	qt := qs.QStats
    	m.Set(replicationAverageQueuedBytes, float64(qt.Avg.Bytes))
    	m.Set(replicationAverageQueuedCount, float64(qt.Avg.Count))
    	m.Set(replicationMaxQueuedBytes, float64(qt.Max.Bytes))
    	m.Set(replicationMaxQueuedCount, float64(qt.Max.Count))
    	m.Set(replicationLastMinuteQueuedBytes, float64(qt.Curr.Bytes))
    	m.Set(replicationLastMinuteQueuedCount, float64(qt.Curr.Count))
    
    	qa := qs.ActiveWorkers
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/encoding/hex/hex_test.go

    		}
    
    		dumper.Close()
    		if !bytes.Equal(out.Bytes(), expectedHexDump) {
    			t.Errorf("stride: %d failed. got:\n%s\nwant:\n%s", stride, out.Bytes(), expectedHexDump)
    		}
    	}
    }
    
    func TestDumper_doubleclose(t *testing.T) {
    	var out strings.Builder
    	dumper := Dumper(&out)
    
    	dumper.Write([]byte(`gopher`))
    	dumper.Close()
    	dumper.Close()
    	dumper.Write([]byte(`gopher`))
    	dumper.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// +optional
    	v1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    	// items is the list of groups for discovery. The groups are listed in priority order.
    	Items []APIGroupDiscovery `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pkg/kube/apimirror/probe.go

    	// +optional
    	Host string `json:"host,omitempty" protobuf:"bytes,3,opt,name=host"`
    	// Scheme to use for connecting to the host.
    	// Defaults to HTTP.
    	// +optional
    	Scheme URIScheme `json:"scheme,omitempty" protobuf:"bytes,4,opt,name=scheme"`
    	// Custom headers to set in the request. HTTP allows repeated headers.
    	// +optional
    	HTTPHeaders []HTTPHeader `json:"httpHeaders,omitempty" protobuf:"bytes,5,rep,name=httpHeaders"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/ForwardInput.java

     * Carries some text that should be made available via the daemon's System.in
     */
    public class ForwardInput extends InputMessage {
        private final byte[] bytes;
    
        public ForwardInput(byte[] bytes) {
            this.bytes = bytes;
        }
    
        public byte[] getBytes() {
            return bytes;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 966 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// Required
    	// +unionDiscriminator
    	Kind SubjectKind `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    	// `user` matches based on username.
    	// +optional
    	User *UserSubject `json:"user,omitempty" protobuf:"bytes,2,opt,name=user"`
    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject `json:"group,omitempty" protobuf:"bytes,3,opt,name=group"`
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    			break
    		}
    		if bytes.Contains(line, []byte("Subnet Prefix:")) {
    			f := bytes.Split(line, []byte{':'})
    			if len(f) == 2 {
    				f = bytes.Split(f[1], []byte{'('})
    				if len(f) == 2 {
    					f = bytes.Split(f[0], []byte{'/'})
    					if len(f) == 2 {
    						subnetprefix = string(bytes.TrimSpace(f[1]))
    						if addr != "" && subnetprefix != "" {
    							addrs = append(addrs, addr+"/"+subnetprefix)
    						}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            }
    
            @Override
            public void putByte(byte b) {
                getDigest().update(b);
            }
    
            @Override
            public void putBytes(byte[] bytes) {
                getDigest().update(bytes);
            }
    
            @Override
            public void putBytes(byte[] bytes, int off, int len) {
                getDigest().update(bytes, off, len);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

         * Writes the given raw bytes to the stream. Does not encode any length information.
         */
        void writeBytes(byte[] bytes) throws IOException;
    
        /**
         * Writes the given raw bytes to the stream. Does not encode any length information.
         */
        void writeBytes(byte[] bytes, int offset, int count) throws IOException;
    
        /**
         * Writes the given byte array to the stream. Encodes the bytes and length information.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top