Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getPost (0.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    			err := store.GetList(ctx, tt.prefix, storageOpts, out)
    			if tt.expectRVTooLarge {
    				if err == nil || !apierrors.IsTimeout(err) || !storage.IsTooLargeResourceVersion(err) {
    					t.Fatalf("expecting resource version too high error, but get: %s", err)
    				}
    				return
    			}
    
    			if err != nil {
    				if !tt.expectError {
    					t.Fatalf("GetList failed: %v", err)
    				}
    				return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	backingStorage.injectError(errDummy)
    	err = cacher.GetList(context.TODO(), "pods/ns", storage.ListOptions{
    		ResourceVersion: "0",
    		Predicate:       pred,
    	}, result)
    	if err != nil {
    		t.Errorf("GetList with Limit and RV=0 should be served from cache: %v", err)
    	}
    
    	err = cacher.GetList(context.TODO(), "pods/ns", storage.ListOptions{
    		ResourceVersion: "",
    		Predicate:       pred,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    }
    
    // GetList implements storage.Interface
    func (c *Cacher) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	recursive := opts.Recursive
    	resourceVersion := opts.ResourceVersion
    	pred := opts.Predicate
    	if shouldDelegateList(opts) {
    		return c.storage.GetList(ctx, key, opts, listObj)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            LoggingServiceRegistry loggingServices = LoggingServiceRegistry.newEmbeddableLogging();
            LoggingManagerInternal rootLoggingManager = loggingServices.get(DefaultLoggingManagerFactory.class).getRoot();
            rootLoggingManager.attachSystemOutAndErr();
            return loggingServices;
        }
    
        @Override
        public GradleExecuter withTestConsoleAttached() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    }
    
    func (x *ApplicationTunnel) GetProtocol() ApplicationTunnel_Protocol {
    	if x != nil {
    		return x.Protocol
    	}
    	return ApplicationTunnel_NONE
    }
    
    func (x *ApplicationTunnel) GetPort() uint32 {
    	if x != nil {
    		return x.Port
    	}
    	return 0
    }
    
    // GatewayAddress represents the address of a gateway
    type GatewayAddress struct {
    	state         protoimpl.MessageState
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top