Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 970 for excluded (0.12 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. 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)
  3. 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)
  4. pkg/kubeapiserver/admission/exclusion/resources.go

    }
    
    // Included returns a copy of the list of resources that the expression-based admission controllers
    // should intercept.
    func Included() []schema.GroupResource {
    	return slices.Clone(included)
    }
    
    // Excluded returns a copy of the list of resources that the expression-based admission controllers
    // should ignore.
    func Excluded() []schema.GroupResource {
    	return slices.Clone(excluded)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. hack/verify-flags-underscore.py

    # not contain underscore. If any flag needs to be excluded from this check,
    # need to add that flag in hack/verify-flags/excluded-flags.txt.
    def check_underscore_in_flags(rootdir, files):
        # preload the 'known' flags which don't follow the - standard
        pathname = os.path.join(rootdir, "hack/verify-flags/excluded-flags.txt")
        f = open(pathname, 'r')
        excluded_flags = set(f.read().splitlines())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K 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