Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,775 for linuxx (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.7.md

    -------- | -----------
    [kubernetes-node-linux-amd64.tar.gz](https://dl.k8s.io/v1.7.16/kubernetes-node-linux-amd64.tar.gz) | `7a3f4bea9f0bb3ade3303143d13e165336211f9a50242cc28afe69569b2df347`
    [kubernetes-node-linux-arm.tar.gz](https://dl.k8s.io/v1.7.16/kubernetes-node-linux-arm.tar.gz) | `904e8a8a0e887528847f6af009ccdc29b9cc1cbd1a2bd2a6092e3ad57d9e524f`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg log/syslog (linux-386), type Writer struct
    pkg log/syslog (linux-386-cgo), const LOG_ALERT Priority
    pkg log/syslog (linux-386-cgo), const LOG_CRIT Priority
    pkg log/syslog (linux-386-cgo), const LOG_DEBUG Priority
    pkg log/syslog (linux-386-cgo), const LOG_EMERG Priority
    pkg log/syslog (linux-386-cgo), const LOG_ERR Priority
    pkg log/syslog (linux-386-cgo), const LOG_INFO Priority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  3. buildscripts/cross-compile.sh

    	## All binaries are static make sure to disable CGO.
    	export CGO_ENABLED=0
    
    	## List of architectures and OS to test coss compilation.
    	SUPPORTED_OSARCH="linux/ppc64le linux/mips64 linux/amd64 linux/arm64 linux/s390x darwin/arm64 darwin/amd64 freebsd/amd64 windows/amd64 linux/arm linux/386 netbsd/amd64 linux/mips openbsd/amd64"
    }
    
    function _build() {
    	local osarch=$1
    	IFS=/ read -r -a arr <<<"$osarch"
    	os="${arr[0]}"
    	arch="${arr[1]}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 19 01:08:22 UTC 2023
    - 958 bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            def supplier = new LinuxInstallationSupplier(OperatingSystem.LINUX, nonExistent)
    
            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
    
        def "supplies no installations for empty directory"() {
            given:
            def supplier = new LinuxInstallationSupplier(OperatingSystem.LINUX, emptyDir)
    
            when:
            def directories = supplier.get()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (linux && 386) || (linux && arm) || (linux && mips) || (linux && mipsle) || (linux && ppc)
    
    package unix
    
    func init() {
    	// On 32-bit Linux systems, the fcntl syscall that matches Go's
    	// Flock_t type is SYS_FCNTL64, not SYS_FCNTL.
    	fcntl64Syscall = SYS_FCNTL64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 436 bytes
    - Viewed (0)
  6. src/cmd/go/internal/imports/testdata/star/x1.go

    //go:build blahblh && linux && !linux && windows && darwin
    // +build blahblh,linux,!linux,windows,darwin
    
    package x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 134 bytes
    - Viewed (0)
  7. src/internal/platform/supported.go

    		}
    		return false
    
    	case "shared":
    		switch platform {
    		case "linux/386", "linux/amd64", "linux/arm", "linux/arm64", "linux/ppc64le", "linux/s390x":
    			return true
    		}
    		return false
    
    	case "plugin":
    		switch platform {
    		case "linux/amd64", "linux/arm", "linux/arm64", "linux/386", "linux/loong64", "linux/s390x", "linux/ppc64le",
    			"android/amd64", "android/386",
    			"darwin/amd64", "darwin/arm64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. docker-buildx.sh

    	-t "quay.io/minio/minio:${release}" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:${release}-cpuv1" \
    	-t "quay.io/minio/minio:${release}-cpuv1" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release.old_cpu .
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/race.bash

    set -e
    
    function usage {
    	echo 'race detector is only supported on linux/amd64, linux/ppc64le, linux/arm64, linux/s390x, freebsd/amd64, netbsd/amd64, openbsd/amd64, darwin/amd64, and darwin/arm64' 1>&2
    	exit 1
    }
    
    case $(uname -s -m) in
      "Darwin x86_64") ;;
      "Darwin arm64")  ;;
      "Linux x86_64")  ;;
      "Linux ppc64le") ;;
      "Linux aarch64") ;;
      "Linux s390x")   ;;
      "FreeBSD amd64") ;;
      "NetBSD amd64")  ;;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    -------- | -----------
    [kubernetes-node-linux-amd64.tar.gz](https://dl.k8s.io/v1.8.15/kubernetes-node-linux-amd64.tar.gz) | `aa3208c4a9df95d51ddb7bb335ba30b093ce8ca55967fe1d2b08fc7a7cb6611f`
    [kubernetes-node-linux-arm.tar.gz](https://dl.k8s.io/v1.8.15/kubernetes-node-linux-arm.tar.gz) | `86bc70973c4e64051073eb33374fa8be42373a17b86ee5681b59aab46a1c10bc`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top