Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lastObservedTime (0.21 sec)

  1. staging/src/k8s.io/api/events/v1beta1/generated.pb.go

    func (this *EventSeries) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&EventSeries{`,
    		`Count:` + fmt.Sprintf("%v", this.Count) + `,`,
    		`LastObservedTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastObservedTime), "MicroTime", "v1.MicroTime", 1), `&`, ``, 1) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/events/v1/generated.pb.go

    func (this *EventSeries) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&EventSeries{`,
    		`Count:` + fmt.Sprintf("%v", this.Count) + `,`,
    		`LastObservedTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastObservedTime), "MicroTime", "v1.MicroTime", 1), `&`, ``, 1) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. pkg/apis/core/fuzzer/fuzzer.go

    			s.Allocatable = s.Capacity
    		},
    		func(e *core.Event, c fuzz.Continue) {
    			c.FuzzNoCustom(e)
    			e.EventTime = metav1.MicroTime{Time: time.Unix(1, 1000)}
    			if e.Series != nil {
    				e.Series.LastObservedTime = metav1.MicroTime{Time: time.Unix(3, 3000)}
    			}
    		},
    		func(j *core.GRPCAction, c fuzz.Continue) {
    			empty := ""
    			if j.Service == nil {
    				j.Service = &empty
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top