Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,189 for excluded1 (0.17 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            !filtered.contains(excluded1)
            !filtered.contains(ignored1)
        }
    
        def testCanFilterAndSelectFiles() {
            File included1 = new File(testDir, 'subDir/included1')
            File included2 = new File(testDir, 'subDir2/included2')
            File excluded1 = new File(testDir, 'subDir/notincluded')
            File excluded2 = new File(testDir, 'subDir/excluded')
            File ignored1 = new File(testDir, 'ignored')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            project.configurations.create('excluded1')
            project.configurations.create('excluded2')
            module.offline = true
    
            when:
            project.dependencies.add('testRuntimeOnly', project.layout.files('lib/guava.jar'))
            project.dependencies.add('testRuntimeOnly', project.layout.files('lib/slf4j-api.jar'))
            project.dependencies.add('excluded1', project.layout.files('lib/guava.jar'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            parameter.buildFile = new File("build file")
            parameter.settingsFile = new File("settings file")
            parameter.taskNames = ['task1']
            parameter.excludedTaskNames = ['excluded1']
            parameter.dryRun = true
            parameter.continueOnFailure = true
            parameter.rerunTasks = true
            parameter.refreshDependencies = true
            parameter.parallelProjectExecutionEnabled = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/MavenDependencyDescriptorTest.groovy

        }
    
        def "applies exclude rules when traversing a configuration"() {
            def exclude1 = new DefaultExclude(DefaultModuleIdentifier.newId("group1", "*"), ["from"] as String[], PatternMatchers.EXACT)
            def exclude2 = new DefaultExclude(DefaultModuleIdentifier.newId("group2", "*"), ["from"] as String[], PatternMatchers.EXACT)
            def dep = createWithExcludes(requested, [exclude1, exclude2])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

            }
        }
    
        def "writes dependency with excludes"() {
            given:
            def exclude1 = Mock(ExcludeRule)
            def exclude2 = Mock(ExcludeRule)
            def exclude3 = Mock(ExcludeRule)
            def dependency = new DefaultMavenDependency("dep-group", "dep-name", "dep-version", null, null, "runtime", [exclude1, exclude2, exclude3] as Set, false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            'excluded on b'    | [[module: 'd']] | []              | ['a', 'b', 'c', 'd']
            'excluded on c'    | []              | [[module: 'd']] | ['a', 'b', 'c', 'd']
            'excluded on both' | [[module: 'd']] | [[module: 'd']] | ['a', 'b', 'c']
        }
    
        /**
         * When a module is depended on via a single chained path, it is excluded if excluded on any of the links in that path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            def dep = createWithExcludes(requested, [exclude1, exclude2, exclude3])
            def configuration = configuration("from")
            def moduleExclusions = new ModuleExclusions()
    
            expect:
            moduleExclusions.excludeAny(copyOf(dep.getConfigurationExcludes(configuration.hierarchy))) == moduleExclusions.excludeAny(ImmutableList.of(exclude1, exclude2))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

         * @return this
         * @see PatternFilterable Pattern Format
         */
        PatternFilterable exclude(Iterable<String> excludes);
    
        /**
         * Adds an exclude spec. This method may be called multiple times to append new specs.
         *
         * If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/Exclude.java

    import java.util.Set;
    
    /**
     * Represents the Ivy descriptor representation of an exclude.
     * In an Ivy descriptor, and exclude can apply to a number of configurations.
     */
    public interface Exclude extends ExcludeMetadata {
        /**
         * The configurations that this exclude will apply to.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top