Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for invalidSep (0.15 sec)

  1. src/go/types/call.go

    	cgocall := x.mode == cgofunc
    
    	// a type parameter may be "called" if all types have the same signature
    	sig, _ := coreType(x.typ).(*Signature)
    	if sig == nil {
    		check.errorf(x, InvalidCall, invalidOp+"cannot call non-function %s", x)
    		x.mode = invalid
    		x.expr = call
    		return statement
    	}
    
    	// Capture wasGeneric before sig is potentially instantiated below.
    	wasGeneric := sig.TypeParams().Len() > 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

    CLUSTER_SIGNING_KEY_FILE=${CLUSTER_SIGNING_KEY_FILE:-"${CERT_DIR}/client-ca.key"}
    # Reuse certs will skip generate new ca/cert files under CERT_DIR
    # it's useful with PRESERVE_ETCD=true because new ca will make existed service account secrets invalided
    REUSE_CERTS=${REUSE_CERTS:-false}
    
    
    # Ensure CERT_DIR is created for auto-generated crt/key and kubeconfig
    mkdir -p "${CERT_DIR}" &>/dev/null || sudo mkdir -p "${CERT_DIR}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    			Key:    "kubernetes.io/hostname",
    			Values: []string{"node2"},
    		}},
    	}}
    
    	topologyInvalidKey := []api.TopologySelectorTerm{{
    		MatchLabelExpressions: []api.TopologySelectorLabelRequirement{{
    			Key:    "/invalidkey",
    			Values: []string{"zone1"},
    		}},
    	}}
    
    	topologyLackOfValues := []api.TopologySelectorTerm{{
    		MatchLabelExpressions: []api.TopologySelectorLabelRequirement{{
    			Key:    "kubernetes.io/hostname",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    		}
    	}
    
    	var (
    		emptyName     = validSecret()
    		invalidName   = validSecret()
    		emptyNs       = validSecret()
    		invalidNs     = validSecret()
    		overMaxSize   = validSecret()
    		invalidKey    = validSecret()
    		leadingDotKey = validSecret()
    		dotKey        = validSecret()
    		doubleDotKey  = validSecret()
    	)
    
    	emptyName.Name = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top