Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 678 for index (0.26 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    // The effective memory address is R or R+X depending on Index, Extend and Amount.
    type MemExtend struct {
    	Base   RegSP
    	Index  Reg
    	Extend ExtShift
    	// Amount indicates the index shift amount (but also see ShiftMustBeZero field below).
    	Amount uint8
    	// Refer to ARM reference manual, for byte load/store(register), the index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/complit.go

    	// put dynamics into array (5)
    	var index int64
    	for _, value := range n.List {
    		if value.Op() == ir.OKEY {
    			kv := value.(*ir.KeyExpr)
    			index = typecheck.IndexConst(kv.Key)
    			if index < 0 {
    				base.Fatalf("slicelit: invalid index %v", kv.Key)
    			}
    			value = kv.Value
    		}
    		a := ir.NewIndexExpr(base.Pos, vauto, ir.NewInt(base.Pos, index))
    		a.SetBounded(true)
    		index++
    
    		// TODO need to check bounds?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    func SplitStoredHashIndex(index int64) (level int, n int64) {
    	// Determine level 0 record before index.
    	// StoredHashIndex(0, n) < 2*n,
    	// so the n we want is in [index/2, index/2+logâ‚‚(index)].
    	n = index / 2
    	indexN := StoredHashIndex(0, n)
    	if indexN > index {
    		panic("bad math")
    	}
    	for {
    		// Each new record n adds 1 + trailingZeros(n) hashes.
    		x := indexN + 1 + int64(bits.TrailingZeros64(uint64(n+1)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/typed_xds_cache_test.go

    		},
    	}
    
    	// after adding an index with a different key, first key is evicted, idexes should contain only secondEntry
    	c.Add(secondEntry.Key(), secondEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    
    	// Flush the cache and validate the index is cleaned.
    	cache.Flush()
    	assert.Equal(t, cache.indexLength(), 2)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. cmd/perf-tests.go

    	}
    
    	errStr := ""
    	var wg sync.WaitGroup
    	for index := range globalNotificationSys.peerClients {
    		if globalNotificationSys.peerClients[index] == nil {
    			continue
    		}
    		go func(index int) {
    			for i := 0; i < connectionsPerPeer; i++ {
    				wg.Add(1)
    				go func() {
    					defer wg.Done()
    					err := globalNotificationSys.peerClients[index].DevNull(ctx, r)
    					if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    					badName: "hello world",
    				}
    				return parameters
    			}(),
    		},
    
    		"empty-model": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("driverRequests").Index(0).Child("requests").Index(0), "exactly one structured model field must be set")},
    			parameters: func() *resource.ResourceClaimParameters {
    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    			r := r.(*ir.UnaryExpr)
    			r.X = o.expr(r.X, nil)
    		case ir.OINDEXMAP:
    			r := r.(*ir.IndexExpr)
    			r.X = o.expr(r.X, nil)
    			r.Index = o.expr(r.Index, nil)
    			// See similar conversion for OINDEXMAP below.
    			_ = mapKeyReplaceStrConv(r.Index)
    			r.Index = o.mapKeyTemp(r.Pos(), r.X.Type(), r.Index)
    		default:
    			base.Fatalf("order.stmt: %v", r.Op())
    		}
    
    		o.as2ok(n)
    		o.popTemp(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. pkg/apis/batch/types.go

    	// Defaults to 6
    	// +optional
    	BackoffLimit *int32
    
    	// Specifies the limit for the number of retries within an
    	// index before marking this index as failed. When enabled the number of
    	// failures per index is kept in the pod's
    	// batch.kubernetes.io/job-index-failure-count annotation. It can only
    	// be set when Job's completionMode=Indexed, and the Pod's restart
    	// policy is Never. The field is immutable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. migrator/migrator.go

    		}
    		results = append(results, clause.Expr{SQL: str})
    	}
    	return
    }
    
    // BuildIndexOptionsInterface build index options interface
    type BuildIndexOptionsInterface interface {
    	BuildIndexOptions([]schema.IndexOption, *gorm.Statement) []interface{}
    }
    
    // CreateIndex create index `name`
    func (m Migrator) CreateIndex(value interface{}, name string) error {
    	return m.RunWithValue(value, func(stmt *gorm.Statement) error {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       [2]byte
    }
    
    type IfmaMsghdr2 struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Addrs    int32
    	Flags    int32
    	Index    uint16
    	Refcount int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top