Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,724 for select64 (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object/matcher.go

    type ObjectSelectorProvider interface {
    	// GetObjectSelector gets the webhook ObjectSelector field.
    	GetParsedObjectSelector() (labels.Selector, error)
    }
    
    // Matcher decides if a request selected by the ObjectSelector.
    type Matcher struct {
    }
    
    func matchObject(obj runtime.Object, selector labels.Selector) bool {
    	if obj == nil {
    		return false
    	}
    	accessor, err := meta.Accessor(obj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	//
    	//    attributes.quantity["a"].isGreaterThan(quantity("0")) &&
    	//    attributes.stringslice["b"].isSorted()
    	Selector string `json:"selector" protobuf:"bytes,1,name=selector"`
    }
    
    // NamedResourcesFilter is used in ResourceFilterModel.
    type NamedResourcesFilter struct {
    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. releasenotes/notes/wasm-traffic-selector.yaml

    Ingwon Song <******@****.***> 1663354276 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 16 18:51:16 UTC 2022
    - 269 bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	}
    	createNamespace(t, client.Kube(), "not-selected", map[string]string{"kubernetes.io/metadata.name": "not-selected"})
    	createNamespace(t, client.Kube(), "selected", map[string]string{"kubernetes.io/metadata.name": "selected"})
    
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, "selected", expectedData)
    	expectConfigMapNotExist(t, nc.configmaps, "not-selected")
    
    	meshWatcher.Update(&meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/gateway/secret.go

    		gwNs := getGatewayNamespace(ctx, gw)
    
    		// If we can't find a namespace for the gateway, it's because there's no matching selector. Exit early with a different message.
    		if gwNs == "" {
    
    			gwSelector := labels.SelectorFromSet(gw.Selector)
    			m := msg.NewReferencedResourceNotFound(r, "selector", labels.SelectorFromSet(gw.Selector).String())
    
    			label := util.ExtractLabelFromSelectorString(gwSelector.String())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                              type: array
                            selector:
                              description: "Selector is an optional field that contains
                                a selector expression (see Policy for sample syntax).
                                \ Only traffic that originates from (terminates at) endpoints
                                matching the selector will be matched. \n Note that: in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                    scenario("Project selected with different selector resolves to same project")
                            .activeRequiredProjects(GROUP_ID + ":" + MODULE_A)
                            .inactiveRequiredProjects(MODULE_A)
                            .expectResult(MavenExecutionException.class, "empty reactor"),
                    scenario("Selected and excluded same project, but also selected another project")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                              type: array
                            selector:
                              description: "Selector is an optional field that contains
                                a selector expression (see Policy for sample syntax).
                                \ Only traffic that originates from (terminates at) endpoints
                                matching the selector will be matched. \n Note that: in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ConstructorSelector.java

         * called with the given parameters.
         *
         * <p>The selector may or may not allow null parameters. The caller should allow null parameters and delegate to the selector to make this decision.
         *
         * <p>The selector may or may not allow instances of non-static inner classes to be created.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    	}
    	// match: (CMPconst <t> [0] (Select0 z:(ADDCC x y)))
    	// result: (Select1 <t> z)
    	for {
    		t := v.Type
    		if auxIntToInt64(v.AuxInt) != 0 || v_0.Op != OpSelect0 {
    			break
    		}
    		z := v_0.Args[0]
    		if z.Op != OpPPC64ADDCC {
    			break
    		}
    		v.reset(OpSelect1)
    		v.Type = t
    		v.AddArg(z)
    		return true
    	}
    	// match: (CMPconst <t> [0] (Select0 z:(ANDCC x y)))
    	// result: (Select1 <t> z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top