Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for Orivel (3.22 sec)

  1. tests/migrate_test.go

    package tests_test
    
    import (
    	"context"
    	"database/sql"
    	"fmt"
    	"math/rand"
    	"os"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"gorm.io/driver/postgres"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/logger"
    	"gorm.io/gorm/migrator"
    	"gorm.io/gorm/schema"
    	"gorm.io/gorm/utils"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestMigrate(t *testing.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. src/cmd/compile/internal/dwarfgen/dwinl.go

    // To identify variables by original source position.
    type varPos struct {
    	DeclName string
    	DeclFile string
    	DeclLine uint
    	DeclCol  uint
    }
    
    // This is the main entry point for collection of raw material to
    // drive generation of DWARF "inlined subroutine" DIEs. See proposal
    // 22080 for more details and background info.
    func assembleInlines(fnsym *obj.LSym, dwVars []*dwarf.Var) dwarf.InlCalls {
    	var inlcalls dwarf.InlCalls
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typexpr.go

    // removes any occurrences of "types2." from that name.
    func goTypeName(typ Type) string {
    	return strings.ReplaceAll(fmt.Sprintf("%T", typ), "types2.", "")
    }
    
    // typInternal drives type checking of types.
    // Must only be called by definedType or genericType.
    func (check *Checker) typInternal(e0 syntax.Expr, def *TypeName) (T Type) {
    	if check.conf.Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. doc/godebug.md

    (such as [`os.ModeDir`](/pkg/os#ModeDir)) do not have the `ModeIrregular` bit set.
    
    Go 1.23 changed [`os.Readlink`](/pkg/os#Readlink) and [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks)
    to avoid trying to normalize volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Previous versions default to `winreadlinkvolume=0`.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    // positive score adjustment that could be applied to a given callsite.
    // At the moment we don't have very many positive score adjustments, so
    // this is just hard-coded, not table-driven.
    func LargestPositiveScoreAdjustment(fn *ir.Func) int {
    	return adjValues[panicPathAdj] + adjValues[initFuncAdj]
    }
    
    // callSiteTab contains entries for each call in the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/revel/config,v0.21.0,h1:Bw4iXLGAuD/Di2HEhPSOyDywrTlFIXUMbds91lXTtTU=,22842698f6c646b9b89649b432d0f24deae1c5a3779c49819ec99c5db6e4b5a0
    github.com/revel/log15,v2.11.20+incompatible,h1:JkA4tbwIo/UGEMumY50zndKq816RQW3LQ0wIpRc+32U=,28e4263b0320a07dd2ae71ba09aef1f9b4af44258a8c0f1dfb1d63300f93c401
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements the Check function, which drives type-checking.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	. "internal/types/errors"
    	"sync/atomic"
    )
    
    // nopos indicates an unknown position
    var nopos syntax.Pos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. tests/query_test.go

    package tests_test
    
    import (
    	"database/sql"
    	"database/sql/driver"
    	"fmt"
    	"reflect"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestFind(t *testing.T) {
    	users := []User{
    		*GetUser("find", Config{}),
    		*GetUser("find", Config{}),
    		*GetUser("find", Config{}),
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    	}
    }
    
    func volumeNameLen(path string) int {
    	isSlash := func(c uint8) bool {
    		return c == '\\' || c == '/'
    	}
    	if len(path) < 2 {
    		return 0
    	}
    	// with drive letter
    	c := path[0]
    	if path[1] == ':' && ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
    		return 2
    	}
    	// is it UNC? https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg database/sql/driver, type Driver interface, Open(string) (Conn, error)
    pkg database/sql/driver, type Execer interface { Exec }
    pkg database/sql/driver, type Execer interface, Exec(string, []Value) (Result, error)
    pkg database/sql/driver, type NotNull struct
    pkg database/sql/driver, type NotNull struct, Converter ValueConverter
    pkg database/sql/driver, type Null struct
    pkg database/sql/driver, type Null struct, Converter ValueConverter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top