Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,169 for Table1 (0.09 sec)

  1. src/hash/crc32/crc32_amd64.go

    }
    
    // castagnoliShift computes the CRC32-C of K1 or K2 zeroes (depending on the
    // table given) with the given initial crc value. This corresponds to
    // CRC(crc, O) in the description in updateCastagnoli.
    func castagnoliShift(table *sse42Table, crc uint32) uint32 {
    	return table[3][crc>>24] ^
    		table[2][(crc>>16)&0xFF] ^
    		table[1][(crc>>8)&0xFF] ^
    		table[0][crc&0xFF]
    }
    
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #   [true]
        #     Add schema to table SQL name. (The table name on query is SCHEMA.TABLE)
        #
        #; isAvailableAddingSchemaToTableSqlName = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isAvailableAddingCatalogToTableSqlName: (NotRequired - Default false)
        #   [true]
        #     Add catalog to table SQL name. (The table name on query is CATALOG.SCHEMA.TABLE)
        #
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  3. src/database/sql/fakedb_test.go

    		return fmt.Errorf("fakedb: create table of %q len(names) != len(types): %d vs %d",
    			name, len(columnNames), len(columnTypes))
    	}
    	db.tables[name] = &table{colname: columnNames, coltype: columnTypes}
    	return nil
    }
    
    // must be called with db.mu lock held
    func (db *fakeDB) table(table string) (*table, bool) {
    	if db.tables == nil {
    		return nil, false
    	}
    	t, ok := db.tables[table]
    	return t, ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. schema/schema.go

    	modelValue := reflect.New(modelType)
    	tableName := namer.TableName(modelType.Name())
    	if tabler, ok := modelValue.Interface().(Tabler); ok {
    		tableName = tabler.TableName()
    	}
    	if tabler, ok := modelValue.Interface().(TablerWithNamer); ok {
    		tableName = tabler.TableName(namer)
    	}
    	if en, ok := namer.(embeddedNamer); ok {
    		tableName = en.Table
    	}
    	if specialTableName != "" && specialTableName != tableName {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TablesTransposeRowTest.java

    public class TablesTransposeRowTest extends RowTests {
      public TablesTransposeRowTest() {
        super(false, true, true, true, false);
      }
    
      @Override
      Table<Character, String, Integer> makeTable() {
        Table<String, Character, Integer> original = TreeBasedTable.create();
        return Tables.transpose(original);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        # o objectTypeTargetList: (NotRequired - Default databaseInfoMap's)
        #  This property overrides databaseInfoMap's one for ReplaceSchema.
        #    e.g. Synonym of Oracle --> list:{TABLE ; VIEW ; SYNONYM}
        #
        #; objectTypeTargetList = list:{TABLE ; VIEW}
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o filterVariablesMap: (NotRequired - Default map:{})
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.cc

        TFE_MonitoringStringGauge1* gauge, const char* label1) {
      return static_cast<TFE_MonitoringStringGaugeCell*>(
          static_cast<void*>(gauge->gauge->GetCell(label1)));
    }
    
    TFE_MonitoringStringGauge2* TFE_MonitoringNewStringGauge2(
        const char* name, TF_Status* status, const char* description,
        const char* label1, const char* label2) {
      auto* result =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    	}
    
    	// Parameter "obj" is a table from server; print it.
    	// display tables following the rules of options
    	if table, ok := obj.(*metav1.Table); ok {
    		// Do not print headers if this table has no column definitions, or they are the same as the last ones we printed
    		localOptions := h.options
    		if h.printedHeaders && (len(table.ColumnDefinitions) == 0 || reflect.DeepEqual(table.ColumnDefinitions, h.lastColumns)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  9. schema/naming.go

    )
    
    // Namer namer interface
    type Namer interface {
    	TableName(table string) string
    	SchemaName(table string) string
    	ColumnName(table, column string) string
    	JoinTableName(joinTable string) string
    	RelationshipFKName(Relationship) string
    	CheckerName(table, column string) string
    	IndexName(table, column string) string
    	UniqueName(table, column string) string
    }
    
    // Replacer replacer interface like strings.Replacer
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/debug/dwarf/line_test.go

    		}
    
    		// Check file table.
    		if !ignore {
    			if !compareFiles(files[0], lr.Files()) {
    				t.Log("File tables do not match. Got:")
    				dumpFiles(t, lr.Files())
    				t.Log("Want:")
    				dumpFiles(t, files[0])
    				t.Fail()
    			}
    			files = files[1:]
    		}
    	}
    
    	// Compare line tables.
    	if !compareLines(t, got, want) {
    		t.Log("Line tables do not match. Got:")
    		dumpLines(t, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top