Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 461 for spdelta (0.28 sec)

  1. android/guava/src/com/google/common/math/StatsAccumulator.java

          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
            sumOfSquaresOfDeltas = NaN;
          }
          min = Math.min(min, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/runtime/netpoll_kqueue.go

    				pd = (*pollDesc)(tp.pointer())
    				tag = tp.tag()
    				if pd.fdseq.Load() != tag {
    					continue
    				}
    			}
    			pd.setEventErr(ev.flags == _EV_ERROR, tag)
    			delta += netpollready(&toRun, pd, mode)
    		}
    	}
    	return toRun, delta
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/html/escape_test.go

    	},
    	// Handle entities with two codepoints.
    	{
    		"multiCodepoint",
    		"text ⋛︀ blah",
    		"text \u22db\ufe00 blah",
    	},
    	// Handle decimal numeric entities.
    	{
    		"decimalEntity",
    		"Delta = Δ ",
    		"Delta = Δ ",
    	},
    	// Handle hexadecimal numeric entities.
    	{
    		"hexadecimalEntity",
    		"Lambda = λ = &#X3Bb ",
    		"Lambda = λ = λ ",
    	},
    	// Handle numeric early termination.
    	{
    		"numericEnds",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  4. src/runtime/netpoll_aix.go

    			mode += 'w'
    			pfd.events &= ^_POLLOUT
    		}
    		if mode != 0 {
    			pds[i].setEventErr(pfd.revents == _POLLERR, 0)
    			delta += netpollready(&toRun, pds[i], mode)
    			n--
    		}
    	}
    	unlock(&mtxset)
    	return toRun, delta
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/net/timeout_test.go

    				// another error immediately.
    				t.Logf("closing spurious connection from Dial")
    				c.Close()
    
    				if delta <= 1 && d.Timeout <= 1 {
    					t.Fatalf("can't reduce Timeout or Deadline")
    				}
    				if delta > 1 {
    					delta /= 2
    					t.Logf("reducing Deadline delta to %v", delta)
    				}
    				if d.Timeout > 1 {
    					d.Timeout /= 2
    					t.Logf("reducing Timeout to %v", d.Timeout)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/StatsAccumulator.java

          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
            sumOfSquaresOfDeltas = NaN;
          }
          min = Math.min(min, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    			}
    			w *= base - t
    		}
    
    		delta := i - oldI
    		numPoints := len(output) + 1
    		firstTime := oldI == 0
    		if firstTime {
    			delta /= damp
    		} else {
    			delta /= 2
    		}
    		delta += delta / numPoints
    		k := 0
    		for delta > ((base-tmin)*tmax)/2 {
    			delta /= base - tmin
    			k += base
    		}
    		bias = k + ((base-tmin+1)*delta)/(delta+skew)
    
    		n += i / (len(output) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_mipsx.s

    TEXT ·Load8(SB),NOSPLIT,$0-5
    	MOVW	ptr+0(FP), R1
    	SYNC
    	MOVB	0(R1), R1
    	SYNC
    	MOVB	R1, ret+4(FP)
    	RET
    
    // uint32 Xadd(uint32 volatile *val, int32 delta)
    // Atomically:
    //	*val += delta;
    //	return *val;
    TEXT ·Xadd(SB),NOSPLIT,$0-12
    	MOVW	ptr+0(FP), R2
    	MOVW	delta+4(FP), R3
    	SYNC
    try_xadd:
    	LL	(R2), R1	// R1 = *R2
    	ADDU	R1, R3, R4
    	MOVW	R4, R1
    	SC	R4, (R2)	// *R2 = R4
    	BEQ	R4, try_xadd
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    	isMutatingRequest := !nonMutatingRequestVerbs.Has(requestInfo.Verb)
    	noteExecutingDelta := func(delta int32) {
    		if isMutatingRequest {
    			watermark.recordMutating(int(atomic.AddInt32(&atomicMutatingExecuting, delta)))
    		} else {
    			watermark.recordReadOnly(int(atomic.AddInt32(&atomicReadOnlyExecuting, delta)))
    		}
    	}
    	noteWaitingDelta := func(delta int32) {
    		if isMutatingRequest {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. src/encoding/gob/decode.go

    	state.fieldnum = -1
    	for state.b.Len() > 0 {
    		delta := int(state.decodeUint())
    		if delta < 0 {
    			errorf("decode: corrupted data: negative delta")
    		}
    		if delta == 0 { // struct terminator is zero delta fieldnum
    			break
    		}
    		if state.fieldnum >= len(engine.instr)-delta { // subtract to compare without overflow
    			error_(errRange)
    		}
    		fieldnum := state.fieldnum + delta
    		instr := &engine.instr[fieldnum]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
Back to top