Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for index (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    func (s *SelectionPredicate) Empty() bool {
    	return s.Label.Empty() && s.Field.Empty()
    }
    
    // For any index defined by IndexFields, if a matcher can match only (a subset)
    // of objects that return <value> for a given index, a pair (<index name>, <value>)
    // wil be returned.
    func (s *SelectionPredicate) MatcherIndex(ctx context.Context) []MatchValue {
    	var result []MatchValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/revisions/tag_watcher.go

    type TagHandler func(sets.String)
    
    type tagWatcher struct {
    	revision string
    	handlers []TagHandler
    
    	queue    controllers.Queue
    	webhooks kclient.Client[*admissionregistrationv1.MutatingWebhookConfiguration]
    	index    *kclient.Index[string, *admissionregistrationv1.MutatingWebhookConfiguration]
    }
    
    func NewTagWatcher(client kube.Client, revision string) TagWatcher {
    	p := &tagWatcher{
    		revision: revision,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/crypto/tls/common_string.go

    // Code generated by "stringer -linecomment -type=SignatureScheme,CurveID,ClientAuthType -output=common_string.go"; DO NOT EDIT.
    
    package tls
    
    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[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pkg/controller/job/backoff_utils.go

    }
    
    // getRemainingTimePerIndex returns the remaining time left for a given index to
    // create the replacement pods. The number of consecutive pod failures for the
    // index is retrieved from the `job-index-failure-count` annotation of the
    // last failed pod within the index (represented by `lastFailedPod`).
    // The last failed pod is also used to determine the time of the last failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/main_test.go

    	for index, namespacedName := range apps.EchoNamespace.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == "client":
    			client = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server":
    			server = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-foo":
    			serverNakedFoo = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-bar":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/cluster/topology.go

    		PrimaryClusterName:      config.PrimaryClusterName,
    		ConfigClusterName:       config.ConfigClusterName,
    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/workloadapi"
    )
    
    func (a *index) ServicesCollection(
    	Services krt.Collection[*v1.Service],
    	ServiceEntries krt.Collection[*networkingclient.ServiceEntry],
    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    			setDefaultOffPlugins:      sets.New("pluginC", "pluginD"),
    			setAdmissionControl:       []string{"pluginA", "pluginB", "pluginC"},
    		},
    	}
    
    	// act
    	for index, scenario := range scenarios {
    		t.Run(fmt.Sprintf("scenario %d", index), func(t *testing.T) {
    			target := NewAdmissionOptions()
    
    			if scenario.setDefaultOffPlugins != nil {
    				target.DefaultOffPlugins = scenario.setDefaultOffPlugins
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    	}
    	for i := range v.AnyOf {
    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.AnyOf[i], s, sPath, vPath.Child("anyOf").Index(i), opts)...)
    	}
    	for i := range v.OneOf {
    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.OneOf[i], s, sPath, vPath.Child("oneOf").Index(i), opts)...)
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/internal/filepathlite/path.go

    			return FromSlash(originalPath)
    		}
    		return originalPath + "."
    	}
    	rooted := IsPathSeparator(path[0])
    
    	// Invariants:
    	//	reading from path; r is index of next byte to process.
    	//	writing to buf; w is index of next byte to write.
    	//	dotdot is index in buf where .. must stop, either because
    	//		it is the leading slash or it is a leading ../../.. prefix.
    	n := len(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top