Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for IsSolaris (0.2 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystem.java

            return internalOs.isLinux();
        }
    
        @Override
        public boolean isMacOsX() {
            return internalOs.isMacOsX();
        }
    
        @Override
        public boolean isSolaris() {
            return internalOs == OperatingSystem.SOLARIS;
        }
    
        @Override
        public boolean isFreeBSD() {
            return internalOs == OperatingSystem.FREE_BSD;
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/OperatingSystem.java

         * Is it macOS?
         */
        @Internal
        boolean isMacOsX();
    
        /**
         * Is it Linux?
         */
        @Internal
        boolean isLinux();
    
        /**
         * Is it Solaris?
         */
        @Internal
        boolean isSolaris();
    
        /**
         * Is it FreeBSD?
         */
        @Internal
        boolean isFreeBSD();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/data.go

    			continue
    		}
    
    		// We need to be able to reference dynimport symbols when linking against
    		// shared libraries, and AIX, Darwin, OpenBSD and Solaris always need it.
    		if !target.IsAIX() && !target.IsDarwin() && !target.IsSolaris() && !target.IsOpenbsd() && rs != 0 && rst == sym.SDYNIMPORT && !target.IsDynlinkingGo() && !ldr.AttrSubSymbol(rs) {
    			if !(target.IsPPC64() && target.IsExternal() && ldr.SymName(rs) == ".TOC.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/amd64/obj.go

    		}
    
    	case objabi.Hlinux, /* elf64 executable */
    		objabi.Hfreebsd,   /* freebsd */
    		objabi.Hnetbsd,    /* netbsd */
    		objabi.Hopenbsd,   /* openbsd */
    		objabi.Hdragonfly, /* dragonfly */
    		objabi.Hsolaris:   /* solaris */
    		ld.Elfinit(ctxt)
    
    		ld.HEADR = ld.ELFRESERVE
    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 4096
    		}
    		if *ld.FlagTextAddr == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystemTest.groovy

            "windows" | OperatingSystem.WINDOWS
            "osx"     | OperatingSystem.MAC_OS
            "linux"   | OperatingSystem.LINUX
            "sunos"   | OperatingSystem.SOLARIS
            "solaris" | OperatingSystem.SOLARIS
            "freebsd" | OperatingSystem.FREE_BSD
        }
    
        def "can create arbitrary operating system"() {
            def os = new DefaultOperatingSystem("arbitrary")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/lif/lif.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build solaris
    
    // Package lif provides basic functions for the manipulation of
    // logical network interfaces and interface addresses on Solaris.
    //
    // The package supports Solaris 11 or above.
    package lif
    
    import (
    	"syscall"
    )
    
    type endpoint struct {
    	af int
    	s  uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 950 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/NativePlatforms.java

            platforms.add(createPlatform(osx, x64));
            platforms.add(createPlatform(osx, aarch64));
    
            platforms.add(createPlatform(solaris, x64));
            platforms.add(createPlatform(solaris, x86));
            platforms.add(createPlatform(solaris, sparc));
            platforms.add(createPlatform(solaris, ultrasparc));
    
            return platforms;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go

    	// sockcmsg_dragonfly.go
    	switch runtime.GOOS {
    	case "aix":
    		// There is no alignment on AIX.
    		salign = 1
    	case "darwin", "ios", "illumos", "solaris":
    		// NOTE: It seems like 64-bit Darwin, Illumos and Solaris
    		// kernels still require 32-bit aligned access to network
    		// subsystem.
    		if SizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/kernel_version_solaris.go

    	if errno != 0 {
    		return 0, 0
    	}
    
    	// The version string is in the form "<version>.<update>.<sru>.<build>.<reserved>"
    	// on Solaris: https://blogs.oracle.com/solaris/post/whats-in-a-uname-
    	// Therefore, we use the Version field on Solaris when available.
    	ver := un.Version[:]
    	if runtime.GOOS == "illumos" {
    		// Illumos distributions use different formats without a parsable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top