Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for matchList (0.15 sec)

  1. src/testing/testing.go

    	if _, err := matchString(*matchList, "non-empty"); err != nil {
    		fmt.Fprintf(os.Stderr, "testing: invalid regexp in -test.list (%q): %s\n", *matchList, err)
    		os.Exit(1)
    	}
    
    	for _, test := range tests {
    		if ok, _ := matchString(*matchList, test.Name); ok {
    			fmt.Println(test.Name)
    		}
    	}
    	for _, bench := range benchmarks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	if err != nil {
    		return nil, nil, nil, err
    	}
    
    	var patchList, deleteList, setOrderList []interface{}
    	kind := elementType.Kind()
    	switch kind {
    	case reflect.Map:
    		patchList, deleteList, err = diffListsOfMaps(original, modified, schema, mergeKey, diffOptions)
    		if err != nil {
    			return nil, nil, nil, err
    		}
    		patchList, err = normalizeSliceOrder(patchList, modified, mergeKey, kind)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	"LIST":             "list",
    	"PATCH":            "patch",
    	"POST":             "create",
    	"PROXY":            "proxy",
    	"PUT":              "update",
    	"WATCH":            "watch",
    	"WATCHLIST":        "watch",
    }
    
    // Install handlers for API resources.
    func (a *APIInstaller) Install() ([]metav1.APIResource, []*storageversion.ResourceInfo, *restful.WebService, []error) {
    	var apiResources []metav1.APIResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		},
    	}
    	for idx, scenario := range scenarios {
    		t.Run(scenario.name, func(t *testing.T) {
    			// set up env
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchList, true)
    			if scenario.expectedInitialEvents == nil {
    				scenario.expectedInitialEvents = func(_ []*example.Pod) []watch.Event { return nil }
    			}
    			if scenario.expectedInitialEventsBookmark == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    }
    
    func TestWaitUntilWatchCacheFreshAndForceAllEvents(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchList, true)
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ConsistentListFromCache, true)
    
    	scenarios := []struct {
    		name               string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	//
    	// it should never happen due to our validation but let's just be super-safe here
    	// and disable sendingInitialEvents when the feature wasn't enabled
    	if !utilfeature.DefaultFeatureGate.Enabled(features.WatchList) && opts.SendInitialEvents != nil {
    		opts.SendInitialEvents = nil
    	}
    	// TODO: we should eventually get rid of this legacy case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Add the` WatchList` method to the `rest client` in `client-go`. When used, it establishes a stream to obtain a consistent snapshot of data from the server. This method is meant to be used by the generated client. ([#122657](https://github.com/kubernetes/kubernetes/pull/122657),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    const (
    	// InitialEventsAnnotationKey the name of the key
    	// under which an annotation marking the end of
    	// a watchlist stream is stored.
    	//
    	// The annotation is added to a "Bookmark" event.
    	InitialEventsAnnotationKey = "k8s.io/initial-events-end"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top