Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for Clulow (0.26 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    		// This should actually be impossible today, because the import map is the
    		// identity function for packages outside of the standard library.
    		//
    		// Part of the purpose of the vendor directory is to allow the packages in
    		// the module to continue to build in GOPATH mode, and GOPATH-mode users
    		// won't know about replacement aliasing. How important is it to maintain
    		// compatibility?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    			os.Remove(dst + "~")
    		}
    	}
    
    	mayberemovefile(dst)
    	df, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)
    	if err != nil && runtime.GOOS == "windows" {
    		// Windows does not allow deletion of a binary file
    		// while it is executing. Try to move it out of the way.
    		// If the move fails, which is likely, we'll try again the
    		// next time we do an install of this binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    		// when printing type strings.
    		if i == 0 || f.Type != list[i-1].Type {
    			bound = check.bound(f.Type)
    			if isTypeParam(bound) {
    				// We may be able to allow this since it is now well-defined what
    				// the underlying type and thus type set of a type parameter is.
    				// But we may need some additional form of cycle detection within
    				// type parameter lists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Second, it would be nice to allow Unicode marks as well as letters,
    // but marks include combining marks, and then we must deal not
    // only with case folding but also normalization: both U+00E9 ('é')
    // and U+0065 U+0301 ('e' followed by combining acute accent)
    // look the same on the page and are treated by some file systems
    // as the same path. If we do allow Unicode marks in paths, there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// a direct call, we could also inline (in which case
    			// we'd want to decrease the score even more).
    			//
    			// One thing we could do (not yet implemented) is iterate
    			// through all of the methods of "*Conc" that allow it to
    			// satisfy I, and if all are inlinable, then exploit that.
    			if pflag&ParamMayFeedInterfaceMethodCall != 0 {
    				score, tmask = adjustScore(passConcreteToNestedItfCallAdj, score, tmask)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cfg/cfg.go

    func Getenv(key string) string {
    	if !CanGetenv(key) {
    		switch key {
    		case "CGO_TEST_ALLOW", "CGO_TEST_DISALLOW", "CGO_test_ALLOW", "CGO_test_DISALLOW":
    			// used by internal/work/security_test.go; allow
    		default:
    			panic("internal error: invalid Getenv " + key)
    		}
    	}
    	val := os.Getenv(key)
    	if val != "" {
    		return val
    	}
    	envCache.once.Do(initEnvCache)
    	return envCache.m[key]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    		canDashC = false
    	}
    
    	if !canDashC {
    		return 1
    	}
    
    	// Decide how many concurrent backend compilations to allow.
    	//
    	// If we allow too many, in theory we might end up with p concurrent processes,
    	// each with c concurrent backend compiles, all fighting over the same resources.
    	// However, in practice, that seems not to happen too much.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/block.go

    // Example edges for b branching to either c or d.
    // (c and d have other predecessors.)
    //
    //	b.Succs = [{c,3}, {d,1}]
    //	c.Preds = [?, ?, ?, {b,0}]
    //	d.Preds = [?, {b,1}, ?]
    //
    // These indexes allow us to edit the CFG in constant time.
    // In addition, it informs phi ops in degenerate cases like:
    //
    //	b:
    //	   if k then c else c
    //	c:
    //	   v = Phi(x, y)
    //
    // Then the indexes tell you whether x is chosen from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/size.go

    			continue
    		}
    
    		// In 1.18, embedded types can be anything. In Go 1.17, we disallow
    		// embedding anything other than interfaces. This requirement was caught
    		// by types2 already, so allow non-interface here.
    		if !m.Type.IsInterface() {
    			continue
    		}
    
    		// Embedded interface: duplicate all methods
    		// and add to t's method set.
    		for _, t1 := range m.Type.AllMethods() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // instead. Though a *Node also uniquely identifies a node in a graph,
    // currently, during trimming, graphs are rebuilt from scratch using only the
    // NodeSet, so there would not be the required context of the initial graph to
    // allow for the use of *Node.
    type NodePtrSet map[*Node]bool
    
    // FindOrInsertNode takes the info for a node and either returns a matching node
    // from the node map if one exists, or adds one to the map if one does not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top