Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for light (0.06 sec)

  1. src/internal/trace/order.go

    	//
    	// The runtime is careful to make sure that any GoCreateSyscall
    	// event will enter the runtime emitting events for reacquiring a P.
    	//
    	// Note: we might have a P here. The P might not be released
    	// eagerly by the runtime, and it might get stolen back later
    	// (or never again, if the program is going to exit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	// and Port names directly in nftables chain names (though note that this assumes
    	// that the chain name won't *start* with any of those strings, since that might
    	// be illegal). We use "/" to separate the parts of the name, which is one of the
    	// two characters allowed in a chain name that isn't allowed in our input strings.
    
    	name := fmt.Sprintf("%s/%s/%s/%s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    // example.com/foo, and those modules may have independent v0.1.0 tags — so the
    // input 'example.com/foo@v0.1.0' could syntactically refer to the variant of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.moveRequestCycle = p.schedulingCycle
    
    	if p.isSchedulingQueueHintEnabled && len(p.inFlightPods) != 0 {
    		logger.V(5).Info("Event received while pods are in flight", "event", event.Label, "numPods", len(p.inFlightPods))
    		// AddUnschedulableIfNotPresent might get called for in-flight Pods later, and in
    		// AddUnschedulableIfNotPresent we need to know whether events were
    		// observed while scheduling them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    //
    // In the function above, the incoming parameter "used" is fully live,
    // "notused" is not live, and "s" is partially live (only the length
    // field of the string is used). At the point where debug value
    // analysis runs, we might expect to see an entry block with:
    //
    //	b1:
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //
    // While this is an accurate picture of the live incoming params,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    		runtime: runtime,
    	}
    	nested.workerChannelFn = func(uid types.UID, in chan struct{}) <-chan struct{} {
    		ch := make(chan struct{})
    		go func() {
    			defer close(ch)
    			// TODO: this is an eager loop, we might want to lazily read from in only once
    			// ch is empty
    			for range in {
    				w.waitForPod(uid)
    				w.tick()
    				ch <- struct{}{}
    			}
    		}()
    		return ch
    	}
    	return w, processed
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/controller/job/job_controller.go

    		jm.deletePod(logger, curPod, false)
    		return
    	}
    
    	// Don't check if oldPod has the finalizer, as during ownership transfer
    	// finalizers might be re-added and removed again in behalf of the new owner.
    	// If all those Pod updates collapse into a single event, the finalizer
    	// might be removed in oldPod and curPod. We want to record the latest
    	// state.
    	finalizerRemoved := !hasJobTrackingFinalizer(curPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top