Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for windowsZones (0.26 sec)

  1. src/time/genzabbrs.go

    }
    
    const wzURL = "https://raw.githubusercontent.com/unicode-org/cldr/main/common/supplemental/windowsZones.xml"
    
    type MapZone struct {
    	Other     string `xml:"other,attr"`
    	Territory string `xml:"territory,attr"`
    	Type      string `xml:"type,attr"`
    }
    
    type SupplementalData struct {
    	Zones []MapZone `xml:"windowsZones>mapTimezones>mapZone"`
    }
    
    func readWindowsZones() ([]*zone, error) {
    	r, err := http.Get(wzURL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/time/zoneinfo_abbrs_windows.go

    // license that can be found in the LICENSE file.
    
    // Code generated by genzabbrs.go; DO NOT EDIT.
    // Based on information from https://raw.githubusercontent.com/unicode-org/cldr/main/common/supplemental/windowsZones.xml
    
    package time
    
    type abbr struct {
    	std string
    	dst string
    }
    
    var abbrs = map[string]abbr{
    	"Egypt Standard Time":             {"EET", "EEST"},    // Africa/Cairo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

       ([#122068](https://github.com/kubernetes/kubernetes/pull/122068), [@caohe](https://github.com/caohe))
    - Fixed an issue where `AvailableBytes` sometimes did not report correctly on WindowsNodes when the `PodAndContainerStatsFromCRI` feature was enabled.
       ([#122846](https://github.com/kubernetes/kubernetes/pull/122846), [@marosset](https://github.com/marosset))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top