Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Feb (0.02 sec)

  1. src/time/format_test.go

    var formatTests = []FormatTest{
    	{"ANSIC", ANSIC, "Wed Feb  4 21:00:57 2009"},
    	{"UnixDate", UnixDate, "Wed Feb  4 21:00:57 PST 2009"},
    	{"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"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. cmd/background-newdisks-heal-ops.go

    	if serverDebugLog {
    		tracker.printTo(os.Stdout)
    		fmt.Printf("\n")
    	}
    
    	if tracker.HealID == "" { // HealID was empty only before Feb 2023
    		bugLogIf(ctx, tracker.delete(ctx))
    		return nil
    	}
    
    	// Remove .healing.bin from all disks with similar heal-id
    	disks, err := z.GetDisks(poolIdx, setIdx)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle.go

    	}
    
    	switch progressTokens[1] {
    	case "true", `"true"`: // true without double quotes is deprecated in Feb 2022
    		if len(tokens) == 1 {
    			return ongoingRestoreObj(), nil
    		}
    	case "false", `"false"`: // false without double quotes is deprecated in Feb 2022
    		if len(tokens) != 2 {
    			return restoreObjStatus{}, errRestoreHDRMalformed
    		}
    		expiryTokens := strings.SplitN(tokens[1], "=", 2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/time/format.go

    	"Friday",
    	"Saturday",
    }
    
    var shortDayNames = []string{
    	"Sun",
    	"Mon",
    	"Tue",
    	"Wed",
    	"Thu",
    	"Fri",
    	"Sat",
    }
    
    var shortMonthNames = []string{
    	"Jan",
    	"Feb",
    	"Mar",
    	"Apr",
    	"May",
    	"Jun",
    	"Jul",
    	"Aug",
    	"Sep",
    	"Oct",
    	"Nov",
    	"Dec",
    }
    
    var longMonthNames = []string{
    	"January",
    	"February",
    	"March",
    	"April",
    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. src/net/http/transport_test.go

    					t.Errorf("Server got %q, %v; want %q", slurp, err, reqBody(n))
    				}
    			}
    			body := fmt.Sprintf("Response number %d", n)
    			v := []byte(strings.Replace(fmt.Sprintf(`HTTP/1.1 %s
    Date: Thu, 28 Feb 2013 17:55:41 GMT
    
    HTTP/1.1 200 OK
    Content-Type: text/html
    Echo-Request-Id: %s
    Content-Length: %d
    
    %s`, resCode, id, len(body), body), "\n", "\r\n", -1))
    			w.Write(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top