Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for watchEvents (0.1 sec)

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

    	expectedInitialEventsInStrictOrder := func(initialPods []*example.Pod, globalResourceVersion string) []watch.Event {
    		watchEvents := []watch.Event{}
    		for _, initialPod := range initialPods {
    			watchEvents = append(watchEvents, watch.Event{Type: watch.Added, Object: initialPod})
    		}
    		watchEvents = append(watchEvents, watch.Event{Type: watch.Bookmark, Object: &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				return nil, nil, err
    			}
    		}
    		isGetter = true
    	}
    
    	var versionedWatchEvent interface{}
    	if isWatcher {
    		versionedWatchEventPtr, err := a.group.Creater.New(a.group.GroupVersion.WithKind("WatchEvent"))
    		if err != nil {
    			return nil, nil, err
    		}
    		versionedWatchEvent = indirectArbitraryPointer(versionedWatchEventPtr)
    	}
    
    	var (
    		connectOptions             runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    }
    
    // Event represents a single event to a watched resource.
    //
    // +protobuf=true
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    message WatchEvent {
      optional string type = 1;
    
      // Object is:
      //  * If Type is Added or Modified: the new state of the object.
      //  * If Type is Deleted: the state of the object immediately before deletion.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    }
    
    // Event represents a single event to a watched resource.
    //
    // +protobuf=true
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    message WatchEvent {
      optional string type = 1;
    
      // Object is:
      //  * If Type is Added or Modified: the new state of the object.
      //  * If Type is Deleted: the state of the object immediately before deletion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top