- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for x86 (0.01 sec)
-
src/cmd/asm/internal/arch/arch.go
instructions["MOVDQ2Q"] = x86.AMOVQ instructions["MOVNTDQ"] = x86.AMOVNTO instructions["MOVOA"] = x86.AMOVO instructions["PSLLDQ"] = x86.APSLLO instructions["PSRLDQ"] = x86.APSRLO instructions["PADDD"] = x86.APADDL // Spellings originally used in CL 97235. instructions["MOVBELL"] = x86.AMOVBEL instructions["MOVBEQQ"] = x86.AMOVBEQ instructions["MOVBEWW"] = x86.AMOVBEW return &Arch{
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 24 12:32:56 UTC 2024 - 21.5K bytes - Viewed (0) -
src/main/assemblies/files/service.bat
goto x86 ) "%JAVA_HOME%\bin\java" -Xmx50M -version 2>&1 | "%windir%\System32\find" "64-Bit" >nul: if errorlevel 1 goto x86 set EXECUTABLE=%FESS_HOME%\bin\fess-service-x64.exe set SERVICE_ID=fess-service-x64 set ARCH=64-bit goto checkExe :x86 set EXECUTABLE=%FESS_HOME%\bin\fess-service-x86.exe set SERVICE_ID=fess-service-x86 set ARCH=32-bit :checkExe
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 6K bytes - Viewed (0) -
android-test/README.md
1. Add an Emulator named `pixel5`, if you don't already have one ``` $ sdkmanager --install "system-images;android-29;google_apis;x86" $ echo "no" | avdmanager --verbose create avd --force --name "pixel5" --device "pixel" --package "system-images;android-29;google_apis;x86" --tag "google_apis" --abi "x86" ``` 2. Run an Emulator using Android Studio or from command line. ``` $ emulator -no-window -no-snapshot-load @pixel5 ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Feb 14 08:26:50 UTC 2023 - 2.5K bytes - Viewed (0) -
.bazelrc
build:android_arm64 --config=android build:android_arm64 --cpu=arm64-v8a build:android_arm64 --fat_apk_cpu=arm64-v8a build:android_x86 --config=android build:android_x86 --cpu=x86 build:android_x86 --fat_apk_cpu=x86 build:android_x86_64 --config=android build:android_x86_64 --cpu=x86_64 build:android_x86_64 --fat_apk_cpu=x86_64 # Build everything statically for Android since all static libs are later
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
.github/workflows/build.yml
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Aug 17 10:05:29 UTC 2024 - 17.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java
new HashFn() { @Override public byte[] hash(byte[] input, int seed) { return murmur3_32(seed).hashBytes(input).asBytes(); } }; // Murmur3A, MurmurHash3 for x86, 32-bit (MurmurHash3_x86_32) // https://github.com/aappleby/smhasher/blob/master/src/main.cpp HashTestUtils.verifyHashFunction(hf, 32, 0xB0F57EE3); } public void testParanoid() { HashFn hf =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:29:46 UTC 2024 - 8.3K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
RUN C:\TEMP\vs_community.exe \ --quiet --wait --norestart --nocache \ --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 \ --add Microsoft.VisualStudio.Workload.NativeDesktop \ --add Microsoft.VisualStudio.Component.VC.14.39.17.9.x86.64 \ --add Microsoft.VisualStudio.Component.Windows11SDK.22621 \ || IF "%ERRORLEVEL%"=="3010" EXIT 0
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Aug 20 13:57:04 UTC 2024 - 7.3K bytes - Viewed (0) -
okcurl/build.gradle.kts
// see https://github.com/palantir/gradle-graal // see https://www.graalvm.org/docs/reference-manual/native-image/#prerequisites windowsVsVarsPath("C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat") } } mavenPublishing { configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.8K bytes - Viewed (0) -
ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh
case "${VERSION}" in devtoolset-7) mv "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}" \ "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}.backup" echo -e "OUTPUT_FORMAT(elf64-x86-64)\nINPUT ( libstdc++.so.6.0.13 -lstdc++_nonshared44 )" \ > "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}" cp "./x86_64-pc-linux-gnu/libstdc++-v3/src/.libs/libstdc++_nonshared44.a" \ "/${TARGET}/usr/lib" ;;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Sep 24 20:45:58 UTC 2024 - 8K bytes - Viewed (0) -
ci/official/utilities/setup_macos.sh
export TEST_TMPDIR="${TFCI_MACOS_BAZEL_TEST_DIR_PATH}" fi # "TFCI_MACOS_INSTALL_BAZELISK_ENABLE" is used to decide if we need to install # Bazelisk manually. We enable this for macOS x86 builds as those VMs do not # have Bazelisk pre-installed. "TFCI_MACOS_INSTALL_BAZELISK_URL" contains the # link to the Bazelisk binary which needs to be downloaded. if [[ "${TFCI_MACOS_INSTALL_BAZELISK_ENABLE}" == 1 ]]; then
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0)