Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 866 for we (0.1 sec)

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

    						obj = f
    						indirect = e.indirect
    						continue // we can't have a matching interface method
    					}
    					// Collect embedded struct fields for searching the next
    					// lower depth, but only if we have not seen a match yet
    					// (if we have a match it is either the desired field or
    					// we have a name collision on the same depth; in either
    					// case we don't need to look further).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    #
    # y.2 --- x.2-pre (provides package y)
    #
    #
    # When we resolve the missing import of y in x_test, we add y@latest — which is
    # y.2, not y.1 — as a new dependency. That upgrades to x to x.2-pre, which
    # removes package x (and also the need for module y). We can then safely remove
    # the dependency on module y, because nothing imports package y any more!
    #
    # We might be tempted to remove the dependency on module x for the same reason:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue27340/a.go

    // In separate directory to isolate #pragma GCC diagnostic.
    
    package issue27340
    
    // We use the #pragma to avoid a compiler warning about incompatible
    // pointer types, because we generate code passing a struct ptr rather
    // than using the typedef. This warning is expected and does not break
    // a normal build.
    // We can only disable -Wincompatible-pointer-types starting with GCC 5.
    
    // #if __GNU_MAJOR__ >= 5
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    //   (3) ... = Op c ...     // use the restored value
    //
    // Allocation occurs normally until we reach (3) and we realize we have
    // a use of v and it isn't in any register. At that point, we allocate
    // a spill (a StoreReg) for v. We can't determine the correct place for
    // the spill at this point, so we allocate the spill as blockless initially.
    // The restore is then generated to load v back into a register so it can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    	// cmd/go: see https://golang.org/issue/32817.
    	//
    	// We work around this bug by treating EDEADLK as always spurious. If there
    	// really is a lock-ordering bug between the interacting processes, it will
    	// become a livelock instead, but that's not appreciably worse than if we had
    	// a proper flock implementation (which generally does not even attempt to
    	// diagnose deadlocks).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    // wrapper functions where necessary.
    func (s *SymABIs) GenABIWrappers() {
    	// For cgo exported symbols, we tell the linker to export the
    	// definition ABI to C. That also means that we don't want to
    	// create ABI wrappers even if there's a linkname.
    	//
    	// TODO(austin): Maybe we want to create the ABI wrappers, but
    	// ensure the linker exports the right ABI definition under
    	// the unmangled name?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    // the scope of each of identifier we select. Otherwise, we will insert a variable at 'pos' that
    // is unrecognized.
    func MatchingIdents(typs []types.Type, node ast.Node, pos token.Pos, info *types.Info, pkg *types.Package) map[types.Type][]string {
    
    	// Initialize matches to contain the variable types we are searching for.
    	matches := make(map[types.Type][]string)
    	for _, typ := range typs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    		}
    		ast.Walk(f, n.Cond)
    		ast.Walk(f, n.Body)
    		if n.Else == nil {
    			return nil
    		}
    		// The elses are special, because if we have
    		//	if x {
    		//	} else if y {
    		//	}
    		// we want to cover the "if y". To do this, we need a place to drop the counter,
    		// so we add a hidden block:
    		//	if x {
    		//	} else {
    		//		if y {
    		//		}
    		//	}
    		elseOffset := f.findText(n.Body.End(), "else")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/stackcheck.go

    	walk = func(origin, sym loader.Sym) (cycle bool, lowest loader.Sym) {
    		if _, ok := nodes[sym]; !ok {
    			// We already deleted this node.
    			return false, 0
    		}
    		delete(nodes, sym)
    
    		if origin == sym {
    			// We found an unrooted cycle. We already
    			// deleted all children of this node. Walk
    			// back up, tracking the lowest numbered
    			// symbol in this cycle.
    			return true, sym
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/nilcheck.go

    			// a value resulting from taking the address of a
    			// value, or a value constructed from an offset of a
    			// non-nil ptr (OpAddPtr) implies it is non-nil
    			// We also assume unsafe pointer arithmetic generates non-nil pointers. See #27180.
    			// We assume that SlicePtr is non-nil because we do a bounds check
    			// before the slice access (and all cap>0 slices have a non-nil ptr). See #30366.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top