Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 570 for index (0.07 sec)

  1. src/cmd/compile/internal/types2/selection.go

    	return s.obj.Type()
    }
    
    // Index describes the path from x to f in x.f.
    // The last index entry is the field or method index of the type declaring f;
    // either:
    //
    //  1. the list of declared methods of a named type; or
    //  2. the list of methods of an interface type; or
    //  3. the list of fields of a struct type.
    //
    // The earlier index entries are the indices of the embedded fields implicitly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/pass.go

    	switch a.Type {
    	case TYPE_NONE, TYPE_REGREG2, TYPE_REGLIST:
    		return
    
    	case TYPE_BRANCH, TYPE_TEXTSIZE:
    		if a.Reg != 0 || a.Index != 0 || a.Scale != 0 || a.Name != 0 {
    			break
    		}
    		return
    
    	case TYPE_MEM:
    		return
    
    	case TYPE_CONST:
    		// TODO(rsc): After fixing SHRQ, check a.Index != 0 too.
    		if a.Name != 0 || a.Sym != nil || a.Reg != 0 {
    			ctxt.Diag("argument is TYPE_CONST, should be TYPE_ADDR, in %v", p)
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. src/go/types/typeparam.go

    	return typ
    }
    
    // Obj returns the type name for the type parameter t.
    func (t *TypeParam) Obj() *TypeName { return t.obj }
    
    // Index returns the index of the type param within its param list, or -1 if
    // the type parameter has not yet been bound to a type.
    func (t *TypeParam) Index() int {
    	return t.index
    }
    
    // Constraint returns the type constraint specified for t.
    func (t *TypeParam) Constraint() Type {
    	return t.bound
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/default_plugins.go

    	return defaultPlugins
    }
    
    type pluginIndex struct {
    	index  int
    	plugin v1.Plugin
    }
    
    func mergePluginSet(logger klog.Logger, defaultPluginSet, customPluginSet v1.PluginSet) v1.PluginSet {
    	disabledPlugins := sets.New[string]()
    	enabledCustomPlugins := make(map[string]pluginIndex)
    	// replacedPluginIndex is a set of index of plugins, which have replaced the default plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/cap_freebsd.go

    		if err != nil {
    			return err
    		}
    		if i >= n {
    			return errors.New("index overflow")
    		}
    		if capidxbit(rights.Rights[i]) != capidxbit(right) {
    			return errors.New("index mismatch")
    		}
    		rights.Rights[i] |= right
    		if capidxbit(rights.Rights[i]) != capidxbit(right) {
    			return errors.New("index mismatch (after assign)")
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    )
    
    // UnpackIndexExpr extracts data from AST nodes that represent index
    // expressions.
    //
    // For an ast.IndexExpr, the resulting indices slice will contain exactly one
    // index expression. For an ast.IndexListExpr (go1.18+), it may have a variable
    // number of index expressions.
    //
    // For nodes that don't represent index expressions, the first return value of
    // UnpackIndexExpr will be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/incluster/controller.go

    		if err != nil {
    			log.Errorf("In-cluster analysis has failed: %s", err)
    			return
    		}
    		// reorganize messages to map
    		index := map[status.Resource]diag.Messages{}
    		for _, m := range res.Messages {
    			key := status.ResourceFromMetadata(m.Resource.Metadata)
    			index[key] = append(index[key], m)
    		}
    		// if we previously had a message that has been removed, ensure it is removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/runtime/wincallback.go

    // External code calls into callbackasm at an offset corresponding
    // to the callback index. Callbackasm is a table of MOV and B instructions.
    // The MOV instruction loads R12 with the callback index, and the
    // B instruction branches to callbackasm1.
    // callbackasm1 takes the callback index from R12 and
    // indexes into an array that stores information about each callback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/util.go

    	}
    
    	g := e.NewGroup()
    	for index := 0; index < cfg.count; index++ {
    		index := index
    		workFn := func() error {
    			st := time.Now()
    			resp, err := doReq(ctx, cfg, index)
    			if err != nil {
    				fwLog.Debugf("request failed: %v", err)
    				return err
    			}
    			fwLog.Debugf("got resp: %v", resp)
    
    			responsesMu.Lock()
    			responses[index] = resp
    			responseTimes[index] = time.Since(st)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. operator/pkg/util/reflect.go

    	}
    
    	pv.Elem().Set(reflect.AppendSlice(pvv.Slice(0, index), pvv.Slice(index+1, pvv.Len())))
    
    	return nil
    }
    
    // UpdateSlicePtr updates an entry at index in the parent, which must be a slice ptr, with the given value.
    func UpdateSlicePtr(parentSlice any, index int, value any) error {
    	scope.Debugf("UpdateSlicePtr parent=\n%v\n, index=%d, value=\n%v", parentSlice, index, value)
    	pv := reflect.ValueOf(parentSlice)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K bytes
    - Viewed (0)
Back to top