Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for i686 (2.48 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/Architecture.java

     * Constants for various processor architectures Gradle runs on.
     *
     * @since 7.6
     */
    @Incubating
    public enum Architecture {
        /**
         * 32-bit complex instruction set computer (CISC) architectures, including "x32", "i386", "x86"..
         */
        X86,
    
        /**
         * 64-bit variant of the X86 instruction set, including "x64", "x86_64", "amd64", "ia64".
         */
        X86_64,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/sym/reloc.go

    		switch arch.Family {
    		case sys.AMD64:
    			return elf.R_X86_64(nr).String()
    		case sys.ARM:
    			return elf.R_ARM(nr).String()
    		case sys.ARM64:
    			return elf.R_AARCH64(nr).String()
    		case sys.I386:
    			return elf.R_386(nr).String()
    		case sys.Loong64:
    			return elf.R_LARCH(nr).String()
    		case sys.MIPS, sys.MIPS64:
    			return elf.R_MIPS(nr).String()
    		case sys.PPC64:
    			return elf.R_PPC64(nr).String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 15:33:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

     * a specific {@link Architecture} and/or {@link OperatingSystem} to target.
     *
     * <pre>
     *     model {
     *         platforms {
     *             windows_x86 {
     *                 architecture "i386"
     *                 operatingSystem "windows"
     *             }
     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface NativePlatform extends Platform, Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top