Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for are (1.05 sec)

  1. src/cmd/go/internal/modload/load.go

    // and all requested packages are in "all", then loading completes in a single
    // iteration.
    // TODO(bcmills): We should also be able to load in a single iteration if the
    // requested packages all come from modules that are themselves tidy, regardless
    // of whether those packages are in "all". Today, that requires two iterations
    // if those packages are not found in existing dependencies of the main module.
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	if pruning == unpruned {
    		// We are converting a pruned module to an unpruned one. The roots of a
    		// pruned module graph are a superset of the roots of an unpruned one, so
    		// we don't need to add any new roots — we just need to drop the ones that
    		// are redundant, which is exactly what updateUnprunedRoots does.
    		return updateUnprunedRoots(ctx, rs.direct, rs, nil)
    	}
    
    	// We are converting an unpruned module to a pruned one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	ExplicitWriteGoMod bool
    )
    
    // Variables set in Init.
    var (
    	initialized bool
    
    	// These are primarily used to initialize the MainModules, and should be
    	// eventually superseded by them but are still used in cases where the module
    	// roots are required but MainModules hasn't been initialized yet. Set to
    	// the modRoots of the main modules.
    	// modRoots != nil implies len(modRoots) > 0
    	modRoots []string
    	gopath   string
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	    part of a benchmark's identifier must match the corresponding
    	    element in the sequence, if any. Possible parents of matches
    	    are run with b.N=1 to identify sub-benchmarks. For example,
    	    given -bench=X/Y, top-level benchmarks matching X are run
    	    with b.N=1 to find any sub-benchmarks matching Y, which are
    	    then run in full.
    
    	-benchtime t
    	    Run enough iterations of each benchmark to take t, specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    // it using a greedy register allocator. Then all merge edges
    // (those targeting a block with len(Preds)>1) are processed to
    // shuffle data into the place that the target of the edge expects.
    //
    // The greedy allocator moves values into registers just before they
    // are used, spills registers only when necessary, and spills the
    // value whose next use is farthest in the future.
    //
    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/cgo/gcc.go

    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		p.From.Reg = v.Args[0].Reg()
    		p.To.Reg = v.Reg()
    		p.To.Type = obj.TYPE_REG
    
    	case ssa.OpPPC64MOVDload, ssa.OpPPC64MOVWload:
    
    		// MOVDload and MOVWload are DS form instructions that are restricted to
    		// offsets that are a multiple of 4. If the offset is not a multiple of 4,
    		// then the address of the symbol to be loaded is computed (base + offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    // license that can be found in the LICENSE file.
    
    // Package modget implements the module-aware “go get” command.
    package modget
    
    // The arguments to 'go get' are patterns with optional version queries, with
    // the version queries defaulting to "upgrade".
    //
    // The patterns are normally interpreted as package patterns. However, if a
    // pattern cannot match a package, it is instead interpreted as a *module*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    		targ = len(link) - 1
    	}
    	ttarg := mtime(link[targ])
    
    	// Gather files that are sources for this target.
    	// Everything in that directory, and any target-specific
    	// additions.
    	files := xreaddir(dir)
    
    	// Remove files beginning with . or _,
    	// which are likely to be editor temporary files.
    	// This is the same heuristic build.ScanDir uses.
    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/types2/api_test.go

    		{`package g3; type N[A any] int; func (N[_]) m() {}`, `N`, `type g3.N[A any] int`},
    
    		// Uses of fields are instantiated.
    		{`package s1; type N[A any] struct{ a A }; var f = N[int]{}.a`, `a`, `field a int`},
    		{`package s1; type N[A any] struct{ a A }; func (r N[B]) m(b B) { r.a = b }`, `a`, `field a B`},
    
    		// Uses of methods are uses of the instantiated method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top