Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for matchList (0.31 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/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for examples, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for customresourcedefinitions, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for customresourcedefinitions, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/generator.go

    			iss, sub = value[:idx], value[idx+1:]
    		} else {
    			iss = value
    		}
    		var matchIss, matchSub *matcherpb.StringMatcher
    		switch {
    		case value == "*":
    			matchIss = matchAny
    			matchSub = matchAny
    		case strings.HasPrefix(value, "*"):
    			if found {
    				if iss == "*" {
    					matchIss = matchAny
    				} else {
    					matchIss = matcher.StringMatcherSuffix(strings.TrimPrefix(iss, "*"), false)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	InPlacePodVerticalScaling featuregate.Feature = "InPlacePodVerticalScaling"
    
    	// owner: @p0lyn0mial
    	// alpha: v1.27
    	//
    	// Allow the API server to stream individual items instead of chunking
    	WatchList featuregate.Feature = "WatchList"
    
    	// owner: @serathius
    	// kep: http://kep.k8s.io/2340
    	// alpha: v1.28
    	//
    	// Allow the API server to serve consistent lists from cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    		},
    	}
    	for _, scenario := range scenarios {
    		t.Run(scenario.name, func(t *testing.T) {
    			if scenario.enableWatchList {
    				featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchList, true)
    			}
    			origCtx, store, _ := testSetup(t, scenario.setupFn)
    			ctx, cancel := context.WithCancel(origCtx)
    			defer cancel()
    
    			w, err := store.watcher.Watch(ctx, "/abc", 0, scenario.requestOpts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache_test.go

    				t.Fatalf("expected: %v, got: %v", c.expErr, err)
    			}
    			t.Logf("file watch: %v\n", sc.certWatcher.WatchList())
    			if c.expErr == nil && len(sc.certWatcher.WatchList()) != 1 {
    				t.Fatalf("expected certWatcher to watch 1 file, but it is watching: %d files", len(sc.certWatcher.WatchList()))
    			}
    			for _, v := range sc.certWatcher.WatchList() {
    				if v != c.expFilePathToWatch {
    					t.Fatalf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    func TestWorkEstimator(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchList, true)
    
    	defaultCfg := DefaultWorkEstimatorConfig()
    
    	tests := []struct {
    		name                      string
    		requestURI                string
    		requestInfo               *apirequest.RequestInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "core_v1"
            ],
            "x-kubernetes-action": "watchlist",
            "x-kubernetes-group-version-kind": {
              "group": "",
              "kind": "ConfigMap",
              "version": "v1"
            }
          },
          "parameters": [
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top