Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 295 for NetBSD (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. internal/disk/fdatasync_unix.go

    //go:build freebsd || netbsd || openbsd || darwin
    // +build freebsd netbsd openbsd darwin
    
    // 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: Wed Sep 29 23:40:28 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. internal/disk/fdatasync_unsupported.go

    //go:build !linux && !netbsd && !freebsd && !darwin && !openbsd
    // +build !linux,!netbsd,!freebsd,!darwin,!openbsd
    
    // 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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 29 23:40:28 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. src/internal/goos/zgoos_netbsd.go

    // Code generated by gengoos.go using 'go generate'. DO NOT EDIT.
    
    //go:build netbsd
    
    package goos
    
    const GOOS = `netbsd`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 1
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 455 bytes
    - Viewed (0)
  8. 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)
  9. pkg/util/flock/flock_other.go

    //go:build !linux && !darwin && !freebsd && !openbsd && !netbsd && !dragonfly
    // +build !linux,!darwin,!freebsd,!openbsd,!netbsd,!dragonfly
    
    /*
    Copyright 2016 The Kubernetes 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 826 bytes
    - Viewed (0)
  10. src/race.bash

    	exit 1
    }
    
    case $(uname -s -m) in
      "Darwin x86_64") ;;
      "Darwin arm64")  ;;
      "Linux x86_64")  ;;
      "Linux ppc64le") ;;
      "Linux aarch64") ;;
      "Linux s390x")   ;;
      "FreeBSD amd64") ;;
      "NetBSD amd64")  ;;
      "OpenBSD amd64") ;;
      *) usage         ;;
    esac
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
Back to top