Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 354 for rulesv4 (0.12 sec)

  1. pkg/apis/autoscaling/validation/validation.go

    func validateScalingRules(rules *autoscaling.HPAScalingRules, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if rules != nil {
    		if rules.StabilizationWindowSeconds != nil && *rules.StabilizationWindowSeconds < 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("stabilizationWindowSeconds"), rules.StabilizationWindowSeconds, "must be greater than or equal to zero"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. cmd/import-boss/main.go

    	restrictionFiles := make([]*FileFormat, 0)
    
    	for {
    		if _, err := os.Stat(path); err == nil {
    			rules, err := readFile(path)
    			if err != nil {
    				return nil, err
    			}
    
    			restrictionFiles = append(restrictionFiles, rules)
    		}
    
    		nextPath, removedDir := removeLastDir(path)
    		if nextPath == path || isGoModRoot(path) || removedDir == "src" {
    			break
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            manager.findPlugin("foo") == null
        }
    
        def "can apply rules plugin with no id"() {
            when:
            manager.apply(rulesClass)
    
            then:
            1 * target.applyRules(null, rulesClass)
    
            and:
            manager.pluginContainer.isEmpty()
        }
    
        def "can apply rules plugin by class with id"() {
            given:
            addPluginId("foo", rulesClass)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

    Compatibility Rules
    --------------------------------------------------
    The following Attributes have compatibility rules defined.
    
        - flavor""")
    
            and:
            doesNotHaveLegacyLegend()
        }
    
        def "disambiguation rules are printed if present"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/lds.go

    	policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    	if len(policies.Deny)+len(policies.Allow) > 0 {
    		rules := buildRBAC(node, push, nameSuffix, tlsContext, rbacpb.RBAC_DENY, policies.Deny)
    		if rules != nil && len(rules.Policies) > 0 {
    			rbac := &rbachttp.RBAC{
    				Rules: rules,
    			}
    			fc = append(fc,
    				&hcm.HttpFilter{
    					Name:       RBACHTTPFilterNameDeny,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    		expectMatches       bool
    		expectMatchKind     schema.GroupVersionKind
    		expectMatchResource schema.GroupVersionResource
    		expectErr           string
    	}{
    		{
    			name:          "no rules (just write)",
    			criteria:      &v1.MatchResources{NamespaceSelector: &metav1.LabelSelector{}, ResourceRules: []v1.NamedRuleWithOperations{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      repeated k8s.io.api.admissionregistration.v1.RuleWithOperations rules = 3;
    
      // FailurePolicy defines how unrecognized errors from the admission endpoint are handled -
      // allowed values are Ignore or Fail. Defaults to Ignore.
      // +optional
      optional string failurePolicy = 4;
    
      // matchPolicy defines how the "rules" list is used to match incoming requests.
      // Allowed values are "Exact" or "Equivalent".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/net.go

    	}
    	// pod is removed from the mesh, but is still running. remove iptables rules
    	log.Debugf("calling DeleteInpodRules.")
    	if err := s.netnsRunner(openNetns, func() error { return s.iptablesConfigurator.DeleteInpodRules() }); err != nil {
    		log.Errorf("failed to delete inpod rules %v", err)
    		return fmt.Errorf("failed to delete inpod rules %w", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	// if binary seems to exist, check the dump of rules in our netns, and see if any rules exist there
    	// Note that this is highly dependent on context.
    	// new pod netns? probably no rules. Hostnetns? probably rules
    	// So this is mostly just a "hint"/heuristic as to which version we should be using, if more than one binary is present.
    	// `xx-save` should return _no_ output (0 lines) if no rules are defined in this netns for that binary variant.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

        }
    
        def "extracted stateless rules are cached"() {
            when:
            def fromFirstExtraction = extractor.extract(MutationRules)
            def fromSecondExtraction = extractor.extract(MutationRules)
    
            then:
            fromFirstExtraction.is(fromSecondExtraction)
        }
    
        def "extracted stateless abstract rules are cached"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top