Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,009 for bytesB (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. logger/sql_test.go

    	}{
    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
    			NumericRegexp: nil,
    			Vars:          []interface{}{"jinzhu", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// IP address of the host to which the pod is assigned. Empty if not yet scheduled.
    	// +optional
    	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
    	// IP address allocated to the pod. Routable at least within the cluster.
    	// Empty if not yet allocated.
    	// +optional
    	PodIP string `json:"podIP,omitempty" protobuf:"bytes,6,opt,name=podIP"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
    	// The reason for the condition's last transition.
    	// +required
    	Reason string `json:"reason" protobuf:"bytes,5,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	// +required
    	Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/splice_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			sb := runtime.NewSpliceBuffer()
    			buf := &bytes.Buffer{}
    			tt.run(sb, buf)
    
    			if sb.Bytes() == nil {
    				t.Errorf("Unexpected nil")
    			}
    			if string(sb.Bytes()) != string(buf.Bytes()) {
    				t.Errorf("Expected sb.Bytes() == %q, buf.Bytes() == %q", sb.Bytes(), buf.Bytes())
    			}
    		})
    
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top