Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for 1000Mi (0.25 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

              double z = aa.addAndGet(i, y);
              assertBitEquals(x + y, z);
              assertBitEquals(x + y, aa.get(i));
            }
          }
        }
      }
    
      static final long COUNTDOWN = 100000;
    
      class Counter extends CheckedRunnable {
        final AtomicDoubleArray aa;
        volatile long counts;
    
        Counter(AtomicDoubleArray a) {
          aa = a;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/strconv/atof.go

    		return
    	}
    	if !sawdot {
    		b.dp = b.nd
    	}
    
    	// optional exponent moves decimal point.
    	// if we read a very large, very long number,
    	// just be sure to move the decimal point by
    	// a lot (say, 100000).  it doesn't matter if it's
    	// not the exact number.
    	if i < len(s) && lower(s[i]) == 'e' {
    		i++
    		if i >= len(s) {
    			return
    		}
    		esign := 1
    		if s[i] == '+' {
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    							},
    						}
    					}
    					return &runtimeapi.ContainerResources{
    						Linux: &runtimeapi.LinuxContainerResources{
    							CpuQuota:           25000,
    							CpuPeriod:          100000,
    							MemoryLimitInBytes: 524288000,
    							OomScoreAdj:        -998,
    						},
    					}
    				}(),
    			},
    			expected: &kubecontainer.Status{
    				ID:        *cid,
    				Image:     imageSpec.Image,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      // one second of wall time), it should remove "a" and leave "b" alone.
      uint64 start = Env::Default()->NowSeconds();
      do {
        Env::Default()->SleepForMicroseconds(100000);
      } while (cache.CacheSize() == 24 && Env::Default()->NowSeconds() - start < 3);
      // There should be one block left in the cache, and it should be the first
      // block of "b".
      EXPECT_EQ(cache.CacheSize(), 8);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      public void testSetFuture_stackOverflow() {
        SettableFuture<String> orig = SettableFuture.create();
        SettableFuture<String> prev = orig;
        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      public void testSetFuture_stackOverflow() {
        SettableFuture<String> orig = SettableFuture.create();
        SettableFuture<String> prev = orig;
        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. src/runtime/hash_test.go

    	avalancheTest1(t, &Int32Key{})
    	avalancheTest1(t, &Int64Key{})
    	avalancheTest1(t, &EfaceKey{})
    	avalancheTest1(t, &IfaceKey{})
    }
    func avalancheTest1(t *testing.T, k Key) {
    	const REP = 100000
    	r := rand.New(rand.NewSource(1234))
    	n := k.bits()
    
    	// grid[i][j] is a count of whether flipping
    	// input bit i affects output bit j.
    	grid := make([][hashSize]int, n)
    
    	for z := 0; z < REP; z++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("50M").compareTo(quantity("50Mi")) // returns -1
    // quantity("50Mi").compareTo(quantity("50M")) // returns 1
    // quantity("150Mi").isGreaterThan(quantity("100Mi")) // returns true
    // quantity("50Mi").isGreaterThan(quantity("100Mi")) // returns false
    // quantity("50M").isLessThan(quantity("100M")) // returns true
    // quantity("100M").isLessThan(quantity("50M")) // returns false
    
    func Quantity() cel.EnvOption {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/go/printer/testdata/declarations.input

    	_ = 0xcafebabe
    	_ = 0.
    	_ = .0
    	_ = 3.14159265
    	_ = 1e0
    	_ = 1e+100
    	_ = 1e-100
    	_ = 2.71828e-1000
    	_ = 0i
    	_ = 1i
    	_ = 012345678901234567889i
    	_ = 123456789012345678890i
    	_ = 0.i
    	_ = .0i
    	_ = 3.14159265i
    	_ = 1e0i
    	_ = 1e+100i
    	_ = 1e-100i
    	_ = 2.71828e-1000i
    	_ = 'a'
    	_ = '\000'
    	_ = '\xFF'
    	_ = '\uff16'
    	_ = '\U0000ff16'
    	_ = `foobar`
    	_ = `foo
    ---
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"valid 8": {
    			addresses: []string{"10.20.30.0/24"},
    		},
    		"valid 9": {
    			addresses: []string{"10.20.0.0/16", "100.200.0.0/16"},
    		},
    		"valid 10": {
    			addresses: []string{"10.0.0.0/8"},
    		},
    		"valid 11": {
    			addresses: []string{"2001:db8::/32"},
    		},
    		"primary": {
    			addresses: []string{kubeproxyconfig.NodePortAddressesPrimary},
    		},
    		"invalid foo address": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top