Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for I386 (0.05 sec)

  1. 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)
  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/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)
  4. 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)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

        }
    
        private ArchitectureInternal determineArchitecture(Map<String, String> defines) {
            boolean i386 = defines.containsKey("__i386__");
            boolean amd64 = defines.containsKey("__amd64__");
            final ArchitectureInternal architecture;
            if (i386) {
                architecture = Architectures.forInput("i386");
            } else if (amd64) {
                architecture = Architectures.forInput("amd64");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    			} else if ctxt.Arch.Family == sys.I386 {
    				// On 386 PC-relative addressing (for non-call/jmp instructions)
    				// assumes that the previous instruction loaded the PC of the end
    				// of that instruction into CX, so the adjustment is relative to
    				// that.
    				r.Add += int64(r.Off) - p.Pc + int64(r.Siz)
    			}
    		}
    		if r.Type == objabi.R_GOTPCREL && ctxt.Arch.Family == sys.I386 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/syscall/route_bsd.go

    	} else if netbsd32Bit {
    		// NetBSD 6 and beyond kernels require 64-bit aligned
    		// access to routing facilities.
    		salign = 8
    	} else if runtime.GOOS == "freebsd" {
    		// In the case of kern.supported_archs="amd64 i386",
    		// we need to know the underlying kernel's
    		// architecture because the alignment for routing
    		// facilities are set at the build time of the kernel.
    		if freebsdConfArch == "amd64" {
    			salign = 8
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    				return
    			}
    
    		case sys.ARM64:
    			if !arch.ARM64Suffix(prog, cond) {
    				p.errorf("unrecognized suffix .%q", cond)
    				return
    			}
    
    		case sys.AMD64, sys.I386:
    			if err := x86.ParseSuffix(prog, cond); err != nil {
    				p.errorf("%v", err)
    				return
    			}
    		case sys.RISCV64:
    			if err := riscv.ParseSuffix(prog, cond); err != nil {
    				p.errorf("unrecognized suffix .%q", cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/parse.go

    		} else {
    			items = make([]lex.Token, 0, 3)
    		}
    		for {
    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    					str := p.lex.Text()
    					if tok != scanner.Ident {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    		d.AddUint32(target.Arch, uint32(len(ldr.Data(s))))
    
    		/* type */
    		var t uint8
    
    		// TODO(mwhudson): presumably the behavior should actually be the same on both arm and 386.
    		if target.Arch.Family == sys.I386 && cgoexp && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else if target.Arch.Family == sys.ARM && cgoeDynamic && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top