Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for lentes (0.41 sec)

  1. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/objset.go

    type objset map[string]Object // initialized lazily
    
    // insert attempts to insert an object obj into objset s.
    // If s already contains an alternative object alt with
    // the same name, insert leaves s unchanged and returns alt.
    // Otherwise it inserts obj and returns nil.
    func (s *objset) insert(obj Object) Object {
    	id := obj.Id()
    	if alt := (*s)[id]; alt != nil {
    		return alt
    	}
    	if *s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 23:30:38 UTC 2020
    - 928 bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/search.go

    		return func(p *Package) bool {
    			// Compute relative path to dir and see if it matches the pattern.
    			rel, err := filepath.Rel(dir, p.Dir)
    			if err != nil {
    				// Cannot make relative - e.g. different drive letters on Windows.
    				return false
    			}
    			rel = filepath.ToSlash(rel)
    			if rel == ".." || strings.HasPrefix(rel, "../") {
    				return false
    			}
    			return matchPath(rel)
    		}
    	case pattern == "all":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/xposmap.go

    	for i, p := range x {
    		maps[int32(i)] = newBiasedSparseMap(int(p.first), int(p.last))
    	}
    	return &xposmap{maps: maps, lastIndex: -1} // zero for the rest is okay
    }
    
    // clear removes data from the map but leaves the sparse skeleton.
    func (m *xposmap) clear() {
    	for _, l := range m.maps {
    		if l != nil {
    			l.clear()
    		}
    	}
    	m.lastIndex = -1
    	m.lastMap = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:48:16 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/sym.go

    		return a.Name < b.Name
    	}
    	if !ea {
    		return a.Pkg.Path < b.Pkg.Path
    	}
    	return false
    }
    
    // IsExported reports whether name is an exported Go symbol (that is,
    // whether it begins with an upper-case letter).
    func IsExported(name string) bool {
    	if r := name[0]; r < utf8.RuneSelf {
    		return 'A' <= r && r <= 'Z'
    	}
    	r, _ := utf8.DecodeRuneInString(name)
    	return unicode.IsUpper(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top