Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 735 for lowest (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

                    (x): "x",
                    // attribute that has a precedence in consumer
                    (c): AttributeTestUtil.named(ConcreteNamed, "c"),
                    // attribute with the highest precedence in consumer, but lowest in producer
                    (producerA): "a",
                    // attribute that doesn't have a precedence
                    (Attribute.of("z", String)): "z"
            )
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/match.go

    //   - desired:   list of desired tags, ordered by preference, starting with
    //                the most-preferred.
    //
    // Algorithm:
    //   1) Set the best match to the lowest confidence level
    //   2) For each tag in "desired":
    //     a) For each tag in "supported":
    //        1) compute the match between the two tags.
    //        2) if the match is better than the previous best match, replace it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. src/runtime/softfloat64.go

    	mant := uint64(val)
    	if fs != 0 {
    		mant = -mant
    	}
    	// Reduce mantissa size until it fits into a uint32.
    	// Keep track of the bits we throw away, and if any are
    	// nonzero or them into the lowest bit.
    	exp := int(mantbits32)
    	var trunc uint32
    	for mant >= 1<<32 {
    		trunc |= uint32(mant) & 1
    		mant >>= 1
    		exp++
    	}
    
    	return fpack32(uint32(fs>>32), uint32(mant), exp, trunc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Bytes.java

      }
    
      /**
       * Returns the start position of the first occurrence of the specified {@code target} within
       * {@code array}, or {@code -1} if there is no such occurrence.
       *
       * <p>More formally, returns the lowest index {@code i} such that {@code Arrays.copyOfRange(array,
       * i, i + target.length)} contains exactly the same elements as {@code target}.
       *
       * @param array the array to search for the sequence {@code target}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Bytes.java

      }
    
      /**
       * Returns the start position of the first occurrence of the specified {@code target} within
       * {@code array}, or {@code -1} if there is no such occurrence.
       *
       * <p>More formally, returns the lowest index {@code i} such that {@code Arrays.copyOfRange(array,
       * i, i + target.length)} contains exactly the same elements as {@code target}.
       *
       * @param array the array to search for the sequence {@code target}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/klog/v2"
    )
    
    type Source uint
    
    // The GroupVersion from the lowest Source takes precedence
    const (
    	AggregatorSource Source = 0
    	BuiltinSource    Source = 100
    	CRDSource        Source = 200
    )
    
    // This handler serves the /apis endpoint for an aggregated list of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. src/runtime/mpallocbits.go

    					continue outer
    				}
    				p -= k
    				// We've just doubled the minimum length of 1-runs.
    				// This allows us to shift farther in the next iteration.
    				k *= 2
    			}
    
    			// The length of the lowest-order zero run is an increment to our maximum.
    			j := uint(sys.TrailingZeros64(^x)) // count contiguous trailing ones
    			x >>= j & 63                       // remove trailing ones
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	// Determine a human-friendly message.
    	var reason, message string
    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    		message = "recent recommendations were lower than current one, applying the lowest recent recommendation"
    	} else {
    		reason = "ScaleDownStabilized"
    		message = "recent recommendations were higher than current one, applying the highest recent recommendation"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/internal/reflectlite/value.go

    	typ_ *abi.Type
    
    	// Pointer-valued data or, if flagIndir is set, pointer to data.
    	// Valid when either flagIndir is set or typ.pointers() is true.
    	ptr unsafe.Pointer
    
    	// flag holds metadata about the value.
    	// The lowest bits are flag bits:
    	//	- flagStickyRO: obtained via unexported not embedded field, so read-only
    	//	- flagEmbedRO: obtained via unexported embedded field, so read-only
    	//	- flagIndir: val holds a pointer to the data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/common.go

    	if isCIVersion {
    		cfg.CIKubernetesVersion = fmt.Sprintf("%s%s", constants.CIKubernetesVersionPrefix, ver)
    	}
    
    	cfg.KubernetesVersion = ver
    
    	// Parse the given kubernetes version and make sure it's higher than the lowest supported
    	k8sVersion, err := version.ParseSemantic(cfg.KubernetesVersion)
    	if err != nil {
    		return errors.Wrapf(err, "couldn't parse Kubernetes version %q", cfg.KubernetesVersion)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top