Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for monday (0.1 sec)

  1. src/time/export_test.go

    	stdLongMonth:                    "January",
    	stdMonth:                        "Jan",
    	stdNumMonth:                     "1",
    	stdZeroMonth:                    "01",
    	stdLongWeekDay:                  "Monday",
    	stdWeekDay:                      "Mon",
    	stdDay:                          "2",
    	stdUnderDay:                     "_2",
    	stdZeroDay:                      "02",
    	stdUnderYearDay:                 "__2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 19:23:32 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/time.gox

    const March <type 18> = 3 ;
    const May <type 18> = 5 ;
    const Microsecond <type 1> = 1000 ;
    const Millisecond <type 1> = 1000000 ;
    const Minute <type 1> = 60000000000 ;
    const Monday <type 19> = 1 ;
    type <type 18>;
    const Nanosecond <type 1> = 1 ;
    func NewTicker (d <type 1>) <type 45 *<type 46 "Ticker" <type 47 struct { C <type 48 chan <- <type 3>>; .time.r <type 36>; }>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. .github/workflows/test.yml

    name: Test
    
    on:
      push:
        branches:
          - master
      pull_request:
        types:
          - opened
          - synchronize
      schedule:
        # cron every week on monday
        - cron: "0 0 * * 1"
    
    jobs:
      lint:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.input

    	gggggggggggg(x, y, z int) ()  // hurray
    }
    
    
    // formatting of variable declarations
    func _() {
    	type day struct { n int; short, long string }
    	var (
    		Sunday = day{ 0, "SUN", "Sunday" }
    		Monday = day{ 1, "MON", "Monday" }
    		Tuesday = day{ 2, "TUE", "Tuesday" }
    		Wednesday = day{ 3, "WED", "Wednesday" }
    		Thursday = day{ 4, "THU", "Thursday" }
    		Friday = day{ 5, "FRI", "Friday" }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  5. src/go/printer/testdata/declarations.golden

    	gggggggggggg(x, y, z int)	// hurray
    }
    
    // formatting of variable declarations
    func _() {
    	type day struct {
    		n		int
    		short, long	string
    	}
    	var (
    		Sunday		= day{0, "SUN", "Sunday"}
    		Monday		= day{1, "MON", "Monday"}
    		Tuesday		= day{2, "TUE", "Tuesday"}
    		Wednesday	= day{3, "WED", "Wednesday"}
    		Thursday	= day{4, "THU", "Thursday"}
    		Friday		= day{5, "FRI", "Friday"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  6. src/time/format.go

    				}
    				if !startsWithLowerCase(layout[i+3:]) {
    					return layout[0:i], stdMonth, layout[i+3:]
    				}
    			}
    
    		case 'M': // Monday, Mon, MST
    			if len(layout) >= i+3 {
    				if layout[i:i+3] == "Mon" {
    					if len(layout) >= i+6 && layout[i:i+6] == "Monday" {
    						return layout[0:i], stdLongWeekDay, layout[i+6:]
    					}
    					if !startsWithLowerCase(layout[i+3:]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/time/time.go

    }
    
    // A Weekday specifies a day of the week (Sunday = 0, ...).
    type Weekday int
    
    const (
    	Sunday Weekday = iota
    	Monday
    	Tuesday
    	Wednesday
    	Thursday
    	Friday
    	Saturday
    )
    
    // String returns the English name of the day ("Sunday", "Monday", ...).
    func (d Weekday) String() string {
    	if Sunday <= d && d <= Saturday {
    		return longDayNames[d]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/time/format_test.go

    	{"Year", "2006 6 06 _6 __6 ___6", "2009 6 09 _6 __6 ___6"},
    	{"Month", "Jan January 1 01 _1", "Feb February 2 02 _2"},
    	{"DayOfMonth", "2 02 _2 __2", "4 04  4  35"},
    	{"DayOfWeek", "Mon Monday", "Wed Wednesday"},
    	{"Hour", "15 3 03 _3", "21 9 09 _9"},
    	{"Minute", "4 04 _4", "0 00 _0"},
    	{"Second", "5 05 _5", "57 57 _57"},
    }
    
    func TestFormat(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. src/time/time_test.go

    	{2152173599, parsedTime{2038, March, 14, 1, 59, 59, 0, Sunday, -8 * 60 * 60, "PST"}},
    	{2152173600, parsedTime{2038, March, 14, 3, 0, 0, 0, Sunday, -7 * 60 * 60, "PDT"}},
    	{2152173601, parsedTime{2038, March, 14, 3, 0, 1, 0, Sunday, -7 * 60 * 60, "PDT"}},
    	{2172733199, parsedTime{2038, November, 7, 1, 59, 59, 0, Sunday, -7 * 60 * 60, "PDT"}},
    	{2172733200, parsedTime{2038, November, 7, 1, 0, 0, 0, Sunday, -8 * 60 * 60, "PST"}},
    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. docs/pt/docs/tutorial/security/first-steps.md

    	Ex: `pip install python-multipart`.
    
    	Isso ocorre porque o **OAuth2** usa "dados de um formulário" para mandar o **username** e **senha**.
    
    Execute esse exemplo com:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top