Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,081 for excluded (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

        maven { url '${repo.uri}' }
    }
    configurations {
        excluded {
            exclude module: 'direct'
            exclude module: 'transitive'
        }
        extendedExcluded.extendsFrom excluded
    }
    dependencies {
        excluded 'org.gradle.test:external:1.0'
        excluded 'org.gradle.test:direct:1.0'
    }
    
    task test {
        def excluded = configurations.excluded
        def extendedExcluded = configurations.extendedExcluded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

            <directory>res/main</directory>
            <filtering>true</filtering>
            <targetPath>main</targetPath>
            <includes>
              <include>main.included</include>
            </includes>
            <excludes>
              <exclude>main.excluded</exclude>
            </excludes>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>res/test</directory>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_empty_err.txt

    -- $WORK/go.mod --
    module example.com/m
    
    go 1.14
    
    -- $WORK/empty/empty.txt --
    -- $WORK/exclude/exclude.go --
    // +build exclude
    
    package exclude
    -- $WORK/testonly/testonly_test.go --
    package testonly_test
    -- $WORK/excluded-stdout --
    package ./excluded: cannot find package "." in:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 922 bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FilteredMinimalFileTreeTest.groovy

                nestedVisitor.visitDir(included)
                nestedVisitor.visitDir(excluded)
            }
            1 * visitor.visitDir(included)
            0 * _
        }
    
        def "ignores file that is not included"() {
            def spec = Mock(Spec)
            def included = Stub(FileVisitDetails)
            def excluded = Stub(FileVisitDetails)
            def visitor = Mock(FileVisitor)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/port_range_test.go

    			if f.String() != tc.expected {
    				t.Errorf("expected %q, got %q", tc.expected, f.String())
    			}
    			if tc.included >= 0 && !pr.Contains(tc.included) {
    				t.Errorf("expected %q to include %d", f.String(), tc.included)
    			}
    			if tc.excluded >= 0 && pr.Contains(tc.excluded) {
    				t.Errorf("expected %q to exclude %d", f.String(), tc.excluded)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/admission/exclusion/resources.go

    }
    
    // Included returns a copy of the list of resources that the expression-based admission controllers
    // should intercept.
    func Included() []schema.GroupResource {
    	return slices.Clone(included)
    }
    
    // Excluded returns a copy of the list of resources that the expression-based admission controllers
    // should ignore.
    func Excluded() []schema.GroupResource {
    	return slices.Clone(excluded)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            project.dependencies.add('excluded', project.layout.files('lib/guava.jar'))
            module.scopes.TEST.minus << project.configurations.getByName('excluded')
            def result = dependenciesProvider.provide(module)
    
            then:
            result.size() == 0
        }
    
        def "dependency is excluded if added to any minus configuration"() {
            applyPluginToProjects()
            project.apply(plugin: 'java')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. 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)
  10. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

            <directory>res/main</directory>
            <filtering>true</filtering>
            <targetPath>main</targetPath>
            <includes>
              <include>main.included</include>
            </includes>
            <excludes>
              <exclude>main.excluded</exclude>
            </excludes>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>res/test</directory>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 8.6K bytes
    - Viewed (0)
Back to top