Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for Table1 (0.11 sec)

  1. 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)
    		})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow checks that the plugin supplies all mandatory operations and
    /// then copies these tables to a different memory location, marking the new
    /// operation tables as read-only. Once a plugin is loaded, none of these
    /// operation pointers may change.
    ///
    /// There are 4 function tables: one for each of the 3 file objects in
    /// TensorFlow (i.e., `RandomAccessFile`, `WritableFile`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	}
    	for _, testCase := range table2 {
    		q1 := Quantity{d: infDecAmount{testCase.x}, Format: DecimalSI}
    		q2 := Quantity{d: infDecAmount{testCase.y}, Format: DecimalSI}
    		if result := q1.Cmp(q2); result != testCase.expect {
    			t.Errorf("X: %v, Y: %v, Expected: %v, Actual: %v", testCase.x, testCase.y, testCase.expect, result)
    		}
    	}
    }
    
    func TestParseQuantityString(t *testing.T) {
    	table := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    table.borderless > caption,
    table.plain > caption,
    table.striped > caption {
        font-weight: bold;
        font-size: smaller;
    }
    table.borderless th, table.borderless td,
    table.plain th, table.plain td,
    table.striped th, table.striped td {
        padding: 2px 5px;
    }
    table.borderless,
    table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		return ABNEZ
    	case ABGE:
    		return ABLT
    	case ABGEU:
    		return ABLTU
    	case ABGEZ:
    		return ABLTZ
    	case ABGT:
    		return ABLE
    	case ABGTU:
    		return ABLEU
    	case ABGTZ:
    		return ABLEZ
    	case ABLE:
    		return ABGT
    	case ABLEU:
    		return ABGTU
    	case ABLEZ:
    		return ABGTZ
    	case ABLT:
    		return ABGE
    	case ABLTU:
    		return ABGEU
    	case ABLTZ:
    		return ABGEZ
    	case ABNE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    </tr>
    </tbody>
    </table> </td>
    </tr>
    </tbody>
    </table> </td>
    </tr>
    </tbody>
    </table> </td>
    </tr>
    <tr>
    <td colspan="2" align="left" height="12" style="height:12px;padding:0;margin:0;line-height:1px;font-size:1px;">&nbsp;</td>
    </tr>
    <!-- End user identity -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          tags: Collection[str],
          signature_def_key: str,
      ) -> Tuple[Mapping[str, core.Tensor], Mapping[str, core.Tensor]]:
        """Creates and saves a model that uses a file-initialized table.
    
        The asset file "vocab_file.txt" is used to initialize a hash table.
    
        Args:
          output_path: Path to the directory to save the created model.
          tags: Set of strings that identifies the saved meta graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    }
    
    // writelines collects up and chains together the symbols needed to
    // form the DWARF line table for the specified compilation unit,
    // returning a list of symbols. The returned list will include an
    // initial symbol containing the line table header and prologue (with
    // file table), then a series of compiler-emitted line table symbols
    // (one per live function), and finally an epilog symbol containing an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    	vid   ID
    	limit limit
    }
    
    // factsTable keeps track of relations between pairs of values.
    //
    // The fact table logic is sound, but incomplete. Outside of a few
    // special cases, it performs no deduction or arithmetic. While there
    // are known decision procedures for this, the ad hoc approach taken
    // by the facts table is effective for real code while remaining very
    // efficient.
    type factsTable struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	m.SetContinue("continuetoken")
    	m.SetResourceVersion("11")
    
    	table, err := t.storage.(rest.TableConvertor).ConvertToTable(ctx, listObj, nil)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if table.ResourceVersion != "11" || table.Continue != "continuetoken" {
    		t.Errorf("printer lost list meta: %#v", table.ListMeta)
    	}
    	if len(table.Rows) != len(items) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top