Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/archive/tar/strconv_test.go

    	}
    
    	for _, v := range vectors {
    		got, err := formatPAXRecord(v.inKey, v.inVal)
    		ok := (err == nil)
    		if ok != v.ok {
    			if v.ok {
    				t.Errorf("formatPAXRecord(%q, %q): got format failure, want success", v.inKey, v.inVal)
    			} else {
    				t.Errorf("formatPAXRecord(%q, %q): got format success, want failure", v.inKey, v.inVal)
    			}
    		}
    		if got != v.want {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 09 05:28:50 GMT 2021
    - 14K bytes
    - Viewed (0)
  2. doc/go1.22.html

      Note that until now, C functions' SEH exception handlers were not being honored,
      so this change may cause some programs to behave differently.
      <code>-linkmode=external</code> is not affected by this change, as external linkers
      already preserve SEH information.
    </p>
    
    <h2 id="bootstrap">Bootstrap</h2>
    
    <p>
      As mentioned in the <a href="/doc/go1.20#bootstrap">Go 1.20 release notes</a>, Go 1.22 now requires
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top