Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for lentes (0.8 sec)

  1. src/cmd/compile/internal/types2/api.go

    //
    // Type-checking consists of several interdependent phases:
    //
    // Name resolution maps each identifier (syntax.Name) in the program to the
    // language object (Object) it denotes.
    // Use Info.{Defs,Uses,Implicits} for the results of name resolution.
    //
    // Constant folding computes the exact constant value (constant.Value)
    // for every expression (syntax.Expr) that is a compile-time constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/tool/tool.go

    func runTool(ctx context.Context, cmd *base.Command, args []string) {
    	if len(args) == 0 {
    		telemetry.Inc("go/subcommand:tool")
    		listTools()
    		return
    	}
    	toolName := args[0]
    	// The tool name must be lower-case letters, numbers or underscores.
    	for _, c := range toolName {
    		switch {
    		case 'a' <= c && c <= 'z', '0' <= c && c <= '9', c == '_':
    		default:
    			fmt.Fprintf(os.Stderr, "go: bad tool name %q\n", toolName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/loopbce.go

    		}
    
    		// Second condition: b.Succs[0] dominates nxt so that
    		// nxt is computed when inc < limit.
    		if !sdom.IsAncestorEq(b.Succs[0].b, nxt.Block) {
    			// inc+ind can only be reached through the branch that enters the loop.
    			continue
    		}
    
    		// Check for overflow/underflow. We need to make sure that inc never causes
    		// the induction variable to wrap around.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/mvs/mvs.go

    	list := g.BuildList()
    	if vs := list[:len(targets)]; !slices.Equal(vs, targets) {
    		// target.Version will be "" for modload, the main client of MVS.
    		// "" denotes the main module, which has no version. However, MVS treats
    		// version strings as opaque, so "" is not a special value here.
    		// See golang.org/issue/31491, golang.org/issue/29773.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/gover/gover.go

    // compared using Compare.
    // If x and y compare equal, Max returns x.
    func Max(x, y string) string {
    	return gover.Max(x, y)
    }
    
    // IsLang reports whether v denotes the overall Go language version
    // and not a specific release. Starting with the Go 1.21 release, "1.x" denotes
    // the overall language version; the first release is "1.x.0".
    // The distinction is important because the relative ordering is
    //
    //	1.21 < 1.21rc1 < 1.21.0
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/memcombine.go

    			}
    			if mark.contains(v.ID) {
    				// marked - means it is not the root of an OR tree
    				continue
    			}
    			// Add the OR tree rooted at v to the order.
    			// We use BFS here, but any walk that puts roots before leaves would work.
    			i := len(order)
    			order = append(order, v)
    			for ; i < len(order); i++ {
    				x := order[i]
    				for j := 0; j < 2; j++ {
    					a := x.Args[j]
    					if a.Op == OpOr16 || a.Op == OpOr32 || a.Op == OpOr64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	}
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	var errsb strings.Builder
    	go func() {
    		defer wg.Done()
    		io.Copy(&errsb, r)
    	}()
    
    	// Give the program a chance to enter the function.
    	// If the program doesn't get there the test will still
    	// pass, although it doesn't quite test what we intended.
    	// This is fine as long as the program normally makes it.
    	time.Sleep(time.Millisecond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/query.go

    //     denoting the version closest to the target and satisfying the given operator,
    //     with non-prereleases preferred over prereleases.
    //
    //   - a repository commit identifier or tag, denoting that commit.
    //
    // current denotes the currently-selected version of the module; it may be
    // "none" if no version is currently selected, or "" if the currently-selected
    // version is unknown or should not be considered. If query is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/selection.go

    // match that of the effective receiver after implicit field
    // selection, then an & or * operation is implicitly applied to the
    // receiver variable or value.
    // So, x.f denotes (&x.a.b.c).f when f requires a pointer receiver but
    // x.a.b.c is a non-pointer variable; and it denotes (*x.a.b.c).f when
    // f requires a non-pointer receiver but x.a.b.c is a pointer value.
    //
    // All pointer indirections, whether due to implicit or explicit field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	var lines []string
    	ln := uint(1)
    	scanner := bufio.NewScanner(f)
    	for scanner.Scan() && ln <= end {
    		if ln >= start {
    			lines = append(lines, scanner.Text())
    		}
    		ln++
    	}
    	return &ssa.FuncLines{Filename: file, StartLineno: start, Lines: lines}, nil
    }
    
    // updateUnsetPredPos propagates the earliest-value position information for b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top