Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 368 for spdelta (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/javaPluginTasks.graphml

              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
          </data>
        </edge>
        <edge id="e1" source="n3" target="n6">
          <data key="d9">
            <y:QuadCurveEdge straightness="0.1">
              <y:Path sx="70.0" sy="7.5" tx="-70.0" ty="-0.0"/>
              <y:LineStyle color="#000000" type="line" width="1.0"/>
              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/scalaPluginTasks.graphml

              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
          </data>
        </edge>
        <edge id="e1" source="n5" target="n4">
          <data key="d9">
            <y:QuadCurveEdge straightness="0.1">
              <y:Path sx="70.0" sy="-0.0" tx="-70.0" ty="-10.0"/>
              <y:LineStyle color="#000000" type="line" width="1.0"/>
              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_386.go

    }
    
    //go:nosplit
    //go:noinline
    func LoadAcquintptr(ptr *uintptr) uintptr {
    	return *ptr
    }
    
    //go:noescape
    func Xadd64(ptr *uint64, delta int64) uint64
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:noescape
    func Xadd(ptr *uint32, delta int32) uint32
    
    //go:noescape
    func Xchg64(ptr *uint64, new uint64) uint64
    
    //go:noescape
    func Xchg(ptr *uint32, new uint32) uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/time/tick_test.go

    			t.Log(e)
    		}
    	}
    
    	for _, test := range []struct {
    		count int
    		delta Duration
    	}{{
    		count: baseCount,
    		delta: baseDelta,
    	}, {
    		count: 8,
    		delta: 1 * Second,
    	}} {
    		count, delta := test.count, test.delta
    		ticker := NewTicker(delta)
    		t0 := Now()
    		for range count / 2 {
    			<-ticker.C
    		}
    		ticker.Reset(delta * 2)
    		for range count - count/2 {
    			<-ticker.C
    		}
    		ticker.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_mipsx.go

    	_ = *addr
    
    	spinLock(&lock.state)
    }
    
    //go:nosplit
    func unlock() {
    	spinUnlock(&lock.state)
    }
    
    //go:nosplit
    func Xadd64(addr *uint64, delta int64) (new uint64) {
    	lockAndCheck(addr)
    
    	new = *addr + uint64(delta)
    	*addr = new
    
    	unlock()
    	return
    }
    
    //go:nosplit
    func Xchg64(addr *uint64, new uint64) (old uint64) {
    	lockAndCheck(addr)
    
    	old = *addr
    	*addr = new
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/sync/atomic/doc.go

    func AddUint32(addr *uint32, delta uint32) (new uint32)
    
    // AddInt64 atomically adds delta to *addr and returns the new value.
    // Consider using the more ergonomic and less error-prone [Int64.Add] instead
    // (particularly if you target 32-bit platforms; see the bugs section).
    func AddInt64(addr *int64, delta int64) (new int64)
    
    // AddUint64 atomically adds delta to *addr and returns the new value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_arm.go

    }
    
    // Atomic add and return new value.
    //
    //go:nosplit
    func Xadd(val *uint32, delta int32) uint32 {
    	for {
    		oval := *val
    		nval := oval + uint32(delta)
    		if Cas(val, oval, nval) {
    			return nval
    		}
    	}
    }
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:nosplit
    func Xchg(addr *uint32, v uint32) uint32 {
    	for {
    		old := *addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    				//    if delta < 0 and x+delta cannot underflow, then x > w
    				// This is useful for loops with bounds "len(slice)-K" (delta = -K)
    				if delta < 0 && !underflow {
    					ft.update(parent, x, w, signed, r)
    				}
    			} else {
    				// With w,delta constants, we want to derive: x+delta > w  ⇒  x > w-delta
    				//
    				// We compute (using integers of the correct size):
    				//    min = w - delta
    				//    max = MaxInt - delta
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    // AddRequestsInQueues adds the given delta to the gauge of the # of requests in the queues of the specified flowSchema and priorityLevel
    func AddRequestsInQueues(ctx context.Context, priorityLevel, flowSchema string, delta int) {
    	apiserverCurrentInqueueRequests.WithLabelValues(priorityLevel, flowSchema).Add(float64(delta))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:build ppc64 || ppc64le
    
    package atomic
    
    import "unsafe"
    
    //go:noescape
    func Xadd(ptr *uint32, delta int32) uint32
    
    //go:noescape
    func Xadd64(ptr *uint64, delta int64) uint64
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:noescape
    func Xchg(ptr *uint32, new uint32) uint32
    
    //go:noescape
    func Xchg64(ptr *uint64, new uint64) uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top