Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 558 for rulesv6 (0.33 sec)

  1. docs/bucket/replication/setup_ilm_expiry_replication.sh

    	exit 1
    fi
    
    ## Check if ILM expiry rules replicated
    sleep 30s
    
    ./mc ilm rule list siteb/bucket
    count=$(./mc ilm rule list siteb/bucket --json | jq '.config.Rules | length')
    if [ $count -ne 1 ]; then
    	echo "BUG: ILM expiry rules not replicated to 'siteb'"
    	exit 1
    fi
    
    ## Check replication of rules content
    expDays=$(./mc ilm rule list siteb/bucket --json | jq '.config.Rules[0].Expiration.Days')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/controller/job/pod_failure_policy_test.go

    			wantCountFailed:       true,
    			wantAction:            &failJob,
    		},
    		"successful containers are skipped by the rules": {
    			podFailurePolicy: &batch.PodFailurePolicy{
    				Rules: []batch.PodFailurePolicyRule{
    					{
    						Action: batch.PodFailurePolicyActionFailJob,
    						OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    			NotPrincipals: stringToMatch(op.NotPrincipals),
    		}
    		fromMatches = append(fromMatches, match)
    	}
    
    	rules := []*security.Rules{}
    	if len(toMatches) > 0 {
    		rules = append(rules, &security.Rules{Matches: toMatches})
    	}
    	if len(fromMatches) > 0 {
    		rules = append(rules, &security.Rules{Matches: fromMatches})
    	}
    	for _, when := range rule.When {
    		l4 := l4WhenAttributes.Contains(when.Key)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/builder.go

    		rbac := &rbachttp.RBAC{Rules: getBadCustomDenyRules(rules)}
    		return []*hcm.HttpFilter{
    			{
    				Name:       wellknown.HTTPRoleBasedAccessControl,
    				ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(rbac)},
    			},
    		}
    	}
    	// Add the RBAC filter in shadow mode so that it only evaluates the matching rules for CUSTOM action but not enforce it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

            int i = 0
            def rules = modelNode.myNumbers.@rules[0]
            rules[i++] == 'NumberRules#defaultsRule(Numbers)'
            rules[i++] == 'NumberRules#mutateRule(Numbers)'
            rules[i++] == 'ClassHolder.InnerRules#mutateRule(Numbers)'
            rules[i++] == 'NumberRules#finalizeRule(Numbers)'
            rules[i] == 'NumberRules#validateRule(Numbers)'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

            failure.assertHasCause("There is a problem with model rule Plugin3.Rules#m(String).")
            failure.assertHasCause("""Type-only model reference of type java.lang.String (parameter 1) is ambiguous as multiple model elements are available for this type:
      - s1 (created by: Plugin1.Rules#s1())
      - s2 (created by: Plugin2.Rules#s2())""")
        }
    
        def "fails on incompatible by-type reference"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/single-policy-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: :authority
                        stringMatch:
                          exact: rule[0]-to[0]-host[1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:attachdetach-controller
      rules:
      - apiGroups:
        - ""
        resources:
        - persistentvolumeclaims
        - persistentvolumes
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

            interface BuildType {
                //Readonly
                FunctionalSourceSet getSources()
            }
    
            class Rules extends RuleSource {
                @Model
                void buildType(BuildType buildType) { }
            }
    
            apply plugin: Rules
            """
    
            expect:
            succeeds "model"
            def buildType = ModelReportOutput.from(output).modelNode.buildType
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedScalarCollectionsIntegrationTest.groovy

                    c.items.add 'bar'
                }
            }
    
            apply plugin: Rules
            """
    
            then:
            fails 'tasks'
    
            and:
            failure.assertHasCause "Attempt to modify a read only view of model element 'container.items' of type '$type<String>' given to rule Rules#tryToMutate(ModelMap<Task>, Container)"
    
            where:
            type << MANAGED_SCALAR_COLLECTION_TYPES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top