Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 318 for i386 (0.04 sec)

  1. src/cmd/link/internal/ld/target.go

    			return true
    		}
    		return t.linkShared || (t.HeadType == objabi.Haix && t.LinkMode == LinkExternal)
    	}
    }
    
    //
    // Processor functions
    //
    
    func (t *Target) Is386() bool {
    	return t.Arch.Family == sys.I386
    }
    
    func (t *Target) IsARM() bool {
    	return t.Arch.Family == sys.ARM
    }
    
    func (t *Target) IsARM64() bool {
    	return t.Arch.Family == sys.ARM64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

            app.writeSources(file("src/main"))
            buildFile << """
        apply plugin: 'cpp'
        apply plugin: 'visual-studio'
    
        model {
            platforms {
                win32 {
                    architecture "i386"
                }
            }
            buildTypes {
                debug
                release
            }
            components {
                main(NativeExecutableSpec)
            }
        }
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

                model {
                    components {
                        main(NativeExecutableSpec)
                    }
                    platforms {
                        win32 {
                            architecture "i386"
                        }
                        x64 {
                            architecture "amd64"
                        }
                    }
                    buildTypes {
                        debug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/packaging/deb/init.d/fess

    # Look for the right JVM to use
    for jdir in $JDK_DIRS; do
        if [ -r "$jdir/bin/java" -a -z "${JAVA_HOME}" ]; then
            JAVA_HOME="$jdir"
        fi
    done
    export JAVA_HOME
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadpe/ldpe.go

    			rOff := int32(r.VirtualAddress)
    			var rAdd int64
    			var rType objabi.RelocType
    			switch arch.Family {
    			default:
    				return nil, fmt.Errorf("%s: unsupported arch %v", pn, arch.Family)
    			case sys.I386, sys.AMD64:
    				switch r.Type {
    				default:
    					return nil, fmt.Errorf("%s: %v: unknown relocation type %v", pn, state.sectsyms[rsect], r.Type)
    
    				case IMAGE_REL_I386_REL32, IMAGE_REL_AMD64_REL32,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                    .add('productType', getProductType())
                    .toString()
            }
    
            void assertSupportedArchitectures(String... architectures) {
                def toXcodeArchitecture = [x86: 'i386', 'x86-64': 'x86_64', aarch64: 'arm64e'].withDefault { it }
                String expectedValidArchitectures = architectures.collect { toXcodeArchitecture.get(it) }.join(" ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.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. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp'
                apply plugin: 'visual-studio'
    
                model {
                    platforms {
                        win32 {
                            architecture "i386"
                        }
                        x64 {
                            architecture "amd64"
                        }
                    }
                    buildTypes {
                        debug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/cshared_test.go

    				base, name := filepath.Split(args[0])
    				args[0] = filepath.Join(base, "llvm-dlltool")
    				var machine string
    				switch prefix, _, _ := strings.Cut(name, "-"); prefix {
    				case "i686":
    					machine = "i386"
    				case "x86_64":
    					machine = "i386:x86-64"
    				case "armv7":
    					machine = "arm"
    				case "aarch64":
    					machine = "arm64"
    				}
    				if len(machine) > 0 {
    					args = append(args, "-m", machine)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            }
            return result;
        }
    
        private static String toXcodeArchitecture(String architectureName) {
            if (architectureName.equals(MachineArchitecture.X86)) {
                return "i386";
            } else if (architectureName.equals(MachineArchitecture.X86_64)) {
                return "x86_64";
            } else if (architectureName.equals(MachineArchitecture.ARM64)) {
                return "arm64e";
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top