Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for lastObservedTime (0.2 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_EventSeries_To_core_EventSeries(in *v1.EventSeries, out *core.EventSeries, s conversion.Scope) error {
    	out.Count = in.Count
    	out.LastObservedTime = in.LastObservedTime
    	return nil
    }
    
    // Convert_v1_EventSeries_To_core_EventSeries is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	Count int32 `json:"count,omitempty" protobuf:"varint,1,name=count"`
    	// Time of the last occurrence observed
    	LastObservedTime metav1.MicroTime `json:"lastObservedTime,omitempty" protobuf:"bytes,2,name=lastObservedTime"`
    
    	// +k8s:deprecated=state,protobuf=3
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // Number of occurrences in this series up to the last heartbeat time
      optional int32 count = 1;
    
      // Time of the last occurrence observed
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime lastObservedTime = 2;
    }
    
    // EventSource contains information for an event.
    message EventSource {
      // Component from which the event is generated.
      // +optional
      optional string component = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    }
    
    // EventSeries represents a series ov events
    type EventSeries struct {
    	// Number of occurrences in this series up to the last heartbeat time
    	Count int32
    	// Time of the last occurrence observed
    	LastObservedTime metav1.MicroTime
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // EventList is a list of events.
    type EventList struct {
    	metav1.TypeMeta
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                 "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
    	"count":            "Number of occurrences in this series up to the last heartbeat time",
    	"lastObservedTime": "Time of the last occurrence observed",
    }
    
    func (EventSeries) SwaggerDoc() map[string]string {
    	return map_EventSeries
    }
    
    var map_EventSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // Number of occurrences in this series up to the last heartbeat time
      optional int32 count = 1;
    
      // Time of the last occurrence observed
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime lastObservedTime = 2;
    }
    
    // EventSource contains information for an event.
    message EventSource {
      // Component from which the event is generated.
      // +optional
      optional string component = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top