Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for IsSolaris (0.31 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/syscall/unix/kernel_version_solaris_test.go

    		}
    	} else { // Solaris
    		if gotSock && gotAccept4 && (major < 11 || (major == 11 && minor < 4)) {
    			t.Fatalf("SupportSockNonblockCloexec and SupportAccept4 are true, but kernel version is older than 11.4, Solaris version: %d.%d", major, minor)
    		}
    		if !gotSock && !gotAccept4 && (major > 11 || (major == 11 && minor >= 4)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/net/tcpsockopt_solaris.go

    // license that can be found in the LICENSE file.
    
    //go:build !illumos
    
    package net
    
    import (
    	"internal/syscall/unix"
    	"runtime"
    	"syscall"
    	"time"
    )
    
    // Some macros of TCP Keep-Alive options on Solaris 11.4 may
    // differ from those on OpenSolaris-based derivatives.
    const (
    	sysTCP_KEEPIDLE  = 0x1D
    	sysTCP_KEEPINTVL = 0x1E
    	sysTCP_KEEPCNT   = 0x1F
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top