Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,344 for valid (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// This is required if ProxyProtocol is HTTPConnect or GRPC.
    	// +optional
    	Transport *Transport `json:"transport,omitempty"`
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. src/compress/flate/flate_test.go

    	}
    	if h.init(incomplete) {
    		t.Fatal("Should reject incomplete bit-length set")
    	}
    }
    
    func TestStreams(t *testing.T) {
    	// To verify any of these hexstrings as valid or invalid flate streams
    	// according to the C zlib library, you can use the Python wrapper library:
    	// >>> hex_string = "010100feff11"
    	// >>> import zlib
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  3. src/unicode/utf8/utf8_test.go

    	s := []byte("0123456789")
    	for i := 0; i < b.N; i++ {
    		Valid(s)
    	}
    }
    
    func BenchmarkValid100KASCIIChars(b *testing.B) {
    	s := []byte(ascii100000)
    	for i := 0; i < b.N; i++ {
    		Valid(s)
    	}
    }
    
    func BenchmarkValidTenJapaneseChars(b *testing.B) {
    	s := []byte("日本語日本語日本語日")
    	for i := 0; i < b.N; i++ {
    		Valid(s)
    	}
    }
    func BenchmarkValidLongMostlyASCII(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

            op, "result for current op has more than 1 use");
      }
      // Make sure Conv2D has 'VALID' padding.
      if (op->template getAttrOfType<StringAttr>("padding").getValue() != "VALID") {
        return rewriter.notifyMatchFailure(op,
                                           "Conv2D op doesn't have valid padding");
      }
      // Make sure dilations are all ones if set.
      const ArrayAttr& dilations =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/go/types/check.go

    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	fset *token.FileSet
    	pkg  *Package
    	*Info
    	version goVersion              // accepted language version
    	nextID  uint64                 // unique Id for type parameters (first valid Id is 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. pkg/controller/history/controller_history.go

    	// ListControllerRevisions lists all ControllerRevisions matching selector and owned by parent or no other
    	// controller. If the returned error is nil the returned slice of ControllerRevisions is valid. If the
    	// returned error is not nil, the returned slice is not valid.
    	ListControllerRevisions(parent metav1.Object, selector labels.Selector) ([]*apps.ControllerRevision, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  7. operator/pkg/object/objects.go

    // Valid checks returns true if Kind of K8sObject is not empty.
    func (o *K8sObject) Valid() bool {
    	return o.Kind != ""
    }
    
    // FullName returns namespace/name of K8s object
    func (o *K8sObject) FullName() string {
    	return fmt.Sprintf("%s/%s", o.Namespace, o.Name)
    }
    
    // Equal returns true if o and other are both valid and equal to each other.
    func (o *K8sObject) Equal(other *K8sObject) bool {
    	if o == nil {
    		return other == nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  8. src/crypto/ed25519/ed25519_test.go

    func TestSignVerify(t *testing.T) {
    	var zero zeroReader
    	public, private, _ := GenerateKey(zero)
    
    	message := []byte("test message")
    	sig := Sign(private, message)
    	if !Verify(public, message, sig) {
    		t.Errorf("valid signature rejected")
    	}
    
    	wrongMessage := []byte("wrong message")
    	if Verify(public, wrongMessage, sig) {
    		t.Errorf("signature of different message accepted")
    	}
    }
    
    func TestSignVerifyHashed(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pkg/serviceaccount/openidmetadata_test.go

    		jwksURI         string
    		externalAddress string
    		keys            []interface{}
    		wantConfig      string
    		wantKeyset      string
    		err             bool
    	}{
    		{
    			name:       "valid inputs",
    			issuerURL:  exampleIssuer,
    			jwksURI:    exampleIssuer + serviceaccount.JWKSPath,
    			keys:       defaultKeys,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

      %5 = "tfl.depthwise_conv_2d"(%2, %4, %cst) {depth_multiplier = 4 : i32, dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 4 : i32, stride_w = 5 : i32} : (tensor<1x224x224x3xf32>, tensor<32x3x3x3xf32>, tensor<32xf32>) -> tensor<1x112x112x32xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top