Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for rulesv6 (0.18 sec)

  1. platforms/core-configuration/model-core/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-native")) {
            because("ModelRuleCachingIntegrationTest requires a rules implementation")
        }
    
        jmhImplementation(platform(project(":distributions-dependencies")))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

                version of bsh, instead of depending on the transitive version contributed by testng.  This lib contributes the "beanshell" capability,
                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
                This is necessary because the beanshell project migrated coordinates from org.beanshell in version 2.0b4 to org.apache-extras.beanshell
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. samples/addons/kiali.yaml

        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    rules:
    - apiGroups: [""]
      resources:
      - configmaps
      - endpoints
      - pods/log
      verbs:
      - get
      - list
      - watch
    - apiGroups: [""]
      resources:
      - namespaces
      - pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    			}{
    				{
    					name:  "allow",
    					check: check.OK(),
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/{{.Namespace}}/sa/{{.Source}}", "cluster.local/ns/{{.Namespace}}/sa/{{.WaypointName}}"]
    `,
    				},
    				{
    					name:  "not allow",
    					check: CheckDeny,
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/something/sa/else"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pom.xml

                    </bannedDependencies>
                  </rules>
                  <fail>true</fail>
                </configuration>
              </execution>
              <execution>
                <id>enforce-bytecode-version</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireJavaVersion>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * For example, an artifact of type {@value org.apache.maven.api.Type#JAR} can be placed
         * either on the class-path or on the module-path. The project needs to make a choice
         * (possibly using heuristic rules), then to add the dependency in only one of the options
         * identified by {@link PathType}.
         *
         * @return file paths to place on the different tool options
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. samples/addons/loki.yaml

          compactor_address: 'http://loki:3100'
          path_prefix: /var/loki
          replication_factor: 1
          storage:
            filesystem:
              chunks_directory: /var/loki/chunks
              rules_directory: /var/loki/rules
        frontend:
          scheduler_address: ""
          tail_proxy_url: http://loki-querier.istio-system.svc.cluster.local:3100
        frontend_worker:
          scheduler_address: ""
        index_gateway:
          mode: simple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		warnings = appendErrors(warnings, workloadSelectorValidation.Warning)
    
    		if in.Action == security_beta.AuthorizationPolicy_CUSTOM {
    			if in.Rules == nil {
    				errs = appendErrors(errs, fmt.Errorf("CUSTOM action without `rules` is meaningless as it will never be triggered, "+
    					"add an empty rule `{}` if you want it be triggered for every request"))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. .github/CODEOWNERS

    ## GitHub docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
    ##
    ## CODEOWNERS style rules:
    ## 1. Prefer team ownership over individual user ownership.
    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://plugins.gradle.org/plugin/com.netflix.nebula.dependency-lock
            static nebulaDependencyLock = Versions.of("15.1.0")
    
            // https://plugins.gradle.org/plugin/com.netflix.nebula.resolution-rules
            static nebulaResolutionRules = "11.2.0"
    
            // https://plugins.gradle.org/plugin/com.github.johnrengelman.shadow
            static shadow = "8.1.1"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top