Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for IsSolaris (1.71 sec)

  1. src/syscall/syscall_solaris.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Solaris system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            where:
            type                           | config
            "unavailable architecture"     | "architecture 'sparc'"
            "unavailable operating system" | "operatingSystem 'solaris'"
            "unknown architecture"         | "architecture 'unknown'"
            "unknown operating system"     | "operatingSystem 'unknown'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. src/net/conf_test.go

    				goos: "openbsd",
    			},
    			resolv:    defaultResolvConf,
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFiles}},
    		},
    		{
    			name: "solaris_no_nsswitch",
    			c: &conf{
    				goos: "solaris",
    			},
    			resolv:    defaultResolvConf,
    			nss:       &nssConf{err: fs.ErrNotExist},
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
    		},
    		{
    			name: "openbsd_lookup_bind_file",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/net/http/cgi/host.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/os/signal/signal_test.go

    // delivered but, using it, we (hopefully) eliminate test flakes on the
    // build servers. See #46736 for discussion.
    var fatalWaitingTime = 30 * time.Second
    
    func init() {
    	if testenv.Builder() == "solaris-amd64-oraclerel" {
    		// The solaris-amd64-oraclerel builder has been observed to time out in
    		// TestNohup even with a 250ms settle time.
    		//
    		// Use a much longer settle time on that builder to try to suss out whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	instead of MADV_DONTNEED on Linux when returning memory to the
    	kernel. This is more efficient, but means RSS numbers will
    	drop only when the OS is under memory pressure. On the BSDs and
    	Illumos/Solaris, setting madvdontneed=1 will use MADV_DONTNEED instead
    	of MADV_FREE. This is less efficient, but causes RSS numbers to drop
    	more quickly.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_solaris_amd64.go

    // mksyscall_libc.pl -solaris -tags solaris,amd64 syscall_solaris.go syscall_solaris_amd64.go
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build solaris && amd64
    
    package syscall
    
    import "unsafe"
    
    //go:cgo_import_dynamic libc_pipe2 pipe2 "libc.so"
    //go:cgo_import_dynamic libc_accept4 accept4 "libsocket.so"
    //go:cgo_import_dynamic libc_Getcwd getcwd "libc.so"
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:09:10 UTC 2023
    - 37.6K bytes
    - Viewed (0)
  8. src/runtime/netpoll.go

    func poll_runtime_pollWait(pd *pollDesc, mode int) int {
    	errcode := netpollcheckerr(pd, int32(mode))
    	if errcode != pollNoError {
    		return errcode
    	}
    	// As for now only Solaris, illumos, AIX and wasip1 use level-triggered IO.
    	if GOOS == "solaris" || GOOS == "illumos" || GOOS == "aix" || GOOS == "wasip1" {
    		netpollarm(pd, mode)
    	}
    	for !netpollblock(pd, int32(mode), false) {
    		errcode = netpollcheckerr(pd, int32(mode))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/init.go

    			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"
    		ldBuildmode = "c-archive"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. src/os/signal/signal_cgo_test.go

    // license that can be found in the LICENSE file.
    
    //go:build (darwin || dragonfly || freebsd || (linux && !android) || netbsd || openbsd) && cgo
    
    // Note that this test does not work on Solaris: issue #22849.
    // Don't run the test on Android because at least some versions of the
    // C library do not define the posix_openpt function.
    
    package signal_test
    
    import (
    	"context"
    	"encoding/binary"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top