Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,832 for excluded (0.32 sec)

  1. 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)
  2. 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)
  3. internal/bucket/versioning/versioning.go

    	Suspended State = "Suspended"
    )
    
    var (
    	errExcludedPrefixNotSupported = Errorf("excluded prefixes extension supported only when versioning is enabled")
    	errTooManyExcludedPrefixes    = Errorf("too many excluded prefixes")
    )
    
    // ExcludedPrefix - holds individual prefixes excluded from being versioned.
    type ExcludedPrefix struct {
    	Prefix string
    }
    
    // Versioning - Configuration for bucket versioning.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyFileVisitorImplTest.groovy

            1 * fileCopyAction1.execute(defaultFileCopyDetails)
            1 * fileCopyAction2.execute(defaultFileCopyDetails)
            2 * defaultFileCopyDetails.isExcluded() >> false
        }
    
        def "visit file for excluded file copy details"() {
            given:
            FileVisitDetails dirDetails = Mock()
            DefaultFileCopyDetails defaultFileCopyDetails = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 20 13:25:37 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. internal/bucket/versioning/versioning_test.go

    	}
    	tests := []struct {
    		prefix   string
    		excluded bool
    	}{
    		{
    			prefix:   "app1-jobs/output/_temporary/attempt1/data.csv",
    			excluded: true,
    		},
    		{
    			prefix:   "app1-jobs/output/final/attempt1/data.csv",
    			excluded: false,
    		},
    	}
    
    	for i, test := range tests {
    		if v.PrefixSuspended(test.prefix) != test.excluded {
    			if test.excluded {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 08 05:06:44 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/scripts/process-log.groovy

    /**
     * This script is used to process a DEBUG log of gradle and
     * generates an output directory with the traces of merged
     * exclude rules and application of exclude rules during a
     * build.
     */
    import groovy.json.JsonOutput
    import groovy.json.JsonSlurper
    
    File logFile = new File(args[0])
    File processedDirectory = findProcessedDirectory()
    File excludesDir = new File(processedDirectory, "exclusions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactFilterIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'root'
                include 'libInclude'
                include 'libExclude'
            """
            mavenRepo.module("org.include", "included", "1.3").publish()
            mavenRepo.module("org.exclude", "excluded", "2.3").publish()
    
            buildFile << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
                project(':libInclude') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top