Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 130 for enter_1 (0.14 sec)

  1. src/internal/trace/order.go

    	}
    	if state.status != go122.GoRunning {
    		return curCtx, false, fmt.Errorf("%s event for goroutine that's not %s", go122.EventString(ev.typ), GoRunning)
    	}
    	// Goroutine entered a syscall. It's still running on this P and M.
    	state.status = go122.GoSyscall
    	pState, ok := o.pStates[curCtx.P]
    	if !ok {
    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/controller/deployment/deployment_controller.go

    		AddFunc: func(obj interface{}) {
    			dc.addDeployment(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			dc.updateDeployment(logger, oldObj, newObj)
    		},
    		// This will enter the sync loop and no-op, because the deployment has been deleted from the store.
    		DeleteFunc: func(obj interface{}) {
    			dc.deleteDeployment(logger, obj)
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. tests/integration/README.md

    ### Using Components
    
    The framework itself is just a platform for running tests and tracking resources. Without these `resources`, there
    isn't much added value. Enter: components.
    
    Components are utilities that provide abstractions for Istio resources. They are maintained in the
    [components package](https://github.com/istio/istio/tree/master/pkg/test/framework/components), which defines
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	// and thinks that the waitgroup inside httptest.Server is added to concurrently
    	// with us closing it. If we timed out immediately, we could close the testserver
    	// before we entered the handler. We're not timing out immediately and there's
    	// no way we would be done before we entered the handler, but the race detector
    	// doesn't know this, so synchronize explicitly.
    	defer func() { donec <- true }()
    
    	cst.c.Timeout = 5 * time.Millisecond
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    	// the $GOMAXPROCS accounting.
    	//
    	// fn may call back into Go code, in which case we'll exit the
    	// "system call", run the Go code (which may grow the stack),
    	// and then re-enter the "system call" reusing the PC and SP
    	// saved by entersyscall here.
    	entersyscall()
    
    	// Tell asynchronous preemption that we're entering external
    	// code. We do this after entersyscall because this may block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    // - The goroutine lost its P and acquired a different one, and is now running with that P.
    func (tl traceLocker) GoSysExit(lostP bool) {
    	ev := traceEvGoSyscallEnd
    	procStatus := traceProcSyscall // Procs implicitly enter traceProcSyscall on GoSyscallBegin.
    	if lostP {
    		ev = traceEvGoSyscallEndBlocked
    		procStatus = traceProcRunning // If a G has a P when emitting this event, it reacquired a P and is indeed running.
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		semconv.K8SPodNameKey.String(pod.Name),
    		attribute.String("k8s.pod.update_type", updateType.String()),
    		semconv.K8SNamespaceNameKey.String(pod.Namespace),
    	))
    	klog.V(4).InfoS("SyncPod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer func() {
    		klog.V(4).InfoS("SyncPod exit", "pod", klog.KObj(pod), "podUID", pod.UID, "isTerminal", isTerminal)
    		otelSpan.End()
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. cmd/common-main.go

    			fmt.Println("Refer to the docs here on how to run it as a Windows Service https://github.com/minio/minio-service/tree/master/windows")
    			fmt.Println("Press the Enter Key to Exit")
    			fmt.Scanln()
    			os.Exit(1)
    		}
    	}
    
    	logger.Init(GOPATH, GOROOT)
    	logger.RegisterError(config.FmtError)
    
    	globalBatchJobsMetrics = batchJobMetrics{metrics: make(map[string]*batchJobInfo)}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    //
    //go:nosplit
    func osPreemptExtEnter(mp *m) {
    	for !atomic.Cas(&mp.preemptExtLock, 0, 1) {
    		// An asynchronous preemption is in progress. It's not
    		// safe to enter external code because it may call
    		// ExitProcess and deadlock with SuspendThread.
    		// Ideally we would do the preemption ourselves, but
    		// can't since there may be untyped syscall arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    // If preserve=true, don't return it to heap nor relink in mcentral lists;
    // caller takes care of it.
    func (sl *sweepLocked) sweep(preserve bool) bool {
    	// It's critical that we enter this function with preemption disabled,
    	// GC must not start while we are in the middle of this function.
    	gp := getg()
    	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
    		throw("mspan.sweep: m is not locked")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top