Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for wall (0.07 sec)

  1. src/time/time.go

    // clock reading.
    type Time struct {
    	// wall and ext encode the wall time seconds, wall time nanoseconds,
    	// and optional monotonic clock reading in nanoseconds.
    	//
    	// From high to low bit position, wall encodes a 1-bit flag (hasMonotonic),
    	// a 33-bit seconds field, and a 30-bit wall time nanoseconds field.
    	// The nanoseconds field is in the range [0, 999999999].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		// wall time spent in blockMutexN. Generally speaking, the total
    		// contention time could be arbitrarily high when considering
    		// OS scheduler delays, or any other delays from the environment:
    		// time keeps ticking during these delays. By making the upper
    		// bound proportional to the wall time in blockMutexN, in theory
    		// we're accounting for all these possible delays.
    		d := time.Duration(total)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/time/format.go

    // only to local times. Applying them to UTC times will use "UTC" as the
    // time zone abbreviation, while strictly speaking those RFCs require the
    // use of "GMT" in that case.
    // When using the [RFC1123] or [RFC1123Z] formats for parsing, note that these
    // formats define a leading zero for the day-in-month portion, which is not
    // strictly allowed by RFC 1123. This will result in an error when parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	for {
    		w := q.peekFront()
    		if w == nil || w.cancelCtx != nil {
    			return
    		}
    		q.popFront()
    	}
    }
    
    // all iterates over all wantConns in the queue.
    // The caller must not modify the queue while iterating.
    func (q *wantConnQueue) all(f func(*wantConn)) {
    	for _, w := range q.head[q.headPos:] {
    		f(w)
    	}
    	for _, w := range q.tail {
    		f(w)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * cancelled, cancellation will be propagated to {@code delegate}. Additionally, any call to
       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * cancelled, cancellation will be propagated to {@code delegate}. Additionally, any call to
       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    			// Nothing was saved; we will fall back into the same
    			// condition in the next call to this method
    			return err
    		}
    		return nil
    	} else /* pv.Spec.ClaimRef != nil */ {
    		// Volume is bound to a claim.
    		if volume.Spec.ClaimRef.UID == "" {
    			// The PV is reserved for a PVC; that PVC has not yet been
    			// bound to this PV; the PVC sync will handle it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    	} {
    		calls = append(calls, simulation.Expect{
    			Name: fmt.Sprintf("%s-%d", call.call.Protocol, call.call.Port),
    			Call: call.call,
    			Result: simulation.Result{
    				ClusterMatched: fmt.Sprintf("outbound|%d||%s.default.svc.cluster.local", call.call.Port, call.expected),
    			},
    		})
    	}
    	service := `apiVersion: v1
    kind: Service
    metadata:
      name: alias
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    // the traceback function will be displayed as numbers. If the
    // traceback function is nil, the symbolizer function will never be
    // called. The context function may be nil, in which case the
    // traceback function will only be called with the context field set
    // to zero.  If the context function is nil, then calls from Go to C
    // to Go will not show a traceback for the C portion of the call stack.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	CMPQ	BX, CX
    	JNE	bad_cpu
    #endif
    
    	CALL	runtime·check(SB)
    
    	MOVL	24(SP), AX		// copy argc
    	MOVL	AX, 0(SP)
    	MOVQ	32(SP), AX		// copy argv
    	MOVQ	AX, 8(SP)
    	CALL	runtime·args(SB)
    	CALL	runtime·osinit(SB)
    	CALL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVQ	$runtime·mainPC(SB), AX		// entry
    	PUSHQ	AX
    	CALL	runtime·newproc(SB)
    	POPQ	AX
    
    	// start this M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top