Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,472 for batches (0.22 sec)

  1. 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)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    			},
    			finalDelay:       3 * time.Second,
    			wantRequestCount: 1,
    		},
    		{
    			name:        "three adds in two batches",
    			batchPeriod: 1 * time.Second,
    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay: 200 * time.Millisecond,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.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/mgcpacer.go

    	// and stolen by mutator assists.  Updates occur in bounded batches,
    	// since it is both written and read throughout the cycle.
    	bgScanCredit atomic.Int64
    
    	// assistTime is the nanoseconds spent in mutator assists
    	// during this cycle. This is updated atomically, and must also
    	// be updated atomically even during a STW, because it is read
    	// by sysmon. Updates occur in bounded batches, since it is both
    	// written and read throughout the cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    					podName: "pod2",
    					podIP:   "10.0.0.2",
    				},
    			},
    			finalDelay:       3 * time.Second,
    			wantRequestCount: 1,
    		},
    		{
    			name:        "three updates in two batches",
    			batchPeriod: 1 * time.Second,
    			podsCount:   10,
    			updates: []podUpdate{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay:   200 * time.Millisecond,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top