Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for i686 (0.08 sec)

  1. android/guava-tests/test/com/google/common/net/HostAndPortTest.java

        checkFromStringCase("[]bad", 1, null, 99, false);
      }
    
      public void testFromStringParseableNonsense() {
        // Examples of nonsense that gets through.
        checkFromStringCase("[[:]]", 86, "[:]", 86, false);
        checkFromStringCase("x:y:z", 87, "x:y:z", 87, false);
        checkFromStringCase("", 88, "", 88, false);
        checkFromStringCase(":", 99, "", 99, false);
        checkFromStringCase(":123", -1, "", 123, true);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 11:19:47 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES-GCM

    00000010  c4 a5 a1 21 94 7a 23 bc  05 44 7d 4a 2f 16 dc 95  |...!.z#..D}J/...|
    00000020  25 6e 17 15 03 03 00 1a  00 00 00 00 00 00 00 02  |%n..............|
    00000030  77 fa b6 34 7e 60 77 f9  a5 09 d1 39 b0 1e 66 86  |w..4~`w....9..f.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    00000290  77 a1 4b 2f 8f c5 72 41  dc ab f9 b7 f3 72 28 f4  |w.K/..rA.....r(.|
    000002a0  cb 08 07 0a 20 7c 8b 26  70 92 7b 7b b9 99 61 0a  |.... |.&p.{{..a.|
    000002b0  63 17 e2 96 86 0a 6a 56  a1 90 1f 5e 50 bb 7f 72  |c.....jV...^P..r|
    000002c0  73 58 f4 25 c8 18 ec a5  b1 86 cd 96 77 57 91 67  |sX.%........wW.g|
    000002d0  76 e1 7a bf 1b 40 62 a0  58 d7 e8 2c 4c 86 7b ed  |v.z..@b.X..,L.{.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            given:
            WindowsRegistry windowsRegistryLocal = Stub(WindowsRegistry)
            SystemInfo systemInfoLocal = Stub(SystemInfo) {
                getArchitecture() >> SystemInfo.Architecture.i386
            }
            WindowsComponentLocator<WindowsKitSdkInstall> windowsSdkLocatorLocal = new WindowsKitWindowsSdkLocator(windowsRegistryLocal, systemInfoLocal)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top