Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for timerDone (0.25 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

                  volumePath: volumePathValue
          ttlSecondsAfterFinished: 8
      schedule: scheduleValue
      startingDeadlineSeconds: 2
      successfulJobsHistoryLimit: 6
      suspend: true
      timeZone: timeZoneValue
    status:
      active:
      - apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

                  volumePath: volumePathValue
          ttlSecondsAfterFinished: 8
      schedule: scheduleValue
      startingDeadlineSeconds: 2
      successfulJobsHistoryLimit: 6
      suspend: true
      timeZone: timeZoneValue
    status:
      active:
      - apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  5. src/syscall/syscall_aix.go

    //sys	Unlink(path string) (err error)
    //sysnb	Uname(buf *Utsname) (err error)
    //sys	write(fd int, p []byte) (n int, err error)
    //sys	writev(fd int, iovecs []Iovec) (n uintptr, err error)
    
    //sys	gettimeofday(tv *Timeval, tzp *Timezone) (err error)
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

      pilot-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

        ],
        "time_options": [
          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "MinIO Node Replication Dashboard",
      "uid": "gmTJnqnnk3",
      "version": 1,
      "weekStart": ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    					Name:              "cronjob1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: batch.CronJobSpec{
    					Schedule: "0/5 * * * ?",
    					TimeZone: &timeZone,
    					Suspend:  &suspend,
    					JobTemplate: batch.JobTemplateSpec{
    						Spec: batch.JobSpec{
    							Completions: &completions,
    							Template: api.PodTemplateSpec{
    								Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		{Date(2020, 1, 1, 0, 0, 0, 0, FixedZone("", 24*60*60)), "Time.MarshalJSON: timezone hour outside of range [0,23]"},
    		{Date(2020, 1, 1, 0, 0, 0, 0, FixedZone("", 123*60*60)), "Time.MarshalJSON: timezone hour outside of range [0,23]"},
    	}
    
    	for _, tt := range tests {
    		want := tt.want
    		b, err := tt.time.MarshalJSON()
    		switch {
    		case b != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/time/format_test.go

    	{"2006-01-02T15:04:05-07", "1871-01-01T05:33:02-02", -2 * 60 * 60},
    	{"2006-01-02T15:04:05Z07", "1871-01-01T05:33:02-02", -2 * 60 * 60},
    }
    
    func TestParseSecondsInTimeZone(t *testing.T) {
    	// should accept timezone offsets with seconds like: Zone America/New_York   -4:56:02 -      LMT     1883 Nov 18 12:03:58
    	for _, test := range secondsTimeZoneOffsetTests {
    		time, err := Parse(test.format, test.value)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top