Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for index (0.1 sec)

  1. tests/integration/security/filebased_tls_origination/main_test.go

    	for index, namespacedName := range apps.Ns1.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == "client":
    			client = apps.Ns1.All[index]
    		case namespacedName.Name == "server":
    			server = apps.Ns1.All[index]
    		case namespacedName.Name == "internal-client":
    			internalClient = apps.Ns1.All[index]
    		}
    	}
    	for index, namespacedName := range apps.Ns2.All.NamespacedNames() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/runtime/symtabinl.go

    	// always a "call PC" (not a "return PC"). This is 0 when the iterator is
    	// exhausted.
    	pc uintptr
    
    	// index is the index of the current record in inlTree, or -1 if we are in
    	// the outermost function.
    	index int32
    }
    
    // newInlineUnwinder creates an inlineUnwinder initially set to the inner-most
    // inlined frame at PC. PC should be a "call PC" (not a "return PC").
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.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/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)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    			check.goBuildLine(pos, text)
    		}
    	}
    	if strings.HasPrefix(text, "/*") {
    		if i := strings.Index(text, "\n"); i >= 0 {
    			// multiline /* */ comment - process interior lines
    			check.inStar = true
    			i++
    			pos += token.Pos(i)
    			text = text[i:]
    			for text != "" {
    				i := strings.Index(text, "\n")
    				if i < 0 {
    					i = len(text)
    				} else {
    					i++
    				}
    				line := text[:i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/mime/mediatype.go

    			offset := 0
    			for index := 0; index < len(value); index++ {
    				ch := value[index]
    				// {RFC 2231 section 7}
    				// attribute-char := <any (US-ASCII) CHAR except SPACE, CTLs, "*", "'", "%", or tspecials>
    				if ch <= ' ' || ch >= 0x7F ||
    					ch == '*' || ch == '\'' || ch == '%' ||
    					isTSpecial(rune(ch)) {
    
    					b.WriteString(value[offset:index])
    					offset = index + 1
    
    					b.WriteByte('%')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. pkg/controller/job/success_policy.go

    	if !feature.DefaultFeatureGate.Enabled(features.JobSuccessPolicy) || successPolicy == nil || len(succeededIndexes) == 0 {
    		return "", false
    	}
    
    	rulesMatchedMsg := "Matched rules at index"
    	for index, rule := range successPolicy.Rules {
    		if rule.SucceededIndexes != nil {
    			requiredIndexes := parseIndexesFromString(logger, *rule.SucceededIndexes, int(completions))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/kube/krt/filter.go

    	return func(h *dependency) {
    		h.filter.selects = lbls
    	}
    }
    
    // FilterIndex selects only objects matching a key in an index.
    func FilterIndex[I any, K comparable](idx *Index[I, K], k K) FetchOption {
    	return func(h *dependency) {
    		// Index is used to pre-filter on the List, and also to match in Matches. Provide type-erased methods for both
    		h.filter.listFromIndex = func() any {
    			return idx.Lookup(k)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/security_context.go

    		AddCapabilities:  make([]string, len(opts.Add)),
    		DropCapabilities: make([]string, len(opts.Drop)),
    	}
    	for index, value := range opts.Add {
    		capabilities.AddCapabilities[index] = string(value)
    	}
    	for index, value := range opts.Drop {
    		capabilities.DropCapabilities[index] = string(value)
    	}
    
    	return capabilities
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top