Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for FreeBSD (0.37 sec)

  1. api/except.txt

    pkg syscall (freebsd-386-cgo), const SYS_LSTAT ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_MKNODAT = 498
    pkg syscall (freebsd-386-cgo), const SYS_STAT = 188
    pkg syscall (freebsd-386-cgo), const SYS_STAT ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_STATFS = 396
    pkg syscall (freebsd-amd64), const SYS_FSTAT = 189
    pkg syscall (freebsd-amd64), const SYS_FSTATAT = 493
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. api/go1.17.txt

    pkg math (freebsd-amd64), const MinInt = -9223372036854775808
    pkg math (freebsd-amd64-cgo), const MaxInt = 9223372036854775807
    pkg math (freebsd-amd64-cgo), const MaxUint = 18446744073709551615
    pkg math (freebsd-amd64-cgo), const MinInt = -9223372036854775808
    pkg math (freebsd-arm), const MaxInt = 2147483647
    pkg math (freebsd-arm), const MaxUint = 4294967295
    pkg math (freebsd-arm), const MinInt = -2147483648
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. api/go1.18.txt

    pkg syscall (freebsd-386), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-amd64), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-arm), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Pdeathsig Signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

        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;
        private final String toStringValue;
        private final String osName;
        private final String osVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-386), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-amd64), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-arm64), type SysProcAttr struct, Jail int #46259
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. src/syscall/mkall.sh

    	;;
    freebsd_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="./mksyscall.pl -l32"
    	mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_amd64)
    	mkerrors="$mkerrors -m64"
    	mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            expect:
            OperatingSystem.current() instanceof OperatingSystem.Linux
        }
    
        def "uses os.name property to determine if freebsd"() {
            System.properties['os.name'] = 'FreeBSD'
    
            expect:
            OperatingSystem.current() instanceof OperatingSystem.FreeBSD
        }
    
        def "uses default implementation for other os"() {
            System.properties['os.name'] = 'unknown'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. src/runtime/os_freebsd.go

    	// cpuset_getaffinity return ERANGE when provided buffer size exceed the limits in kernel.
    	// Querying kern.smp.maxcpus to calculate maximum buffer size.
    	// See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200802
    
    	// Variable kern.smp.maxcpus introduced at Dec 23 2003, revision 123766,
    	// with dynamically assigned sysctl entries.
    	miblen := sysctlnametomib([]byte("kern.smp.maxcpus"), &mib)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/imports/build.go

    		return matchTag(l[n-1], tags, true)
    	}
    	return true
    }
    
    var KnownOS = map[string]bool{
    	"aix":       true,
    	"android":   true,
    	"darwin":    true,
    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    	"illumos":   true,
    	"ios":       true,
    	"js":        true,
    	"linux":     true,
    	"nacl":      true, // legacy; don't remove
    	"netbsd":    true,
    	"openbsd":   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. 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)
Back to top