Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 190 for excluded (0.32 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

        static class IncludedBuildLocation extends DefaultExcludesLocation {
    
            @Override
            String includedFileName() {
                return "included-by-included-build.txt"
            }
    
            @Override
            String excludedFileName() {
                return "excluded-by-included-build.txt"
            }
    
            @Override
            void applyDefaultExcludes(AbstractIntegrationSpec spec, ScriptLanguage scriptLanguage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/dashboard_test.go

    			expr, f := tm["expr"]
    			if !f {
    				continue
    			}
    			queries = append(queries, expr.(string))
    		}
    	}
    	return queries, nil
    }
    
    func includeQuery(query string, excluded []string) bool {
    	for _, f := range excluded {
    		if strings.Contains(query, f) {
    			return false
    		}
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/stdlib_test.go

    				t.Skipf("skipping: GOROOT/test not present")
    			}
    		}
    		t.Fatal(err)
    	}
    
    	excluded := make(map[string]bool)
    	for _, filename := range ignore {
    		excluded[filename] = true
    	}
    
    	for _, f := range files {
    		// filter directory contents
    		if f.IsDir() || !strings.HasSuffix(f.Name(), ".go") || excluded[f.Name()] {
    			continue
    		}
    
    		// get per-file instructions
    		expectErrors := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProcessResourcesIntegrationTest.groovy

        @Issue('https://github.com/gradle/gradle/issues/16423')
        def 'java source files are excluded by default'() {
            given:
            buildFile '''
                plugins {
                    id 'java'
                }
                sourceSets {
                    main.resources.srcDir 'src/main/java'
                    main.resources.exclude '**/*.kt' // Forces an intersection pattern set to be created behind the scenes
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/IgnoredConfigurationInputs.kt

    import java.io.File
    
    
    /**
     * Defines specific configuration inputs that should not be included in the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    interface IgnoredConfigurationInputs {
        /**
         * Checks if the [file] should be excluded from the configuration inputs fingerprint if it participates
         * in file system checks, such as [File.exists], [File.isFile] etc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileSystemDefaultExcludesTest.groovy

                scriptLanguage
            )
            spec.setup(this)
    
            def excludedByBuildScriptFileName = "excluded-by-build-script.txt"
            def excludedByBuildScriptFile = file("input/${excludedByBuildScriptFileName}")
            def excludedByBuildScriptFileCopy = file("build/output/${excludedByBuildScriptFileName}")
            excludedByBuildScriptFile.text = "input"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to
     * exclude certain classes. As a special case, classes with an underscore in the name (like {@code
     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to
     * exclude certain classes. As a special case, classes with an underscore in the name (like {@code
     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top