Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for table_1 (0.16 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/Tables.java

       * <p>The returned table will be serializable if the specified table is serializable.
       *
       * @param table the table to be wrapped in a synchronized view
       * @return a synchronized view of the specified table
       * @since 22.0
       */
      public static <R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          Table<R, C, V> synchronizedTable(Table<R, C, V> table) {
        return Synchronized.table(table, null);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/collect/ImmutableTable.java

      }
    
      /**
       * Returns an immutable copy of the provided table.
       *
       * <p>The {@link Table#cellSet()} iteration order of the provided table determines the iteration
       * ordering of all views in the returned table. Note that some views of the original table and the
       * copied table may have different iteration orders. For more control over the ordering, create a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/helper/helpers_test.go

    			args: args{
    				topologySelectorTerms: []v1.TopologySelectorTerm{
    					{
    						MatchLabelExpressions: []v1.TopologySelectorLabelRequirement{{
    							Key:    "label_1",
    							Values: []string{"label_1_val"},
    						}},
    					},
    				},
    				labels: map[string]string{"label_1": "label_1_val"},
    			},
    			want: true,
    		},
    		{
    			name: "label does not match MatchLabelExpressions terms",
    			args: args{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. 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. docs/en/docs/tutorial/sql-databases.md

    An ORM has tools to convert ("*map*") between *objects* in code and database tables ("*relations*").
    
    With an ORM, you normally create a class that represents a table in a SQL database, each attribute of the class represents a column, with a name and a type.
    
    For example a class `Pet` could represent a SQL table `pets`.
    
    And each *instance* object of that class represents a row in the database.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top