Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for genrule (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/MetadataRuleWrapper.java

    interface MetadataRuleWrapper {
        DisplayName getDisplayName();
    
        boolean isClassBased();
    
        Collection<SpecConfigurableRule> getClassRules();
    
        SpecRuleAction<? super ComponentMetadataDetails> getRule();
    
        void addClassRule(SpecConfigurableRule ruleAction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    var viewEscalatingNamespaceResources = []rbacv1.PolicyRule{
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/attach").RuleOrDie(),
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/proxy").RuleOrDie(),
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/exec").RuleOrDie(),
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/portforward").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. pkg/apis/rbac/helpers_test.go

    	role := &rbac.Role{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    	clusterRole := &rbac.ClusterRole{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ActionBasedMetadataRuleWrapper.java

            throw new UnsupportedOperationException("This operation is not supported by this implementation");
        }
    
        @Override
        public SpecRuleAction<? super ComponentMetadataDetails> getRule() {
            return ruleAction;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ClassBasedMetadataRuleWrapper.java

        }
    
        @Override
        public void addClassRule(SpecConfigurableRule classRule) {
            classRules.add(classRule);
        }
    
        @Override
        public SpecRuleAction<? super ComponentMetadataDetails> getRule() {
            throw new UnsupportedOperationException("This operation is not supported by this implementation");
        }
    
        @Override
        public DisplayName getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/DelegatingNamedDomainObjectSet.java

        }
    
        @Override
        public SortedSet<String> getNames() {
            return getDelegate().getNames();
        }
    
        @Override
        public List<Rule> getRules() {
            return getDelegate().getRules();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    			}
    			copy := &v1.MutatingWebhook{
    				Name:                    accessor.GetName(),
    				ClientConfig:            accessor.GetClientConfig(),
    				Rules:                   accessor.GetRules(),
    				FailurePolicy:           accessor.GetFailurePolicy(),
    				MatchPolicy:             accessor.GetMatchPolicy(),
    				NamespaceSelector:       accessor.GetNamespaceSelector(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

            return jacocoCheckResult;
        }
    
        @Override
        protected void configureReport(final GroovyObjectSupport antBuilder, final JacocoViolationRulesContainer violationRules) {
            if (!violationRules.getRules().isEmpty()) {
                Map<String, Object> checkArgs = ImmutableMap.<String, Object>of("failonviolation", violationRules.isFailOnViolation(), "violationsproperty", VIOLATIONS_ANT_PROPERTY);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/registry/rbac/clusterrole/policybased/storage.go

    	if !ok {
    		return nil
    	}
    	return svp.StorageVersion()
    }
    
    var _ rest.StorageVersionProvider = &Storage{}
    
    var fullAuthority = []rbac.PolicyRule{
    	rbac.NewRule("*").Groups("*").Resources("*").RuleOrDie(),
    	rbac.NewRule("*").URLs("*").RuleOrDie(),
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentSelectionRulesInternal.java

    import org.gradle.internal.rules.SpecRuleAction;
    
    import java.util.Collection;
    
    public interface ComponentSelectionRulesInternal extends ComponentSelectionRules {
        Collection<SpecRuleAction<? super ComponentSelection>> getRules();
        ComponentSelectionRules addRule(SpecRuleAction<? super ComponentSelection> specRuleAction);
        ComponentSelectionRules addRule(RuleAction<? super ComponentSelection> specRuleAction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top