Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for i686 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/loadelf/ldelf.go

    		AMD64 | uint32(elf.R_X86_64_GOTPCRELX)<<16,
    		AMD64 | uint32(elf.R_X86_64_REX_GOTPCRELX)<<16,
    		I386 | uint32(elf.R_386_32)<<16,
    		I386 | uint32(elf.R_386_PC32)<<16,
    		I386 | uint32(elf.R_386_GOT32)<<16,
    		I386 | uint32(elf.R_386_PLT32)<<16,
    		I386 | uint32(elf.R_386_GOTOFF)<<16,
    		I386 | uint32(elf.R_386_GOTPC)<<16,
    		I386 | uint32(elf.R_386_GOT32X)<<16,
    		PPC64 | uint32(elf.R_PPC64_REL24)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. 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)
Back to top