Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for index (0.06 sec)

  1. pilot/pkg/model/push_context.go

    	// ServiceIndex is the index of services by various fields.
    	ServiceIndex serviceIndex
    
    	// serviceAccounts contains a map of hostname and port to service accounts.
    	serviceAccounts map[serviceAccountKey][]string
    
    	// virtualServiceIndex is the index of virtual services by various fields.
    	virtualServiceIndex virtualServiceIndex
    
    	// destinationRuleIndex is the index of destination rules by various fields.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		}
    
    		if argErr.Index != test.wantAt {
    			t.Errorf("Instantiate(%v, %v): error at index %d, want index %d", T, test.targs, argErr.Index, test.wantAt)
    		}
    	}
    }
    
    func TestArgumentErrorUnwrapping(t *testing.T) {
    	var err error = &ArgumentError{
    		Index: 1,
    		Err:   Error{Msg: "test"},
    	}
    	var e Error
    	if !errors.As(err, &e) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	if !ok || u.Op != token.AND {
    		return false
    	}
    	index, ok := u.X.(*ast.IndexExpr)
    	if !ok {
    		return false
    	}
    
    	addr := ""
    	deref := ""
    	if p.isVariable(index.X) {
    		addr = "&"
    		deref = "*"
    	}
    
    	fmt.Fprintf(sb, "_cgoIndex%d := %s%s; ", i, addr, gofmtPos(index.X, index.X.Pos()))
    	origX := index.X
    	index.X = ast.NewIdent(fmt.Sprintf("_cgoIndex%d", i))
    	if deref == "*" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    // been no preemption points since ensuring this (which could allow a
    // GC transition, which would allow the state to change).
    func (s *mspan) isFree(index uintptr) bool {
    	if index < uintptr(s.freeIndexForScan) {
    		return false
    	}
    	bytep, mask := s.allocBits.bitp(index)
    	return *bytep&mask == 0
    }
    
    // divideByElemSize returns n/s.elemsize.
    // n must be within [0, s.npages*_PageSize),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, index int, verb, resource string) {
    	t.Helper()
    	if len(actions) <= index {
    		t.Fatalf("Expected at least %d actions, got %d", index+1, len(actions))
    	}
    
    	action := actions[index]
    	if action.GetVerb() != verb {
    		t.Errorf("Expected action %d verb to be %s, got %s", index, verb, action.GetVerb())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    // was last written.
    //
    // The caller must enumerate all subkeys in order. That is
    // RegEnumKeyEx must be called with index starting at 0, incrementing
    // the index until the function returns ERROR_NO_MORE_ITEMS, or with
    // the index of the last subkey (obtainable from RegQueryInfoKey),
    // decrementing until index 0 is enumerated.
    //
    // Successive calls to this API must happen on the same OS thread,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// start, where the index is the index of the specific init container in the
    	// pod spec (pod.Spec.InitContainers).
    	// NOTE: This is a field for SidecarContainers feature. Either this or
    	// NextInitContainerToStart will be set.
    	InitContainersToStart []int
    	// ContainersToStart keeps a list of indexes for the containers to start,
    	// where the index is the index of the specific container in the pod spec (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		}
    
    		if argErr.Index != test.wantAt {
    			t.Errorf("Instantiate(%v, %v): error at index %d, want index %d", T, test.targs, argErr.Index, test.wantAt)
    		}
    	}
    }
    
    func TestArgumentErrorUnwrapping(t *testing.T) {
    	var err error = &ArgumentError{
    		Index: 1,
    		Err:   Error{Msg: "test"},
    	}
    	var e Error
    	if !errors.As(err, &e) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// number by to compute an index into the first level arena map.
    	arenaL1Shift = arenaL2Bits
    
    	// arenaBits is the total bits in a combined arena map index.
    	// This is split between the index into the L1 arena map and
    	// the L2 arena map.
    	arenaBits = arenaL1Bits + arenaL2Bits
    
    	// arenaBaseOffset is the pointer value that corresponds to
    	// index 0 in the heap arena map.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    // StatefulSetOrdinals describes the policy used for replica ordinal assignment
    // in this StatefulSet.
    type StatefulSetOrdinals struct {
    	// start is the number representing the first replica's index. It may be used
    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top