Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 286 for Weigher (1.45 sec)

  1. src/cmd/compile/internal/ssa/poset.go

    	// find the higher constant that is lower than the one that we're adding,
    	// and the lower constant that is higher.
    	// The loop is duplicated to handle signed and unsigned comparison,
    	// depending on how the poset was configured.
    	var lowerptr, higherptr uint32
    
    	if po.flags&posetFlagUnsigned != 0 {
    		var lower, higher uint64
    		val1 := n.AuxUnsigned()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    			}
    		}
    
    	case *Signature:
    		// Two function types unify if they have the same number of parameters
    		// and result values, corresponding parameter and result types unify,
    		// and either both functions are variadic or neither is.
    		// Parameter and result names are not required to match.
    		// TODO(gri) handle type parameters or document why we can ignore them.
    		if y, ok := y.(*Signature); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/alg.go

    	ASPECIAL // Type needs special comparison/hashing functions.
    )
    
    // Most kinds are priority 0. Higher numbers are higher priority, in that
    // the higher priority kinds override lower priority kinds.
    var algPriority = [ASPECIAL + 1]int8{ASPECIAL: 1, ANOEQ: 2, ANOALG: 3, AMEM: -1}
    
    // setAlg sets the algorithm type of t to a, if it is of higher
    // priority to the current algorithm type.
    func (t *Type) setAlg(a AlgKind) {
    	if t.alg == AUNK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    		flags |= pkgFromRoot
    	}
    
    	old := pkg.flags.update(flags)
    	new := old | flags
    	if new == old || !new.has(pkgImportsLoaded) {
    		// We either didn't change the state of pkg, or we don't know anything about
    		// its dependencies yet. Either way, we can't usefully load its test or
    		// update its dependencies.
    		return
    	}
    
    	if !pkg.isTest() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/download.go

    With no arguments, download applies to the modules needed to build and test
    the packages in the main module: the modules explicitly required by the main
    module if it is at 'go 1.17' or higher, or all transitively-required modules
    if at 'go 1.16' or lower.
    
    The go command will automatically download modules as needed during ordinary
    execution. The "go mod download" command is useful mainly for pre-filling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/mvs.go

    	"golang.org/x/mod/module"
    )
    
    // cmpVersion implements the comparison for versions in the module loader.
    //
    // It is consistent with gover.ModCompare except that as a special case,
    // the version "" is considered higher than all other versions.
    // The main module (also known as the target) has no version and must be chosen
    // over other versions of the same module in the module dependency graph.
    func cmpVersion(p string, v1, v2 string) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/line.go

    //
    // The rewrites argument is a ;-separated list of rewrites.
    // Each rewrite is of the form "prefix" or "prefix=>replace",
    // where prefix must match a leading sequence of path elements
    // and is either removed entirely or replaced by the replacement.
    func AbsFile(dir, file, rewrites string) string {
    	abs := file
    	if dir != "" && !filepath.IsAbs(file) {
    		abs = filepath.Join(dir, file)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    "checker". For example, the printf checker reports mistakes in
    fmt.Printf format strings.
    
    A "modular" analysis is one that inspects one package at a time but can
    save information from a lower-level package and use it when inspecting a
    higher-level package, analogous to separate compilation in a toolchain.
    The printf checker is modular: when it discovers that a function such as
    log.Fatalf delegates to fmt.Printf, it records this fact, and checks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/edit.go

    		// Everything in t.requiring[m] is now fully disqualified.
    		// We won't need to use it again.
    		delete(t.requiring, m)
    		return
    	}
    
    	// Either m is not a root, or it is a pruned root but only being disqualified
    	// when reached from the unpruned parts of the module graph.
    	// Either way, the reason for this disqualification is only visible to the
    	// unpruned parts of the module graph.
    	for _, p := range t.requiring[m] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //		enable interoperation with address sanitizer.
    //		Supported only on linux/arm64, linux/amd64, linux/loong64.
    //		Supported on linux/amd64 or linux/arm64 and only with GCC 7 and higher
    //		or Clang/LLVM 9 and higher.
    //		And supported on linux/loong64 only with Clang/LLVM 16 and higher.
    //	-cover
    //		enable code coverage instrumentation.
    //	-covermode set,count,atomic
    //		set the mode for coverage analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top