Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,247 for Applies (0.65 sec)

  1. 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)
  2. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    	return map_ClusterRoleList
    }
    
    var map_PolicyRule = map[string]string{
    	"":                "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.",
    	"verbs":           "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/rbac/v1/types_swagger_doc_generated.go

    	return map_ClusterRoleList
    }
    
    var map_PolicyRule = map[string]string{
    	"":                "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.",
    	"verbs":           "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/volume/util/fsquota/common/quota_common_linux.go

    type LinuxVolumeQuotaApplier interface {
    	// GetQuotaOnDir gets the quota ID (if any) that applies to
    	// this directory
    	GetQuotaOnDir(path string) (QuotaID, error)
    
    	// SetQuotaOnDir applies the specified quota ID to a directory.
    	// Negative value for bytes means that a non-enforcing quota
    	// should be applied (perhaps by setting a quota too large to
    	// be hit)
    	SetQuotaOnDir(path string, id QuotaID, bytes int64) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/rbac/v1beta1/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.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [.multi-language-text.lang-kotlin]
    ----
    plugins {
        id("jacoco-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 code coverage results across multiple subprojects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top