Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,081 for excluded (0.16 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. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            then:
            included file('ac')
            included file('13')
            excluded file('a')
            excluded file('1')
            excluded file('c')
            excluded file('3')
            excluded file('acb')
            excluded file('acd')
            excluded file('132')
            excluded file('132')
    
            when:
            patternSet = new PatternSet().copyFrom(patternSet)
            then:
            included file('ac')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            where:
            condition             | bExcludes       | cExcludes       | expectResolved
            'excluded on b'       | [[module: 'd']] | []              | ['a', 'b', 'c']
            'excluded on c'       | []              | [[module: 'd']] | ['a', 'b', 'c']
            'excluded on both'    | [[module: 'd']] | [[module: 'd']] | ['a', 'b', 'c']
            'excluded on neither' | []              | []              | ['a', 'b', 'c', 'd']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

            "name exclude"             | [name: "dep_module-*"]                     | ['mod_one-1.1.jar', 'mod_one-1.1.war', 'mod_one-2.1.jar', 'mod_two-2.2.jar']
        }
    
        def "transitive dependencies are only excluded if excluded from each dependency declaration"() {
    //        c -> d,e
    //        a -> c (excludes 'd')
    //        b -> c (excludes 'd', 'e')
            given:
            ivyRepo.module("d").publish()
            ivyRepo.module("e").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * Module exclude of transitive dependency with a single artifact does not exclude its transitive module by using a combination of artifact exclude rules.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d -> f
         * c -> e
         */
        def "module exclude for transitive dependency having single artifact with #name does not exclude its transitive module"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top