Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for excluded (0.12 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. 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)
  3. 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)
  4. 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)
  5. pkg/test/framework/components/echo/echotest/filters.go

    		if needed <= 0 {
    			needed = 1
    		}
    
    		return nRegularPodPerNamespace(needed, exclude)(instances).Append(nonRegular)
    	}
    }
    
    func SingleSimplePodServiceAndAllSpecial(exclude ...echo.Instance) Filter {
    	return SimplePodServiceAndAllSpecial(1, exclude...)
    }
    
    func nRegularPodPerNamespace(needed int, exclude echo.Instances) Filter {
    	return func(instances echo.Instances) echo.Instances {
    		// Apply the filters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. hack/make-rules/verify.sh

      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    # Exclude typecheck in certain cases, if they're running in a separate job.
    if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-typecheck.sh"              # runs in separate typecheck job
        )
    fi
    
    # Exclude dependency checks in certain cases, if they're running in a separate job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tools/istio-iptables/pkg/cmd/root.go

    		"Comma separated list of IP ranges in CIDR form to be excluded from redirection. "+
    			"Only applies when all  outbound traffic (i.e. \"*\") is being redirected.",
    		&cfg.OutboundIPRangesExclude)
    
    	flag.BindEnv(fs, constants.OutboundPorts, "q",
    		"Comma separated list of outbound ports to be explicitly included for redirection to Envoy.",
    		&cfg.OutboundPortsInclude)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/IntegrationTest.groovy

    import java.lang.annotation.Target
    
    /**
     * This annotation is a marker and guarantees all integration tests are tagged.
     *
     * When we use JUnit Platform `includeTags('SomeTag')`, all spock tests are excluded:
     * https://github.com/spockframework/spock/issues/1288 . As a workaround,
     * we tag all non-spock integration tests and use `includeTags(none() | SomeTag)` to make
     * sure spock engine tests are executed.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top