Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,002 for batches (0.17 sec)

  1. pkg/test/framework/components/echo/calloptions.go

    	}
    
    	// NOTE: last option wins, so order in the list is important!
    
    	// Start by getting the defaults.
    	retryOpts := DefaultCallRetryOptions()
    
    	// Don't use converge unless we need it. When sending large batches of requests (for example,
    	// when we attempt to reach all clusters), converging will result in sending at least
    	// `converge * count` requests. When running multiple requests in parallel, this can contribute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/download.go

    	// again. Any downloads that already succeeded will still be in cache.
    	// That won't give optimal concurrency (we'll do two batches of concurrent
    	// downloads instead of all in one batch), and it might add a little overhead
    	// to look up the downloads from the first batch in the module cache when
    	// we see them again in the second batch. On the other hand, it's way simpler
    	// to implement, and not really any more expensive if the user is requesting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    //
    // It groups the calls into batches, starting with a group of initialBatchSize.
    // Within each batch, it may call the function multiple times concurrently.
    //
    // If a whole batch succeeds, the next batch may get exponentially larger.
    // If there are any failures in a batch, all remaining batches are skipped
    // after waiting for the current batch to complete.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        /** True if either side has cleanly shut down this stream. We shall send no more bytes. */
        var finished: Boolean = false,
      ) : Sink {
        /**
         * Buffer of outgoing data. This batches writes of small writes into this sink as larges frames
         * written to the outgoing connection. Batching saves the (small) framing overhead.
         */
        private val sendBuffer = Buffer()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    // after an object is no longer referenced, the runtime is allowed to perform
    // a space-saving optimization that batches objects together in a single
    // allocation slot. The finalizer for an unreferenced object in such an
    // allocation may never run if it always exists in the same batch as a
    // referenced object. Typically, this batching only happens for tiny
    // (on the order of 16 bytes or less) and pointer-free objects.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/controller/controller_utils.go

    	ExpectationsTimeout = 5 * time.Minute
    	// When batching pod creates, SlowStartInitialBatchSize is the size of the
    	// initial batch.  The size of each successive batch is twice the size of
    	// the previous batch.  For example, for a value of 1, batch sizes would be
    	// 1, 2, 4, 8, ...  and for a value of 10, batch sizes would be
    	// 10, 20, 40, 80, ...  Setting the value higher means that quota denials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. src/debug/gosym/pclntab.go

    const oldQuantum = 1
    
    func (t *LineTable) parse(targetPC uint64, targetLine int) (b []byte, pc uint64, line int) {
    	// The PC/line table can be thought of as a sequence of
    	//  <pc update>* <line update>
    	// batches. Each update batch results in a (pc, line) pair,
    	// where line applies to every PC from pc up to but not
    	// including the pc of the next pair.
    	//
    	// Here we process each update individually, which simplifies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            addToGraphAndPopulate([c, d])
    
            then:
            executes(a, b, c, d)
    
            where:
            orderingRule << ['mustRunAfter', 'shouldRunAfter']
        }
    
        def "common tasks in separate batches are schedules only once"() {
            Task a = task("a")
            Task b = task("b")
            Task c = task("c", dependsOn: [a, b])
            Task d = task("d")
            Task e = task("e", dependsOn: [b, d])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    				continue
    			}
    			b.URL(defaultHttpGetAttempts, url)
    		default:
    			matches, err := expandIfFilePattern(s)
    			if err != nil {
    				b.errs = append(b.errs, err)
    				continue
    			}
    			if !recursive && len(matches) == 1 {
    				b.singleItemImplied = true
    			}
    			b.Path(recursive, matches...)
    		}
    	}
    	if filenameOptions.Kustomize != "" {
    		b.paths = append(
    			b.paths,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    		// single span is in general a very fast operation, taking as little as 30 ns
    		// on modern hardware. (See #54767.)
    		//
    		// As a result, bgsweep sweeps in batches, and only calls into the scheduler
    		// at the end of every batch. Furthermore, it only yields its time if there
    		// isn't spare idle time available on other cores. If there's available idle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top