Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for index (0.04 sec)

  1. internal/grid/debugmsg_string.go

    // Code generated by "stringer -type=debugMsg debug.go"; DO NOT EDIT.
    
    package grid
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[debugShutdown-0]
    	_ = x[debugKillInbound-1]
    	_ = x[debugKillOutbound-2]
    	_ = x[debugWaitForExit-3]
    	_ = x[debugSetConnPingDuration-4]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. tests/default_value_test.go

    package tests_test
    
    import (
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    )
    
    func TestDefaultValue(t *testing.T) {
    	type Harumph struct {
    		gorm.Model
    		Email   string    `gorm:"not null;index:,unique"`
    		Name    string    `gorm:"notNull;default:foo"`
    		Name2   string    `gorm:"size:233;not null;default:'foo'"`
    		Name3   string    `gorm:"size:233;notNull;default:''"`
    		Age     int       `gorm:"default:18"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/slices/iter.go

    import (
    	"cmp"
    	"iter"
    )
    
    // All returns an iterator over index-value pairs in the slice.
    // The indexes range in the usual order, from 0 through len(s)-1.
    func All[Slice ~[]E, E any](s Slice) iter.Seq2[int, E] {
    	return func(yield func(int, E) bool) {
    		for i, v := range s {
    			if !yield(i, v) {
    				return
    			}
    		}
    	}
    }
    
    // Backward returns an iterator over index-value pairs in the slice,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/slices/example_test.go

    	numbers := []int{0, 42, 8}
    	fmt.Println(slices.Index(numbers, 8))
    	fmt.Println(slices.Index(numbers, 7))
    	// Output:
    	// 2
    	// -1
    }
    
    func ExampleIndexFunc() {
    	numbers := []int{0, 42, -10, 8}
    	i := slices.IndexFunc(numbers, func(n int) bool {
    		return n < 0
    	})
    	fmt.Println("First negative at index", i)
    	// Output:
    	// First negative at index 2
    }
    
    func ExampleInsert() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/go/ast/commentmap.go

    	fset     *token.FileSet
    	list     []*CommentGroup
    	index    int
    	comment  *CommentGroup  // comment group at current index
    	pos, end token.Position // source interval of comment group at current index
    }
    
    func (r *commentListReader) eol() bool {
    	return r.index >= len(r.list)
    }
    
    func (r *commentListReader) next() {
    	if !r.eol() {
    		r.comment = r.list[r.index]
    		r.pos = r.fset.Position(r.comment.Pos())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    	endIndex int
    
    	// indexer is meant to inject behaviour for how an event must
    	// be retrieved from the underlying source given an index.
    	indexer indexerFunc
    
    	// indexValidator is used to check if a given index is still
    	// valid perspective. If it is deemed that the index is not
    	// valid, then this interval can no longer be used to serve
    	// events. Use of indexValidator is warranted only in cases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/internal/trace/batchcursor.go

    	"cmp"
    	"encoding/binary"
    	"fmt"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    type batchCursor struct {
    	m       ThreadID
    	lastTs  Time
    	idx     int       // next index into []batch
    	dataOff int       // next index into batch.data
    	ev      baseEvent // last read event
    }
    
    func (b *batchCursor) nextEvent(batches []batch, freq frequency) (ok bool, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.go

    // A huffmanTree is a binary tree which is navigated, bit-by-bit to reach a
    // symbol.
    type huffmanTree struct {
    	// nodes contains all the non-leaf nodes in the tree. nodes[0] is the
    	// root of the tree and nextNode contains the index of the next element
    	// of nodes to use when the tree is being constructed.
    	nodes    []huffmanNode
    	nextNode int
    }
    
    // A huffmanNode is a node in the tree. left and right contain indexes into the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/godebug.go

    		b.WriteString("=")
    		b.WriteString(m[k])
    	}
    	return b.String()
    }
    
    func godebugForGoVersion(v string) map[string]string {
    	if strings.Count(v, ".") >= 2 {
    		i := strings.Index(v, ".")
    		j := i + 1 + strings.Index(v[i+1:], ".")
    		v = v[:j]
    	}
    
    	if !strings.HasPrefix(v, "1.") {
    		return nil
    	}
    	n, err := strconv.Atoi(v[len("1."):])
    	if err != nil {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/issues_test.go

    		"package p; var _ = T{@f(1, 2, 3): 0}",
    		"package p; var _ = T{@a + f(b) + <-ch: 0}",
    	}
    
    	for _, src := range tests {
    		// identify column position of @ and remove it from src
    		i := strings.Index(src, "@")
    		if i < 0 {
    			t.Errorf("%s: invalid test case (missing @)", src)
    			continue
    		}
    		src = src[:i] + src[i+1:]
    		want := colbase + uint(i)
    
    		f, err := Parse(nil, strings.NewReader(src), nil, nil, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top