Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for light (0.05 sec)

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

    				// In case we're loading a type out of a dictionary, we need to record
    				// that the containing function might put that type in an interface.
    				// That information is currently recorded in relocations in the dictionary,
    				// but if we perform this load at compile time then the dictionary
    				// might be dead.
    				reflectdata.MarkTypeSymUsedInInterface(r.Sym, f.fe.Func().Linksym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	// Historically, RoundTrip has not modified the Request in any way.
    	// We could avoid the need to keep a map of all in-flight requests by adding
    	// a field to the Request containing its cancel func, and setting that field
    	// while the request is in-flight. Callers aren't supposed to reuse a Request
    	// until after the response body is closed, so this wouldn't violate any
    	// concurrency guarantees.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	var value = struct{ Str string }{hello}
    	for i := 0; i < len(delimPairs); i += 2 {
    		text := ".Str"
    		left := delimPairs[i+0]
    		trueLeft := left
    		right := delimPairs[i+1]
    		trueRight := right
    		if left == "" { // default case
    			trueLeft = "{{"
    		}
    		if right == "" { // default case
    			trueRight = "}}"
    		}
    		text = trueLeft + text + trueRight
    		// Now add a comment
    		text += trueLeft + "/*comment*/" + trueRight
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    func (c *typeConv) FinishType(pos token.Pos) {
    	// Completing one pointer type might produce more to complete.
    	// Keep looping until they're all done.
    	for len(c.ptrKeys) > 0 {
    		dtype := c.ptrKeys[0]
    		dtypeKey := dtype.String()
    		c.ptrKeys = c.ptrKeys[1:]
    		ptrs := c.ptrs[dtypeKey]
    		delete(c.ptrs, dtypeKey)
    
    		// Note Type might invalidate c.ptrs[dtypeKey].
    		t := c.Type(dtype, pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// previously-resolved packages to become unresolved. For example, the
    		// module providing an unstable package might be upgraded to a version
    		// that no longer contains that package. If we then resolve the missing
    		// package, we might add yet another root that upgrades away some other
    		// dependency. (The tests in mod_tidy_convergence*.txt illustrate some
    		// particularly worrisome cases.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	//
    	// The direct map is keyed by module paths, not module versions. When a
    	// module's selected version changes, we assume that it remains direct if the
    	// previous version was a direct dependency. That assumption might not hold in
    	// rare cases (such as if a dependency splits out a nested module, or merges a
    	// nested module back into a parent module).
    	direct map[string]bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    		// Non-HBONE clients will attempt to bypass the waypoint
    		if !src.Config().WaypointClient() && dst.Config().HasAnyWaypointProxy() && !src.Config().HasSidecar() {
    			// TODO currently leads to no L7 processing, in the future it might be denied
    			// opt.Check = check.Error()
    			opt.Check = tcpValidator
    		}
    
    		// Any client will attempt to bypass a workload waypoint (not both service and workload waypoint)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    	p.checkLimits(re)
    	return re
    }
    
    // maybeConcat implements incremental concatenation
    // of literal runes into string nodes. The parser calls this
    // before each push, so only the top fragment of the stack
    // might need processing. Since this is called before a push,
    // the topmost literal is no longer subject to operators like *
    // (Otherwise ab* would turn into (ab)*.)
    // If r >= 0 and there's a node left over, maybeConcat uses it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			if code == "cl" || code == "cp" {
    				right = st.exprList('E')
    			} else if code == "dt" || code == "pt" {
    				if len(st.str) > 0 && st.str[0] == 'L' {
    					right = st.exprPrimary()
    				} else {
    					right = st.unresolvedName()
    					if len(st.str) > 0 && st.str[0] == 'I' {
    						args := st.templateArgs()
    						right = &Template{Name: right, Args: args}
    					}
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		lock(&s.lock)
    		// Stop the timer here because s.wake is unable to do it for us.
    		// We don't really care if we succeed in stopping the timer. One
    		// reason we might fail is that we've already woken up, but the timer
    		// might be in the process of firing on some other P; essentially we're
    		// racing with it. That's totally OK. Double wake-ups are perfectly safe.
    		s.timer.stop()
    		unlock(&s.lock)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top