Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 228 for Upper (0.04 sec)

  1. tests/integration/pilot/common/traffic.go

    	if got != expected {
    		return fmt.Errorf("got unexpected %v: got %q, wanted %q", help, got, expected)
    	}
    	return nil
    }
    
    func AlmostEquals(a, b, precision int) bool {
    	upper := a + precision
    	lower := a - precision
    	if b < lower || b > upper {
    		return false
    	}
    	return true
    }
    
    type TrafficContext struct {
    	framework.TestContext
    	Apps  deployment.SingleNamespaceView
    	Istio istio.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/site-replication-metrics_gen.go

    				return
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z RStat) Msgsize() (s int) {
    	s = 1 + 6 + msgp.Int64Size + 6 + msgp.Int64Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/ipallocator.go

    	offsetAddress netip.Addr   // IP address that delimits the upper and lower subranges
    	lastAddress   netip.Addr   // last IP address within the range
    	family        api.IPFamily // family is the IP family of this range
    
    	rangeOffset int    // subdivides the assigned IP range to prefer dynamic allocation from the upper range
    	size        uint64 // cap the total number of IPs available to maxInt64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. docs/en/docs/python-types.md

    At some point you would have started the definition of the function, you had the parameters ready...
    
    But then you have to call "that method that converts the first letter to upper case".
    
    Was it `upper`? Was it `uppercase`? `first_uppercase`? `capitalize`?
    
    Then, you try with the old programmer's friend, editor autocompletion.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. cmd/batch-expire_gen.go

    				}
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BatchJobExpire) Msgsize() (s int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    // the upper bound.
    func addrsToSummaryRange(level int, base, limit uintptr) (lo int, hi int) {
    	// This is slightly more nuanced than just a shift for the exclusive
    	// upper-bound. Note that the exclusive upper bound may be within a
    	// summary at this level, meaning if we just do the obvious computation
    	// hi will end up being an inclusive upper bound. Unfortunately, just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * Units are resolved by calling the {@code valueOf(String)} method of {@link java.util.concurrent.TimeUnit} with the upper-cased string value.</p>
         *
         * @param value The number of time units
         * @param units The units
         * @since 1.0-milestone-6
         */
        void cacheDynamicVersionsFor(int value, String units);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. src/math/big/ratconv.go

    // floating-point number optionally followed by an exponent.
    // If a fraction is provided, both the dividend and the divisor may be a
    // decimal integer or independently use a prefix of “0b”, “0” or “0o”,
    // or “0x” (or their upper-case variants) to denote a binary, octal, or
    // hexadecimal integer, respectively. The divisor may not be signed.
    // If a floating-point number is provided, it may be in decimal form or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            extendsString.displayName == "? extends String"
            superString.displayName == "? super String"
            objects.displayName == "?"
            anything.displayName == "?"
        }
    
        def "upper bound wildcards are equal when upper bounds are equal"() {
            expect:
            def type = new ModelType<List<? extends Integer>>() {}.typeVariables[0]
            def same = new ModelType<List<? extends Integer>>() {}.typeVariables[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/Types.java

            return supertypeOf(newArrayType(lowerBounds[0]));
          } else {
            Type[] upperBounds = wildcard.getUpperBounds();
            checkArgument(upperBounds.length == 1, "Wildcard should have only one upper bound.");
            return subtypeOf(newArrayType(upperBounds[0]));
          }
        }
        return JavaVersion.CURRENT.newArrayType(componentType);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top