Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 175 for significantly_ (0.17 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    				v := c.Values[j]
    				if v.Op != ssa.OpPhi {
    					break // All phis will be at the end of the block during phi building.
    				}
    				// Only set arguments that have been resolved.
    				// For very wide CFGs, this significantly speeds up phi resolution.
    				// See golang.org/issue/8225.
    				if w := values[v.AuxInt]; w.Op != ssa.OpUnknown {
    					v.SetArg(i, w)
    				}
    			}
    		}
    
    		// Walk children in dominator tree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    [[sec:scala_incremental_compilation]]
    == Incremental compilation
    
    By compiling only classes whose source code has changed since the previous compilation, and classes affected by these changes, incremental compilation can significantly reduce Scala compilation time. It is particularly effective when frequently compiling small code increments, as is often done at development time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilder.java

       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
       * higher value than you need can waste space and time, and a significantly lower value can lead
       * to thread contention. But overestimates and underestimates within an order of magnitude do not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    	"queueLengthLimit": "`queueLengthLimit`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		}
    		estimatedGetCalls := uint64(1)
    		if pageSize != 0 {
    			// We expect that kube-apiserver will be increasing page sizes
    			// if not full pages are received, so we should see significantly less
    			// than 1000 pages (which would be result of talking to etcd with page size
    			// copied from pred.Limit).
    			// The expected number of calls is n+1 where n is the smallest n so that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Ascii.java

       * equal, ignoring the case of any ASCII alphabetic characters between {@code 'a'} and {@code 'z'}
       * or {@code 'A'} and {@code 'Z'} inclusive.
       *
       * <p>This method is significantly faster than {@link String#equalsIgnoreCase} and should be used
       * in preference if at least one of the parameters is known to contain only ASCII characters.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
      // `handSize` must be no larger than `queues`, and should be
      // significantly smaller (so that a few heavy flows do not
      // saturate most of the queues).  See the user-facing
      // documentation for more extensive guidance on setting this
      // field.  This field has a default value of 8.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. src/runtime/gc_test.go

    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    	b.ReportMetric(0, "allocs/op")
    
    	// Sort latencies then report percentiles.
    	slices.Sort(latencies)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller.go

    	endpointslicemetrics.RegisterMetrics()
    
    	c := &Controller{
    		client: client,
    		// This is similar to the DefaultControllerRateLimiter, just with a
    		// significantly higher default backoff (1s vs 5ms). This controller
    		// processes events that can require significant EndpointSlice changes,
    		// such as an update to a Service or Deployment. A more significant
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
      // `handSize` must be no larger than `queues`, and should be
      // significantly smaller (so that a few heavy flows do not
      // saturate most of the queues).  See the user-facing
      // documentation for more extensive guidance on setting this
      // field.  This field has a default value of 8.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top