Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for illumos (0.18 sec)

  1. src/cmd/go/internal/work/init.go

    			codegenArg = "-fPIC"
    		} else {
    			switch cfg.Goos {
    			case "darwin", "ios":
    				switch cfg.Goarch {
    				case "arm64":
    					codegenArg = "-shared"
    				}
    
    			case "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    				// Use -shared so that the result is
    				// suitable for inclusion in a PIE or
    				// shared library.
    				codegenArg = "-shared"
    			}
    		}
    		cfg.ExeSuffix = ".a"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_test.go

    	}
    	t.Logf("gdb version %d.%d", major, minor)
    }
    
    func checkGdbPython(t *testing.T) {
    	if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
    		t.Skip("skipping gdb python tests on illumos and solaris; see golang.org/issue/20821")
    	}
    	args := []string{"-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')"}
    	gdbArgsFixup(args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/cmd/go/script_test.go

    	// The following platforms could potentially be supported in the future:
    	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: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/os/removeall_test.go

    		t.Fatalf("Lstat %q succeeded after RemoveAll", path)
    	}
    }
    
    func TestRemoveAllLongPath(t *testing.T) {
    	switch runtime.GOOS {
    	case "aix", "darwin", "ios", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "illumos", "solaris":
    		break
    	default:
    		t.Skip("skipping for not implemented platforms")
    	}
    
    	prevDir, err := Getwd()
    	if err != nil {
    		t.Fatalf("Could not get wd: %s", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/buildid.go

    	sfile := a.Objdir + "_buildid.s"
    
    	var buf bytes.Buffer
    	if cfg.Goos == "aix" {
    		fmt.Fprintf(&buf, "\t.csect .go.buildid[XO]\n")
    	} else if (cfg.Goos != "solaris" && cfg.Goos != "illumos") || assemblerIsGas() {
    		fmt.Fprintf(&buf, "\t"+`.section .go.buildid,"e"`+"\n")
    	} else if cfg.Goarch == "sparc" || cfg.Goarch == "sparc64" {
    		fmt.Fprintf(&buf, "\t"+`.section ".go.buildid",#exclude`+"\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/net/conf.go

    	// sources for "hosts", assume Go's DNS will work fine.
    	if errors.Is(nss.err, fs.ErrNotExist) || (nss.err == nil && len(srcs) == 0) {
    		if canUseCgo && c.goos == "solaris" {
    			// illumos defaults to
    			// "nis [NOTFOUND=return] files",
    			// which the go resolver doesn't support.
    			return hostLookupCgo, dnsConf
    		}
    
    		return hostLookupFilesDNS, dnsConf
    	}
    	if nss.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. misc/go_android_exec/main.go

    // so for now it only builds on platforms that support that system call.
    // TODO(#33974): use a more portable library for file locking.
    
    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    // This program can be used as go_android_GOARCH_exec by the Go tool.
    // It executes binaries on an android device using adb.
    package main
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. src/net/listen_test.go

    	}
    	return nil
    }
    
    func multicastRIBContains(ip IP) (bool, error) {
    	switch runtime.GOOS {
    	case "aix", "dragonfly", "netbsd", "openbsd", "plan9", "solaris", "illumos", "windows":
    		return true, nil // not implemented yet
    	case "linux":
    		if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {
    			return true, nil // not implemented yet
    		}
    	}
    	ift, err := Interfaces()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  9. src/net/error_test.go

    			}
    			if err = parseDialError(err); err != nil {
    				t.Error(err)
    			}
    		})
    	}
    }
    
    func TestProtocolDialError(t *testing.T) {
    	switch runtime.GOOS {
    	case "solaris", "illumos":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	for _, network := range []string{"tcp", "udp", "ip:4294967296", "unix", "unixpacket", "unixgram"} {
    		var err error
    		switch network {
    		case "tcp":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. src/go/build/build.go

    }
    
    // matchTag reports whether the name is one of:
    //
    //	cgo (if cgo is enabled)
    //	$GOOS
    //	$GOARCH
    //	ctxt.Compiler
    //	linux (if GOOS = android)
    //	solaris (if GOOS = illumos)
    //	darwin (if GOOS = ios)
    //	unix (if this is a Unix GOOS)
    //	boringcrypto (if GOEXPERIMENT=boringcrypto is enabled)
    //	tag (if tag is listed in ctxt.BuildTags, ctxt.ToolTags, or ctxt.ReleaseTags)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top