- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 56 for upper (0.02 seconds)
-
android/guava-tests/test/com/google/common/base/AsciiTest.java
assertThat(Ascii.toLowerCase(LOWER)).isSameInstanceAs(LOWER); assertThat(Ascii.toLowerCase(IGNORED)).isEqualTo(IGNORED); assertThat(Ascii.toLowerCase("fOobaR")).isEqualTo("foobar"); } public void testToUpperCase() { assertThat(Ascii.toUpperCase(LOWER)).isEqualTo(UPPER); assertThat(Ascii.toUpperCase(UPPER)).isSameInstanceAs(UPPER);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 5.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/AsciiTest.java
assertThat(Ascii.toLowerCase(LOWER)).isSameInstanceAs(LOWER); assertThat(Ascii.toLowerCase(IGNORED)).isEqualTo(IGNORED); assertThat(Ascii.toLowerCase("fOobaR")).isEqualTo("foobar"); } public void testToUpperCase() { assertThat(Ascii.toUpperCase(LOWER)).isEqualTo(UPPER); assertThat(Ascii.toUpperCase(UPPER)).isSameInstanceAs(UPPER);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
/** * Default load factor. */ protected static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * Upper limit on the number of entries. */ protected final int limitSize; /** * Creates an {@link LruHashMap}. * * @param limitSize the upper limit on the number of entries */ public LruHashMap(final int limitSize) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 3K bytes - Click Count (0) -
android/guava/src/com/google/common/io/BaseEncoding.java
byte[] newDecodabet = Arrays.copyOf(decodabet, decodabet.length); for (int upper = 'A'; upper <= 'Z'; upper++) { int lower = upper | 0x20; byte decodeUpper = decodabet[upper]; byte decodeLower = decodabet[lower]; if (decodeUpper == -1) { newDecodabet[upper] = decodeLower; } else { checkState( decodeLower == -1,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:45:58 GMT 2026 - 41.6K bytes - Click Count (0) -
android/guava/src/com/google/common/math/Quantiles.java
* {@code upper}. Assumes that {@code lower <= upper}. Correctly handles infinities (but not * {@code NaN}). */ private static double interpolate(double lower, double upper, double remainder, double scale) { if (lower == NEGATIVE_INFINITY) { if (upper == POSITIVE_INFINITY) { // Return NaN when lower == NEGATIVE_INFINITY and upper == POSITIVE_INFINITY: return NaN; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 30.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
* @return parsed StorageType */ private static StorageType parseStorageType(final String typeStr) { final String upper = typeStr.toUpperCase(Locale.ROOT); try { return StorageType.valueOf(upper); } catch (final IllegalArgumentException e) { logger.warn("Unknown storage type: {}, defaulting to S3_COMPAT", typeStr);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 4.2K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeToken.java
* declared by interface {@code Iterable}. * * <p>If this type is a type variable or wildcard, its upper bounds are examined and those that * are either an interface or upper-bounded only by interfaces are returned. This means that the * returned types could include type variables too. */ final ImmutableList<TypeToken<? super T>> getGenericInterfaces() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 53.8K bytes - Click Count (0) -
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.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 11K bytes - Click Count (0) -
fastapi/openapi/utils.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 25.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
String upperCaseOrigin = "HTTPS://EXAMPLE.COM"; TestCorsHandler lowerHandler = new TestCorsHandler("lower-handler"); TestCorsHandler upperHandler = new TestCorsHandler("upper-handler"); // Execute corsHandlerFactory.add(lowerCaseOrigin, lowerHandler); corsHandlerFactory.add(upperCaseOrigin, upperHandler); // Verify - origins are case sensitive
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0)