Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,565 for Applies (0.1 sec)

  1. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.projectIdentifier.buildIdentifier.rootDir == projectDir
            project.mainComponent == null
            project.testComponent == null
        }
    
        def "can query model when root project applies C++ application plugin"() {
            settingsFile << """
                rootProject.name = 'app'
            """
            buildFile << """
                apply plugin: 'cpp-application'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/PATENTS

    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/PATENTS

    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultExcludeEverything.java

            return true;
        }
    
        @Override
        public boolean excludesArtifact(ModuleIdentifier module, IvyArtifactName artifactName) {
            // everything excluded **only** applies to modules, not artifacts!
            return false;
        }
    
        @Override
        public boolean mayExcludeArtifacts() {
            return false; // an exclude all is for modules, not artifacts
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/PATENTS

    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1/register.go

    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&PodDisruptionBudget{},
    		&PodDisruptionBudgetList{},
    		&Eviction{},
    	)
    	// Add the watch version that applies
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 21:27:42 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * But if this type was created by {@code JavaPathType.patchModule("foo.bar")}, then this method returns
         * {@code "PATCH_MODULE:foo.bar"}.
         *
         * @return the programmatic name together with the module name on which it applies
         * @see #toString()
         */
        @Nonnull
        String id();
    
        /**
         * Returns the name of the tool option for this path. For example, if this path type
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/flowschema/strategy.go

    )
    
    // flowSchemaStrategy implements verification logic for FlowSchema.
    type flowSchemaStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating flow schema objects.
    var Strategy = flowSchemaStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns false because all PriorityClasses are global.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&BootstrapToken{},
    		&Images{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 17:11:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/LanguageBasePluginTest.groovy

    import org.gradle.platform.base.PlatformBaseSpecification
    import org.gradle.platform.base.plugins.ComponentBasePlugin
    
    class LanguageBasePluginTest extends PlatformBaseSpecification {
        def "applies component base plugin only"() {
            when:
            dsl {
                apply plugin: LanguageBasePlugin
            }
    
            then:
            project.pluginManager.pluginContainer.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top