Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for sqlite (0.33 sec)

  1. tests/migrate_test.go

    		t.Fatalf("Found deleted column")
    	}
    }
    
    func TestMigrateColumns(t *testing.T) {
    	tidbSkip(t, "use another test case")
    
    	sqlite := DB.Dialector.Name() == "sqlite"
    	sqlserver := DB.Dialector.Name() == "sqlserver"
    
    	type ColumnStruct struct {
    		gorm.Model
    		Name  string
    		Age   int    `gorm:"default:18;comment:my age"`
    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. tests/query_test.go

    							t.Errorf("invalid data type for %v, got %v %#v", dbName, resultType, first[dbName])
    						}
    					case "Birthday":
    						if !strings.Contains(resultType, "Time") && !(DB.Dialector.Name() == "sqlite" && strings.Contains(resultType, "string")) {
    							t.Errorf("invalid data type for %v, got %v %#v", dbName, resultType, first[dbName])
    						}
    					}
    
    					reflectValue := reflect.Indirect(reflect.ValueOf(users[0]))
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    to a database. Only SQLite is supported right now. This function
    will create the schema if it doesn't exist. Entries in the Users,
    Experiments, and Runs tables will be created automatically if they
    don't already exist.
    
    writer: Handle to SummaryWriter resource to overwrite.
    db_uri: For example "file:/tmp/foo.sqlite".
    experiment_name: Can't contain ASCII control characters or <>. Case
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function_test.cc

       *                    v
       */
      // Define
      TF_Operation* feed = Placeholder(func_graph_, s_);
      TF_Operation* split = Split3(feed, func_graph_, s_);
      TF_Operation* add = Add({split, 0}, {split, 2}, func_graph_, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      DefineT(1, {add}, {{split, 0}, {split, 2}}, {{add, 0}}, {});
    
      // Use, run, and verify
      TF_Operation* two = ScalarConst(2, host_graph_, s_, "two");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XPos) bool {
    	pos = pos.WithNotStmt()
    	occupant := e.contents[loc]
    	if occupant.vid == vid {
    		// Value is already in the correct place.
    		e.contents[loc] = contentRecord{vid, occupant.c, true, pos}
    		if splice != nil {
    			(*splice).Uses--
    			*splice = occupant.c
    			occupant.c.Uses++
    		}
    		// Note: if splice==nil then c will appear dead. This is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	for _, tt := range splittests {
    		a := SplitN(tt.s, tt.sep, tt.n)
    		if !eq(a, tt.a) {
    			t.Errorf("Split(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, a, tt.a)
    			continue
    		}
    		if tt.n == 0 {
    			continue
    		}
    		s := Join(a, tt.sep)
    		if s != tt.s {
    			t.Errorf("Join(Split(%q, %q, %d), %q) = %q", tt.s, tt.sep, tt.n, tt.sep, s)
    		}
    		if tt.n < 0 {
    			b := Split(tt.s, tt.sep)
    			if !reflect.DeepEqual(a, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    
    	// SplitPathList splits the path list into a slice of individual paths.
    	// If SplitPathList is nil, Import uses filepath.SplitList.
    	SplitPathList func(list string) []string
    
    	// IsAbsPath reports whether path is an absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	mp := acquirem()
    	span.ensureSwept()
    
    	offset := uintptr(p) - span.base()
    	kind := s.kind
    
    	lock(&span.speciallock)
    
    	// Find splice point, check for existing record.
    	iter, exists := span.specialFindSplicePoint(offset, kind)
    	if !exists {
    		// Splice in record, fill in offset.
    		s.offset = uint16(offset)
    		s.next = *iter
    		*iter = s
    		spanHasSpecials(span)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/syscall/zerrors_solaris_amd64.go

    	132: "no buffer space available",
    	133: "transport endpoint is already connected",
    	134: "transport endpoint is not connected",
    	143: "cannot send after socket shutdown",
    	144: "too many references: cannot splice",
    	145: "connection timed out",
    	146: "connection refused",
    	147: "host is down",
    	148: "no route to host",
    	149: "operation already in progress",
    	150: "operation now in progress",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{112, "ENOATTR", "no attribute found"},
    	{113, "ESAD", "security Authentication Denied"},
    	{114, "ENOTRUST", "not a Trusted Program"},
    	{115, "ETOOMANYREFS", "too many references: can't splice"},
    	{116, "EILSEQ", "invalid wide character"},
    	{117, "ECANCELED", "asynchronous I/O cancelled"},
    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
Back to top