Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for invalidSep (0.24 sec)

  1. src/go/types/expr.go

    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case token.ARROW:
    		u := coreType(x.typ)
    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case syntax.Recv:
    		u := coreType(x.typ)
    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    		LoadBalancer: networking.IngressLoadBalancerStatus{
    			Ingress: []networking.IngressLoadBalancerIngress{
    				{IP: "127.0.0.2", Hostname: "foo.com"},
    			},
    		},
    	}
    	invalidIP := newValid()
    	invalidIP.Status = networking.IngressStatus{
    		LoadBalancer: networking.IngressLoadBalancerStatus{
    			Ingress: []networking.IngressLoadBalancerIngress{
    				{IP: "abcd", Hostname: "foo.com"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top