Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for I386 (0.08 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'assembler'
    // end::apply-plugin[]
        id 'c'
    // tag::apply-plugin[]
    }
    // end::apply-plugin[]
    
    model {
        platforms {
            x86 {
                architecture "i386"
            }
        }
    }
    
    // tag::assembler-args[]
    model {
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

            testApp.plugins.each { plugin ->
                buildFile << "apply plugin: '$plugin'\n"
            }
    
            buildFile << """
    model {
        platforms {
            x86 {
                architecture "i386"
            }
        }
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
                    linker.args "-v"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/assembler/AssemblerSourceSet.java

     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
     *             sources {
     *                 asm {
     *                     source {
     *                         srcDirs "src/main/i386", "src/shared/asm"
     *                         include "**{@literal /}*.s"
     *                     }
     *                 }
     *             }
     *         }
     *     }
     * }
     * </pre>
     */
    @Incubating @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top