Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 434 for imposes (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

    /**
     * Writes files describing the build operation stream for a build.
     * Can be enabled for any build with `-Dorg.gradle.internal.operations.trace=«path-base»`.
     * <p>
     * Imposes no overhead when not enabled.
     * Also used as the basis for asserting on the event stream in integration tests, via BuildOperationFixture.
     * <p>
     * Three files are created:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	MinTLSVersion string
    
    	// 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
    
    	// PermitPortSharing controls if SO_REUSEPORT is used when binding the port, which allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                by the rule. \n For NetworkPolicy, an empty NamespaceSelector
                                implies that the Selector is limited to selecting only
                                workload endpoints in the same namespace as the NetworkPolicy.
                                \n For NetworkPolicy, `global()` NamespaceSelector implies
                                that the Selector is limited to selecting only GlobalNetworkSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
Back to top