Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 228 for paused (0.16 sec)

  1. src/runtime/mgc.go

    		// sched.idleTime and sched.totaltime. memstats also include
    		// the pause time (work,pauseNS), forcing computation of the
    		// total pause time before the pause actually ends.
    		//
    		// Here we reuse the same now for start the world so that the
    		// time added to /sched/pauses/total/gc:seconds will be
    		// consistent with the value in memstats.
    		startTheWorldWithSema(now, stw)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    // cgoTracebackArg is the type passed to cgoTraceback.
    type cgoTracebackArg struct {
    	context    uintptr
    	sigContext uintptr
    	buf        *uintptr
    	max        uintptr
    }
    
    // cgoContextArg is the type passed to the context function.
    type cgoContextArg struct {
    	context uintptr
    }
    
    // cgoSymbolizerArg is the type passed to cgoSymbolizer.
    type cgoSymbolizerArg struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * IllegalArgumentException} if passed a {@code fromKey} less than an earlier {@code fromKey}.
       * However, this method doesn't throw an exception in that situation, but instead keeps the
       * original {@code fromKey}. Similarly, this method keeps the original {@code toKey}, instead of
       * throwing an exception, if passed a {@code toKey} greater than an earlier {@code toKey}.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

         *
         * <p>Canceling this Future will attempt to cancel all the component futures.
         *
         * @since 23.6
         * @return a future whose result is based on {@code combiner} (or based on the input futures
         *     passed to {@code whenAllSucceed}, if that is the method you used to create this {@code
         *     FutureCombiner}). Even though the future never produces a value other than {@code null},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Pause: add a -v flag to the Windows variant of the pause binary, which prints the version of pause and exits. The Linux pause already has the flag. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * IllegalArgumentException} if passed a {@code fromKey} less than an earlier {@code fromKey}.
       * However, this method doesn't throw an exception in that situation, but instead keeps the
       * original {@code fromKey}. Similarly, this method keeps the original {@code toKey}, instead of
       * throwing an exception, if passed a {@code toKey} greater than an earlier {@code toKey}.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // Answers, Authorities and Additionals can be either parsed or skipped in the
    // same way, and each type of Resource must be fully parsed or skipped before
    // proceeding to the next type of Resource.
    //
    // Parser is safe to copy to preserve the parsing state.
    //
    // Note that there is no requirement to fully skip or parse the message.
    type Parser struct {
    	msg    []byte
    	header header
    
    	section         section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// require.Equal(t, []*unstructured.Unstructured{fakeParams, fakeParams2}, passedParams, "expected call to `Validate` to cause call to evaluator")
    	require.Equal(t, 2, numCompiles, "expect changing binding causes a recompile")
    }
    
    // Shows that a policy which is in effect will stop being in effect when removed
    func TestRemoveDefinition(t *testing.T) {
    	compiler := &fakeCompiler{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

         *
         * <p>Canceling this Future will attempt to cancel all the component futures.
         *
         * @since 23.6
         * @return a future whose result is based on {@code combiner} (or based on the input futures
         *     passed to {@code whenAllSucceed}, if that is the method you used to create this {@code
         *     FutureCombiner}). Even though the future never produces a value other than {@code null},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    	NotBefore, NotAfter time.Time // Validity bounds.
    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top