Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for rounds (0.4 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    this.timePickerIncrement)
    L464:                this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
    L465:
    L466:            if (this.minDate && this.startDate.isBefore(this.minDate)) {
    L467:                this.startDate = this.minDate.clone();
    L468:                if (this.timePicker && this.timePickerIncrement)
    L469:                    this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    //
    // If index is out of bounds, an error code will be set in the status object,
    // and -1 will be returned.
    TF_CAPI_EXPORT extern int64_t TF_DeviceListMemoryBytes(
        const TF_DeviceList* list, int index, TF_Status* status);
    
    // Retrieve the incarnation number of a given device.
    //
    // If index is out of bounds, an error code will be set in the status object,
    // and 0 will be returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    	if gp := getg(); gp.m.curg.stack.lo <= uintptr(p) && uintptr(p) < gp.m.curg.stack.hi {
    		found := false
    		var u unwinder
    		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
    			if u.frame.sp <= uintptr(p) && uintptr(p) < u.frame.varp {
    				found = true
    				break
    			}
    		}
    		if found {
    			locals, _, _ := u.frame.getStackMap(false)
    			if locals.n == 0 {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	gcPercentHeapGoal atomic.Uint64
    
    	// sweepDistMinTrigger is the minimum trigger to ensure a minimum
    	// sweep distance.
    	//
    	// This bound is also special because it applies to both the trigger
    	// *and* the goal (all other trigger bounds must be based *on* the goal).
    	//
    	// It is computed ahead of time, at commit time. The theory is that,
    	// absent a sudden change to a parameter like gcPercent, the trigger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (PopCount8 x) => (POPCNTL (MOVBQZX <typ.UInt32> x))
    
    (Sqrt ...) => (SQRTSD ...)
    (Sqrt32 ...) => (SQRTSS ...)
    
    (RoundToEven x) => (ROUNDSD [0] x)
    (Floor x)       => (ROUNDSD [1] x)
    (Ceil x)        => (ROUNDSD [2] x)
    (Trunc x)       => (ROUNDSD [3] x)
    
    (FMA x y z) => (VFMADD231SD z x y)
    
    // Lowering extension
    // Note: we always extend to 64 bits even though some ops don't need that many result bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // math package intrinsics
    (Sqrt      ...) => (FSQRT ...)
    (Floor       x) => (FIDBR [7] x)
    (Ceil        x) => (FIDBR [6] x)
    (Trunc       x) => (FIDBR [5] x)
    (RoundToEven x) => (FIDBR [4] x)
    (Round       x) => (FIDBR [1] x)
    (FMA     x y z) => (FMADD z x y)
    
    (Sqrt32    ...) => (FSQRTS ...)
    
    // Atomic loads and stores.
    // The SYNC instruction (fast-BCR-serialization) prevents store-load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	pdb := ps.Get(key)
    	for _, condition := range pdb.Status.Conditions {
    		if strings.Contains(condition.Message, "found no controller ref") && condition.Reason == policy.SyncFailedReason {
    			t.Fatalf("PodDisruption Controller should not error when unmanaged pods are found but it failed for %q", key)
    		}
    	}
    }
    
    type disruptionController struct {
    	*DisruptionController
    
    	podStore cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	casgstatus(gp, _Gwaiting, _Grunning)
    
    	// Record that we did this much scan work.
    	//
    	// Back out the number of bytes of assist credit that
    	// this scan work counts for. The "1+" is a poor man's
    	// round-up, to ensure this adds credit even if
    	// assistBytesPerWork is very low.
    	assistBytesPerWork := gcController.assistBytesPerWork.Load()
    	gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(workDone))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    		defer func() {
    			cache.updatedAt = time.Now()
    			store.unlock()
    		}()
    
    		_, found := cache.iamUsersMap[accessKey]
    
    		// Check for regular user access key
    		if !found {
    			err = store.loadUser(ctx, accessKey, regUser, cache.iamUsersMap)
    			if _, found = cache.iamUsersMap[accessKey]; found {
    				// load mapped policies
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/validation/validation_test.go

    					NominalConcurrencyShares: 42,
    					LimitResponse: flowcontrol.LimitResponse{
    						Type: flowcontrol.LimitResponseTypeReject},
    				},
    			},
    		},
    		// the internal object should never have the round trip annotation
    		requestGV: &schema.GroupVersion{},
    		expectedErrors: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
Back to top