Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for asString (0.72 sec)

  1. src/cmd/compile/internal/ssa/likelyadjust.go

    						fmt.Printf("loop finding    succ %s of %s has no loop\n", bb.String(), b.String())
    					} else {
    						fmt.Printf("loop finding    succ %s of %s provides loop with header %s\n", bb.String(), b.String(), l.header.String())
    					}
    				}
    			} else { // No loop
    				if f.pass != nil && f.pass.debug > 4 {
    					fmt.Printf("loop finding    succ %s of %s has no loop\n", bb.String(), b.String())
    				}
    
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  2. tests/upsert_test.go

    		t.Fatalf("failed to upsert, got name %v", result.Name)
    	}
    
    	if name := DB.Dialector.Name(); name != "sqlserver" {
    		type RestrictedLanguage struct {
    			Code string `gorm:"primarykey"`
    			Name string
    			Lang string `gorm:"<-:create"`
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  3. src/archive/tar/format.go

    func (f *Format) mayOnlyBe(f2 Format) { *f &= f2 }
    func (f *Format) mustNotBe(f2 Format) { *f &^= f2 }
    
    var formatNames = map[Format]string{
    	formatV7: "V7", FormatUSTAR: "USTAR", FormatPAX: "PAX", FormatGNU: "GNU", formatSTAR: "STAR",
    }
    
    func (f Format) String() string {
    	var ss []string
    	for f2 := Format(1); f2 < formatMax; f2 <<= 1 {
    		if f.has(f2) {
    			ss = append(ss, formatNames[f2])
    		}
    	}
    	switch len(ss) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/clean/clean.go

    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    	"build.out":    true,
    	"a.out":        true,
    }
    
    var cleanExt = map[string]bool{
    	".5":  true,
    	".6":  true,
    	".8":  true,
    	".a":  true,
    	".o":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. callbacks/query.go

    										where.Build(&onStmt)
    
    										if onSQL := onStmt.SQL.String(); onSQL != "" {
    											vars := onStmt.Vars
    											for idx, v := range vars {
    												bindvar := strings.Builder{}
    												onStmt.Vars = vars[0 : idx+1]
    												db.Dialector.BindVarTo(&bindvar, &onStmt, v)
    												onSQL = strings.Replace(onSQL, bindvar.String(), "?", 1)
    											}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. finisher_api.go

    						}
    					}
    				} else if andCond, ok := expr.(clause.AndConditions); ok {
    					db.assignInterfacesToValue(andCond.Exprs)
    				}
    			}
    		case clause.Expression, map[string]string, map[interface{}]interface{}, map[string]interface{}:
    			if exprs := db.Statement.BuildCondition(value); len(exprs) > 0 {
    				db.assignInterfacesToValue(exprs)
    			}
    		default:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/instantiate.go

    // number of type parameters (want); if they don't match an error is reported.
    // If validation fails and check is nil, validateTArgLen panics.
    func (check *Checker) validateTArgLen(pos syntax.Pos, name string, want, got int) bool {
    	var qual string
    	switch {
    	case got < want:
    		qual = "not enough"
    	case got > want:
    		qual = "too many"
    	default:
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cache/cache.go

    	// to return an error; it's assumed that if the previous get or put succeeded,
    	// it's already on disk.
    	OutputFile(OutputID) string
    
    	// FuzzDir returns where fuzz files are stored.
    	FuzzDir() string
    }
    
    // A Cache is a package cache, backed by a file system directory tree.
    type DiskCache struct {
    	dir string
    	now func() time.Time
    }
    
    // Open opens and returns the cache in the given directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/lookup.go

    }
    
    // check may be nil.
    func (check *Checker) interfacePtrError(T Type) string {
    	assert(isInterfacePtr(T))
    	if p, _ := under(T).(*Pointer); isTypeParam(p.base) {
    		return check.sprintf("type %s is pointer to type parameter, not type parameter", T)
    	}
    	return check.sprintf("type %s is pointer to interface, not interface", T)
    }
    
    // funcString returns a string of the form name + signature for f.
    // check may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/archive/tar/writer.go

    	if f.err != nil {
    		return f.err // Should never happen since header is validated
    	}
    	return tw.writeRawHeader(blk, hdr.Size, hdr.Typeflag)
    }
    
    func (tw *Writer) writePAXHeader(hdr *Header, paxHdrs map[string]string) error {
    	realName, realSize := hdr.Name, hdr.Size
    
    	// TODO(dsnet): Re-enable this when adding sparse support.
    	// See https://golang.org/issue/22735
    	/*
    		// Handle sparse files.
    		var spd sparseDatas
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top