Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,779 for Applies (0.11 sec)

  1. staging/src/k8s.io/api/rbac/v1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      // +listType=atomic
      repeated string verbs = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

        ModuleSourcesSerializer moduleSourcesSerializer = new ModuleSourcesSerializer([:])
    
        def 'setup'() {
            TestComponentMetadataRule.instanceCount = 0
        }
    
        def "add action rule that applies to all components"() {
            def action = new Action<ComponentMetadataDetails>() {
                @Override
                void execute(ComponentMetadataDetails componentMetadataDetails) {}
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [.multi-language-text.lang-kotlin]
    ----
    plugins {
        id("test-report-aggregation")
    }
    ----
    
    Note that this plugin takes no action unless applied in concert with the <<jvm_test_suite_plugin#jvm_test_suite_plugin,JVM Test Suite Plugin>>.  The <<java_plugin#java_plugin, Java Plugin>> automatically applies the JVM Test Suite Plugin.
    
    There are now two ways to collect test results across multiple subprojects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersection.java

         *
         * @param left an exclude spec
         * @param right another exclude spec
         * @return {@code true} if this intersection applies to the given exclude specs (in any order); {@code false} otherwise
         */
        boolean applies(ExcludeSpec left, ExcludeSpec right);
    
        /**
         * Simplifies 2 given exclude specs (an any order) into a single exclude spec.
         *
         * @param left an exclude spec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

        def ruleAction = Mock(RuleAction)
        def ruleSource = new Object()
    
        def "add closure rule that applies to all components"() {
            def input = { ComponentSelection cs ->  }
    
            when:
            rules.all input
    
            then:
            1 * adapter.createFromClosure(ComponentSelection, input) >> ruleAction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.h

        const QuantizationOptions& quantization_options);
    
    // Applies post-training dynamic-range quantization to the model.
    absl::StatusOr<ExportedModel> QuantizeDynamicRangePtq(
        absl::string_view saved_model_path,
        const std::vector<std::string>& signature_keys,
        const std::unordered_set<std::string>& tags,
        const QuantizationOptions& quantization_options);
    
    // Applies post-training static-range weight-only quantization to the model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 15:31:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreatorTest.groovy

            defaultOutputFolder = new File(projectRootFolder, EclipsePluginConstants.DEFAULT_PROJECT_OUTPUT_PATH)
            baseSourceOutputFolder = new File(projectRootFolder, "bin")
        }
    
        def "applies excludes/includes for src folders"() {
            given:
            def patterns = ["**/*.xml"]
            javaTree = dirTree("java", [], patterns)
            resourcesTree = dirTree("resources", patterns, [])
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    It applies the core `java` and `checkstyle` plugins as well as an external `com.github.spotbugs` plugin, configures common
    compiler options as well as code quality checks.
    * `myproject.library-conventions` - adds publishing configuration to publish to the organization's repository and checks for mandatory content in a README.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top