Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DogTest (0.15 sec)

  1. src/test/resources/LOGTEST.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 30 bytes
    - Viewed (0)
  2. pkg/registry/core/pod/rest/log.go

    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    )
    
    // LogREST implements the log endpoint for a Pod
    type LogREST struct {
    	KubeletConn client.ConnectionInfoGetter
    	Store       *genericregistry.Store
    }
    
    // LogREST implements GetterWithOptions
    var _ = rest.GetterWithOptions(&LogREST{})
    
    // New creates a new Pod log options object
    func (r *LogREST) New() runtime.Object {
    	// TODO - return a resource that represents a log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/rest/log_test.go

    	store := &genericregistry.Store{
    		Storage: genericregistry.DryRunnableStorage{Storage: s},
    	}
    	logRest := &LogREST{Store: store, KubeletConn: nil}
    
    	negativeOne := int64(-1)
    	testCases := []*api.PodLogOptions{
    		{SinceSeconds: &negativeOne},
    		{TailLines: &negativeOne},
    	}
    
    	for _, tc := range testCases {
    		_, err := logRest.Get(genericapirequest.NewDefaultContext(), "test", tc)
    		if !errors.IsInvalid(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top