Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 154 for aloop (0.07 sec)

  1. guava-tests/test/com/google/common/hash/BloomFilterTest.java

    
      public void testNoRaceConditions() throws Exception {
        final BloomFilter<Integer> bloomFilter =
            BloomFilter.create(Funnels.integerFunnel(), 15_000_000, 0.01);
    
        // This check has to be BEFORE the loop because the random insertions can
        // flip GOLDEN_PRESENT_KEY to true even if it wasn't explicitly inserted
        // (false positive).
        assertThat(bloomFilter.mightContain(GOLDEN_PRESENT_KEY)).isFalse();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

          }
        }
      }
    
      private void recurse(int level) {
        // We're going to reuse the stimuli array 3^steps times by overwriting it
        // in a recursive loop.  Sneaky.
        if (level == stimuli.length) {
          // We've filled the array.
          compareResultsForThisListOfStimuli();
        } else {
          // Keep recursing to fill the array.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    //
    //go:nosplit
    func timediv(v int64, div int32, rem *int32) int32 {
    	res := int32(0)
    	for bit := 30; bit >= 0; bit-- {
    		if v >= int64(div)<<uint(bit) {
    			v = v - (int64(div) << uint(bit))
    			// Before this for loop, res was 0, thus all these
    			// power of 2 increments are now just bitsets.
    			res |= 1 << uint(bit)
    		}
    	}
    	if v >= int64(div) {
    		if rem != nil {
    			*rem = 0
    		}
    		return 0x7fffffff
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. cmd/generic-handlers.go

    // Check if the incoming path has bad path components,
    // such as ".." and "."
    func hasBadPathComponent(path string) bool {
    	if len(path) > 4096 {
    		// path cannot be greater than Linux PATH_MAX
    		// this is to avoid a busy loop, that can happen
    		// if the caller sends path of following style
    		// a/a/a/a/a/a/a/a...
    		return true
    	}
    	path = filepath.ToSlash(strings.TrimSpace(path)) // For windows '\' must be converted to '/'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one.go

    		// This relies on the fact that Error will check if the pod has been bound
    		// to a node and if so will not add it back to the unscheduled pods queue
    		// (otherwise this would cause an infinite loop).
    		return ScheduleResult{nominatingInfo: clearNominatedNode}, assumedPodInfo, framework.AsStatus(err)
    	}
    
    	// Run the Reserve method of reserve plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. cmd/iam-object-store.go

    			return fmt.Errorf("unable to load user during STS purge: %w (%s)", err, item)
    		}
    
    	}
    	// Loading the STS policy mappings from disk ensures that stale entries
    	// (removed during loadUser() in the loop above) are removed from memory.
    	for _, item := range listedConfigItems[policyDBSTSUsersListKey] {
    		stsName := strings.TrimSuffix(item, ".json")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    			continue
    		}
    		names, err := LookupAddr("127.0.0.1")
    		fixup()
    		if err != nil {
    			t.Logf("#%d: %v", i, err)
    			continue
    		}
    		mode := "netgo"
    		if i == 1 {
    			mode = "netcgo"
    		}
    	loop:
    		for i, name := range names {
    			if strings.Index(name, ".") == len(name)-1 { // "localhost" not "localhost."
    				for j := range names {
    					if j == i {
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/testing/fstest/testfs.go

    		}
    		if n == 0 {
    			t.errorf("%s: third Open: ReadDir(%d) after %d: 0 entries but nil error", dir, n, len(list2))
    			return
    		}
    	}
    	t.checkDirList(dir, "first Open+ReadDir(-1) vs third Open+ReadDir(1,2) loop", list, list2)
    
    	// If fsys has ReadDir, check that it matches and is sorted.
    	if fsys, ok := t.fsys.(fs.ReadDirFS); ok {
    		list2, err := fsys.ReadDir(dir)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashSet.java

          CompactHashing.tableSet(newTable, targetHash & newMask, targetEntryIndex + 1);
        }
    
        Object oldTable = requireTable();
        int[] entries = requireEntries();
    
        // Loop over current hashtable
        for (int oldTableIndex = 0; oldTableIndex <= oldMask; oldTableIndex++) {
          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          while (oldNext != UNSET) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/image/gif/writer_test.go

    	}
    	if w, h := g1.Config.Width, g1.Config.Height; w != width || h != height {
    		t.Errorf("got config width * height = %d * %d, want %d * %d", w, h, width, height)
    	}
    
    	if g0.LoopCount != g1.LoopCount {
    		t.Errorf("loop counts differ: %d and %d", g0.LoopCount, g1.LoopCount)
    	}
    	if backgroundIndex != g1.BackgroundIndex {
    		t.Errorf("background indexes differ: %d and %d", backgroundIndex, g1.BackgroundIndex)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top