Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,188 for rulesv4 (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/action/InstantiatingAction.java

        private final ConfigurableRules<DETAILS> rules;
        private final Instantiator instantiator;
        private final ExceptionHandler<DETAILS> exceptionHandler;
        private final Action<DETAILS>[] reusableRules;
    
        @SuppressWarnings("unchecked")
        public InstantiatingAction(ConfigurableRules<DETAILS> rules, Instantiator instantiator, ExceptionHandler<DETAILS> exceptionHandler) {
            this.rules = rules;
            this.instantiator = instantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 07 16:57:42 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/registry/rbac/validation/policy_compact.go

    	ResourceName      string
    }
    
    // CompactRules combines rules that contain a single APIGroup/Resource, differ only by verb, and contain no other attributes.
    // this is a fast check, and works well with the decomposed "missing rules" list from a Covers check.
    func CompactRules(rules []rbacv1.PolicyRule) ([]rbacv1.PolicyRule, error) {
    	compacted := make([]rbacv1.PolicyRule, 0, len(rules))
    
    	simpleRules := map[simpleResource]*rbacv1.PolicyRule{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ConfigurationCycleIntegrationTest.groovy

             \\- third
                \\- Rules#third(String)
                   \\- first""")
        }
    
        def "cycles involving multiple rules of same phase are detected"() {
            when:
            buildScript '''
                class Rules extends RuleSource {
                    @Model List<String> m1() { [] }
                    @Model List<String> m2() { [] }
                    @Model List<String> m3() { [] }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. 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)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/rules/JacocoViolationRulesContainerImpl.java

     * limitations under the License.
     */
    
    package org.gradle.internal.jacoco.rules;
    
    import org.gradle.api.Action;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.testing.jacoco.tasks.rules.JacocoViolationRule;
    import org.gradle.testing.jacoco.tasks.rules.JacocoViolationRulesContainer;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

          kubernetes.io/bootstrapping: rbac-defaults
        name: admin
      rules: null
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: cluster-admin
      rules:
      - apiGroups:
        - '*'
        resources:
        - '*'
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    // AllowBootstrapTokensToPostCSRs creates RBAC rules in a way the makes Node Bootstrap Tokens able to post CSRs
    func AllowBootstrapTokensToPostCSRs(client clientset.Interface) error {
    	fmt.Println("[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top