Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 285 for NetBSD (0.2 sec)

  1. src/syscall/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
    		}
    	}
    
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. api/go1.9.txt

    pkg math/bits (netbsd-386), const UintSize = 32
    pkg math/bits (netbsd-386-cgo), const UintSize = 32
    pkg math/bits (netbsd-amd64), const UintSize = 64
    pkg math/bits (netbsd-amd64-cgo), const UintSize = 64
    pkg math/bits (netbsd-arm), const UintSize = 32
    pkg math/bits (netbsd-arm-cgo), const UintSize = 32
    pkg math/bits (netbsd-arm64), const UintSize = 64
    pkg math/bits (netbsd-arm64-cgo), const UintSize = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  3. src/runtime/debug/panic_test.go

    		t.Skip("s390x fault addresses are missing the low order bits")
    	}
    	if runtime.GOOS == "ios" {
    		t.Skip("iOS doesn't provide fault addresses")
    	}
    	if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm" {
    		t.Skip("netbsd-arm doesn't provide fault address (golang.org/issue/45026)")
    	}
    	m, err := syscall.Mmap(-1, 0, 0x1000, syscall.PROT_READ /* Note: no PROT_WRITE */, syscall.MAP_SHARED|syscall.MAP_ANON)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. src/crypto/x509/root_bsd.go

    //go:build dragonfly || freebsd || netbsd || openbsd
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/usr/local/etc/ssl/cert.pem",            // FreeBSD
    	"/etc/ssl/cert.pem",                      // OpenBSD
    	"/usr/local/share/certs/ca-root-nss.crt", // DragonFly
    	"/etc/openssl/certs/ca-certificates.crt", // NetBSD
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 748 bytes
    - Viewed (0)
  5. 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)
  6. src/net/sock_bsd.go

    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package net
    
    import (
    	"runtime"
    	"syscall"
    )
    
    func maxListenerBacklog() int {
    	var (
    		n   uint32
    		err error
    	)
    	switch runtime.GOOS {
    	case "darwin", "ios":
    		n, err = syscall.SysctlUint32("kern.ipc.somaxconn")
    	case "freebsd":
    		n, err = syscall.SysctlUint32("kern.ipc.soacceptqueue")
    	case "netbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 918 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    netbsd_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="go run mksyscall.go -l32 -netbsd"
    	mksysnum="go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    netbsd_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="go run mksyscall.go -netbsd"
    	mksysnum="go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. 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)
  9. cmd/os-dirent_namelen_bsd.go

    //go:build darwin || freebsd || openbsd || netbsd
    // +build darwin freebsd openbsd 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: Thu Aug 19 01:35:22 UTC 2021
    - 982 bytes
    - Viewed (0)
  10. 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)
Back to top