Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,758 for bytesB (0.4 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. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	// Kind is the type of resource being referenced
    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Name is the name of resource being referenced
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	APIGroup string `json:"apiGroup" protobuf:"bytes,1,opt,name=apiGroup"`
    	// Kind is the type of resource being referenced
    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Name is the name of resource being referenced
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. 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)
  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/api/core/v1/types.go

    	// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
    	// +optional
    	AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,18,opt,name=azureFile"`
    	// configMap represents a configMap that should populate this volume
    	// +optional
    	ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty" protobuf:"bytes,19,opt,name=configMap"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types.go

    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec holds information about the request being evaluated
    	Spec TokenReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the server and indicates whether the request can be authenticated.
    	// +optional
    	Status TokenReviewStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. internal/ringbuffer/ring_buffer_test.go

    	}
    	buf := make([]byte, 5)
    	rb.Read(buf)
    	if rb.Length() != 3 {
    		t.Fatalf("expect len 3 bytes but got %d. r.w=%d, r.r=%d", rb.Length(), rb.w, rb.r)
    	}
    	rb.Write([]byte(strings.Repeat("abcd", 15)))
    
    	if !bytes.Equal(rb.Bytes(nil), []byte("bcd"+strings.Repeat("abcd", 15))) {
    		t.Fatalf("expect 63 ... but got %s. r.w=%d, r.r=%d", rb.Bytes(nil), rb.w, rb.r)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top