Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for FreeBSD (0.15 sec)

  1. src/cmd/cgo/internal/testsanitizers/cc_test.go

    // license that can be found in the LICENSE file.
    
    // This test uses the Pdeathsig field of syscall.SysProcAttr, so it only works
    // on platforms that support that.
    
    //go:build linux || (freebsd && amd64)
    
    // sanitizers_test checks the use of Go with sanitizers like msan, asan, etc.
    // See https://github.com/google/sanitizers.
    package sanitizers_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    	// run this test on just a small set of platforms (no need to test it
    	// across the board given the nature of the test).
    	pair := runtime.GOOS + "-" + runtime.GOARCH
    	switch pair {
    	case "linux-amd64", "linux-arm64", "freebsd-amd64", "openbsd-amd64":
    	default:
    		t.Skip("no need for test on " + pair)
    	}
    
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	wd, err := os.Getwd()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/internal/trace/trace_test.go

    }
    
    func TestTraceManyStartStop(t *testing.T) {
    	testTraceProg(t, "many-start-stop.go", nil)
    }
    
    func TestTraceWaitOnPipe(t *testing.T) {
    	switch runtime.GOOS {
    	case "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "solaris":
    		testTraceProg(t, "wait-on-pipe.go", nil)
    		return
    	}
    	t.Skip("no applicable syscall.Pipe on " + runtime.GOOS)
    }
    
    func TestTraceIterPull(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.go

    	-race
    		enable data race detection.
    		Supported only on linux/amd64, freebsd/amd64, darwin/amd64, darwin/arm64, windows/amd64,
    		linux/ppc64le and linux/arm64 (only for 48-bit VMA).
    	-msan
    		enable interoperation with memory sanitizer.
    		Supported only on linux/amd64, linux/arm64, linux/loong64, freebsd/amd64
    		and only with Clang/LLVM as the host C compiler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. pkg/security/security.go

    		"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
    		"/etc/ssl/cert.pem",                                 // Alpine Linux
    		"/usr/local/etc/ssl/cert.pem",                       // FreeBSD
    		"/etc/ssl/certs/ca-certificates",                    // Talos Linux
    	}
    
    	for _, cert := range certFiles {
    		if _, err := os.Stat(cert); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/internal/poll/fd_unix.go

    	// do not cause a race condition. isBlocking only ever goes
    	// from 0 to 1 so there is no real race here.
    	atomic.StoreUint32(&fd.isBlocking, 1)
    	return syscall.SetNonblock(fd.Sysfd, false)
    }
    
    // Darwin and FreeBSD can't read or write 2GB+ files at a time,
    // even on 64-bit systems.
    // The same is true of socket implementations on many systems.
    // See golang.org/issue/7812 and golang.org/issue/16266.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    // when possible, a release tag like "go1.3".
    func Version() string {
    	return buildVersion
    }
    
    // GOOS is the running program's operating system target:
    // one of darwin, freebsd, linux, and so on.
    // To view possible combinations of GOOS and GOARCH, run "go tool dist list".
    const GOOS string = goos.GOOS
    
    // GOARCH is the running program's architecture target:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Rich console support removed for some 32-bit operating systems
    
    Gradle 6.3 does not support the <<command_line_interface.adoc#sec:rich_console, rich console>> for 32-bit Unix systems and for old FreeBSD versions (older than FreeBSD 10). Microsoft Windows 32-bit is unaffected.
    
    Gradle will continue building projects on 32-bit systems but will no longer show the rich console.
    
    === Deprecations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    	// return and the signal will be re-raised and caught by
    	// the default handler with the correct context.
    	//
    	// On FreeBSD, the libthr sigaction code prevents
    	// this from working so we fall through to raise.
    	if GOOS != "freebsd" && (isarchive || islibrary) && handler == _SIG_DFL && !c.sigFromUser() {
    		return
    	}
    
    	raise(sig)
    
    	// Give the signal a chance to be delivered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <netinet/in.h>
    #include <termios.h>
    #include <netinet/ip.h>
    #include <netinet/ip_mroute.h>
    #include <sys/extattr.h>
    
    #if __FreeBSD__ >= 10
    #define IFT_CARP	0xf8	// IFT_CARP is deprecated in FreeBSD 10
    #undef SIOCAIFADDR
    #define SIOCAIFADDR	_IOW(105, 26, struct oifaliasreq)	// ifaliasreq contains if_data
    #undef SIOCSIFPHYADDR
    #define SIOCSIFPHYADDR	_IOW(105, 70, struct oifaliasreq)	// ifaliasreq contains if_data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top