Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for table_1 (0.13 sec)

  1. src/crypto/md5/gen.go

    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    type Data struct {
    	a, b, c, d string
    	Shift1     []int
    	Shift2     []int
    	Shift3     []int
    	Shift4     []int
    	Table1     []uint32
    	Table2     []uint32
    	Table3     []uint32
    	Table4     []uint32
    }
    
    var funcs = template.FuncMap{
    	"dup":     dup,
    	"relabel": relabel,
    	"rotate":  rotate,
    	"idx":     idx,
    	"seq":     seq,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TableCollectors.java

        return Collector.of(
            tableSupplier,
            (table, input) ->
                mergeTables(
                    table,
                    rowFunction.apply(input),
                    columnFunction.apply(input),
                    valueFunction.apply(input),
                    mergeFunction),
            (table1, table2) -> {
              for (Table.Cell<R, C, V> cell2 : table2.cellSet()) {
                mergeTables(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TableCollectors.java

        return Collector.of(
            tableSupplier,
            (table, input) ->
                mergeTables(
                    table,
                    rowFunction.apply(input),
                    columnFunction.apply(input),
                    valueFunction.apply(input),
                    mergeFunction),
            (table1, table2) -> {
              for (Table.Cell<R, C, V> cell2 : table2.cellSet()) {
                mergeTables(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/table.go

    func (b *tableBuilder) addRow(row string) {
    	b.rows = append(b.rows, tableTrimOuter(row))
    }
    
    type Table struct {
    	Position
    	Header []*Text
    	Align  []string // 'l', 'c', 'r' for left, center, right; 0 for unset
    	Rows   [][]*Text
    }
    
    func (t *Table) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<table>\n")
    	buf.WriteString("<thead>\n")
    	buf.WriteString("<tr>\n")
    	for i, hdr := range t.Header {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/internal/godebugs/table.go

    }
    
    // All is the table of known settings, sorted by Name.
    //
    // Note: After adding entries to this table, run 'go generate runtime/metrics'
    // to update the runtime/metrics doc comment.
    // (Otherwise the runtime/metrics test will fail.)
    //
    // Note: After adding entries to this table, update the list in doc/godebug.md as well.
    // (Otherwise the test in this package will fail.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/tables.go

    	"iframe",
    	"legend",
    	"li",
    	"link",
    	"main",
    	"menu",
    	"menuitem",
    	"nav",
    	"noframes",
    	"ol",
    	"optgroup",
    	"option",
    	"p",
    	"param",
    	"section",
    	"source",
    	"summary",
    	"table",
    	"tbody",
    	"td",
    	"tfoot",
    	"th",
    	"thead",
    	"title",
    	"tr",
    	"track",
    	"ul",
    }
    
    var htmlEscaper = strings.NewReplacer(
    	"\"", "&quot;",
    	"&", "&amp;",
    	"<", "&lt;",
    	">", "&gt;",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/legalize-tf-hashtables.mlir

      // CHECK-LABEL: hashtable_string_to_int64
      // CHECK:       [[CST:%.*]] = arith.constant dense<"f"> : tensor<!tf_type.string>
      // CHECK-NEXT:  [[HASH_TABLE:%.*]] = "tfl.hashtable"() <{key_dtype = !tf_type.string, table_id = 1530976467 : i32, value_dtype = i64}> : () -> tensor<1x!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // This file has Legalize hash tables pass which is responsible for:
    // - Converting static hash table ops to the TFLite equivalent ops.
    //
    // There are needs to fall back to Flex for the following cases:
    // - Mutable hash table cases
    // - Other resource operators consuming a hash table resource tensor
    
    class LegalizeHashTableOpPattern : public OpRewritePattern<TF::HashTableV2Op> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/TablesTransformValuesColumnTest.java

      }
    
      @Override
      Table<String, Character, Integer> makeTable() {
        Table<String, Character, Integer> table = HashBasedTable.create();
        return Tables.transformValues(table, DIVIDE_BY_2);
      }
    
      @Override
      protected Map<String, Integer> makePopulatedMap() {
        Table<String, Character, Integer> table = HashBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/UnmodifiableRowSortedTableColumnTest.java

      }
    
      @Override
      Table<String, Character, Integer> makeTable() {
        RowSortedTable<String, Character, Integer> table = TreeBasedTable.create();
        return Tables.unmodifiableRowSortedTable(table);
      }
    
      @Override
      protected Map<String, Integer> makePopulatedMap() {
        RowSortedTable<String, Character, Integer> table = TreeBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top