- Sort Score
- Num 10 results
- Language All
Results 581 - 590 of 2,455 for Klasse (0.06 seconds)
-
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
/* * This class is used to serialize all ImmutableSortedSet instances, * regardless of implementation type. It captures their "logical contents" * only. This is necessary to ensure that the existence of a particular * implementation type is an implementation detail. */ @J2ktIncompatible // serialization private static final class SerializedForm<E> implements Serializable {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 36.8K bytes - Click Count (0) -
CONTRIBUTING.md
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Ascii.java
/** * Static methods pertaining to ASCII characters (those in the range of values {@code 0x00} through * {@code 0x7F}), and to strings containing such characters. * * <p>ASCII utilities also exist in other classes of this package: * * <ul> * <!-- TODO(kevinb): how can we make this not produce a warning when building gwt javadoc? --> * <li>{@link StandardCharsets#US_ASCII} specifies the {@code Charset} of ASCII characters.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 21.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
public void testGet_bad() { ImmutableIntArray iia = ImmutableIntArray.of(0, 1, 3); assertThrows(IndexOutOfBoundsException.class, () -> iia.get(-1)); assertThrows(IndexOutOfBoundsException.class, () -> iia.get(3)); ImmutableIntArray sub = iia.subArray(1, 2); assertThrows(IndexOutOfBoundsException.class, () -> sub.get(-1)); } public void testIndexOf() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 20.2K bytes - Click Count (0) -
docs/es/docs/advanced/security/oauth2-scopes.md
Pero cuando importas `Query`, `Path`, `Depends`, `Security` y otros de `fastapi`, en realidad son funciones que devuelven clases especiales. /// ## Usar `SecurityScopes` { #use-securityscopes } Ahora actualiza la dependencia `get_current_user`. Esta es la que usan las dependencias anteriores.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 14.1K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/UnsignedBytes.java
static Comparator<byte[]> getBestComparator() { try { Class<? extends LexicographicalComparator> unsafeImpl = Class.forName(UNSAFE_COMPARATOR_NAME).asSubclass(LexicographicalComparator.class); // requireNonNull is safe because the class is an enum. LexicographicalComparator unsafeComparator = requireNonNull(unsafeImpl.getEnumConstants())[0];
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 21K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
throw new TransferFailedException("Authorization failed: " + e.getMessage(), e); } finally { // Remove remaining TransferListener instances (checksum handlers removed in above finally clause) if (downloadMonitor != null) { wagon.removeTransferListener(downloadMonitor); } disconnectWagon(wagon); releaseWagon(protocol, wagon);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 29.9K bytes - Click Count (0) -
docs/en/docs/tutorial/sql-databases.md
In **SQLModel**, any model class that has `table=True` is a **table model**. And any model class that doesn't have `table=True` is a **data model**, these ones are actually just Pydantic models (with a couple of small extra features). π€ With SQLModel, we can use **inheritance** to **avoid duplicating** all the fields in all the cases. #### `HeroBase` - the base class { #herobase-the-base-class }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 15.3K bytes - Click Count (0) -
docs/ko/docs/python-types.md
```Python hl_lines="1" {!> ../../docs_src/python_types/tutorial009_py310.py!} ``` //// κ·Έλ₯ `str` λμ `str | None`μ μ¬μ©νλ©΄, κ°μ΄ νμ `str`μ΄λΌκ³ κ°μ νκ³ μμ§λ§ μ€μ λ‘λ `None`μΌ μλ μλ μν©μμ μλν°κ° μ€λ₯λ₯Ό κ°μ§νλλ‘ λμμ€λλ€. ### νμ μΌλ‘μμ ν΄λμ€ { #classes-as-types } λ³μμ νμ μΌλ‘ ν΄λμ€λ₯Ό μ μΈν μλ μμ΅λλ€. μ΄λ¦μ κ°μ§ `Person` ν΄λμ€κ° μλ€κ³ ν΄λ΄ μλ€: {* ../../docs_src/python_types/tutorial010_py310.py hl[1:3] *} κ·Έλ¬λ©΄ `Person` νμ μ λ³μλ₯Ό μ μΈν μ μμ΅λλ€:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 13K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java
BlockingQueue.class, BlockingDeque.class, PriorityBlockingQueue.class, DelayQueue.class, SynchronousQueue.class, ConcurrentMap.class, ConcurrentNavigableMap.class, AtomicReference.class, AtomicBoolean.class, AtomicInteger.class, AtomicLong.class, AtomicDouble.class); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 22.4K bytes - Click Count (0)