Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for badStateFile (0.08 sec)

  1. src/internal/poll/error_stub_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux
    
    package poll_test
    
    import (
    	"errors"
    	"os"
    	"runtime"
    )
    
    func badStateFile() (*os.File, error) {
    	return nil, errors.New("not supported on " + runtime.GOOS)
    }
    
    func isBadStateFileError(err error) (string, bool) {
    	return "", false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 413 bytes
    - Viewed (0)
Back to top