Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,795 for Excluded (0.59 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ExcludeMetadata.java

         */
        ModuleIdentifier getModuleId();
    
        /**
         * The attributes of the artifact to be excluded. A '*' value for any attribute indicates a wildcard match.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
         * @return The IvyArtifactName to exclude, or `null` if no artifacts are excluded.
         */
        @Nullable
        IvyArtifactName getArtifact();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				fmt.Fprintf(&individualCheckOutput, "[+]%s ok\n", check.Name())
    			}
    		}
    		if excluded.Len() > 0 {
    			fmt.Fprintf(&individualCheckOutput, "warn: some health checks cannot be excluded: no matches for %s\n", formatQuoted(excluded.List()...))
    			klog.V(6).Infof("cannot exclude some health checks, no health checks are installed matching %s",
    				formatQuoted(excluded.List()...))
    		}
    		// always be verbose on failure
    		if len(failedChecks) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def linkTarget1 = tmpDir.createDir("linkTarget1")
            linkTarget1.createFile("included/text.txt")
            linkTarget1.createFile("excluded/text.txt")
            linkTarget1.createFile("excluded/excluded.png")
            def linkTarget2 = tmpDir.createDir("linkTarget2")
            linkTarget2.createFile("included.txt")
            linkTarget2.createFile("excluded.png")
            def linkTarget3 = tmpDir.createFile("linkTarget3")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactFilterIntegrationTest.groovy

                    def artifacts1 = filterView.artifacts
                    def files6 = filterView.artifacts.artifactFiles
                    doLast {
                        def all = ['included-1.3.jar', 'excluded-2.3.jar', 'libInclude.jar', 'libExclude.jar']
                        def filtered = ['included-1.3.jar', 'libInclude.jar']
                        assert files1.collect { it.name } == all
                        assert files2.files.collect { it.name } == all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            action.execute(details)
    
            then:
            if (excluded) {
                0 * details.notFound()
            } else {
                1 * details.notFound()
            }
    
            where:
            method              | expr     | group           | module | version | excluded
            'Group'             | 'org'    | 'org'           | 'foo'  | '1.0'   | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                        includeTestsMatching('*Class')
                        excludeTestsMatching('exclude-pattern')
                    }
                    useJUnitPlatform {
                        includeTags('included-tag')
                        excludeTags('excluded-tag')
                        includeEngines('included-engine')
                        excludeEngines('excluded-engine')
                    }
                    jvmArgs('-Dkey=value')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/generate_invalid.txt

    Go generate should ignore this directory.
    //go:generate echo Fail nogo
    
    -- excluded/a.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    // +build a
    
    //go:generate echo Fail a
    
    package excluded
    
    -- excluded/b.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    //go:generate echo Fail b
    
    // +build b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestFramework.java

                if (intersection.size() == 1) {
                    LOGGER.warn("The category '" + intersection.iterator().next() + "' is both included and excluded.  " +
                        "This will result in the category being excluded, which may not be what was intended.  " +
                        "Please either include or exclude the category but not both.");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

                if (intersection.size() == 1) {
                    LOGGER.warn("The tag '" + intersection.iterator().next() + "' is both included and excluded.  " +
                        "This will result in the tag being excluded, which may not be what was intended.  " +
                        "Please either include or exclude the tag but not both.");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeDetails.java

        @Override
        public String getValue() {
            return value;
        }
    
        public boolean isExcluded() {
            return excluded;
        }
    
        @Override
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
        public void exclude() {
            excluded = true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top