Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,565 for Applies (0.12 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // 3. deny by default
    
    // 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.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            artifactName.type >> "jar"
    
            registry.create().create("aar")
    
            expect:
            registry.mapAttributesFor(attrs, [artifact]) == attrsPlusFormat
        }
    
        def "applies mapping when no attributes defined for matching type"() {
            def attrs = ImmutableAttributes.EMPTY
            def attrsPlusFormat = concat(attrs, ["artifactType": "jar"])
            def artifact = Stub(ComponentArtifactMetadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1/types.go

    // 3. deny by default
    
    // 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.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentModuleMetadataHandler.java

     *         }
     *     }
     * }
     * </pre>
     *
     * @since 2.2
     */
    public interface ComponentModuleMetadataHandler {
        /**
         * Enables configuring component module metadata.
         * This metadata applies to the entire component module (e.g. "group:name", like "org.gradle:gradle-core") regardless of the component version.
         *
         * <pre class='autoTested'>
         * //declaring that google collections are replaced by guava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    )
    
    var (
    	markControlPlaneExample = cmdutil.Examples(`
    		# Applies control-plane label and taint to the current node, functionally equivalent to what executed by kubeadm init.
    		kubeadm init phase mark-control-plane --config config.yaml
    
    		# Applies control-plane label and taint to a specific node
    		kubeadm init phase mark-control-plane --node-name myNode
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authorization/authorizer/rule.go

    	GetVerbs() []string
    	// GetAPIGroups return the names of the APIGroup that contains the resources.
    	GetAPIGroups() []string
    	// GetResources return a list of resources the rule applies to.
    	GetResources() []string
    	// GetResourceNames return a white list of names that the rule applies to.
    	GetResourceNames() []string
    }
    
    // DefaultResourceRuleInfo holds information that describes a rule for the resource
    type DefaultResourceRuleInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 11:09:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    [[sec:gradle_plugin_dev_interactions]]
    == Interactions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Rel_Neighbor(pluginPlugin, pluginEmbedded, "Configures")
                Rel(pluginPlugin, pluginPrecompiled, "Configures")
                Rel_Neighbor(pluginPrecompiled, pluginDevPlugin, "Applies", "and configures")
            }
    
    
            Container_Boundary(tapiBuilder, "IDE ToolingAPI Models") {
    
                Component(tapiModels, "TAPI Models", "classpath, sourcepath, implicit imports, user reports")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/build.gradle

    }
    // end::use-plugin[]
    
    // tag::args[]
    model {
        components {
            main(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    // Define a preprocessor macro that only applies to shared libraries
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 379 bytes
    - Viewed (0)
Back to top