Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasGodebug (0.16 sec)

  1. src/cmd/go/scriptconds_test.go

    	add("git", lazyBool("the 'git' executable exists and provides the standard CLI", hasWorkingGit))
    	add("GODEBUG", script.PrefixCondition("GODEBUG contains <suffix>", hasGodebug))
    	add("GOEXPERIMENT", script.PrefixCondition("GOEXPERIMENT <suffix> is enabled", hasGoexperiment))
    	add("go-builder", script.BoolCondition("GO_BUILDER_NAME is non-empty", testenv.Builder() != ""))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/hash.go

    		fmt.Fprintf(os.Stderr, "HASH[%s]: %x\n", h.name, out)
    	}
    	if h.buf != nil {
    		hashDebug.Lock()
    		if hashDebug.m == nil {
    			hashDebug.m = make(map[[HashSize]byte]string)
    		}
    		hashDebug.m[out] = h.buf.String()
    		hashDebug.Unlock()
    	}
    	return out
    }
    
    // In GODEBUG=gocacheverify=1 mode,
    // hashDebug holds the input to every computed hash ID,
    // so that we can work backward from the ID involved in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 16:18:34 UTC 2021
    - 4.9K bytes
    - Viewed (0)
Back to top