Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,146 for linux64 (0.14 sec)

  1. testing/performance/src/templates/native-monolithic/common.gradle

                operatingSystem "osx"
            }
            macosx64 {
                architecture "x64"
                operatingSystem "osx"
            }
    
            linux64 {
                architecture "x64"
                operatingSystem "linux"
            }
        }
        binaries {
            all {
                cCompiler.define "SOMETHING1=0"
                cCompiler.define "SOMETHING2=0"
                cCompiler.define "SOMETHING3=0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryTest.groovy

            jansiLibrary.resourcePath ==  "/META-INF/native/" + jansiLibrary.path
    
            where:
            platform << ['linux32', 'linux64']
        }
    
        def "jansi library can be created for Windows platform #platform"() {
            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
            1 * resolver.operatingSystem >> JansiOperatingSystemSupport.WINDOWS.identifier
            1 * resolver.platform >> platform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
                withoutDefaultVariants()
                withVariant("linux64") {
                    attribute(Usage.USAGE_ATTRIBUTE.name, "linux64")
                    attribute(Category.CATEGORY_ATTRIBUTE.name, Category.LIBRARY)
                    useDefaultArtifacts = false
                    artifact("foo.klib", "foo-linux64-1.0.klib")
                }
            }.withModuleMetadata().publish()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultTargetMachineFactoryTest.groovy

            def windows1 = factory.windows
            def windows2 = factory.windows
            def linux1 = factory.linux.x86_64
            def linux2 = factory.linux.x86_64
    
            expect:
            def targetMachines = [windows1, windows2, linux1, linux2] as Set
            targetMachines.size() == 2
            targetMachines == [windows1, linux1] as Set
        }
    
        def "same target machine are equals"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/linux/platform-linux.c

    #include "platform.h"
    
    const char* platform_name = "Linux";
    
    int max_path_length() { return -1; }
    
    unsigned long long max_memory() { return TB(128); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 186 bytes
    - Viewed (0)
  6. src/runtime/vdso_linux_s390x.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && s390x
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/s390x/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.29", 0x75fcbb9}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 659 bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

    TARGET_OUT="${TARGET_OUT:-$(pwd)/out/${TARGET_OS}_${TARGET_ARCH}}"
    TARGET_OUT_LINUX="${TARGET_OUT_LINUX:-$(pwd)/out/linux_${TARGET_ARCH}}"
    
    CONTAINER_TARGET_OUT="${CONTAINER_TARGET_OUT:-/work/out/${TARGET_OS}_${TARGET_ARCH}}"
    CONTAINER_TARGET_OUT_LINUX="${CONTAINER_TARGET_OUT_LINUX:-/work/out/linux_${TARGET_ARCH}}"
    
    IMG="${IMG:-${TOOLS_REGISTRY_PROVIDER}/${PROJECT_ID}/${IMAGE_NAME}:${IMAGE_VERSION}}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/env_write.txt

    env GOARCH=
    # check -w doesn't allow invalid GOOS
    ! go env -w GOOS=linuxx
    stderr 'unsupported GOOS/GOARCH pair linuxx'
    # check -w doesn't allow invalid GOARCH
    ! go env -w GOARCH=amd644
    stderr 'unsupported GOOS/GOARCH.*/amd644$'
    # check -w doesn't allow invalid GOOS with valid GOARCH
    ! go env -w GOOS=linuxx GOARCH=amd64
    stderr 'unsupported GOOS/GOARCH pair linuxx'
    # check a valid GOOS and GOARCH values but an incompatible combinations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    The XCTest Plugin provides the tasks, configurations and conventions for integrating with a https://developer.apple.com/documentation/xctest[XCTest testing framework on macOS] as well as https://github.com/apple/swift-corelibs-xctest[Linux's open source implementation].
    
    [[sec:xctest_usage]]
    == Usage
    
    .Applying the XCTest Plugin
    ====
    include::sample[dir="snippets/swift/swiftXCTest/kotlin",files="build.gradle.kts[tags=apply-plugin]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. src/runtime/os_freebsd.go

    	if ret >= 0 {
    		return uintptr(out)
    	}
    	return 0
    }
    
    // FreeBSD's umtx_op syscall is effectively the same as Linux's futex, and
    // thus the code is largely similar. See Linux implementation
    // and lock_futex.go for comments.
    
    //go:nosplit
    func futexsleep(addr *uint32, val uint32, ns int64) {
    	systemstack(func() {
    		futexsleep1(addr, val, ns)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top