Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,081 for we (0.24 sec)

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

    		}
    		for _, m := range rs.rootModules {
    			if inRootPaths[m.Path] {
    				// This root specifies a redundant path. We already retained the
    				// selected version of this path when we saw it before, so omit the
    				// redundant copy regardless of its version.
    				//
    				// When we read the full module graph, we include the dependencies of
    				// every root even if that root is redundant. That better preserves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/import.go

    			if err != nil {
    				if sumErr := (*sumMissingError)(nil); errors.As(err, &sumErr) {
    					// We are missing a sum needed to fetch a module in the build list.
    					// We can't verify that the package is unique, and we may not find
    					// the package at all. Keep checking other modules to decide which
    					// error to report. Multiple sums may be missing if we need to look in
    					// multiple nested modules to resolve the import; we'll report them all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    // N may not be immediately available.
    //  - During type-checking, we allocate N before type-checking its underlying
    //    type or methods, so that we may resolve recursive references.
    //  - When loading from export data, we may load its methods and underlying
    //    type lazily using a provided load function.
    //  - After instantiating, we lazily expand the underlying type and methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    					pos = value
    				case isAttr(t):
    					pos = key
    				case types.IsInterface(t):
    					// As we do not do dataflow, we do not know what the dynamic type is.
    					// But we might be able to learn enough to make a decision.
    					if types.AssignableTo(stringType, t) {
    						// t must be an empty interface. So it can also be an Attr.
    						// We don't know enough to make an assumption.
    						pos = unknown
    						continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    	if typ != nil {
    		obj.typ = check.varType(typ)
    		// We cannot spread the type to all lhs variables if there
    		// are more than one since that would mark them as checked
    		// (see Checker.objDecl) and the assignment of init exprs,
    		// if any, would not be checked.
    		//
    		// TODO(gri) If we have no init expr, we should distribute
    		// a given type otherwise we need to re-evaluate the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    go test -timeout=3s -fuzz=FuzzFast -fuzztime=5s
    
    # We should see the same behavior when invoking the test binary directly.
    go test -c
    exec ./fuzz.test$GOEXE -test.timeout=3s -test.fuzz=FuzzFast -test.fuzztime=5s -test.parallel=1 -test.fuzzcachedir=$WORK/cache
    
    # Timeout should not cause inputs to be written as crashers.
    ! exists testdata/fuzz
    
    # When we use fuzztime with an "x" suffix, it runs a specific number of times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/resolver.go

    	// Algorithm: Starting from a type expression, which may be a name,
    	// we follow that type through alias declarations until we reach a
    	// non-alias type name. If we encounter anything but pointer types or
    	// parentheses we're done. If we encounter more than one pointer type
    	// we're done.
    	ptr = seenPtr
    	var seen map[*TypeName]bool
    	for {
    		// check if we have a pointer type
    		// if pexpr, _ := typ.(*ast.StarExpr); pexpr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    			c = High
    		}
    	}
    
    	// We store the results of the computations of the tie-breaker rules along
    	// with the best match. There is no need to do the checks once we determine
    	// we have a winner, but we do still need to do the tie-breaker computations.
    	// We use "beaten" to keep track if we still need to do the checks.
    	beaten := false // true if the new pair defeats the current one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset.go

    // order so that if we know that A<B<C and later learn that A==D, Ordered will return
    // true for D<C.
    //
    // It is also possible to record inequality relations between nodes with SetNonEqual;
    // non-equality relations are not transitive, but they can still be useful: for instance
    // if we know that A<=B and later we learn that A!=B, we can deduce that A<B.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. src/cmd/trace/pprof.go

    	} else {
    		// Not in the map.
    		rec = new(traceviewer.ProfileRecord)
    	}
    	// Insert regardless of whether we have a match in m.pcs.
    	// Even if we have a match, we want to keep the newest version
    	// of that stack, since we're much more likely tos see it again
    	// as we iterate through the trace linearly. Simultaneously, we
    	// are likely to never see the old stack again.
    	m.pcs[pcs] = stack
    	m.stacks[stack] = rec
    	return rec
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top