- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 764 for tables (0.08 seconds)
-
android/guava/src/com/google/common/base/CharMatcher.java
} /** Fast matcher using a {@link BitSet} table of matching characters. */ @GwtIncompatible // used only from other GwtIncompatible code private static final class BitSetMatcher extends NamedFastMatcher { private final BitSet table; private BitSetMatcher(BitSet table, String description) { super(description); if (table.length() + Long.SIZE < table.size()) { table = (BitSet) table.clone();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 53.9K bytes - Click Count (0) -
docs/de/docs/tutorial/sql-databases.md
### Mehrere Modelle erstellen { #create-multiple-models } In **SQLModel** ist jede Modellklasse, die `table=True` hat, ein **Tabellenmodell**. Und jede Modellklasse, die `table=True` nicht hat, ist ein **Datenmodell**, diese sind tatsรคchlich nur Pydantic-Modelle (mit ein paar kleinen zusรคtzlichen Funktionen). ๐คCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 17.7K bytes - Click Count (0) -
tests/migrate_test.go
if err := DB.Migrator().DropTable(table); err != nil { t.Fatalf("failed to drop table, got error: %v", err) } if err := DB.Table(table).AutoMigrate(test.from); err != nil { t.Fatalf("failed to migrate table, got error: %v", err) } if err := DB.Table(table).AutoMigrate(test.to); err != nil { t.Fatalf("failed to migrate table, got error: %v", err) } test.checkFunc(t) })
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:49:01 GMT 2026 - 66.3K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheBuilder.java
} /** * Sets the minimum total size for the internal hash tables. For example, if the initial capacity * is {@code 60}, and the concurrency level is {@code 8}, then eight segments are created, each * having a hash table of size eight. Providing a large enough estimate at construction timeCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 51.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/sql-databases.md
์ด๋ฌํ ๋ฌธ์ ๋ ๋ช ๊ฐ์ง **์ถ๊ฐ ๋ชจ๋ธ**์ ์ถ๊ฐํด ํด๊ฒฐํ๊ฒ ์ต๋๋ค. ๋ฐ๋ก ์ฌ๊ธฐ์ SQLModel์ด ๋น์ ๋ฐํ๊ฒ ๋ฉ๋๋ค. โจ ### ์ฌ๋ฌ ๋ชจ๋ธ ์์ฑํ๊ธฐ { #create-multiple-models } **SQLModel**์์ `table=True`๊ฐ ์ค์ ๋ ๋ชจ๋ธ ํด๋์ค๋ **ํ ์ด๋ธ ๋ชจ๋ธ**์ ๋๋ค. ๊ทธ๋ฆฌ๊ณ `table=True`๊ฐ ์๋ ๋ชจ๋ธ ํด๋์ค๋ **๋ฐ์ดํฐ ๋ชจ๋ธ**์ธ๋ฐ, ์ด๊ฒ๋ค์ ์ค์ ๋ก๋ (๋ช ๊ฐ์ง ์์ ์ถ๊ฐ ๊ธฐ๋ฅ์ด ์๋) Pydantic ๋ชจ๋ธ์ผ ๋ฟ์ ๋๋ค. ๐ค SQLModel์ ์ฌ์ฉํ๋ฉด **์์**์ ํตํด ๋ชจ๋ ๊ฒฝ์ฐ์ ํ๋๋ฅผ **์ค๋ณต ์ ์ธํ์ง ์์๋** ๋ฉ๋๋ค. #### `HeroBase` - ๊ธฐ๋ณธ ํด๋์ค { #herobase-the-base-class }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 18.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ArrayTable.java
eraseAll(); } private ArrayTable(Table<R, C, ? extends @Nullable V> table) { this(table.rowKeySet(), table.columnKeySet()); putAll(table); } private ArrayTable(ArrayTable<R, C, V> table) { rowList = table.rowList; columnList = table.columnList; rowKeyToIndex = table.rowKeyToIndex; columnKeyToIndex = table.columnKeyToIndex; @SuppressWarnings("unchecked")
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 26.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ArrayTable.java
eraseAll(); } private ArrayTable(Table<R, C, ? extends @Nullable V> table) { this(table.rowKeySet(), table.columnKeySet()); putAll(table); } private ArrayTable(ArrayTable<R, C, V> table) { rowList = table.rowList; columnList = table.columnList; rowKeyToIndex = table.rowKeyToIndex; columnKeyToIndex = table.columnKeyToIndex; @SuppressWarnings("unchecked")
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 13 19:39:21 GMT 2025 - 26.2K bytes - Click Count (0) -
lib/fips140/v1.26.0.zip
p2.y, cond) q.z.Select(p1.z, p2.z, cond) return q } // A {{.p}}Table holds the first 15 multiples of a point at offset -1, so [1]P // is at table[0], [15]P is at table[14], and [0]P is implicitly the identity // point. type {{.p}}Table [15]*{{.P}}Point // Select selects the n-th multiple of the table base point into p. It works in // constant time by iterating over every entry of the table. n must be in [0, 15]. func (table *{{.p}}Table) Select(p *{{.P}}Point, n uint8) { if n >= 16 { panic("nistec:...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:32 GMT 2026 - 660.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/StandardTable.java
return true; } return false; } // Views /** * Abstract set whose {@code isEmpty()} returns whether the table is empty and whose {@code * clear()} clears all table mappings. */ @WeakOuter private abstract class TableSet<T> extends ImprovedAbstractSet<T> { @Override public boolean isEmpty() { return backingMap.isEmpty(); } @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 30.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/StandardTable.java
return true; } return false; } // Views /** * Abstract set whose {@code isEmpty()} returns whether the table is empty and whose {@code * clear()} clears all table mappings. */ @WeakOuter private abstract class TableSet<T> extends ImprovedAbstractSet<T> { @Override public boolean isEmpty() { return backingMap.isEmpty(); } @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 29.4K bytes - Click Count (0)