Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,729 for bytesB (0.11 sec)

  1. pkg/proxy/util/linebuffer.go

    // WriteBytes is part of LineBuffer
    func (buf *realLineBuffer) WriteBytes(bytes []byte) {
    	buf.b.Write(bytes)
    	buf.b.WriteByte('\n')
    	buf.lines++
    }
    
    // Reset is part of LineBuffer
    func (buf *realLineBuffer) Reset() {
    	buf.b.Reset()
    	buf.lines = 0
    }
    
    // Bytes is part of LineBuffer
    func (buf *realLineBuffer) Bytes() []byte {
    	return buf.b.Bytes()
    }
    
    // String is part of LineBuffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    	// Specification of the migration.
    	// +optional
    	Spec StorageVersionMigrationSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    	// Status of the migration.
    	// +optional
    	Status StorageVersionMigrationStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // Spec of the storage version migration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/doclink7.txt

    -- input --
    You see more [*bytes.Buffer] than [bytes.Buffer].
    -- markdown --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:42 UTC 2022
    - 158 bytes
    - Viewed (0)
  4. pkg/proxy/util/nfacct/nfacct_linux.go

    //   - length [2 bytes]
    //     length includes bytes for defining the length itself, bytes for defining the type,
    //     and the actual bytes of data without any padding.
    //   - type [2 bytes]
    //   - data [variable-sized]
    //   - padding [optional]
    //
    // Example. Counter{Name: "dummy-metric", Packets: 123, Bytes: 54321} in netlink message:
    //
    //	struct nfgenmsg{
    //	    __u8  nfgen_family: AF_NETLINK
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.pyi

        quantization_options_serialized: bytes,
        *,
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(quantize_ptq_static_range)
    def quantize_ptq_static_range(
        src_saved_model_path: str,
        dst_saved_model_path: str,
        quantization_options_serialized: bytes,
        *,
        signature_keys: list[str],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/PrimitiveSink.java

       * {@code bytes[off + len - 1]} is the last.
       *
       * @param bytes a byte array
       * @param off the start offset in the array
       * @param len the number of bytes to write
       * @return this instance
       * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > bytes.length} or
       *     {@code len < 0}
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/io_options.go

    // DEPRECATED: use genericiooptions.NewTestIOStreams
    func NewTestIOStreams() (genericiooptions.IOStreams, *bytes.Buffer, *bytes.Buffer, *bytes.Buffer) {
    	in := &bytes.Buffer{}
    	out := &bytes.Buffer{}
    	errOut := &bytes.Buffer{}
    
    	return IOStreams{
    		In:     in,
    		Out:    out,
    		ErrOut: errOut,
    	}, in, out, errOut
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/testFixtures/groovy/org/gradle/internal/serialize/SerializerSpec.groovy

        }
    
        <T> T fromBytes(byte[] bytes, Serializer<T> serializer) {
            return serializer.read(getDecoder().newInstance(new ByteArrayInputStream(bytes)))
        }
    
        <T> byte[] toBytes(T value, Serializer<T> serializer) {
            def bytes = new ByteArrayOutputStream()
            def encoder = getEncoder().newInstance(bytes)
            serializer.write(encoder, value)
            encoder.flush()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. test/codegen/maps.go

    }
    
    func LookupStringConversionNestedLit(m map[[1]struct{ s [1]string }]int, bytes []byte) int {
    	// amd64:-`.*runtime\.slicebytetostring\(`
    	return m[[1]struct{ s [1]string }{struct{ s [1]string }{s: [1]string{string(bytes)}}}]
    }
    
    func LookupStringConversionKeyedArrayLit(m map[[2]string]int, bytes []byte) int {
    	// amd64:-`.*runtime\.slicebytetostring\(`
    	return m[[2]string{0: string(bytes)}]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/nistec_test.go

    	fatalIfErr(t, err)
    
    	if !bytes.Equal(p1.Bytes(), p2.Bytes()) {
    		t.Error("P+P != 2*P")
    	}
    	if !bytes.Equal(p1.Bytes(), p3.Bytes()) {
    		t.Error("P+P != [2]P")
    	}
    	if !bytes.Equal(p1.Bytes(), p4.Bytes()) {
    		t.Error("G+G != [2]G")
    	}
    	if !bytes.Equal(p1.Bytes(), p5.Bytes()) {
    		t.Error("P+P != [N+2]P")
    	}
    	if !bytes.Equal(p1.Bytes(), p6.Bytes()) {
    		t.Error("G+G != [N+2]G")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top