Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for proximate (0.14 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

         * first call [KaFlexibleType.upperBound] or [KaFlexibleType.lowerBound] and then call this method.
         *
         * @param shouldApproximate whether to approximate non-denotable types. For example, super type of `List<out String>` is
         * `Collection<CAPTURED out String>`. With approximation set to true, `Collection<out String>` is returned instead.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/mmu.go

    //
    // Render plot progressively so rough outline is visible quickly even
    // for very complex MUTs. Start by computing just a few window sizes
    // and then add more window sizes.
    //
    // Consider using sampling to compute an approximate MUT. This would
    // work by sampling the mutator utilization at randomly selected
    // points in time in the trace to build an empirical distribution. We
    // could potentially put confidence intervals on these estimates and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. pilot/pkg/status/distribution/reporter.go

    }
    
    type Reporter struct {
    	mu sync.RWMutex
    	// map from connection id to latest nonce
    	status map[string]string
    	// map from nonce to connection ids for which it is current
    	// using map[string]struct to approximate a hashset
    	reverseStatus          map[string]sets.String
    	inProgressResources    map[string]*inProgressEntry
    	client                 v1.ConfigMapInterface
    	cm                     *corev1.ConfigMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Headers.kt

      fun values(name: String): List<String> = commonValues(name)
    
      /**
       * Returns the number of bytes required to encode these headers using HTTP/1.1. This is also the
       * approximate size of HTTP/2 headers before they are compressed with HPACK. This value is
       * intended to be used as a metric: smaller headers are more efficient to encode and transmit.
       */
      fun byteCount(): Long {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    func CloneLocalityLbEndpoint(ep *endpoint.LocalityLbEndpoints) *endpoint.LocalityLbEndpoints {
    	clone := &endpoint.LocalityLbEndpoints{}
    	clone.Locality = ep.Locality
    	clone.LbEndpoints = ep.LbEndpoints
    	clone.Proximity = ep.Proximity
    	clone.Priority = ep.Priority
    	if ep.LoadBalancingWeight != nil {
    		clone.LoadBalancingWeight = &wrapperspb.UInt32Value{
    			Value: ep.GetLoadBalancingWeight().GetValue(),
    		}
    	}
    	return clone
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Hashing.java

       * that minimizes the need for remapping as {@code buckets} grows. That is, {@code
       * consistentHash(h, n)} equals:
       *
       * <ul>
       *   <li>{@code n - 1}, with approximate probability {@code 1/n}
       *   <li>{@code consistentHash(h, n - 1)}, otherwise (probability {@code 1 - 1/n})
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/Hashing.java

       * that minimizes the need for remapping as {@code buckets} grows. That is, {@code
       * consistentHash(h, n)} equals:
       *
       * <ul>
       *   <li>{@code n - 1}, with approximate probability {@code 1/n}
       *   <li>{@code consistentHash(h, n - 1)}, otherwise (probability {@code 1 - 1/n})
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    			Selector: &istio_type_v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{
    					"gateway.networking.k8s.io/gateway-name": "default",
    				},
    			},
    			Image: &istioio_networking_v1beta1.ProxyImage{
    				ImageType: "distroless",
    			},
    		},
    	}); err != nil {
    		t.Fatalf("failed to create ProxyConfigs: %s", err)
    	}
    	proxyConfig := model.GetProxyConfigs(store, mesh.DefaultMeshConfig())
    	tests := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. src/math/rand/rand_test.go

    						for _, have := range counts {
    							err := float64(have) - want
    							χ2 += err * err
    						}
    						χ2 /= want
    						samples[i] = χ2
    					}
    
    					// Check that our samples approximate the appropriate normal distribution.
    					dof := float64(nfact - 1)
    					expected := &statsResults{mean: dof, stddev: math.Sqrt(2 * dof)}
    					errorScale := max(1.0, expected.stddev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/go/constant/value.go

    			s = fmt.Sprintf("%g", x)
    		}
    		return s
    	}
    
    	// Out of float64 range. Do approximate manual to decimal
    	// conversion to avoid precise but possibly slow Float
    	// formatting.
    	// f = mant * 2**exp
    	var mant big.Float
    	exp := f.MantExp(&mant) // 0.5 <= |mant| < 1.0
    
    	// approximate float64 mantissa m and decimal exponent d
    	// f ~ m * 10**d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top