Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withClientConfig (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    }
    
    func TestProgressNotify(t *testing.T) {
    	clusterConfig := testserver.NewTestConfig(t)
    	clusterConfig.ExperimentalWatchProgressNotifyInterval = time.Second
    	ctx, store, _ := testSetup(t, withClientConfig(clusterConfig))
    
    	storagetesting.RunOptionalTestProgressNotify(ctx, t, store)
    }
    
    // TestWatchDispatchBookmarkEvents makes sure that
    // setting allowWatchBookmarks query param against
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	groupResource  schema.GroupResource
    	transformer    value.Transformer
    	leaseConfig    LeaseManagerConfig
    
    	recorderEnabled bool
    }
    
    type setupOption func(*setupOptions)
    
    func withClientConfig(config *embed.Config) setupOption {
    	return func(options *setupOptions) {
    		options.client = func(t testing.TB) *clientv3.Client {
    			return testserver.RunEtcd(t, config)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top