Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 107 for Guess (0.05 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
       * value slightly too high than slightly too low. If the value is not exact, the {@link
       * ImmutableIntArray} that is built will very likely occupy more memory than strictly necessary;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. src/sort/sort_test.go

    	maxcmp    int   // number of comparisons allowed
    	ncmp      int   // number of comparisons (calls to Less)
    	nsolid    int   // number of elements that have been set to non-gas values
    	candidate int   // guess at current pivot
    	gas       int   // special value for unset elements, higher than everything else
    }
    
    func (d *adversaryTestingData) Len() int { return len(d.data) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/ImmutableIntArray.java

       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
       * value slightly too high than slightly too low. If the value is not exact, the {@link
       * ImmutableIntArray} that is built will very likely occupy more memory than strictly necessary;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
       * value slightly too high than slightly too low. If the value is not exact, the {@link
       * ImmutableDoubleArray} that is built will very likely occupy more memory than strictly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/ImmutableLongArray.java

       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
       * value slightly too high than slightly too low. If the value is not exact, the {@link
       * ImmutableLongArray} that is built will very likely occupy more memory than strictly necessary;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/os/timeout_test.go

    				t.Logf("Wrote %d bytes into send buffer; retrying until buffer is full", n)
    				if d <= maxDynamicTimeout/2 {
    					// We don't know how long the actual write loop would have taken if
    					// the buffer were full, so just guess and double the duration so that
    					// the next attempt can make twice as much progress toward filling it.
    					d *= 2
    				}
    			} else if next, ok := nextTimeout(actual); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

                echo "Example 1: hack/local-up-cluster.sh -o _output/dockerized/bin/linux/amd64/ (run from docker output)"
                echo "Example 2: hack/local-up-cluster.sh -O (auto-guess the bin path for your platform)"
                echo "Example 3: hack/local-up-cluster.sh (build a local copy of the source)"
                echo "Example 4: FEATURE_GATES=CPUManagerPolicyOptions=true \\"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    				markLastImplicit(&inst, PrefixDataSize)
    				op += "w"
    			} else if inst.Mode == 64 {
    				op += "q"
    			}
    
    		case FRSTOR, FNSAVE, FNSTENV, FLDENV:
    			// Add s suffix to indicate shortened FPU state (I guess).
    			if inst.DataSize == 16 {
    				op += "s"
    			}
    
    		case PUSH, POP:
    			if markLastImplicit(&inst, PrefixDataSize) {
    				op += byteSizeSuffix(inst.DataSize / 8)
    			} else if inst.Mode == 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    // When legacyGatewaySelector=true things are a bit more complex, as we support referencing a Service
    // port and translating to the targetPort in addition to just directly referencing a port. In this
    // case, we just make a best effort guess by picking the first match.
    func resolvePorts(number uint32, instances []ServiceTarget, legacyGatewaySelector bool) []uint32 {
    	ports := sets.New[uint32]()
    	for _, w := range instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		if len(file) == 0 {
    			continue
    		}
    		if len(libRx.FindStringSubmatch(file)) > 0 {
    			continue
    		}
    		if file[0] == '[' {
    			continue
    		}
    		// Swap what we guess is main to position 0.
    		p.Mapping[0], p.Mapping[i] = p.Mapping[i], p.Mapping[0]
    		break
    	}
    
    	// Keep the mapping IDs neatly sorted
    	for i, m := range p.Mapping {
    		m.ID = uint64(i + 1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top