Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RFC1123Z (0.09 sec)

  1. tests/update_test.go

    		t.Errorf("User2's name should be updated")
    	}
    
    	if user2.UpdatedAt.Format(time.RFC1123Z) == user3.UpdatedAt.Format(time.RFC1123Z) {
    		t.Errorf("User's updated at should be changed, old %v, new %v", user2.UpdatedAt.Format(time.RFC1123Z), user3.UpdatedAt.Format(time.RFC1123Z))
    	}
    
    	// update with gorm exprs
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  2. src/time/format_test.go

    	{"RubyDate", RubyDate, "Wed Feb 04 21:00:57 -0800 2009"},
    	{"RFC822", RFC822, "04 Feb 09 21:00 PST"},
    	{"RFC850", RFC850, "Wednesday, 04-Feb-09 21:00:57 PST"},
    	{"RFC1123", RFC1123, "Wed, 04 Feb 2009 21:00:57 PST"},
    	{"RFC1123Z", RFC1123Z, "Wed, 04 Feb 2009 21:00:57 -0800"},
    	{"RFC3339", RFC3339, "2009-02-04T21:00:57-08:00"},
    	{"RFC3339Nano", RFC3339Nano, "2009-02-04T21:00:57.0123456-08:00"},
    	{"Kitchen", Kitchen, "9:00PM"},
    	{"am/pm", "3pm", "9pm"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/cronjob_controllerv2.go

    		logger.V(4).Info("Missed starting window", "cronjob", klog.KObj(cronJob))
    		jm.recorder.Eventf(cronJob, corev1.EventTypeWarning, "MissSchedule", "Missed scheduled time to start a job: %s", scheduledTime.UTC().Format(time.RFC1123Z))
    
    		// TODO: Since we don't set LastScheduleTime when not scheduling, we are going to keep noticing
    		// the miss every cycle.  In order to avoid sending multiple events, and to avoid processing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top