Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for CET (0.02 sec)

  1. docs/fr/docs/contributing.md

    <div class="termy">
    
    ```console
    $ python -m venv env
    ```
    
    </div>
    
    Cela va créer un répertoire `./env/` avec les binaires Python et vous pourrez alors installer des paquets pour cet environnement isolé.
    
    ### Activer l'environnement
    
    Activez le nouvel environnement avec :
    
    === "Linux, macOS"
    
        <div class="termy">
    
        ```console
        $ source ./env/bin/activate
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/time/zoneinfo_test.go

    		zoneName:   "Europe/Berlin",
    		fileName:   "2020b_Europe_Berlin",
    		date:       func(loc *time.Location) time.Time { return time.Date(2020, time.October, 29, 15, 30, 0, 0, loc) },
    		wantName:   "CET",
    		wantOffset: 3600,
    	},
    	{
    		// 2021a slim tzdata for America/Nuuk.
    		zoneName:   "America/Nuuk",
    		fileName:   "2021a_America_Nuuk",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. lib/time/zoneinfo.zip

    Australia/Lord_Howe Australia/Melbourne Australia/NSW Australia/North Australia/Perth Australia/Queensland Australia/South Australia/Sydney Australia/Tasmania Australia/Victoria Australia/West Australia/Yancowinna Brazil/Acre Brazil/DeNoronha Brazil/East Brazil/West CET CST6CDT Canada/Atlantic Canada/Central Canada/Eastern Canada/Mountain Canada/Newfoundland Canada/Pacific Canada/Saskatchewan Canada/Yukon Chile/Continental Chile/EasterIsland Cuba EET EST EST5EDT Egypt Eire Etc/GMT Etc/GMT+0 Etc/GMT+1 Etc/GMT+10 Etc/GMT+11...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    And perform verification:
    
    ----
    $ gpg --verify j2objc-annotations-1.1.jar.asc
    gpg: assuming signed data in 'j2objc-annotations-1.1.jar'
    gpg: Signature made Thu 19 Jan 2017 12:06:51 AM CET
    gpg:                using RSA key 29579F18FA8FD93B
    gpg: BAD signature from "Tom Ball <****>" [unknown]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. src/time/time.go

    func (t Time) Location() *Location {
    	l := t.loc
    	if l == nil {
    		l = UTC
    	}
    	return l
    }
    
    // Zone computes the time zone in effect at time t, returning the abbreviated
    // name of the zone (such as "CET") and its offset in seconds east of UTC.
    func (t Time) Zone() (name string, offset int) {
    	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    		`Brazil/West`,
    		`Canada/Atlantic`,
    		`Canada/Central`,
    		`Canada/Eastern`,
    		`Canada/Mountain`,
    		`Canada/Newfoundland`,
    		`Canada/Pacific`,
    		`Canada/Saskatchewan`,
    		`Canada/Yukon`,
    		`CET`,
    		`Chile/Continental`,
    		`Chile/EasterIsland`,
    		`CST6CDT`,
    		`Cuba`,
    		`EET`,
    		`Egypt`,
    		`Eire`,
    		`EST`,
    		`EST5EDT`,
    		`Etc/GMT`,
    		`Etc/GMT+0`,
    		`Etc/GMT+1`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top