Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,344 for valid (0.07 sec)

  1. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

    metadata:
      creationTimestamp: null
      name: invalid-backendRef-kind
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: 'referencing unsupported backendRef: group "" kind "GcsBucket"'
          reason: InvalidKind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server_bootstrap_test.go

    	}
    
    	// if m.Current() == nil, then we try again and get a valid
    	// client
    	server.backdate = 0
    	server.SetExpectUserAgent("FirstClient")
    	if ok, err := r.RotateCerts(); !ok || err != nil {
    		t.Fatalf("unexpected rotation err: %t %v", ok, err)
    	}
    	if cert := m.Current(); cert == nil {
    		t.Fatalf("Unexpected cert, should be valid: %#v", cert)
    	}
    	fi = getFileInfo(testDir)
    	if len(fi) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/shape-inference.mlir

      %0 = "tfl.conv_2d"(%arg0, %arg1, %arg2) {dilation_h_factor = 2 : i32, dilation_w_factor = 2 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 1 : i32, stride_w = 1 : i32} : (tensor<1x112x80x128xf32>, tensor<128x3x3x128xf32>, tensor<128xf32>)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta_test.go

    			ExpectedErr: "x/b",
    		},
    		"valid removing finalizers": {
    			Old:         metav1.ObjectMeta{Name: "test", ResourceVersion: "1", DeletionTimestamp: &metav1.Time{}, Finalizers: []string{"x/a", "y/b"}},
    			New:         metav1.ObjectMeta{Name: "test", ResourceVersion: "1", DeletionTimestamp: &metav1.Time{}, Finalizers: []string{"x/a"}},
    			ExpectedErr: "",
    		},
    		"valid adding finalizers for objects not being deleted": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    	// OriginalReference contains the original reference
    	OriginalReference k8s.ParentReference
    	// DeniedReason, if present, indicates why the reference was not valid
    	DeniedReason *ParentError
    	// RouteError, if present, indicates why the reference was not valid
    	RouteError *ConfigError
    }
    
    func createRouteStatus(parentResults []RouteParentResult, obj config.Config, currentParents []k8s.RouteParentStatus) []k8s.RouteParentStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/text/template/parse/lex.go

    }
    
    // accept consumes the next rune if it's from the valid set.
    func (l *lexer) accept(valid string) bool {
    	if strings.ContainsRune(valid, l.next()) {
    		return true
    	}
    	l.backup()
    	return false
    }
    
    // acceptRun consumes a run of runes from the valid set.
    func (l *lexer) acceptRun(valid string) {
    	for strings.ContainsRune(valid, l.next()) {
    	}
    	l.backup()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation.go

    		return fmt.Errorf("%v is not a valid IP", addr)
    	}
    
    	return nil
    }
    
    func ValidatePartialWildCard(host string) error {
    	if strings.Contains(host, "*") && len(host) != 1 && !strings.HasPrefix(host, "*.") {
    		return fmt.Errorf("partial wildcard %q not allowed", host)
    	}
    	return nil
    }
    
    // validates that hostname in ns/<hostname> is a valid hostname according to
    // API specs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption_test.go

    	testCases := []struct {
    		desc string
    		in   *apiserver.KMSConfiguration
    		want field.ErrorList
    	}{{
    		desc: "valid v1 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v1"},
    		want: field.ErrorList{},
    	}, {
    		desc: "valid v2 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v2"},
    		want: field.ErrorList{},
    	}, {
    		desc: "invalid api version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top