Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 759 for excluded (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def linkTarget1 = tmpDir.createDir("linkTarget1")
            linkTarget1.createFile("included/text.txt")
            linkTarget1.createFile("excluded/text.txt")
            linkTarget1.createFile("excluded/excluded.png")
            def linkTarget2 = tmpDir.createDir("linkTarget2")
            linkTarget2.createFile("included.txt")
            linkTarget2.createFile("excluded.png")
            def linkTarget3 = tmpDir.createFile("linkTarget3")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. 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)
  9. cni/pkg/plugin/plugin.go

    	}
    
    	// Check if istio-init container is present; in that case exclude pod
    	if pi.Containers.Contains(ISTIOINIT) {
    		log.Infof("excluded due to being already injected with istio-init container")
    		return nil
    	}
    
    	if val, ok := pi.ProxyEnvironments["DISABLE_ENVOY"]; ok {
    		if val, err := strconv.ParseBool(val); err == nil && val {
    			log.Infof("excluded due to DISABLE_ENVOY on istio-proxy", podNamespace, podName)
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            moduleIdentifierFactory.module('excluded-group-id', 'excluded-artifact-id')
                >> DefaultModuleIdentifier.newId('excluded-group-id', 'excluded-artifact-id')
    
            then:
            def excluded = pomReader.dependencies[keyGroupTwo].excludedModules
            excluded == [DefaultModuleIdentifier.newId('excluded-group-id', 'excluded-artifact-id')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top