Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,170 for rulesv4 (0.17 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/podfailurepolicy.go

    type PodFailurePolicyApplyConfiguration struct {
    	Rules []PodFailurePolicyRuleApplyConfiguration `json:"rules,omitempty"`
    }
    
    // PodFailurePolicyApplyConfiguration constructs an declarative configuration of the PodFailurePolicy type for use with
    // apply.
    func PodFailurePolicy() *PodFailurePolicyApplyConfiguration {
    	return &PodFailurePolicyApplyConfiguration{}
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 16:39:08 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java

    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.rules.DefaultRuleActionAdapter;
    import org.gradle.internal.rules.DefaultRuleActionValidator;
    import org.gradle.internal.rules.RuleAction;
    import org.gradle.internal.rules.RuleActionAdapter;
    import org.gradle.internal.rules.RuleActionValidator;
    import org.gradle.internal.rules.SpecRuleAction;
    import org.gradle.internal.typeconversion.NotationParser;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/union/union_test.go

    	authzRulesHandler := NewRuleResolvers(handler1, handler2)
    
    	_, rules, _, _ := authzRulesHandler.RulesFor(nil, "")
    	actual := getNonResourceRules(rules)
    	if !reflect.DeepEqual(expected, actual) {
    		t.Errorf("Expected: \n%#v\n but actual: \n%#v\n", expected, actual)
    	}
    }
    
    func getResourceRules(infos []authorizer.ResourceRuleInfo) []authorizer.DefaultResourceRuleInfo {
    	rules := make([]authorizer.DefaultResourceRuleInfo, len(infos))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 7.7K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-custom-bad-out.yaml

    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        action: DENY
        policies:
          istio-ext-authz-ns[foo]-policy[httpbin-1]-rule[0]-deny-due-to-bad-CUSTOM-action:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /httpbin1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 885 bytes
    - Viewed (0)
  5. docs/metrics/prometheus/alerts.md

      - static_configs:
        - targets: ['localhost:9093']
    rule_files:
      - rules.yml
    ```
    Here `rules.yml` is the file which should contain the alerting rules defined.
    
    ## Add rules for your deployment
    Below is a sample alerting rules configuration for MinIO. Refer https://prometheus.io/docs/prometheus/latest/configuration/alerting_rules/ for more instructions on writing alerting rules for Prometheus.
    
    ```yaml
    groups:
    - name: example
      rules:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. samples/bookinfo/gateway-api/route-all-v1.yaml

      - group: ""
        kind: Service
        name: reviews
        port: 9080
      rules:
      - backendRefs:
        - name: reviews-v1
          port: 9080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: productpage
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: productpage
        port: 9080
      rules:
      - backendRefs:
        - name: productpage-v1
          port: 9080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 984 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentMetadataRuleContainer.java

        }
    
        boolean isClassBasedRulesOnly() {
            return classBasedRulesOnly;
        }
    
        boolean isEmpty() {
            return rules.isEmpty();
        }
    
        @Override
        public Iterator<MetadataRuleWrapper> iterator() {
            return rules.iterator();
        }
    
        Collection<SpecConfigurableRule> getOnlyClassRules() {
            if (!isClassBasedRulesOnly() || isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-td-aliases-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out1.yaml

            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /httpbin1
            principals:
            - andIds:
                ids:
                - any: true
          istio-ext-authz-ns[foo]-policy[httpbin-2]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 873 bytes
    - Viewed (0)
  10. pkg/registry/rbac/role/policybased/storage.go

    		return s.StandardStorage.Create(ctx, obj, createValidation, options)
    	}
    
    	role := obj.(*rbac.Role)
    	rules := role.Rules
    	if err := rbacregistryvalidation.ConfirmNoEscalationInternal(ctx, s.ruleResolver, rules); err != nil {
    		return nil, errors.NewForbidden(groupResource, role.Name, err)
    	}
    	return s.StandardStorage.Create(ctx, obj, createValidation, options)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top