Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for IsSolaris (0.18 sec)

  1. src/cmd/link/internal/amd64/asm.go

    		}
    
    	case objabi.R_ADDR:
    		if ldr.SymType(s) == sym.STEXT && target.IsElf() {
    			su := ldr.MakeSymbolUpdater(s)
    			if target.IsSolaris() {
    				addpltsym(target, ldr, syms, targ)
    				su.SetRelocSym(rIdx, syms.PLT)
    				su.SetRelocAdd(rIdx, r.Add()+int64(ldr.SymPlt(targ)))
    				return true
    			}
    			// The code is asking for the address of an external
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

    public abstract class OperatingSystem {
        public static final Windows WINDOWS = new Windows();
        public static final MacOs MAC_OS = new MacOs();
        public static final Solaris SOLARIS = new Solaris();
        public static final Linux LINUX = new Linux();
        public static final FreeBSD FREE_BSD = new FreeBSD();
        public static final Unix UNIX = new Unix();
        private static OperatingSystem currentOs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            expect:
            os.findInPath("a") == exe
            os.findInPath("unknown") == null
        }
    
        def "solaris uses prefix of x86 for 32bit intel"() {
            given:
            System.properties['os.arch'] = arch
            def solaris = new OperatingSystem.Solaris()
    
            expect:
            solaris.nativePrefix == prefix
    
            where:
            [arch, prefix] << [['i386', 'sunos-x86'], ['x86', 'sunos-x86']]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/imports/build.go

    		// (so we return true no matter how 'want' is set).
    		return prefer
    	}
    
    	if tags[name] {
    		return true
    	}
    
    	switch name {
    	case "linux":
    		return tags["android"]
    	case "solaris":
    		return tags["illumos"]
    	case "darwin":
    		return tags["ios"]
    	case "unix":
    		return unixOS[cfg.BuildContext.GOOS]
    	default:
    		return false
    	}
    }
    
    // eval is like
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/runtime/netpoll_solaris.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // Solaris runtime-integrated network poller.
    //
    // Solaris uses event ports for scalable network I/O. Event
    // ports are level-triggered, unlike epoll and kqueue which
    // can be configured in both level-triggered and edge-triggered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. .teamcity/mvnw

    fi
    
    if [ -z "$JAVA_HOME" ]; then
      javaExecutable="`which javac`"
      if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
        # readlink(1) is not available as standard on Solaris 10.
        readLink=`which readlink`
        if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
          if $darwin ; then
            javaHome="`dirname \"$javaExecutable\"`"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  7. mvnw

    fi
    
    if [ -z "$JAVA_HOME" ]; then
      javaExecutable="$(which javac)"
      if [ -n "$javaExecutable" ] && ! [ "$(expr "\"$javaExecutable\"" : '\([^ ]*\)')" = "no" ]; then
        # readlink(1) is not available as standard on Solaris 10.
        readLink=$(which readlink)
        if [ ! "$(expr "$readLink" : '\([^ ]*\)')" = "no" ]; then
          if $darwin ; then
            javaHome="$(dirname "\"$javaExecutable\"")"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    .Installing with a package manager
    [%collapsible]
    ====
    
    link:http://sdkman.io[SDKMAN!] is a tool for managing parallel versions of multiple Software Development Kits on most Unix-like systems (macOS, Linux, Cygwin, Solaris and FreeBSD).
    Gradle is deployed and maintained by SDKMAN!:
    
    ----
    ❯ sdk install gradle
    ----
    
    Other package managers are available, but the version of Gradle distributed by them is not controlled by Gradle, Inc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/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: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/build.go

    }
    
    // matchTag reports whether the name is one of:
    //
    //	cgo (if cgo is enabled)
    //	$GOOS
    //	$GOARCH
    //	boringcrypto
    //	ctxt.Compiler
    //	linux (if GOOS == android)
    //	solaris (if GOOS == illumos)
    //	tag (if tag is listed in ctxt.BuildTags or ctxt.ReleaseTags)
    //
    // It records all consulted tags in allTags.
    func (ctxt *Context) matchTag(name string, allTags map[string]bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top