Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 152 for backward (0.21 sec)

  1. common-protos/k8s.io/api/networking/v1/generated.proto

      // a direct binding between Ingress controller and Ingress resources. Newly
      // created Ingress resources should prefer using the field. However, even
      // though the annotation is officially deprecated, for backwards compatibility
      // reasons, ingress controllers should still honor that annotation if present.
      // +optional
      optional string ingressClassName = 4;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

     *   <li>Improved memory compactness and locality.
     *   <li>Can be queried without allocating garbage.
     *   <li>Access to {@code DoubleStream} features (like {@link DoubleStream#sum}) using {@code
     *       stream()} instead of the awkward {@code stream().mapToDouble(v -> v)}.
     * </ul>
     *
     * <p>Disadvantages compared to {@code ImmutableList<Double>}:
     *
     * <ul>
     *   <li>Can't be passed directly to methods that expect {@code Iterable}, {@code Collection}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Floats.java

        @Override
        protected Float doForward(String value) {
          return Float.valueOf(value);
        }
    
        @Override
        protected String doBackward(Float value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Floats.stringConverter()";
        }
    
        private Object readResolve() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Doubles.java

        @Override
        protected Double doForward(String value) {
          return Double.valueOf(value);
        }
    
        @Override
        protected String doBackward(Double value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Doubles.stringConverter()";
        }
    
        private Object readResolve() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Floats.java

        @Override
        protected Float doForward(String value) {
          return Float.valueOf(value);
        }
    
        @Override
        protected String doBackward(Float value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Floats.stringConverter()";
        }
    
        private Object readResolve() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Doubles.java

        @Override
        protected Double doForward(String value) {
          return Double.valueOf(value);
        }
    
        @Override
        protected String doBackward(Double value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Doubles.stringConverter()";
        }
    
        private Object readResolve() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Longs.java

        @Override
        protected Long doForward(String value) {
          return Long.decode(value);
        }
    
        @Override
        protected String doBackward(Long value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Longs.stringConverter()";
        }
    
        private Object readResolve() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Longs.java

        @Override
        protected Long doForward(String value) {
          return Long.decode(value);
        }
    
        @Override
        protected String doBackward(Long value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Longs.stringConverter()";
        }
    
        private Object readResolve() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/LongMath.java

          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          long delta = a - b; // can't overflow, since a and b are nonnegative
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/bytes/bytes.go

    		last := n - 1
    		i := last
    		fails := 0
    		for i < len(s) {
    			if s[i] != b[last] {
    				o := IndexByte(s[i+1:], b[last])
    				if o < 0 {
    					return -1
    				}
    				i += o + 1
    			}
    			// Step backwards comparing bytes.
    			for j := 1; j < n; j++ {
    				if s[i-j] != b[last-j] {
    					goto next
    				}
    			}
    			return i - last
    		next:
    			fails++
    			i++
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Sep 03 20:55:15 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top