Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for genrule (0.11 sec)

  1. plugin/pkg/auth/authorizer/rbac/subject_locator_test.go

    			superUser: "foo",
    			clusterRoles: []*rbacv1.ClusterRole{
    				newClusterRole("admin", newRule("*", "*", "*", "*")),
    			},
    			clusterRoleBindings: []*rbacv1.ClusterRoleBinding{
    				newClusterRoleBinding("admin", "User:super-admin", "Group:super-admins"),
    			},
    			roles: []*rbacv1.Role{
    				newRole("admin", "ns1", newRule("get", "*", "Pods", "*")),
    			},
    			roleBindings: []*rbacv1.RoleBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. internal/s3select/sql/jsondata/books.json

    {
        "title": "Murder on the Orient Express",
        "authorInfo": {
            "name": "Agatha Christie",
            "yearRange": [1890, 1976],
            "penName": "Mary Westmacott"
        },
        "genre": "Crime novel",
        "publicationHistory": [
            {
                "year": 1934,
                "publisher": "Collins Crime Club (London)",
                "type": "Hardcover",
                "pages": 256
            },
            {
                "year": 1934,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DefaultExcludeRuleContainer.java

                addedRules = new HashSet<ExcludeRule>();
            }
            return addedRules.add(ExcludeRuleNotationConverter.parser().parseNotation(args));
        }
    
        @Override
        public Set<ExcludeRule> getRules() {
            return addedRules == null ? Collections.<ExcludeRule>emptySet() : addedRules;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

                }
            } else {
                if (VALID_MAYBE_CREATE_ROLES.contains(request.getRole())) {
                    return createUnlockedConfiguration(request.getConfigurationName(), request.getRole(), Actions.doNothing());
                } else {
                    throw new GradleException("Cannot maybe create invalid role: " + request.getRole());
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K 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