Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,009 for bytesB (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// IP address of the host to which the carp is assigned. Empty if not yet scheduled.
    	// +optional
    	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
    	// IP address allocated to the carp. Routable at least within the cluster.
    	// Empty if not yet allocated.
    	// +optional
    	CarpIP string `json:"carpIP,omitempty" protobuf:"bytes,6,opt,name=carpIP"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/internal/zstd/xxhash_test.go

    	for _, test := range xxHashTests {
    		f.Add([]byte(test.data))
    	}
    	f.Add(bytes.Repeat([]byte("abcdefghijklmnop"), 256))
    	var buf bytes.Buffer
    	for i := 0; i < 256; i++ {
    		buf.WriteByte(byte(i))
    	}
    	f.Add(bytes.Repeat(buf.Bytes(), 64))
    	f.Add(bigData(f))
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		cmd := exec.Command(xxhsum, "-H64")
    		cmd.Stdin = bytes.NewReader(b)
    		var hhsumHash bytes.Buffer
    		cmd.Stdout = &hhsumHash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:34:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.pyi

        quantization_config_serialized: bytes,
        *,
        signature_keys: list[str],
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(populate_default_configs)
    def populate_default_configs(
        user_provided_quantization_config_serialized: bytes,
    ) -> bytes: ...  # QuantizationConfig
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericiooptions/io_options.go

    func NewTestIOStreams() (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
    }
    
    // NewTestIOStreamsDiscard returns a valid IOStreams that just discards
    func NewTestIOStreamsDiscard() IOStreams {
    	in := &bytes.Buffer{}
    	return IOStreams{
    		In:     in,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_ordinv_test.go

    	input := make([]byte, 32)
    	N.FillBytes(input)
    	out, err = nistec.P256OrdInverse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(out, zero) {
    		t.Error("unexpected output for inv(N)")
    	}
    	if !bytes.Equal(input, N.Bytes()) {
    		t.Error("input was modified")
    	}
    
    	// Check inv(1) and inv(N+1) against math/big
    	exp := new(big.Int).ModInverse(big.NewInt(1), N).FillBytes(make([]byte, 32))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/framer/framer_test.go

    	if n, err := r.Read(buf); err != io.ErrShortBuffer && n != 1 && bytes.Equal(buf, []byte{0x01}) {
    		t.Fatalf("unexpected: %v %d %v", err, n, buf)
    	}
    	if n, err := r.Read(buf); err != io.ErrShortBuffer && n != 1 && bytes.Equal(buf, []byte{0x02}) {
    		t.Fatalf("unexpected: %v %d %v", err, n, buf)
    	}
    	// read the remaining frame
    	buf = make([]byte, 2)
    	if n, err := r.Read(buf); err != nil && n != 2 && bytes.Equal(buf, []byte{0x03, 0x04}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/DefaultMemoryManagerTest.groovy

            def windowsMemoryInfo = new TestWindowsOsMemoryInfo()
            windowsMemoryInfo.totalMemory =  MemoryAmount.of('8g').bytes
            windowsMemoryInfo.freeMemory =  MemoryAmount.of('7g').bytes
            windowsMemoryInfo.totalVirtual =  MemoryAmount.of('12g').bytes
            windowsMemoryInfo.freeVirtual =  MemoryAmount.of('6g').bytes
            def memoryManager = newMemoryManager(windowsMemoryInfo)
    
            and:
            def holder = Mock(MemoryHolder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// StringSliceValue is an array of strings.
    	StringSliceValue *NamedResourcesStringSlice `json:"stringSlice,omitempty" protobuf:"bytes,9,rep,name=stringSlice"`
    	// VersionValue is a semantic version according to semver.org spec 2.0.0.
    	VersionValue *string `json:"version,omitempty" protobuf:"bytes,10,opt,name=version"`
    }
    
    // NamedResourcesIntSlice contains a slice of 64-bit integers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. internal/config/cache/remote_gen_test.go

    import (
    	"bytes"
    	"testing"
    
    	"github.com/tinylib/msgp/msgp"
    )
    
    func TestMarshalUnmarshalCondCheck(t *testing.T) {
    	v := CondCheck{}
    	bts, err := v.MarshalMsg(nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	left, err := v.UnmarshalMsg(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1beta1/types.go

    	metav1.ObjectMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`
    
    	// eventTime is the time when this Event was first observed. It is required.
    	EventTime metav1.MicroTime `json:"eventTime" protobuf:"bytes,2,opt,name=eventTime"`
    
    	// series is data about the Event series this event represents or nil if it's a singleton Event.
    	// +optional
    	Series *EventSeries `json:"series,omitempty" protobuf:"bytes,3,opt,name=series"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 11:06:50 UTC 2021
    - 6.1K bytes
    - Viewed (0)
Back to top