Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 659 for goose (0.04 sec)

  1. src/net/conf_test.go

    		{
    			name: "freebsdlinux_no_resolv_conf",
    			c: &conf{
    				goos: "freebsd",
    			},
    			resolv:    defaultResolvConf,
    			nss:       nssStr(t, "foo: bar"),
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
    		},
    		// On OpenBSD, no resolv.conf means no DNS.
    		{
    			name: "openbsd_no_resolv_conf",
    			c: &conf{
    				goos: "openbsd",
    			},
    			resolv:    defaultResolvConf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/imports/build.go

    // MatchFile returns false if the name contains a $GOOS or $GOARCH
    // suffix which does not match the current system.
    // The recognized name formats are:
    //
    //	name_$(GOOS).*
    //	name_$(GOARCH).*
    //	name_$(GOOS)_$(GOARCH).*
    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    //
    //	if GOOS=android, then files with GOOS=linux are also matched.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/internal/bootstrap_test/reboot_test.go

    )
    
    func TestRepeatBootstrap(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping test that rebuilds the entire toolchain")
    	}
    	switch runtime.GOOS {
    	case "android", "ios", "js", "wasip1":
    		t.Skipf("skipping because the toolchain does not have to bootstrap on GOOS=%s", runtime.GOOS)
    	}
    
    	realGoroot := testenv.GOROOT(t)
    
    	// To ensure that bootstrapping doesn't unexpectedly depend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/objdump/objdump_test.go

    	goarch := runtime.GOARCH
    	if *target != "" {
    		f := strings.Split(*target, "/")
    		if len(f) != 2 {
    			t.Fatalf("-target argument must be goos/goarch")
    		}
    		defer os.Setenv("GOOS", os.Getenv("GOOS"))
    		defer os.Setenv("GOARCH", os.Getenv("GOARCH"))
    		os.Setenv("GOOS", f[0])
    		os.Setenv("GOARCH", f[1])
    		goarch = f[1]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/net/rawconn_test.go

    package net
    
    import (
    	"bytes"
    	"runtime"
    	"testing"
    	"time"
    )
    
    func TestRawConnReadWrite(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9", "js", "wasip1":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	t.Run("TCP", func(t *testing.T) {
    		handler := func(ls *localServer, ln Listener) {
    			c, err := ln.Accept()
    			if err != nil {
    				t.Error(err)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/go/build/build_test.go

    	match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true})
    	match(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true})
    	nomatch(runtime.GOOS+","+runtime.GOARCH+",!foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true})
    	match(runtime.GOOS+","+runtime.GOARCH+",!bar", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "bar": true})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/runtime/mem_bsd.go

    }
    
    // Indicates not to reserve swap space for the mapping.
    const _sunosMAP_NORESERVE = 0x40
    
    func sysReserveOS(v unsafe.Pointer, n uintptr) unsafe.Pointer {
    	flags := int32(_MAP_ANON | _MAP_PRIVATE)
    	if GOOS == "solaris" || GOOS == "illumos" {
    		// Be explicit that we don't want to reserve swap space
    		// for PROT_NONE anonymous mappings. This avoids an issue
    		// wherein large mappings can cause fork to fail.
    		flags |= _sunosMAP_NORESERVE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/sigaltstack.go

    }
    */
    import "C"
    
    import (
    	"runtime"
    	"testing"
    )
    
    func testSigaltstack(t *testing.T) {
    	switch {
    	case runtime.GOOS == "solaris", runtime.GOOS == "illumos", runtime.GOOS == "ios" && runtime.GOARCH == "arm64":
    		t.Skipf("switching signal stack not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	C.changeSignalStack()
    	defer C.restoreSignalStack()
    	defer func() {
    		if recover() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_unsupported_goos.txt

    [compiler:gccgo] skip # gccgo assumes cross-compilation is always possible
    
    env GOOS=windwos # intentional misspelling of windows
    
    ! go build -n exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 18:25:35 UTC 2023
    - 191 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    	runtime.GOOS == "openbsd" || // #60614
    	runtime.GOOS == "solaris" || // #60968 #60970
    	runtime.GOOS == "android" || // #60967
    	runtime.GOOS == "illumos" || // #65544
    	// These platforms fundamentally can't be supported:
    	runtime.GOOS == "js" || // #60971
    	runtime.GOOS == "wasip1" || // #60971
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top