Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for rulesv4 (0.37 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

      }
    
      /**
       * Returns true if this type is a supertype of the given {@code type}. "Supertype" is defined
       * according to <a
       * href="http://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.5.1">the rules for type
       * arguments</a> introduced with Java generics.
       *
       * @since 19.0
       */
      public final boolean isSupertypeOf(TypeToken<?> type) {
        return type.isSubtypeOf(getType());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		})
    	}
    
    	type conversionResult struct {
    		error  *ConfigError
    		routes []*istio.HTTPRoute
    	}
    	convertRules := func(mesh bool) conversionResult {
    		res := conversionResult{}
    		for n, r := range route.Rules {
    			// split the rule to make sure each rule has up to one match
    			matches := slices.Reference(r.Matches)
    			if len(matches) == 0 {
    				matches = append(matches, nil)
    			}
    			for _, m := range matches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    											},
    										},
    									},
    								},
    							},
    						},
    					}},
    				applyPatchOperation{
    					"have mixed ratcheting of one or two CEL rules, object4 is ratcheted by one rule, object1 is ratcheting 2 rules",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": map[string]interface{}{
    							"object1": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # DO NOT ADD ANY NEW EXCEPTIONS TO THIS LIST!
    # Instead, please use public APIs or public build rules TF provides.
    # If you need functionality that is not exposed, we will work with you to expand our public APIs.
    # TODO(b/173549186): Move Google-internal TF code out of learning/brain
    package_group(
        name = "internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    	}
    
    	// Return a meta-proxier that dispatch calls between the two
    	// single-stack proxier instances
    	return metaproxier.NewMetaProxier(ipv4Proxier, ipv6Proxier), nil
    }
    
    // CleanupLeftovers removes all hns rules created by the Proxier
    // It returns true if an error was encountered. Errors are logged.
    func CleanupLeftovers() (encounteredError bool) {
    	// Delete all Hns Load Balancer Policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    +
    In addition, the default ruleset was changed from the now deprecated `java-basic` to `category/java/errorprone.xml`.
    +
    We recommend configuring a ruleset explicitly, though.
    
    [[rel5.0:library_upgrades]]
    === [5.0] Library upgrades
    Several libraries that are used by Gradle have been upgraded:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          "",
    			wantCELMapper:                 true,
    		},
    		{
    			name: "valid claim validation rule with multiple rules and email_verified check",
    			in: []api.ClaimValidationRule{
    				{Claim: "claim1", RequiredValue: "value1"},
    				{Claim: "claim2", RequiredValue: "value2"},
    				{Expression: "has(claims.email_verified)"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "boolean"
            },
            "x-kubernetes-validations": {
              "description": "x-kubernetes-validations describes a list of validation rules written in the CEL expression language. This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled.",
              "type": "array",
              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            Action<Project> action = new Action<Project>() {
                @Override
                public void execute(Project project) {
                    // Don't force evaluation of rules here, let the task container do what it needs to
                    ((ProjectInternal) project).getOwner().ensureTasksDiscovered();
    
                    foundTargets.put(project, new TreeSet<Task>(project.getTasks()));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top