Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,622 for bytesB (0.14 sec)

  1. docs/metrics/v3.md

    | `minio_cluster_health_capacity_raw_free_bytes`     | `gauge` | Total cluster raw storage free in bytes        |        |
    | `minio_cluster_health_capacity_usable_total_bytes` | `gauge` | Total cluster usable storage capacity in bytes |        |
    | `minio_cluster_health_capacity_usable_free_bytes`  | `gauge` | Total cluster usable storage free in bytes     |        |
    
    ### `/cluster/config`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  2. src/go/printer/printer_test.go

    		indent := indent
    		t.Run(fmt.Sprint(indent), func(t *testing.T) {
    			t.Parallel()
    			var buf bytes.Buffer
    			(&Config{Tabwidth: tabwidth, Indent: indent}).Fprint(&buf, fset, file)
    			// all code must be indented by at least 'indent' tabs
    			lines := bytes.Split(buf.Bytes(), []byte{'\n'})
    			for i, line := range lines {
    				if len(line) == 0 {
    					continue // empty lines don't have indentation
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// +optional
    	CABundle []byte `json:"caBundle,omitempty" protobuf:"bytes,2,opt,name=caBundle"`
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// `namespace` is the namespace of the service.
    	// Required
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    	// `name` is the name of the service.
    	// Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// +optional
    	CABundle []byte `json:"caBundle,omitempty" protobuf:"bytes,2,opt,name=caBundle"`
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// `namespace` is the namespace of the service.
    	// Required
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    	// `name` is the name of the service.
    	// Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/scheduling/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// value represents the integer value of this priority class. This is the actual priority that pods
    	// receive when they have the name of this class in their pod spec.
    	Value int32 `json:"value" protobuf:"bytes,2,opt,name=value"`
    
    	// globalDefault specifies whether this PriorityClass should be considered as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedCodecTest.groovy

        def "can encode and skip empty byte stream"() {
            when:
            def bytes = encode { Encoder encoder ->
                encoder.encodeChunked {}
                encoder.writeString("done")
            }
    
            then:
            decode(bytes) { Decoder decoder ->
                decoder.skipChunked()
                assert decoder.readString() == "done"
            }
        }
    
        def "can encode and decode byte stream"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

      }
    
      // Constructs a `bytes` object by serializing `src`.
      static handle cast(ProtoT&& src, return_value_policy policy, handle parent) {
        // release() prevents the reference count from decreasing upon the
        // destruction of py::bytes and returns a raw python object handle.
        return py::bytes(Serialize(src)).release();
      }
    
      // Constructs a `bytes` object by serializing `src`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonExpirationTest.groovy

                        getCommittedMemory() >> {
                            if (reportsMemoryUsage) {
                                return MemoryAmount.of(forkOptions.javaForkOptions.maxHeapSize).bytes
                            } else {
                                throw new IllegalStateException()
                            }
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/compress/lzw/reader_test.go

    	//
    	// The 'z' bit is unused.
    	in := make([]byte, 5406)
    	in = append(in, 0x80, 0xff, 0x0f, 0x08)
    
    	r := NewReader(bytes.NewReader(in), LSB, 8)
    	nDecoded, err := io.Copy(io.Discard, r)
    	if err != nil {
    		t.Fatalf("Copy: %v", err)
    	}
    	// nDecoded should be 3841: 3839 literal codes and then 2 decoded bytes
    	// from 1 non-literal code. The EOF code contributes 0 decoded bytes.
    	if nDecoded != int64(nCodes+2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/image/gif/reader_test.go

    // lzwEncode returns an LZW encoding (with 2-bit literals) of in.
    func lzwEncode(in []byte) []byte {
    	b := &bytes.Buffer{}
    	w := lzw.NewWriter(b, lzw.LSB, 2)
    	if _, err := w.Write(in); err != nil {
    		panic(err)
    	}
    	if err := w.Close(); err != nil {
    		panic(err)
    	}
    	return b.Bytes()
    }
    
    func TestDecode(t *testing.T) {
    	// extra contains superfluous bytes to inject into the GIF, either at the end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top