Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,188 for rulesv4 (0.13 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/VariantAspectExtractionIntegrationTest.groovy

                @Variant
                Integer getVariantProp()
                void setVariantProp(Integer variant)
            }
            class Rules extends RuleSource {
                @ComponentType
                void register(TypeBuilder<SampleBinary> builder) {}
            }
            apply plugin: Rules
            """
    
            expect:
            fails "components"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/dry-run-mix-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-2]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /another
            principals:
            - andIds:
                ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 19:31:07 UTC 2021
    - 847 bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-dry-run-mix-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-2]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /another
            principals:
            - andIds:
                ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 847 bytes
    - Viewed (0)
  4. cmd/import-boss/README.md

    contain rules which are evaluated against each dependency of the package in
    question.
    
    Evaluation starts with the rules file closest to the package.  If that file
    makes a determination to allow or forbid the import, evaluation is done.  If
    the import does not match any rule, the next-closest rules file is consulted,
    and so forth.  If the rules files are exhausted and no determination has been
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

            outputContains "Build was configured to prefer settings component metadata rules over project rules but rule 'opaque inline rule' was added by build file 'build.gradle'"
        }
    
        def "can fail the build if rules from settings are preferred and project declares rules"() {
            withLoggingRuleInSettings()
            repository {
                'org:module:1.0'()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdCustomRulesIntegrationTest.groovy

            file("rules.xml") << customRuleSet()
    
            expect:
            succeeds(":pmdMain")
    
            where:
            customRuleSetConfig << [
                'ruleSetConfig = resources.text.fromFile("rules.xml")',
                'ruleSetFiles = files("rules.xml")'
            ]
        }
    
        def "use default rules if custom rules are not configured"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. 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)
Back to top