Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 270 for syso (0.22 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ld
    
    import (
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"strings"
    	"unicode"
    )
    
    var _ = fmt.Print
    
    type deadcodePass struct {
    	ctxt *Link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bufio"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    	"cmd/internal/telemetry"
    	"cmd/link/internal/benchmark"
    	"flag"
    	"internal/buildcfg"
    	"log"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"strconv"
    	"strings"
    )
    
    var (
    	pkglistfornote []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/net/tcpsock_posix.go

    	r := fd.raddr.(*TCPAddr)
    	return l.Port == r.Port && l.IP.Equal(r.IP)
    }
    
    func spuriousENOTAVAIL(err error) bool {
    	if op, ok := err.(*OpError); ok {
    		err = op.Err
    	}
    	if sys, ok := err.(*os.SyscallError); ok {
    		err = sys.Err
    	}
    	return err == syscall.EADDRNOTAVAIL
    }
    
    func (ln *TCPListener) ok() bool { return ln != nil && ln.fd != nil }
    
    func (ln *TCPListener) accept() (*TCPConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/runtime/histogram.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	// For the time histogram type, we use an HDR histogram.
    	// Values are placed in buckets based solely on the most
    	// significant set bit. Thus, buckets are power-of-2 sized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/go.mod

    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
    	github.com/rogpeppe/go-internal v1.11.0 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	golang.org/x/sys v0.20.0 // indirect
    	golang.org/x/text v0.15.0 // indirect
    	golang.org/x/tools v0.21.0 // indirect
    	google.golang.org/protobuf v1.33.0 // indirect
    	gopkg.in/yaml.v2 v2.4.0 // indirect
    	gopkg.in/yaml.v3 v3.0.1 // indirect
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loong64/asm.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"log"
    )
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/runtime/tracebuf.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Trace buffer management.
    
    package runtime
    
    import (
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Maximum number of bytes required to encode uint64 in base-128.
    const traceBytesPerNumber = 10
    
    // traceWriter is the interface for writing all trace data.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/handler.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package nfacct
    
    import (
    	"github.com/vishvananda/netlink/nl"
    	"github.com/vishvananda/netns"
    	"golang.org/x/sys/unix"
    )
    
    // handler is an injectable interface for creating netlink request.
    type handler interface {
    	newRequest(cmd int, flags uint16) request
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. doc/next/9-todo.md

    CL 514775 - implements a performance optimization for accepted proposal https://go.dev/issue/59488
    CL 484995 - x/sys CL implements accepted proposal https://go.dev/issue/59537 to add x/sys/unix API
    CL 555597 - optimizes TypeFor (added in accepted proposal https://go.dev/issue/60088) for non-interface types; doesn't seem to need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/version_windows.go

    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    	platformId        uint32
    	csdVersion        [128]uint16
    }
    
    // According to documentation, RtlGetVersion function always succeeds.
    //sys	rtlGetVersion(info *_OSVERSIONINFOW) = ntdll.RtlGetVersion
    
    // version retrieves the major, minor, and build version numbers
    // of the current Windows OS from the RtlGetVersion API.
    func version() (major, minor, build uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top