Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,201 for imposes (0.13 sec)

  1. src/runtime/metrics_test.go

    				// gTrackingPeriod, so we don't have a hard lower bound here.
    				testenv.SkipFlaky(t, 64253)
    
    				if have, want := metricGrowth, delay.Seconds()*float64(len(mus)); have < want {
    					// The test imposes a delay with usleep, verified with calls to
    					// nanotime. Compare against the runtime/metrics package's view
    					// (based on nanotime) rather than runtime/pprof's view (based
    					// on cputicks).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/subr.go

    // If there are multiple shortest paths to the same depth, ambig is true.
    func dotpath(s *types.Sym, t *types.Type, save **types.Field, ignorecase bool) (path []dlist, ambig bool) {
    	// The embedding of types within structs imposes a tree structure onto
    	// types: structs parent the types they embed, and types parent their
    	// fields or methods. Our goal here is to find the shortest path to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * been shutdown).
       *
       * <p>Although all tasks are immediately executed in the thread that submitted the task, this
       * {@code ExecutorService} imposes a small locking overhead on each task submission in order to
       * implement shutdown and termination behavior.
       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * been shutdown).
       *
       * <p>Although all tasks are immediately executed in the thread that submitted the task, this
       * {@code ExecutorService} imposes a small locking overhead on each task submission in order to
       * implement shutdown and termination behavior.
       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	CipherSuites []uint16
    
    	// HTTP2MaxStreamsPerConnection is the limit that the api server imposes on each client.
    	// A value of zero means to use the default provided by golang's HTTP/2 support.
    	HTTP2MaxStreamsPerConnection int
    
    	// DisableHTTP2 indicates that http2 should not be enabled.
    	DisableHTTP2 bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

       * {@link Cache#stats} will return zero for all statistics. Note that recording stats requires
       * bookkeeping to be performed with each operation, and thus imposes a performance penalty on
       * cache operation.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @since 12.0 (previously, stats collection was automatic)
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

       * {@link Cache#stats} will return zero for all statistics. Note that recording stats requires
       * bookkeeping to be performed with each operation, and thus imposes a performance penalty on
       * cache operation.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @since 12.0 (previously, stats collection was automatic)
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"group":              "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/imports.go

    package typeutil
    
    import "go/types"
    
    // Dependencies returns all dependencies of the specified packages.
    //
    // Dependent packages appear in topological order: if package P imports
    // package Q, Q appears earlier than P in the result.
    // The algorithm follows import statements in the order they
    // appear in the source code, so the result is a total order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 883 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    					fset.File(gen.Rparen).MergeLine(line)
    				}
    			}
    			j--
    		}
    	}
    
    	// Delete imports from f.Imports.
    	for i := 0; i < len(f.Imports); i++ {
    		imp := f.Imports[i]
    		for j, del := range delspecs {
    			if imp == del {
    				copy(f.Imports[i:], f.Imports[i+1:])
    				f.Imports = f.Imports[:len(f.Imports)-1]
    				copy(delspecs[j:], delspecs[j+1:])
    				delspecs = delspecs[:len(delspecs)-1]
    				i--
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top