Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 764 for tables (0.08 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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 time
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 13:13:59 GMT 2026
    - 51.7K bytes
    - Click Count (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  10. 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();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 29.4K bytes
    - Click Count (0)
Back to Top