- Sort Score
- Num 10 results
- Language All
Results 751 - 760 of 841 for classic (0.04 seconds)
-
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) -
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) -
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) -
android/guava/src/com/google/common/collect/Queues.java
import org.jspecify.annotations.Nullable; /** * Static utility methods pertaining to {@link Queue} and {@link Deque} instances. Also see this * class's counterparts {@link Lists}, {@link Sets}, and {@link Maps}. * * @author Kurt Alfred Kluever * @since 11.0 */ @GwtCompatible public final class Queues { private Queues() {} // ArrayBlockingQueue /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 18.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
ImmutableDoubleArray iia = ImmutableDoubleArray.of(0, 1, 3); assertThrows(IndexOutOfBoundsException.class, () -> iia.get(-1)); assertThrows(IndexOutOfBoundsException.class, () -> iia.get(3)); ImmutableDoubleArray 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: Fri Dec 12 14:49:24 GMT 2025 - 21.9K bytes - Click Count (0) -
docs/fr/docs/advanced/security/oauth2-scopes.md
Cependant, lorsque vous importez `Query`, `Path`, `Depends`, `Security` et dโautres depuis `fastapi`, ce sont en fait des fonctions qui renvoient des classes spรฉciales. /// ## Utiliser `SecurityScopes` { #use-securityscopes } Mettez maintenant ร jour la dรฉpendance `get_current_user`. Cโest celle utilisรฉe par les dรฉpendances ci-dessus.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 15.5K bytes - Click Count (0) -
scripts/general-llm-prompt.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 10:55:36 GMT 2026 - 14.6K bytes - Click Count (0)