Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for excluded (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return false;
            }
            ModuleIdentifier targetModuleId = dependencyState.getModuleIdentifier();
            if (excludeSpec.excludes(targetModuleId)) {
                LOGGER.debug("{} is excluded from {} by {}.", targetModuleId, this, excludeSpec);
                return true;
            }
    
            return false;
        }
    
        void addIncomingEdge(EdgeState dependencyEdge) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        def 'does not cache node dependencies when node is deselected then reselected with different exclude filter'() {
            given:
            // Excluded module
            def excluded = mavenRepo.module('org.test', 'excluded', '1.0').publish()
    
            // Intermediates
            def intermediate10 = mavenRepo.module('org.test', 'intermediate1', '1.0').dependsOn(excluded).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertPathSuffixEquals("main.included", pom.getValue("build/resources[1]/includes[1]"));
            assertEquals(1, ((List<?>) pom.getValue("build/resources[1]/excludes")).size());
            assertPathSuffixEquals("main.excluded", pom.getValue("build/resources[1]/excludes[1]"));
    
            assertEquals(1, ((List<?>) pom.getValue("build/testResources")).size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// Remove old pre-tool binaries.
    	for _, old := range oldtool {
    		xremove(pathf("%s/bin/%s", goroot, old))
    	}
    
    	// Special release-specific setup.
    	if isRelease {
    		// Make sure release-excluded things are excluded.
    		for _, dir := range unreleased {
    			if p := pathf("%s/%s", goroot, dir); isdir(p) {
    				fatalf("%s should not exist in release build", p)
    			}
    		}
    	}
    }
    
    /*
     * Tool building
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		}
    	}
    }
    
    // labelNodeDisruptionExclusion is a label on nodes that controls whether they are
    // excluded from being considered for disruption checks by the node controller.
    const labelNodeDisruptionExclusion = "node.kubernetes.io/exclude-disruption"
    
    func isNodeExcludedFromDisruptionChecks(node *v1.Node) bool {
    	if _, ok := node.Labels[labelNodeDisruptionExclusion]; ok {
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	for _, r := range modFile.Require {
    		if index := MainModules.Index(m); index != nil && index.exclude[r.Mod] {
    			if cfg.BuildMod == "mod" {
    				fmt.Fprintf(os.Stderr, "go: dropping requirement on excluded version %s %s\n", r.Mod.Path, r.Mod.Version)
    			} else {
    				fmt.Fprintf(os.Stderr, "go: ignoring requirement on excluded version %s %s\n", r.Mod.Path, r.Mod.Version)
    			}
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    http://junit.org/junit5/docs/current/user-guide[JUnit Platform] introduced http://junit.org/junit5/docs/current/user-guide/#writing-tests-tagging-and-filtering[tagging] to replace categories. You can specify the included/excluded tags via link:{javadocPath}/org/gradle/api/tasks/testing/Test.html#useJUnitPlatform-org.gradle.api.Action-[Test.useJUnitPlatform(org.gradle.api.Action)], as follows:
    
    .JUnit Platform Tags
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    					b.AddBytes(permitted)
    				})
    			}
    
    			if len(excluded) > 0 {
    				b.AddASN1(cryptobyte_asn1.Tag(1).ContextSpecific().Constructed(), func(b *cryptobyte.Builder) {
    					b.AddBytes(excluded)
    				})
    			}
    		})
    
    		ret[n].Value, err = b.Bytes()
    		if err != nil {
    			return nil, err
    		}
    		n++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    				{
    					Key:    "example-key",
    					Value:  exampleValue,
    					Action: validating.AuditAnnotationActionPublish,
    				},
    				{
    					Key:    "excluded-key",
    					Value:  "excluded-value",
    					Action: validating.AuditAnnotationActionExclude,
    				},
    				{
    					Key:    "error-key",
    					Action: validating.AuditAnnotationActionError,
    					Error:  "example error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top