- Sort Score
- Num 10 results
- Language All
Results 1381 - 1390 of 1,462 for strana (0.21 seconds)
-
guava/src/com/google/common/collect/GeneralRange.java
private static <T extends @Nullable Object> Comparator<T> reverseComparator( Comparator<T> comparator) { return Ordering.from(comparator).reverse(); } @Override public String toString() { return comparator + ":" + (lowerBoundType == CLOSED ? '[' : '(') + (hasLowerBound ? lowerEndpoint : "-\u221e") + ','
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.8K bytes - Click Count (0) -
docs/uk/docs/tutorial/handling-errors.md
} ] } ``` ви отримаєте текстову версію: ``` Validation errors: Field: ('path', 'item_id'), Error: Input should be a valid integer, unable to parse string as an integer ``` ### Перевизначення обробника помилок `HTTPException` { #override-the-httpexception-error-handler } Аналогічно, ви можете перевизначити обробник `HTTPException`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 13.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ObjectArrays.java
return fillArray(c, new Object[c.size()]); } /** * Returns a copy of the specified subrange of the specified array that is literally an Object[], * and not e.g. a {@code String[]}. */ static @Nullable Object[] copyAsObjectArray(@Nullable Object[] elements, int offset, int length) { checkPositionIndexes(offset, offset + length, elements.length); if (length == 0) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jan 23 17:16:53 GMT 2026 - 9.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
serializer.submit(toStringCallable(toBeGCed), directExecutor()).cancel(true); toBeGCed = null; GcFinalization.awaitClear(ref); } private static Callable<String> toStringCallable(Object object) { return object::toString; } public void testCancellationDuringReentrancy() throws Exception { TestLogHandler logHandler = new TestLogHandler();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 13.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* {@link #entrySet}, you may wish to override {@link #toString} to forward to this * implementation. * * @since 7.0 */ @Override protected String standardToString() { return entrySet().toString(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0) -
docs/es/docs/environment-variables.md
Hay una variable de entorno **especial** llamada **`PATH`** que es utilizada por los sistemas operativos (Linux, macOS, Windows) para encontrar programas a ejecutar. El valor de la variable `PATH` es un string largo que consiste en directorios separados por dos puntos `:` en Linux y macOS, y por punto y coma `;` en Windows. Por ejemplo, la variable de entorno `PATH` podría verse así: //// tab | Linux, macOS
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 8.3K bytes - Click Count (0) -
scripts/people.py
self.remaining_points = remaining self.reset_at = datetime.fromisoformat(reset_at.replace("Z", "+00:00")) rate_limiter = RateLimiter() discussions_query = """ query Q($after: String, $category_id: ID) { repository(name: "fastapi", owner: "fastapi") { discussions(first: 30, after: $after, categoryId: $category_id) { edges { cursor node { numberCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:51:24 GMT 2026 - 15K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/classes-as-dependencies.md
* Un parámetro de query `skip` que es un `int`, con un valor por defecto de `0`. * Un parámetro de query `limit` que es un `int`, con un valor por defecto de `100`. En ambos casos, los datos serán convertidos, validados, documentados en el esquema de OpenAPI, etc. ## Úsalo { #use-it } Ahora puedes declarar tu dependencia usando esta clase. {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:41:41 GMT 2026 - 7.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
assertOperationEquals( a, b, "s^", saturatedCast(valueOf(a).pow(b)), LongMath.saturatedPow(a, b)); } } } private void assertOperationEquals(long a, long b, String op, long expected, long actual) { if (expected != actual) { fail("Expected for " + a + " " + op + " " + b + " = " + expected + ", but got " + actual); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Oct 30 14:15:36 GMT 2025 - 31.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableBiMap.java
* A builder for creating immutable bimap instances, especially {@code public static final} bimaps * ("constant bimaps"). Example: * * {@snippet : * static final ImmutableBiMap<String, Integer> WORD_TO_INT = * new ImmutableBiMap.Builder<String, Integer>() * .put("one", 1) * .put("two", 2) * .put("three", 3) * .buildOrThrow(); * } *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 22.7K bytes - Click Count (0)