Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for September (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go

    package unix
    
    // Round the length of a raw sockaddr up to align it properly.
    func cmsgAlignOf(salen int) int {
    	salign := SizeofPtr
    	if SizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {
    		// 64-bit Dragonfly before the September 2019 ABI changes still requires
    		// 32-bit aligned access to network subsystem.
    		salign = 4
    	}
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 544 bytes
    - Viewed (0)
  2. src/syscall/sockcmsg_dragonfly.go

    // Round the length of a raw sockaddr up to align it properly.
    func cmsgAlignOf(salen int) int {
    	salign := sizeofPtr
    	if sizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {
    		// 64-bit Dragonfly before the September 2019 ABI changes still requires
    		// 32-bit aligned access to network subsystem.
    		salign = 4
    	}
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 20 19:33:07 UTC 2019
    - 547 bytes
    - Viewed (0)
  3. src/syscall/syscall_dragonfly.go

    var (
    	osreldateOnce sync.Once
    	osreldate     uint32
    )
    
    // First __DragonFly_version after September 2019 ABI changes
    // http://lists.dragonflybsd.org/pipermail/users/2019-September/358280.html
    const _dragonflyABIChangeVersion = 500705
    
    func supportsABI(ver uint32) bool {
    	osreldateOnce.Do(func() { osreldate, _ = SysctlUint32("kern.osreldate") })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. cluster/addons/addon-manager/CHANGELOG.md

     - Update to use debian-base:0.4.0.
     - Update kubectl to v1.11.3.
    
    ### Version 8.8  (Mon October 1 2018 Zihong Zheng <******@****.***>)
     - Update to use debian-base:0.3.2.
    
    ### Version 8.7  (Tue September 4 2018 Zihong Zheng <******@****.***>)
     - Support extra `--prune-whitelist` resources in kube-addon-manager.
     - Update kubectl to v1.10.7.
    
    ### Version 8.6  (Tue February 20 2018 Zihong Zheng <******@****.***>)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_lines_test.go

    		}
    		testDebugLines(t, "-N -l", "convertline.go", fn, []int{9, 10, 11}, true)
    	}
    }
    
    func TestInlineLines(t *testing.T) {
    	if runtime.GOARCH != "amd64" && *testGoArchFlag == "" {
    		// As of september 2021, works for everything except mips64, but still potentially fragile
    		t.Skip("only runs for amd64 unless -arch explicitly supplied")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/testdata/time.gox

    const RFC822Z = "02 Jan 06 15:04 -0700";
    const RFC850 = "Monday, 02-Jan-06 15:04:05 MST";
    const RubyDate = "Mon Jan 02 15:04:05 -0700 2006";
    const Saturday <type 19> = 6 ;
    const Second <type 1> = 1000000000 ;
    const September <type 18> = 9 ;
    func Since (t <type 3>) <type 1>;
    func Sleep (d <type 1>);
    const Stamp = "Jan _2 15:04:05";
    const StampMicro = "Jan _2 15:04:05.000000";
    const StampMilli = "Jan _2 15:04:05.000";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
Back to top