Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for lastObservedTime (0.58 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/eventseries.go

    // with apply.
    type EventSeriesApplyConfiguration struct {
    	Count            *int32        `json:"count,omitempty"`
    	LastObservedTime *v1.MicroTime `json:"lastObservedTime,omitempty"`
    }
    
    // EventSeriesApplyConfiguration constructs an declarative configuration of the EventSeries type for use with
    // apply.
    func EventSeries() *EventSeriesApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pkg/apis/events/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: Tue Aug 24 19:47:49 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. pkg/apis/events/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_EventSeries_To_core_EventSeries(in *v1beta1.EventSeries, out *core.EventSeries, s conversion.Scope) error {
    	out.Count = in.Count
    	out.LastObservedTime = in.LastObservedTime
    	return nil
    }
    
    // Convert_v1beta1_EventSeries_To_core_EventSeries is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/events/v1beta1/types.go

    	Count int32 `json:"count" protobuf:"varint,1,opt,name=count"`
    	// lastObservedTime is the time when last Event from the series was seen before last heartbeat.
    	LastObservedTime metav1.MicroTime `json:"lastObservedTime" protobuf:"bytes,2,opt,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 Mar 03 11:06:50 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1/types.go

    	Count int32 `json:"count" protobuf:"varint,1,opt,name=count"`
    	// lastObservedTime is the time when last Event from the series was seen before last heartbeat.
    	LastObservedTime metav1.MicroTime `json:"lastObservedTime" protobuf:"bytes,2,opt,name=lastObservedTime"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.Event.json

      },
      "firstTimestamp": "2006-01-01T01:01:01Z",
      "lastTimestamp": "2007-01-01T01:01:01Z",
      "count": 8,
      "type": "typeValue",
      "eventTime": "2010-01-01T01:01:01.000010Z",
      "series": {
        "count": 1,
        "lastObservedTime": "2002-01-01T01:01:01.000002Z"
      },
      "action": "actionValue",
      "related": {
        "kind": "kindValue",
        "namespace": "namespaceValue",
        "name": "nameValue",
        "uid": "uidValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1.Event.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "eventTime": "2002-01-01T01:01:01.000002Z",
      "series": {
        "count": 1,
        "lastObservedTime": "2002-01-01T01:01:01.000002Z"
      },
      "reportingController": "reportingControllerValue",
      "reportingInstance": "reportingInstanceValue",
      "action": "actionValue",
      "reason": "reasonValue",
      "regarding": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1beta1.Event.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "eventTime": "2002-01-01T01:01:01.000002Z",
      "series": {
        "count": 1,
        "lastObservedTime": "2002-01-01T01:01:01.000002Z"
      },
      "reportingController": "reportingControllerValue",
      "reportingInstance": "reportingInstanceValue",
      "action": "actionValue",
      "reason": "reasonValue",
      "regarding": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EventSeries) DeepCopyInto(out *EventSeries) {
    	*out = *in
    	in.LastObservedTime.DeepCopyInto(&out.LastObservedTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventSeries.
    func (in *EventSeries) DeepCopy() *EventSeries {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1beta1/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EventSeries) DeepCopyInto(out *EventSeries) {
    	*out = *in
    	in.LastObservedTime.DeepCopyInto(&out.LastObservedTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventSeries.
    func (in *EventSeries) DeepCopy() *EventSeries {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top