Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,312 for valid (0.36 sec)

  1. cmd/kubeadm/app/discovery/token/token.go

    	}
    
    	// If no TLS root CA pinning was specified, we're done
    	if pubKeyPins.Empty() {
    		klog.V(1).Infof("[discovery] Cluster info signature and contents are valid and no TLS pinning was specified, will use API Server %q", endpoint)
    		return insecureConfig, nil
    	}
    
    	// Load and validate the cluster CA from the insecure kubeconfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pkg/serviceaccount/jwt_test.go

    			ExpectedGroups:   []string{"system:serviceaccounts", "system:serviceaccounts:test"},
    		},
    		"valid key, invalid issuer (rsa)": {
    			Token:       badIssuerToken,
    			Client:      nil,
    			Keys:        []interface{}{getPublicKey(rsaPublicKey)},
    			ExpectedErr: false,
    			ExpectedOK:  false,
    		},
    		"valid key, different issuer (rsa)": {
    			Token:            differentIssuerToken,
    			Client:           nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InetAddresses.java

       *
       * @param bytes byte array representing an IPv4 address (should be of length 4)
       * @return {@link Inet4Address} corresponding to the supplied byte array
       * @throws IllegalArgumentException if a valid {@link Inet4Address} can not be created
       */
      private static Inet4Address getInet4Address(byte[] bytes) {
        checkArgument(
            bytes.length == 4,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

            failure.assertHasFileName("Build file '$buildFile.path'")
            failure.assertHasLineNumber(lines + 5)
            failureHasCause("""Type BadRuleSource is not a valid rule source:
    - Method select(java.lang.String) is not a valid rule method: First parameter of a rule method must be of type org.gradle.api.artifacts.ComponentSelection""")
        }
    
        def "produces sensible error when rule source throws an exception"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/cluster_test.go

    		expectedError     bool
    	}{
    		{
    			name:              "valid - with embedded cert",
    			kubeconfigContent: kubeletConfFiles["configWithEmbeddedCert"],
    		},
    		{
    			name:              "invalid - linked cert missing",
    			kubeconfigContent: kubeletConfFiles["configWithLinkedCert"],
    			expectedError:     true,
    		},
    		{
    			name:              "valid - with linked cert",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    				{
    					Error: fmt.Errorf("valueExpression ''this is not valid CEL' resulted in error: <nil>"),
    					ExpressionAccessor: &AuditAnnotationCondition{
    						ValueExpression: "'this is not valid CEL",
    					},
    				},
    			},
    			auditAnnotations: []PolicyAuditAnnotation{
    				{
    					Action: AuditAnnotationActionError,
    					Error:  "valueExpression ''this is not valid CEL' resulted in error: <nil>",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	})
    }
    
    func TestCitadelClient(t *testing.T) {
    	testCases := map[string]struct {
    		server       mockCAServer
    		expectedCert []string
    		expectedErr  string
    		expectRetry  bool
    	}{
    		"Valid certs": {
    			server:       mockCAServer{Certs: fakeCert, Err: nil},
    			expectedCert: fakeCert,
    			expectedErr:  "",
    		},
    		"Error in response": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner.go

    	// current token, valid after calling next()
    	line, col uint
    	blank     bool // line is blank up to col
    	tok       token
    	lit       string   // valid if tok is _Name, _Literal, or _Semi ("semicolon", "newline", or "EOF"); may be malformed if bad is true
    	bad       bool     // valid if tok is _Literal, true if a syntax error occurred, lit may be malformed
    	kind      LitKind  // valid if tok is _Literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/decl.go

    		check.funcDecl(obj, d)
    	default:
    		panic("unreachable")
    	}
    }
    
    // validCycle reports whether the cycle starting with obj is valid and
    // reports an error if it is not.
    func (check *Checker) validCycle(obj Object) (valid bool) {
    	// The object map contains the package scope objects and the non-interface methods.
    	if debug {
    		info := check.objMap[obj]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	ErrorTypeInvalid ErrorType = "FieldValueInvalid"
    	// ErrorTypeNotSupported is used to report unknown values for enumerated
    	// fields (e.g. a list of valid values).  See NotSupported().
    	ErrorTypeNotSupported ErrorType = "FieldValueNotSupported"
    	// ErrorTypeForbidden is used to report valid (as per formatting rules)
    	// values which would be accepted under some conditions, but which are not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top