Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DaylightName (0.2 sec)

  1. src/internal/syscall/windows/registry/registry_test.go

    	}
    	var tests = []testType{
    		{"MUI_Std", syscall.UTF16ToString(dtzi.StandardName[:])},
    	}
    	if dtzi.DynamicDaylightTimeDisabled == 0 {
    		tests = append(tests, testType{"MUI_Dlt", syscall.UTF16ToString(dtzi.DaylightName[:])})
    	}
    
    	for _, test := range tests {
    		got, err := timezoneK.GetMUIStringValue(test.name)
    		if err != nil {
    			t.Error("GetMUIStringValue:", err)
    		}
    
    		if got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	Minute       uint16
    	Second       uint16
    	Milliseconds uint16
    }
    
    type Timezoneinformation struct {
    	Bias         int32
    	StandardName [32]uint16
    	StandardDate Systemtime
    	StandardBias int32
    	DaylightName [32]uint16
    	DaylightDate Systemtime
    	DaylightBias int32
    }
    
    // Socket related.
    
    const (
    	AF_UNSPEC  = 0
    	AF_UNIX    = 1
    	AF_INET    = 2
    	AF_INET6   = 23
    	AF_NETBIOS = 17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top