Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,923 for Fits (0.14 sec)

  1. src/testdata/Isaac.Newton-Opticks.txt

    of that Motion or Thing at its Incidence on that space; and of the
    square of the perpendicular velocity which that Motion or Thing would
    have at its Emergence, if at its Incidence its perpendicular velocity
    was infinitely little.
    
    And the same Proposition holds true of any Motion or Thing
    perpendicularly retarded in its passage through that space, if instead
    of the sum of the two Squares you take their difference. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  2. src/archive/tar/strconv.go

    // If parsing fails or an integer overflow occurs, err will be set.
    func (p *parser) parseNumeric(b []byte) int64 {
    	// Check for base-256 (binary) format first.
    	// If the first bit is set, then all following bits constitute a two's
    	// complement encoded number in big-endian byte order.
    	if len(b) > 0 && b[0]&0x80 != 0 {
    		// Handling negative numbers relies on the following identity:
    		//	-a-1 == ^a
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the refracting Angle of the Prism be turned upwards, so that the Paper may seem to be lifted upwards by the Refraction, its blue half will be lifted higher by the Refraction than its red half. But if the refracting Angle of the Prism be turned downward, so that the Paper may seem to be carried lower by the Refraction, its blue half will be carried something lower thereby than its red half. Wherefore in both Cases the Light which comes from the blue half of the Paper through the Prism to the Eye, does...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/IntMath.java

       */
      public static boolean isPowerOfTwo(int x) {
        return x > 0 & (x & (x - 1)) == 0;
      }
    
      /**
       * Returns 1 if {@code x < y} as unsigned integers, and 0 otherwise. Assumes that x - y fits into
       * a signed int. The implementation is branch-free, and benchmarks suggest it is measurably (if
       * narrowly) faster than the straightforward ternary expression.
       */
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// NodeName is a request to schedule this pod onto a specific node. If it is non-empty,
    	// the scheduler simply schedules this pod onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"`
    	// Host networking requested for this pod. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/LongMath.java

      public static boolean isPowerOfTwo(long x) {
        return x > 0 & (x & (x - 1)) == 0;
      }
    
      /**
       * Returns 1 if {@code x < y} as unsigned longs, and 0 otherwise. Assumes that x - y fits into a
       * signed long. The implementation is branch-free, and benchmarks suggest it is measurably faster
       * than the straightforward ternary expression.
       */
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/IntMath.java

       */
      public static boolean isPowerOfTwo(int x) {
        return x > 0 & (x & (x - 1)) == 0;
      }
    
      /**
       * Returns 1 if {@code x < y} as unsigned integers, and 0 otherwise. Assumes that x - y fits into
       * a signed int. The implementation is branch-free, and benchmarks suggest it is measurably (if
       * narrowly) faster than the straightforward ternary expression.
       */
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/sync/poolqueue.go

    	// A consumer continues to own a slot outside this range until
    	// it nils the slot, at which point ownership passes to the
    	// producer.
    	//
    	// The head index is stored in the most-significant bits so
    	// that we can atomically add to it and the overflow is
    	// harmless.
    	headTail atomic.Uint64
    
    	// vals is a ring buffer of interface{} values stored in this
    	// dequeue. The size of this must be a power of 2.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. pkg/apis/resource/types.go

    	// delayed until a Pod gets scheduled that needs the ResourceClaim. The
    	// scheduler will consider all resource requirements of that Pod and
    	// trigger allocation for a node that fits the Pod.
    	AllocationModeWaitForFirstConsumer AllocationMode = "WaitForFirstConsumer"
    
    	// When a ResourceClaim has AllocationModeImmediate, allocation starts
    	// as soon as the ResourceClaim gets created. This is done without
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    		if !d.scanner.Scan() {
    			err := d.scanner.Err()
    			if err == nil {
    				err = io.EOF
    			}
    			return 0, err
    		}
    		out := d.scanner.Bytes()
    		d.remaining = out
    		left = len(out)
    	}
    
    	// fits within data
    	if left <= len(data) {
    		copy(data, d.remaining)
    		d.remaining = nil
    		return left, nil
    	}
    
    	// caller will need to reread
    	copy(data, d.remaining[:len(data)])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
Back to top