Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 351 for I386 (0.05 sec)

  1. 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)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            public String getNativePrefix() {
                return nativePrefix;
            }
    
            private String resolveNativePrefix() {
                String arch = System.getProperty("os.arch");
                if ("i386".equals(arch)) {
                    arch = "x86";
                }
                return "win32-" + arch;
            }
    
            @Override
            public String getPathVar() {
                return "Path";
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                    'net/',
                    'net/rubygrapefruit/',
                    'net/rubygrapefruit/platform/',
                    'net/rubygrapefruit/platform/osx-i386/',
                    'net/rubygrapefruit/platform/osx-i386/libnative-platform.dylib',
                    'org/gradle/reporting/',
                    'org/gradle/reporting/report.js',
                    'org/joda/',
                    'org/joda/time/',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ArchitecturesTest.groovy

    
    class ArchitecturesTest extends Specification {
        def "test 32-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isI386()
            where:
            architecture << [ "x86", "i386", "ia-32", "i686" ]
        }
    
        def "test 64-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isAmd64()
            where:
            architecture << [ "x86-64", "x86_64", "amd64", "x64" ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     *
     * <table>
     *     <tr>
     *         <th>Instruction Set</th>
     *         <th>32-bit names</th>
     *         <th>64-bit names</th>
     *     </tr>
     *     <tr>
     *         <td>Intel x86</td>
     *         <td>"x86", "i386", "ia-32", "i686"</td>
     *         <td>"x86_64", "amd64", "x64", "x86-64"</td>
     *     </tr>
     *     <tr>
     *         <td>Intel Itanium</td>
     *         <td>N/A</td>
     *         <td>"ia-64", "ia64"</td>
     *     </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/dist/main.go

    		// native (widest) instruction set on the running kernel:
    		out := run("", CheckExit, "isainfo", "-n")
    		if strings.Contains(out, "amd64") {
    			gohostarch = "amd64"
    		}
    		if strings.Contains(out, "i386") {
    			gohostarch = "386"
    		}
    	case "windows":
    		exe = ".exe"
    	}
    
    	sysinit()
    
    	if gohostarch == "" {
    		// Default Unix system.
    		out := run("", CheckExit, "uname", "-m")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/internal/sys/arch.go

    func (a *Arch) InFamily(xs ...ArchFamily) bool {
    	for _, x := range xs {
    		if a.Family == x {
    			return true
    		}
    	}
    	return false
    }
    
    var Arch386 = &Arch{
    	Name:           "386",
    	Family:         I386,
    	ByteOrder:      binary.LittleEndian,
    	PtrSize:        4,
    	RegSize:        4,
    	MinLC:          1,
    	Alignment:      1,
    	CanMergeLoads:  true,
    	HasLR:          false,
    	FixedFrameSize: 0,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top