Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isWarming (0.16 sec)

  1. pkg/test/kube/dump.go

    				attempts := 0
    				backoff := time.Second * 1 // Try after 0s, 1s, 2s, 4s, 8s, or 7s total
    				for {
    					attempts++
    					warming := isWarming(cfgDump)
    					if warming == "" {
    						// Not warming
    						break
    					}
    					if attempts > 3 {
    						scopes.Framework.Warnf("FAIL: cluster/pod %s/%s/%s found warming resources (%v) on final attempt. Config: %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

            return problems.stream()
                .filter(problem -> !isWarning(problem))
                .map(TypeValidationProblemRenderer::renderMinimalInformationAbout)
                .collect(toImmutableSet());
        }
    
        private static boolean isWarning(Problem problem) {
            return problem.getDefinition().getSeverity().equals(Severity.WARNING);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/ASN1Util.java

                    }
    
                    tagNo |= (b & 0x7f);
                }
            }
    
            return tagNo;
        }
    
        static int readLength(InputStream s, int limit, boolean isParsing)
                throws IOException
        {
            int length = s.read();
            if (0 == (length >>> 7))
            {
                // definite-length short form
                return length;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue1435.go

    // should be mirrored here.
    func test1435(t *testing.T) {
    	if syscall.Getuid() != 0 {
    		t.Skip("skipping root only test")
    	}
    	if testing.Short() && testenv.Builder() != "" && os.Getenv("USER") == "swarming" {
    		// The Go build system's swarming user is known not to be root.
    		// Unfortunately, it sometimes appears as root due the current
    		// implementation of a no-network check using 'unshare -n -r'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux_test.go

    		t.Skipf("skipping on %s", runtime.GOARCH)
    	}
    
    	if os.Getuid() != 0 {
    		t.Skip("skipping root only test")
    	}
    	if testing.Short() && testenv.Builder() != "" && os.Getenv("USER") == "swarming" {
    		// The Go build system's swarming user is known not to be root.
    		// Unfortunately, it sometimes appears as root due the current
    		// implementation of a no-network check using 'unshare -n -r'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/cc_test.go

    // inLUCIBuild returns true if we're currently executing in a LUCI build.
    func inLUCIBuild() bool {
    	u, err := user.Current()
    	if err != nil {
    		return false
    	}
    	return testenv.Builder() != "" && u.Username == "swarming"
    }
    
    // compilerRequiredTsanVersion reports whether the compiler is the version required by Tsan.
    // Only restrictions for ppc64le are known; otherwise return true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top