Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for RFC1123Z (0.24 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/go/internal/gccgoimporter/testdata/time.gox

     func (e <type 52 *<type 50>>) Error () <type -16>;
    >;
    func ParseInLocation (layout <type -16>, value <type -16>, loc <type 53 *<type 6>>) (? <type 3>, ? <type -19>);
    const RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST";
    const RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700";
    const RFC3339 = "2006-01-02T15:04:05Z07:00";
    const RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00";
    const RFC822 = "02 Jan 06 15:04 MST";
    const RFC822Z = "02 Jan 06 15:04 -0700";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. api/go1.txt

    pkg time, const Monday Weekday
    pkg time, const Nanosecond Duration
    pkg time, const November Month
    pkg time, const October Month
    pkg time, const RFC1123 ideal-string
    pkg time, const RFC1123Z ideal-string
    pkg time, const RFC3339 ideal-string
    pkg time, const RFC3339Nano ideal-string
    pkg time, const RFC822 ideal-string
    pkg time, const RFC822Z ideal-string
    pkg time, const RFC850 ideal-string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg time, const Monday = 1
    pkg time, const Nanosecond = 1
    pkg time, const November = 11
    pkg time, const October = 10
    pkg time, const RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST"
    pkg time, const RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700"
    pkg time, const RFC3339 = "2006-01-02T15:04:05Z07:00"
    pkg time, const RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00"
    pkg time, const RFC822 = "02 Jan 06 15:04 MST"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top