Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,536 for excluded (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    		{"?exclude=dontexist", "ok", http.StatusOK, false},
    		{"?exclude=bad", "ok", http.StatusOK, true},
    		{"?verbose=true&exclude=bad", fmt.Sprintf("[+]ping ok\n[+]bad excluded: ok\n%s check passed\n", name), http.StatusOK, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. pkg/kube/inject/template.go

    	if len(portStr) == 0 || portStr == "0" {
    		// Nothing to do.
    		return excludedInboundPorts
    	}
    
    	// Exclude the readiness port if not already excluded.
    	ports := splitPorts(excludedInboundPorts)
    	outPorts := make([]string, 0, len(ports))
    	for _, port := range ports {
    		if port == portStr {
    			// The port is already excluded.
    			return excludedInboundPorts
    		}
    		port = strings.TrimSpace(port)
    		if len(port) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedVariant.java

         * using {@link org.gradle.api.artifacts.ModuleDependency#artifact(Action)} or where individual artifacts have been excluded from the variant.
         */
        @Nullable
        VariantResolveMetadata.Identifier getIdentifier();
    
        @Override
        AttributeContainerInternal getAttributes();
    
        ResolvedArtifactSet getArtifacts();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaContentRoot.java

         * @since 4.7
         */
        DomainObjectSet<? extends IdeaSourceDirectory> getTestResourceDirectories() throws UnsupportedMethodException;
    
        /**
         * The set of excluded directories.
         */
        Set<File> getExcludeDirectories();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. test/abi/double_nested_struct.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import (
    	"fmt"
    )
    
    var sink *string
    
    type stringPair struct {
    	a, b string
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            result.assertTasksExecuted(":a:one", ":a:two")
            fixture.assertProjectsConfigured(":", ":a")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "does not configure all projects when excluded task path is not qualified and is exact match for task in default project"() {
            createDirs("a", "a/child", "b", "b/child", "c")
            settingsFile << "include 'a', 'a:child', 'b', 'b:child', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/SingleDepthFilesFinderTest.groovy

            5     | []
        }
    
        def "applies filter"() {
            given:
            def excludedFile = tmpDir.getTestDirectory().createFile("excluded")
            def includedFile = tmpDir.getTestDirectory().createFile("included")
            FileFilter filter = { it != excludedFile }
    
            when:
            def result = new SingleDepthFilesFinder(1).find(tmpDir.getTestDirectory(), filter)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentIntegrationTest.groovy

            Assume.assumeFalse(OperatingSystem.current().isMacOsX() && toolChain.version.major == 3)
        }
    
        def "check task warns when current operating system family is excluded"() {
            given:
            makeSingleProject()
            swift4Component.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * List of class names that should be excluded from analysis. Names can use wildcard (* and ?). Defaults to an empty list.
         */
        @Nullable
        @Optional
        @Input
        public List<String> getExcludes() {
            return excludes;
        }
    
        public void setExcludes(@Nullable List<String> excludes) {
            this.excludes = excludes;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top