Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for 1000Mi (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    tree.visit(new EditingFileVisitor())
                }
    
                final class EditingFileVisitor implements FileVisitor {
                    private final int num = new Random().nextInt(100000)
    
                    @Override
                    void visitDir(FileVisitDetails dirDetails) {}
    
                    @Override
                    void visitFile(FileVisitDetails fileDetails) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            assertThat(map.equals(copy), is(true));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testPerformance() throws Exception {
            int num = 100000;
            Map<String, Object> hmap = new HashMap<String, Object>();
            Map<String, Object> amap = new ArrayMap<String, Object>();
    
            long start = System.currentTimeMillis();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  10. cmd/kubeadm/app/preflight/checks_test.go

    			expectWarnings: false,
    		},
    		{
    			check: HTTPProxyCIDRCheck{
    				Proto: "https",
    				CIDR:  "10.96.0.0/12",
    			}, // Expected to be accessed directly, we set NO_PROXY to 10.0.0.0/8
    			expectWarnings: false,
    		},
    		{
    			check: HTTPProxyCIDRCheck{
    				Proto: "https",
    				CIDR:  "192.168.0.0/16",
    			}, // Expected to go via proxy as this range is not listed in NO_PROXY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top