Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for cache4 (0.49 sec)

  1. src/cmd/go/internal/test/test.go

    		return false
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => input ID %x => %x\n", a.Package.ImportPath, testID, testInputsID, testAndInputKey(testID, testInputsID))
    	}
    
    	// Parse cached result in preparation for changing run time to "(cached)".
    	// If we can't parse the cached result, don't use it.
    	data, entry, err = cache.GetBytes(cache.Default(), testAndInputKey(testID, testInputsID))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	t.Log("\n\nREPEAT\n\n")
    
    	tg.run("test", "-x", "-v", "-short", "t/...")
    	tg.grepStdout(`ok  \tt/t1\t\(cached\)`, "did not cache t1")
    	tg.grepStdout(`ok  \tt/t2\t\(cached\)`, "did not cache t2")
    	tg.grepStdout(`ok  \tt/t3\t\(cached\)`, "did not cache t3")
    	tg.grepStdout(`ok  \tt/t4\t\(cached\)`, "did not cache t4")
    	tg.grepStderrNot(`[\\/](compile|gccgo) `, "incorrectly ran compiler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    //
    // (See https://golang.org/issue/26607 and https://golang.org/issue/34650.)
    func (ld *loader) checkMultiplePaths() {
    	mods := ld.requirements.rootModules
    	if cached := ld.requirements.graph.Load(); cached != nil {
    		if mg := cached.mg; mg != nil {
    			mods = mg.BuildList()
    		}
    	}
    
    	firstPath := map[module.Version]string{}
    	for _, mod := range mods {
    		src := resolveReplacement(mod)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	rs.graphOnce.Do(func() {
    		mg, mgErr := readModGraph(ctx, rs.pruning, rs.rootModules, nil)
    		rs.graph.Store(&cachedGraph{mg, mgErr})
    	})
    	cached := rs.graph.Load()
    	return cached.mg, cached.err
    }
    
    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    	}
    
    	s.regs = make([]regState, s.numRegs)
    	nv := f.NumValues()
    	if cap(s.f.Cache.regallocValues) >= nv {
    		s.f.Cache.regallocValues = s.f.Cache.regallocValues[:nv]
    	} else {
    		s.f.Cache.regallocValues = make([]valState, nv)
    	}
    	s.values = s.f.Cache.regallocValues
    	s.orig = s.f.Cache.allocValueSlice(nv)
    	s.copies = make(map[*Value]bool)
    	for _, b := range s.visitOrder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    	// The "std" module is special within GOROOT/src, but not otherwise.
    	inGorootSrc map[module.Version]bool
    
    	modFiles map[module.Version]*modfile.File
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		os.Exit(2)
    	}
    	return string(stdout), string(stderr)
    }
    
    // A typeConv is a translator from dwarf types to Go types
    // with equivalent memory layout.
    type typeConv struct {
    	// Cache of already-translated or in-progress types.
    	m map[string]*Type
    
    	// Map from types to incomplete pointers to those types.
    	ptrs map[string][]*Type
    	// Keys of ptrs in insertion order (deterministic worklist)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/asm0.go

    	{AWSBH, C_REG, C_NONE, C_REG, 59, 4, 0, 0, 0},
    	{ADSBH, C_REG, C_NONE, C_REG, 59, 4, 0, sys.MIPS64, 0},
    
    	{ABREAK, C_REG, C_NONE, C_SEXT, 7, 4, REGSB, sys.MIPS64, 0}, /* really CACHE instruction */
    	{ABREAK, C_REG, C_NONE, C_SAUTO, 7, 4, REGSP, sys.MIPS64, 0},
    	{ABREAK, C_REG, C_NONE, C_SOREG, 7, 4, REGZERO, sys.MIPS64, 0},
    	{ABREAK, C_NONE, C_NONE, C_NONE, 5, 4, 0, 0, 0},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	// We used to use it for C objects.
    	// Now we use it for the build cache, to separate dist's cache
    	// from any other cache the user might have, and for the location
    	// to build the bootstrap versions of the standard library.
    	obj := pathf("%s/pkg/obj", goroot)
    	if !isdir(obj) {
    		xmkdir(obj)
    	}
    	xatexit(func() { xremove(obj) })
    
    	// Create build cache directory.
    	objGobuild := pathf("%s/pkg/obj/go-build", goroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	if f.RegAlloc == nil {
    		f.Fatalf("BuildFuncDebug on func %v that has not been fully processed", f)
    	}
    	state := &f.Cache.debugState
    	state.loggingLevel = loggingLevel % 1000
    
    	// A specific number demands exactly that many iterations. Under
    	// particular circumstances it make require more than the total of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top