Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Err (0.17 sec)

  1. doc/go_spec.html

    with the same name as a result parameter is in
    <a href="#Declarations_and_scope">scope</a> at the place of the return.
    </p>
    
    <pre>
    func f(n int) (res int, err error) {
    	if _, err := f(n-1); err != nil {
    		return  // invalid return statement: err is shadowed
    	}
    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    A "break" statement terminates execution of the innermost
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG = 0
    pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR = 3
    pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP = 88
    pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_INFO = 6
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg log/syslog (darwin-arm64), const LOG_DEBUG Priority
    pkg log/syslog (darwin-arm64), const LOG_EMERG = 0
    pkg log/syslog (darwin-arm64), const LOG_EMERG Priority
    pkg log/syslog (darwin-arm64), const LOG_ERR = 3
    pkg log/syslog (darwin-arm64), const LOG_ERR Priority
    pkg log/syslog (darwin-arm64), const LOG_FTP = 88
    pkg log/syslog (darwin-arm64), const LOG_FTP Priority
    pkg log/syslog (darwin-arm64), const LOG_INFO = 6
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    will no longer return `ErrWaitTimeout` - use the `Interrupted(error) bool` helper to replace checks for `err == ErrWaitTimeout`, or compare specifically to context errors as needed. A future release will make the `ErrWaitTimeout` error private and callers must use `Interrupted()` instead. If you are returning `ErrWaitTimeout` from your own methods, switch to creating a location specific `cause err` and pass it to the new method `wait.ErrorInterrupted(cause) error` which will ensure `Interrupted()` returns...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  5. CHANGELOG/CHANGELOG-1.13.md

    - Failed to provision volume with StorageClass "azurefile-premium": failed to create share andy-mg1121-dynamic-pvc-1a7b2813-d1b7-11e8-9e96-000d3a03e16b in account f7228f99bcde411e8ba4900: failed to create file share, err: storage: service returned error: StatusCode=400, ErrorCode=InvalidHeaderValue, ErrorMessage=The value for one of the HTTP headers is not in the correct format. ([#69718](https://github.com/kubernetes/kubernetes/pull/69718), [@andyzhangx](https://g...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.17.md

    - Azure: check the nil error before invoke err.Error() ([#96623](https://github.com/kubernetes/kubernetes/pull/96623), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
Back to top