Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SunOS (0.04 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystemTest.groovy

    class DefaultOperatingSystemTest extends Specification {
        def "has useful string representation"() {
            def os = new DefaultOperatingSystem("sunos")
    
            expect:
            os.toString() == "operating system 'sunos'"
            os.displayName == "operating system 'sunos'"
            os.internalOs == OperatingSystem.SOLARIS
        }
    
        def "recognises key operating systems"() {
            def os = new DefaultOperatingSystem(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/kernel_version_solaris_test.go

    			t.Fatalf("SupportSockNonblockCloexec and SupportAccept4 are true, but kernel version is older than 5.11, SunOS version: %d.%d", major, minor)
    		}
    		if !gotSock && !gotAccept4 && (major > 5 || (major == 5 && minor >= 11)) {
    			t.Errorf("SupportSockNonblockCloexec and SupportAccept4 are false, but kernel version is 5.11 or newer, SunOS version: %d.%d", major, minor)
    		}
    	} else { // Solaris
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. buildscripts/checkdeps.sh

    #
    
    _init() {
    
    	shopt -s extglob
    
    	## Minimum required versions for build dependencies
    	GIT_VERSION="1.0"
    	GO_VERSION="1.16"
    	OSX_VERSION="10.8"
    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            def os = new OperatingSystem.MacOs()
    
            expect:
            !os.windows
            os.unix
            os.macOsX
        }
    
        def "uses os.name property to determine if sunos"() {
            when:
            System.properties['os.name'] = 'SunOS'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.Solaris
    
            when:
            System.properties['os.name'] = 'solaris'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/OperatingSystem.java

     *         <td>"linux"</td>
     *     </tr>
     *     <tr>
     *         <td>MacOS</td>
     *         <td>"osx", "mac os x", "darwin"</td>
     *     </tr>
     *     <tr>
     *         <td>Solaris</td>
     *         <td>"solaris", "sunos"</td>
     *     </tr>
     * </table>
     */
    public interface OperatingSystem extends Named {
        @Input
        @Override
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

                return WINDOWS;
            } else if (osName.contains("mac os x") || osName.contains("darwin") || osName.contains("osx")) {
                return MAC_OS;
            } else if (osName.contains("sunos") || osName.contains("solaris")) {
                return SOLARIS;
            } else if (osName.contains("linux")) {
                return LINUX;
            } else if (osName.contains("freebsd")) {
                return FREE_BSD;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/kernel_version_solaris.go

    		// Something wrong with socket(), fall back to checking the kernel version.
    		major, minor := KernelVersion()
    		if runtime.GOOS == "illumos" {
    			return major > 5 || (major == 5 && minor >= 11) // minimal requirement is SunOS 5.11
    		}
    		return major > 11 || (major == 11 && minor >= 4)
    	}
    	return false
    })
    
    // SupportAccept4 tests whether accept4 system call is available.
    var SupportAccept4 = sync.OnceValue(func() bool {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/sys_solaris_amd64.s

    // Copyright 2014 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.
    //
    // System calls and other sys.stuff for AMD64, SunOS
    // /usr/include/sys/syscall.h for syscall numbers.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    // This is needed by asm_amd64.s
    TEXT runtimeĀ·settls(SB),NOSPLIT,$8
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-font-libgrx",
    				"application/x-font-linux-psf",
    				"application/x-font-otf",
    				"application/x-font-pcf",
    				"application/x-font-snf",
    				"application/x-font-speedo",
    				"application/x-font-sunos-news",
    				"application/x-font-ttf",
    				"application/x-font-type1",
    				"application/x-font-adobe-metric",
    				"application/x-font-printer-metric",
    				"application/x-font-vfont",
    				"application/x-foxmail",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/x-font-snf">
        <glob pattern="*.snf"/>
      </mime-type>
      <mime-type type="application/x-font-speedo"/>
      <mime-type type="application/x-font-sunos-news"/>
    
      <mime-type type="application/x-font-ttf">
        <acronym>TTF</acronym>
        <_comment>TrueType Font</_comment>
        <glob pattern="*.ttf"/>
        <glob pattern="*.ttc"/>
        <magic priority="40">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top