Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for selectgo (0.34 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    		}
    
    		if pr.Selector != nil {
    			allErrors = append(allErrors, field.Forbidden(fldPath.Child("name"), `name and selector are mutually exclusive`))
    		}
    	}
    
    	if pr.Selector != nil {
    		labelSelectorValidationOpts := metav1validation.LabelSelectorValidationOptions{}
    		allErrors = append(allErrors, metav1validation.ValidateLabelSelector(pr.Selector, labelSelectorValidationOpts, fldPath.Child("selector"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    		// it as a bug.
    		for _, m := range ld.requirements.rootModules {
    			if v := mg.Selected(m.Path); v != m.Version {
    				fmt.Fprintln(os.Stderr)
    				base.Fatalf("go: internal error: failed to diagnose selected-version mismatch for module %s: go %s selects %s, but go %s selects %s\n\tPlease report this at https://golang.org/issue.", m.Path, goVersion, m.Version, compatVersion, v)
    			}
    		}
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy
    spec:
      selector:
        matchLabels:
          app: "{{ .Destination }}"
    `+policySpec+`
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. tests/query_test.go

    	if !regexp.MustCompile("SELECT .*name.*,.*age.* FROM .*users.*").MatchString(r.Statement.SQL.String()) {
    		t.Fatalf("Build Select with slice, but got %v", r.Statement.SQL.String())
    	}
    
    	// SELECT COALESCE(age,'42') FROM users;
    	r = dryDB.Table("users").Select("COALESCE(age,?)", 42).Find(&User{})
    	if !regexp.MustCompile(`SELECT COALESCE\(age,.*\) FROM .*users.*`).MatchString(r.Statement.SQL.String()) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    				Name: "http",
    				Port: 80,
    			}},
    			Selector:  labels,
    			ClusterIP: "9.9.9.9",
    		},
    	}
    	headlessServiceHTTP := &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "service",
    			Namespace: namespace,
    		},
    		Spec: v1.ServiceSpec{
    			Ports: []v1.ServicePort{{
    				Name: "http",
    				Port: 80,
    			}},
    			Selector:  labels,
    			ClusterIP: v1.ClusterIPNone,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    					sidecar := wrapper.Sidecar
    					// if there is no workload selector, the config applies to all workloads
    					// if there is a workload selector, check for matching workload labels
    					if sidecar.GetWorkloadSelector() != nil {
    						workloadSelector := labels.Instance(sidecar.GetWorkloadSelector().GetLabels())
    						// exclude workload selector that not match
    						if !workloadSelector.SubsetOf(workloadLabels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //         hello: world
    
      // defaultTemplates: ["sidecar", "hello"]
      repeated string defaultTemplates = 24;
    
      // If enabled, the legacy webhook selection logic will be used. This relies on filtering of webhook
      // requests in Istiod, rather than at the webhook selection level.
      // This is option is intended for migration purposes only and will be removed in Istio 1.10.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "replicas": 1,
        "selector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "replicas": 1,
        "selector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "replicas": 1,
        "selector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
Back to top