Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for enter_0 (0.19 sec)

  1. src/cmd/trace/procgen.go

    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no P here
    		// if we're in a cgo callback or this is a transition from GoUndetermined
    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, ev.Proc(), ev.Stack())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	//
    	// decision.Set is called with the queueSet locked.
    	// decision.Get is called without the queueSet locked.
    	decision promise.WriteOnce
    
    	// arrivalTime is the real time when the request entered this system
    	arrivalTime time.Time
    
    	// descr1 and descr2 are not used in any logic but they appear in
    	// log messages
    	descr1, descr2 interface{}
    
    	queueNoteFn fq.QueueNoteFn
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/monitoring.go

    	rdsSendErrPushes = pushes.With(typeTag.Value("rds_senderr"))
    
    	debounceTime = monitoring.NewDistribution(
    		"pilot_debounce_time",
    		"Delay in seconds between the first config enters debouncing and the merged push request is pushed into the push queue.",
    		[]float64{.01, .1, 1, 3, 5, 10, 20, 30},
    	)
    
    	pushContextInitTime = monitoring.NewDistribution(
    		"pilot_pushcontext_init_seconds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. plugin/pkg/admission/eventratelimit/apis/eventratelimit/types.go

    	// is evicted from the cache, then the allowance for that bucket is reset. If
    	// more queries are later received for an evicted bucket, then that bucket
    	// will re-enter the cache with a clean slate, giving that bucket a full
    	// allowance of burst queries.
    	//
    	// The default cache size is 4096.
    	//
    	// If limitType is 'server', then cacheSize is ignored.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/eventbus/Subscriber.java

        return method.getAnnotation(AllowConcurrentEvents.class) != null;
      }
    
      /**
       * Subscriber that synchronizes invocations of a method to ensure that only one thread may enter
       * the method at a time.
       */
      @VisibleForTesting
      static final class SynchronizedSubscriber extends Subscriber {
    
        private SynchronizedSubscriber(EventBus bus, Object target, Method method) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/eventbus/Subscriber.java

        return method.getAnnotation(AllowConcurrentEvents.class) != null;
      }
    
      /**
       * Subscriber that synchronizes invocations of a method to ensure that only one thread may enter
       * the method at a time.
       */
      @VisibleForTesting
      static final class SynchronizedSubscriber extends Subscriber {
    
        private SynchronizedSubscriber(EventBus bus, Object target, Method method) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  7. bin/build_ztunnel.sh

    #   $2: The full path of the output binary.
    #   $3: Non-versioned name to use
    function download_ztunnel_if_necessary () {
      if [[ -f "$2" ]]; then
        return
      fi
      # Enter the output directory.
      mkdir -p "$(dirname "$2")"
      pushd "$(dirname "$2")"
    
      # Download and make the binary executable
      echo "Downloading ztunnel: $1 to $2"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/runtime/tracestatus.go

    			// in _Pgcstop, but we model it as running in the tracer.
    			status = traceProcRunning
    		}
    	case _Prunning:
    		status = traceProcRunning
    		// There's a short window wherein the goroutine may have entered _Gsyscall
    		// but it still owns the P (it's not in _Psyscall yet). The goroutine entering
    		// _Gsyscall is the tracer's signal that the P its bound to is also in a syscall,
    		// so we need to emit a status that matches. See #64318.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/internal/singleflight/singleflight_test.go

    		if calls.Add(1) == 1 {
    			// First invocation.
    			wg1.Done()
    		}
    		v := <-c
    		c <- v // pump; make available for any future calls
    
    		time.Sleep(10 * time.Millisecond) // let more goroutines enter Do
    
    		return v, nil
    	}
    
    	const n = 10
    	wg1.Add(1)
    	for i := 0; i < n; i++ {
    		wg1.Add(1)
    		wg2.Add(1)
    		go func() {
    			defer wg2.Done()
    			wg1.Done()
    			v, err, _ := g.Do("key", fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:21:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. bin/init.sh

    # Params:
    #   $1: The URL of the Envoy tar.gz to be downloaded.
    #   $2: The full path of the output binary.
    #   $3: Non-versioned name to use
    function download_envoy_if_necessary () {
      if [[ ! -f "$2" ]] ; then
        # Enter the output directory.
        mkdir -p "$(dirname "$2")"
        pushd "$(dirname "$2")"
    
        # Download and extract the binary to the output directory.
        echo "Downloading ${SIDECAR}: $1 to $2"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top