Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 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. internal/amztime/parse.go

    	// Do not change this order, x-amz-date format is usually in
    	// iso8601Format rest are meant for relaxed handling of other
    	// odd SDKs that might be out there.
    	"20060102T150405Z",
    	time.RFC1123,
    	time.RFC1123Z,
    	// Add new AMZ date formats here.
    }
    
    // ErrMalformedDate always returned for dates that cannot be parsed.
    var ErrMalformedDate = errors.New("malformed date")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/time/format.go

    // use of "GMT" in that case.
    // When using the [RFC1123] or [RFC1123Z] formats for parsing, note that these
    // formats define a leading zero for the day-in-month portion, which is not
    // strictly allowed by RFC 1123. This will result in an error when parsing
    // date strings that occur in the first 9 days of a given month.
    // In general [RFC1123Z] should be used instead of [RFC1123] for servers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. 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)
  6. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedDate: {
    		Code:           "MalformedDate",
    		Description:    "Invalid date format header, expected to be in ISO8601, RFC1123 or RFC1123Z time format.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedPresignedDate: {
    		Code:           "AuthorizationQueryParametersError",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ParseError.Message", Field, 0},
    		{"ParseError.Value", Field, 0},
    		{"ParseError.ValueElem", Field, 0},
    		{"ParseInLocation", Func, 1},
    		{"RFC1123", Const, 0},
    		{"RFC1123Z", Const, 0},
    		{"RFC3339", Const, 0},
    		{"RFC3339Nano", Const, 0},
    		{"RFC822", Const, 0},
    		{"RFC822Z", Const, 0},
    		{"RFC850", Const, 0},
    		{"RubyDate", Const, 0},
    		{"Saturday", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top