Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for NetBSD (0.09 sec)

  1. src/internal/platform/zosarch.go

    	{"linux", "mips64le"},
    	{"linux", "mipsle"},
    	{"linux", "ppc64"},
    	{"linux", "ppc64le"},
    	{"linux", "riscv64"},
    	{"linux", "s390x"},
    	{"linux", "sparc64"},
    	{"netbsd", "386"},
    	{"netbsd", "amd64"},
    	{"netbsd", "arm"},
    	{"netbsd", "arm64"},
    	{"openbsd", "386"},
    	{"openbsd", "amd64"},
    	{"openbsd", "arm"},
    	{"openbsd", "arm64"},
    	{"openbsd", "mips64"},
    	{"openbsd", "ppc64"},
    	{"openbsd", "riscv64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/runtime/netpoll_kqueue_pipe.go

    // license that can be found in the LICENSE file.
    
    //go:build netbsd || openbsd
    
    package runtime
    
    import "unsafe"
    
    // TODO(panjf2000): NetBSD didn't implement EVFILT_USER for user-established events
    // until NetBSD 10.0, check out https://www.netbsd.org/releases/formal-10/NetBSD-10.0.html
    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go

    		// subsystem.
    		if SizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    		// NetBSD and OpenBSD armv7 require 64-bit alignment.
    		if runtime.GOARCH == "arm" {
    			salign = 8
    		}
    		// NetBSD aarch64 requires 128-bit alignment.
    		if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    			salign = 16
    		}
    	case "zos":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/fds_unix.go

    //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_netbsd.c

    	stack_t ss;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	// On NetBSD, a new thread inherits the signal stack of the
    	// creating thread. That confuses minit, so we remove that
    	// signal stack here before calling the regular mstart. It's
    	// a bit baroque to remove a signal stack here only to add one
    	// in minit, but it's a simple change that keeps NetBSD
    	// working like other OS's. At this point all signals are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:55:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. internal/disk/disk_test.go

    //go:build !netbsd && !solaris
    // +build !netbsd,!solaris
    
    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 31 22:20:48 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/os/executable_procfs.go

    //go:build linux || netbsd
    
    package os
    
    import (
    	"errors"
    	"internal/stringslite"
    	"runtime"
    )
    
    func executable() (string, error) {
    	var procfn string
    	switch runtime.GOOS {
    	default:
    		return "", errors.New("Executable not implemented for " + runtime.GOOS)
    	case "linux", "android":
    		procfn = "/proc/self/exe"
    	case "netbsd":
    		procfn = "/proc/curproc/exe"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:26:04 UTC 2024
    - 715 bytes
    - Viewed (0)
  8. src/syscall/mkall.sh

    netbsd_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="./mksyscall.pl -l32 -netbsd"
    	mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    netbsd_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -netbsd"
    	mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. internal/disk/stat_netbsd.go

    //go:build netbsd
    // +build netbsd
    
    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/eaccess_other.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix && !darwin && !dragonfly && !freebsd && !linux && !openbsd && !netbsd
    
    package unix
    
    import "syscall"
    
    func Eaccess(path string, mode uint32) error {
    	return syscall.ENOSYS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 15:02:38 UTC 2024
    - 351 bytes
    - Viewed (0)
Back to top