Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 131 for 99$ (1.76 sec)

  1. src/runtime/hash_test.go

    	// each is the sum of REP coin flips. We want to find bounds on the
    	// sum of coin flips such that a truly random experiment would have
    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/strconv/eisel_lemire.go

    	{0x9FA946824A12232D, 0x8F57FA54C2A9EAB6}, // 1e-102
    	{0x47939822DC96ABF9, 0xB32DF8E9F3546564}, // 1e-101
    	{0x59787E2B93BC56F7, 0xDFF9772470297EBD}, // 1e-100
    	{0x57EB4EDB3C55B65A, 0x8BFBEA76C619EF36}, // 1e-99
    	{0xEDE622920B6B23F1, 0xAEFAE51477A06B03}, // 1e-98
    	{0xE95FAB368E45ECED, 0xDAB99E59958885C4}, // 1e-97
    	{0x11DBCB0218EBB414, 0x88B402F7FD75539B}, // 1e-96
    	{0xD652BDC29F26A119, 0xAAE103B5FCD2A881}, // 1e-95
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    000001a0  97 a8 67 bf e6 d9 1d 34  69 70 93 4a 6c 28 88 01  |..g....4ip.Jl(..|
    000001b0  01 9d 78 59 c0 58 66 c3  70 e4 ba 74 e6 0f f7 27  |..xY.Xf.p..t...'|
    000001c0  8b dd 05 ac 0d 99 dc e9  c8 2f 16 ee 59 53 91 d7  |........./..YS..|
    000001d0  28 27 db ad 85 e6 d0 72  28 81 31 e1 e7 bf dd 95  |('.....r(.1.....|
    000001e0  75 ff d6 a9 dc 4f 30 37  52 07 87 cb 8d a7 4a 00  |u....O07R.....J.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/runtime/stack_test.go

    }
    
    // use about n KB of stack and call f
    func useStackAndCall(n int, f func()) {
    	if n == 0 {
    		f()
    		return
    	}
    	var b [1024]byte // makes frame about 1KB
    	useStackAndCall(n-1+int(b[99]), f)
    }
    
    func useStack(n int) {
    	useStackAndCall(n, func() {})
    }
    
    func growing(c chan int, done chan struct{}) {
    	for n := range c {
    		useStack(n)
    		done <- struct{}{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      FLOOR_DIV = 90,
      REDUCE_ANY = 91,
      SQUARE = 92,
      ZEROS_LIKE = 93,
      FILL = 94,
      FLOOR_MOD = 95,
      RANGE = 96,
      RESIZE_NEAREST_NEIGHBOR = 97,
      LEAKY_RELU = 98,
      SQUARED_DIFFERENCE = 99,
      MIRROR_PAD = 100,
      ABS = 101,
      SPLIT_V = 102,
      UNIQUE = 103,
      CEIL = 104,
      REVERSE_V2 = 105,
      ADD_N = 106,
      GATHER_ND = 107,
      COS = 108,
      WHERE = 109,
      RANK = 110,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/runtime/runtime-gdb_test.go

    	slicemap := make(map[string][]string,` + strconv.FormatInt(abi.MapBucketCount+3, 10) + `)
        chanint := make(chan int, 10)
        chanstr := make(chan string, 10)
        chanint <- 99
    	chanint <- 11
        chanstr <- "spongepants"
        chanstr <- "squarebob"
    	mapvar["abc"] = "def"
    	mapvar["ghi"] = "jkl"
    	slicemap["a"] = []string{"b","c","d"}
        slicemap["e"] = []string{"f","g","h"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	chrUSIndex        ID = 92
    	ckbIndex          ID = 93
    	ckbIQIndex        ID = 94
    	ckbIRIndex        ID = 95
    	csIndex           ID = 96
    	csCZIndex         ID = 97
    	cuIndex           ID = 98
    	cuRUIndex         ID = 99
    	cyIndex           ID = 100
    	cyGBIndex         ID = 101
    	daIndex           ID = 102
    	daDKIndex         ID = 103
    	daGLIndex         ID = 104
    	davIndex          ID = 105
    	davKEIndex        ID = 106
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	defer store.Stop()
    
    	// First thing that is called when propagated from storage is Replace.
    	store.Replace([]interface{}{
    		makeTestPod("pod1", 5),
    		makeTestPod("pod2", 9),
    	}, "9")
    
    	_, err := store.getAllEventsSince(8, storage.ListOptions{})
    	if err == nil || !strings.Contains(err.Error(), "too old resource version") {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-annotations-stress.test

    UserRegionEnd dt=5 task=20 name_string=29 stack=34
    GoBlock dt=9 reason_string=19 stack=35
    GoStart dt=9 g=14 g_seq=1
    UserRegionBegin dt=28 task=19 name_string=56 stack=26
    UserLog dt=7 task=19 key_string=24 value_string=99 stack=27
    UserRegionEnd dt=2 task=19 name_string=56 stack=28
    GoDestroy dt=2
    ProcStop dt=17
    ProcStart dt=141933 p=2 p_seq=11
    ProcStop dt=13
    ProcStart dt=16744 p=2 p_seq=12
    GoUnblock dt=29 g=1 g_seq=17 stack=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema.fbs

      FLOOR_DIV = 90,
      REDUCE_ANY = 91,
      SQUARE = 92,
      ZEROS_LIKE = 93,
      FILL = 94,
      FLOOR_MOD = 95,
      RANGE = 96,
      RESIZE_NEAREST_NEIGHBOR = 97,
      LEAKY_RELU = 98,
      SQUARED_DIFFERENCE = 99,
      MIRROR_PAD = 100,
      ABS = 101,
      SPLIT_V = 102,
      UNIQUE = 103,
      CEIL = 104,
      REVERSE_V2 = 105,
      ADD_N = 106,
      GATHER_ND = 107,
      COS = 108,
      WHERE = 109,
      RANK = 110,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top