Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 117 for ENTER (0.04 sec)

  1. pkg/controller/resourcequota/resource_quota_controller.go

    				curResourceQuota := cur.(*v1.ResourceQuota)
    				if quota.Equals(oldResourceQuota.Spec.Hard, curResourceQuota.Spec.Hard) {
    					return
    				}
    				rq.addQuota(logger, curResourceQuota)
    			},
    			// This will enter the sync loop and no-op, because the controller has been deleted from the store.
    			// Note that deleting a controller immediately after scaling it to 0 will not work. The recommended
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			delay *= 2
    		}
    		if delay > 10*1000 { // up to 10ms
    			delay = 10 * 1000
    		}
    		usleep(delay)
    
    		// sysmon should not enter deep sleep if schedtrace is enabled so that
    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    			// the non-starving case it is possible for a different waiter
    			// to acquire the semaphore while we are yielding/scheduling,
    			// and this would be wasteful. We wait instead to enter starving
    			// regime, and then we start to do direct handoffs of ticket and
    			// P.
    			// See issue 33747 for discussion.
    			goyield()
    		}
    	}
    }
    
    func cansemacquire(addr *uint32) bool {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    	keeps their state close to the point of panic. Setting
    	dontfreezetheworld=1 disables this preemption, allowing goroutines to
    	continue executing during panic processing. Note that goroutines that
    	naturally enter the scheduler will still stop. This can be useful when
    	debugging the runtime scheduler, as freezetheworld perturbs scheduler
    	state and thus may hide problems.
    
    	efence: setting efence=1 causes the allocator to run in a mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. hack/lib/util.sh

            git status -s
        else
            git diff -a # be more verbose in log files without tty
            exit 1
        fi | sed 's/^/  /'
        echo -e "\nCommit your changes in another terminal and then continue here by pressing enter."
        read -r
      done 1>&2
    }
    
    # Find the base commit using:
    # $PULL_BASE_SHA if set (from Prow)
    # current ref from the remote upstream branch
    kube::util::base_ref() {
      local -r git_branch=$1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. 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)
Back to top