Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 748 for table_1 (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go

    	SizeofRtMsghdr         = 0x60
    	SizeofRtMetrics        = 0x38
    )
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Xflags  int32
    	Data    IfData
    }
    
    type IfData struct {
    	Type         uint8
    	Addrlen      uint8
    	Hdrlen       uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_assets.mlir

        func.return
      }
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      "tf_saved_model.asset"() {filename = "assets/table.txt", sym_name = "v"} : () -> ()
      "tf_saved_model.asset"() {filename = "assets/table2.txt", sym_name = "w"} : () -> ()
    
      // CHECK: func @f()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java

            }
          };
    
      @Override
      protected Table<String, Integer, Character> create(@Nullable Object... data) {
        Table<String, Integer, String> table = HashBasedTable.create();
        checkArgument(data.length % 3 == 0);
        for (int i = 0; i < data.length; i += 3) {
          String value = (data[i + 2] == null) ? null : (data[i + 2] + "transformed");
          table.put((String) data[i], (Integer) data[i + 1], value);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. hack/print-workspace-status.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/version.sh"
    kube::version::get_version_vars
    
    # Prefix with STABLE_ so that these values are saved to stable-status.txt
    # instead of volatile-status.txt.
    # Stamped rules will be retriggered by changes to stable-status.txt, but not by
    # changes to volatile-status.txt.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 06 11:19:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. src/debug/gosym/pclntab.go

    //
    // Deprecated: Use Table's PCToLine method instead.
    func (t *LineTable) PCToLine(pc uint64) int {
    	if t.isGo12() {
    		return t.go12PCToLine(pc)
    	}
    	_, _, line := t.parse(pc, -1)
    	return line
    }
    
    // LineToPC returns the program counter for the given line number,
    // considering only program counters before maxpc.
    //
    // Deprecated: Use Table's LineToPC method instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tests/create_test.go

    func TestCreateFromMapWithTable(t *testing.T) {
    	tableDB := DB.Table("users")
    	supportLastInsertID := isMysql() || isSqlite()
    
    	// case 1: create from map[string]interface{}
    	record := map[string]interface{}{"name": "create_from_map_with_table", "age": 18}
    	if err := tableDB.Create(record).Error; err != nil {
    		t.Fatalf("failed to create data from map with table, got error: %v", err)
    	}
    
    	if _, ok := record["@id"]; !ok && supportLastInsertID {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top