Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,026 for excluded (0.19 sec)

  1. hack/verify-flags/excluded-flags.txt

    Vadim Rutkovsky <******@****.***> 1671109648 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 11 09:42:14 UTC 2023
    - 379 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_query_exclude.txt

    # get excluded version
    cp go.exclude.mod go.exclude.mod.orig
    ! go get -modfile=go.exclude.mod rsc.io/quote@v1.5.0
    stderr '^go: rsc.io/quote@v1.5.0: excluded by go.mod$'
    
    # get non-excluded version
    cp go.exclude.mod.orig go.exclude.mod
    go get -modfile=go.exclude.mod rsc.io/quote@v1.5.1
    stderr 'rsc.io/quote v1.5.1'
    
    # get query with excluded version
    cp go.exclude.mod.orig go.exclude.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_require_exclude.txt

    go mod edit -go=1.13
    cmp go.mod go.mod.orig
    
    
    # With the selected version excluded, commands that load only modules should
    # drop the excluded module.
    
    go list -m -mod=mod all
    stderr '^go: dropping requirement on excluded version rsc.io/sampler v1\.99\.99$'
    stdout '^x$'
    ! stdout '^rsc.io/sampler'
    cmp go.mod go.moddrop
    
    # With the latest version excluded, 'go list' should resolve needed packages
    # from the next-highest version.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) Primaries(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsPrimary()
    	}, exclude(excluded...))
    }
    
    // Exclude returns all clusters not given as input.
    func (c Clusters) Exclude(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return true
    	}, exclude(excluded...))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/DefaultTaskSelectorTest.groovy

            0 * _
    
            and:
            !filter.isSatisfiedBy(excluded)
            filter.isSatisfiedBy(notExcluded)
        }
    
        def "exclude filter configures only the default project when exact match on task name found when subprojects included"() {
            def excluded = Stub(Task)
            _ * excluded.name >> "b"
            _ * excluded.project >> projectModel1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         * Sets list of elements that should be excluded from check.
         *
         * @param excludes Exclusions
         */
        void setExcludes(List<String> excludes);
    
        /**
         * List of elements that should be excluded from check. Names can use wildcards (* and ?).
         * If left empty, no elements will be excluded. Defaults to an empty list.
         */
        @Input
        List<String> getExcludes();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top