Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 207 for Smallest (0.14 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/DependencyGenerator.groovy

     * In order to generate realistic project dependencies, we split the projects to layers and generate
     * dependencies to projects in lower layers. The sizes of different layers are created so that
     * the first and last layers are the smallest and the layers in the middle are the largest.
     *
     * For example when numberOfProjects = 150, 10 layers will be created with sizes of
     * [1, 2, 6, 16, 50, 50, 16, 6, 2, 1]
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/scheduling/v1beta1/types.go

    	// Only one PriorityClass can be marked as `globalDefault`. However, if more than
    	// one PriorityClasses exists with their `globalDefault` field set to true,
    	// the smallest value of such global default PriorityClasses will be used as the default priority.
    	// +optional
    	GlobalDefault bool `json:"globalDefault,omitempty" protobuf:"bytes,3,opt,name=globalDefault"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		// defined in RFC 8949 4.2.1 "Core Deterministic Encoding Requirements".
    		Sort: cbor.SortBytewiseLexical,
    
    		// CBOR supports distinct types for IEEE-754 float16, float32, and float64. Store
    		// floats in the smallest width that preserves value so that equivalent float32 and
    		// float64 values encode to identical bytes, as they do in a JSON
    		// encoding. Satisfies one of the "Core Deterministic Encoding Requirements".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/math/big/float.go

    			ebits = fbits - mbits - 1 //     8  exponent size
    			bias  = 1<<(ebits-1) - 1  //   127  exponent bias
    			dmin  = 1 - bias - mbits  //  -149  smallest unbiased exponent (denormal)
    			emin  = 1 - bias          //  -126  smallest unbiased exponent (normal)
    			emax  = bias              //   127  largest unbiased exponent (normal)
    		)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. src/internal/diff/diff.go

    // the smallest number of lines inserted and removed,
    // which can in the worst case take time quadratic in the
    // number of lines in the texts. As a result, many implementations
    // either can be made to run for a long time or cut off the search
    // after a predetermined amount of work.
    //
    // In contrast, this implementation looks for a diff with the
    // smallest number of “unique” lines inserted and removed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    		//  `type(intOrStringField) == int ? intOrStringField < 5 : double(intOrStringField.replace('%', '')) < 0.5
    		//
    		dyn := apiservercel.NewSimpleTypeWithMinSize("dyn", cel.DynType, nil, 1) // smallest value for a serialized x-kubernetes-int-or-string is 0
    		// handle x-kubernetes-int-or-string by returning the max length/min serialized size of the largest possible string
    		dyn.MaxElements = maxRequestSizeBytes - 2
    		return dyn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p224_sqrt.go

    	//
    	// https://github.com/pornin/ecgfp5/blob/82325b965/rust/src/field.rs#L337-L385
    
    	// p = q*2^n + 1 with q odd -> q = 2^128 - 1 and n = 96
    	// g^(2^n) = 1 -> g = 11 ^ q (where 11 is the smallest non-square)
    	// GG[j] = g^(2^j) for j = 0 to n-1
    
    	p224GGOnce.Do(func() {
    		p224GG = new([96]fiat.P224Element)
    		for i := range p224GG {
    			if i == 0 {
    				p224GG[i].SetBytes([]byte{0x6a, 0x0f, 0xec, 0x67,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/base/SmallCharMatcher.java

      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
       * with linear probing in its implementation. The returned size is the smallest power of two that
       * can hold setSize elements with the desired load factor.
       */
      @VisibleForTesting
      static int chooseTableSize(int setSize) {
        if (setSize == 1) {
          return 2;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/image/geom_test.go

    				}
    				if in(b, r) == nil && in(b, s) == nil {
    					t.Errorf("Intersect: r=%s, s=%s, a=%s, b=%s, i=%d: intersection could be larger",
    						r, s, a, b, i)
    				}
    			}
    		}
    	}
    
    	// The union should be the smallest rectangle a such that every point in r
    	// is in a and every point in s is in a.
    	for _, r := range rects {
    		for _, s := range rects {
    			a := r.Union(s)
    			if err := in(r, a); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/BuildInvocationsBuilder.java

                // this way, for each task selector, its description will be the one from the selected task with the 'smallest' path
                if (!taskSelectors.containsKey(task.getName())) {
                    LaunchableGradleTaskSelector taskSelector = new LaunchableGradleTaskSelector()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top