Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 365 for i386 (0.04 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        platforms {
            i386 { architecture 'i386' }
            amd64 { architecture 'amd64' }
        }
        flavors {
            free
            paid
        }
        components {
            someLib(NativeLibrarySpec) {
                targetPlatform "i386"
                targetPlatform "amd64"
            }
        }
    }
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/MultipleNativeToolChainIntegrationTest.groovy

            Assume.assumeNotNull(x86ToolChain?.buildScriptConfig, sparcToolChain?.buildScriptConfig)
    
            when:
            buildFile << """
    model {
        platforms {
            i386 {
                architecture "i386"
            }
            sparc {
                architecture "sparc"
            }
        }
        toolChains {
            ${x86ToolChain.buildScriptConfig}
            ${sparcToolChain.buildScriptConfig}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

        // Tests will only work on x86 and x86-64 architectures
        def currentArch() {
            // On windows we currently target i386 by default, even on amd64
            if (OperatingSystem.current().windows || Native.get(SystemInfo).architecture == SystemInfo.Architecture.i386) {
                return [name: "x86", altName: "i386"]
            }
            return [name: "x86-64", altName: "amd64"]
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultNativePlatformTest.groovy

            when:
            platform.architecture "x86"
    
            then:
            platform.architecture.name == "x86"
            platform.architecture.i386
    
            when:
            platform.architecture "i386"
    
            then:
            platform.architecture.name == "x86"
            platform.architecture.i386
        }
    
        def "can configure operating system"() {
            when:
            platform.operatingSystem "the-os"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultArchitectureTest.groovy

            def arch = new DefaultArchitecture(name)
    
            expect:
            arch.name == name
            arch.i386 == i386
            arch.amd64 == amd64
            arch.ia64 == ia64
            arch.arm == arm || arm64
            arch.arm32 == arm
            arch.arm64 == arm64
    
            where:
            name        | i386  | amd64 | ia64  | arm   | arm64
            "x86"       | true  | false | false | false | false
    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/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

            }
        }
        platforms {
            arm {
                architecture "arm"
            }
            i386 {
                architecture "i386"
            }
            sparc {
                architecture "sparc"
            }
        }
        components {
            all {
                targetPlatform "arm"
                targetPlatform "i386"
                targetPlatform "sparc"
            }
        }
    }
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

        1.7.0-ea-b223-ea-b223-ea-b223, i386:\t"Java SE 7 Developer Preview"\t/Library/Java/JavaVirtualMachines/JDK 1.7.0 Developer Preview.jdk/Contents/Home
        1.7.0, x86_64:\t"OpenJDK 7"\t/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home
        1.7.0, i386:\t"OpenJDK 7"\t/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            expect:
            unix.nativePrefix == prefix
    
            where:
            [arch, prefix] << [['i386', 'unknown-i386'], ['x86', 'unknown-i386']]
        }
    
        def "macOS uses same prefix for all architectures"() {
            def osx = new OperatingSystem.MacOs()
    
            expect:
            osx.nativePrefix == 'darwin'
        }
    
        def "macOS transforms shared library names"() {
            def os = new OperatingSystem.MacOs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            "32-bit" | SystemInfo.Architecture.i386  | "amd64"        | false          | LEGACY_AMD64_ON_X86
            "64-bit" | SystemInfo.Architecture.amd64 | "amd64"        | true           | LEGACY_AMD64_ON_AMD64
            "64-bit" | SystemInfo.Architecture.amd64 | "amd64"        | false          | LEGACY_AMD64_ON_X86
    
            "32-bit" | SystemInfo.Architecture.i386  | "x86"          | false          | LEGACY_X86_ON_X86
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  10. src/internal/goarch/goarch_386.go

    // 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.
    
    package goarch
    
    const (
    	_ArchFamily          = I386
    	_DefaultPhysPageSize = 4096
    	_PCQuantum           = 1
    	_MinFrameSize        = 0
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 328 bytes
    - Viewed (0)
Back to top