Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for incremented (0.25 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	VMOVDQU BB0, (1*32)(oup)
    	LEAQ    (2*32)(inp), inp
    	LEAQ    (2*32)(oup), oup
    	SUBQ    $64, inl
    
    openAVX2MainLoop:
    	CMPQ inl, $512
    	JB   openAVX2MainLoopDone
    
    	// Load state, increment counter blocks, store the incremented counters
    	VMOVDQU ·chacha20Constants<>(SB), AA0; VMOVDQA AA0, AA1; VMOVDQA AA0, AA2; VMOVDQA AA0, AA3
    	VMOVDQA state1StoreAVX2, BB0; VMOVDQA BB0, BB1; VMOVDQA BB0, BB2; VMOVDQA BB0, BB3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    }
    
    func mspinning() {
    	// startm's caller incremented nmspinning. Set the new M's spinning.
    	getg().m.spinning = true
    }
    
    // Schedules some M to run the p (creates an M if necessary).
    // If p==nil, tries to get an idle P, if no idle P's does nothing.
    // May run with m.p==nil, so write barriers are not allowed.
    // If spinning is set, the caller has incremented nmspinning and must provide a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    for `tf.EmptyTensorList` or the specified size for `tf.TensorListReserve`.
    Each push will be turned into `tf.XlaDynamicUpdateSlice` with the incremented
    size, and each pop will be turned into a `tf.Slice` and a copy of the buffer
    with decremented size. Each `tf.TensorListSetItem` will be turned into a
    `tf.XlaDynamicUpdateSlice` with unchanged size, and each `tf.TensorListGetItem`
    will be rewritten to a `tf.Slice`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    			}
    		case <-p.mrfWorkerKillCh:
    			return
    		}
    	}
    }
    
    // AddWorker adds a replication worker to the pool.
    // An optional pointer to a tracker that will be atomically
    // incremented when operations are running can be provided.
    func (p *ReplicationPool) AddWorker(input <-chan ReplicationWorkerOperation, opTracker *int32) {
    	for {
    		select {
    		case <-p.ctx.Done():
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	llvmStyle       bool
    	max             int // maximum output length
    
    	// The scopes field is used to avoid unnecessary parentheses
    	// around expressions that use > (or >>). It is incremented if
    	// we output a parenthesis or something else that means that >
    	// or >> won't be treated as ending a template. It starts out
    	// as 1, and is set to 0 when we start writing template
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/reflect/value.go

    //
    // Unlike Value.grow, which modifies the slice in place and
    // does not change the length of the slice in place,
    // extendSlice returns a new slice value with the length
    // incremented by the number of specified elements.
    func (v Value) extendSlice(n int) Value {
    	v.mustBeExported()
    	v.mustBe(Slice)
    
    	// Shallow copy the slice header to avoid mutating the source slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    Size","type":"heatmap"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":100},"id":15,"panels":[],"title":"Webhooks","type":"row"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Rate of XDS push operations, by type. This is incremented on a per-proxy basis.\n","fieldConfig":{"defaults":{"custom":{"fillOpacity":10,"gradientMode":"hue","showPoints":"never"}}},"gridPos":{"h":8,"w":12,"x":0,"y":101},"id":16,"interval":"5s","options":{"legend":{"calcs":[],"displayMode":"list"}},"p...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            String fileValue = options.fileValue ?: "String.valueOf(input.length())"
            boolean incremental = options.incremental ?: false
    
            """
                ext.paramValue = $paramValue
    
                ${registerFileSizer(fileValue, incremental)}
    
                project(':util') {
                    dependencies {
                        compile project(':lib')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		// pod setup
    
    		// If a podControllerError is set, finalizers are not able to be removed.
    		// This means that there is no status update so the counters for
    		// failedPods and succeededPods cannot be incremented.
    		podControllerError        error
    		pendingPods               int
    		activePods                int
    		readyPods                 int
    		succeededPods             int
    		failedPods                int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	// db.Prepare increments numPrepares.
    	stmt, err := db.Prepare("INSERT|t1|name=?,age=?")
    	if err != nil {
    		t.Fatalf("Stmt, err = %v, %v", stmt, err)
    	}
    	tx, err := db.Begin()
    	if err != nil {
    		t.Fatalf("Begin = %v", err)
    	}
    	err = stmt.Close()
    	if err != nil {
    		t.Fatalf("stmt.Close() = %v", err)
    	}
    	// tx.Stmt increments numPrepares because stmt is closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top