Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for genrule (0.21 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. 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)
  4. 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)
  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. src/fmt/scan.go

    			}
    			for j := 0; j < newlines; j++ {
    				inputc := s.getRune()
    				for isSpace(inputc) && inputc != '\n' {
    					inputc = s.getRune()
    				}
    				if inputc != '\n' && inputc != eof {
    					s.errorString("newline in format does not match input")
    				}
    			}
    			if trailingSpace {
    				inputc := s.getRune()
    				if newlines == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	// needed, use GetUID.
    	GetName() string
    	// GetClientConfig gets the webhook ClientConfig field.
    	GetClientConfig() v1.WebhookClientConfig
    	// GetRules gets the webhook Rules field.
    	GetRules() []v1.RuleWithOperations
    	// GetFailurePolicy gets the webhook FailurePolicy field.
    	GetFailurePolicy() *v1.FailurePolicyType
    	// GetMatchPolicy gets the webhook MatchPolicy field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessor.java

                    processClassRule(action, metadata, details);
                } else {
                    processRule(wrapper.getRule(), metadata, details);
                }
            }
        }
    
        private void processClassRule(Action<ComponentMetadataContext> action, final ModuleComponentResolveMetadata metadata, final ComponentMetadataDetails details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. 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)
Back to top