- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 92 for Arch (0.03 sec)
-
src/cmd/asm/internal/arch/loong64.go
// license that can be found in the LICENSE file. // This file encapsulates some of the odd characteristics of the // Loong64 (LoongArch64) instruction set, to minimize its interaction // with the core of the assembler. package arch import ( "cmd/internal/obj" "cmd/internal/obj/loong64" ) func jumpLoong64(word string) bool { switch word {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 29 02:47:00 UTC 2024 - 1.8K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm.go
// license that can be found in the LICENSE file. // This file encapsulates some of the odd characteristics of the ARM // instruction set, to minimize its interaction with the core of the // assembler. package arch import ( "strings" "cmd/internal/obj" "cmd/internal/obj/arm" ) var armLS = map[string]uint8{ "U": arm.C_UBIT, "S": arm.C_SBIT, "W": arm.C_WBIT, "P": arm.C_PBIT,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 6.1K bytes - Viewed (0) -
common/scripts/setup_env.sh
TARGET_OUT_LINUX=${CONTAINER_TARGET_OUT_LINUX} REPO_ROOT=/work LOCAL_OUT="${TARGET_OUT_LINUX}" else LOCAL_OUT="${TARGET_OUT}" fi go_os_arch=${LOCAL_OUT##*/} # Golang OS/Arch format LOCAL_GO_OS=${go_os_arch%_*} LOCAL_GO_ARCH=${go_os_arch##*_} BUILD_WITH_CONTAINER=0 VARS=( CONTAINER_TARGET_OUT CONTAINER_TARGET_OUT_LINUX TARGET_OUT
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 06 04:52:54 UTC 2024 - 8.3K bytes - Viewed (0) -
src/cmd/asm/internal/arch/ppc64.go
// license that can be found in the LICENSE file. // This file encapsulates some of the odd characteristics of the // 64-bit PowerPC (PPC64) instruction set, to minimize its interaction // with the core of the assembler. package arch import ( "cmd/internal/obj" "cmd/internal/obj/ppc64" ) func jumpPPC64(word string) bool { switch word {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri May 17 21:53:50 UTC 2024 - 2.2K bytes - Viewed (0) -
src/bootstrap.bash
# # See also golang.org/x/build/cmd/genbootstrap, which is used # to generate bootstrap tgz files for builders. set -e if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash [-force]" >&2 exit 2 fi forceflag="" if [ "$1" = "-force" ]; then forceflag=-force shift fi targ="../../go-${GOOS}-${GOARCH}-bootstrap" if [ -e $targ ]; then
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jan 20 17:52:26 UTC 2023 - 2.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/toolchains.xml
| Based on the toolchain-configuration in the pom.xml Maven will search for | matching <provides/> configuration. You can decide for yourself which key-value | pairs to use. Often used keys are 'version', 'vendor' and 'arch'. By default | the version has a special meaning. If you configured in the pom.xml '1.5' | Maven will search for 1.5 and above. | | * configuration: Additional configuration for this tool.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 3.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/DocsTest.kt
applyTestDefaults( model, this, "docs:docsTest${if (testSplitType == EXCLUDE) " docs:checkSamples" else ""}", os = os, arch = os.defaultArch, timeout = 60, extraParameters = buildScanTagParam(docsTestType.docsTestName) + " -PenableConfigurationCacheForDocsTests=${docsTestType.ccEnabled}" +
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 07:23:49 UTC 2024 - 4.7K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt
"CODEQL_ACTION_RUN_MODE", "CODEQL_ACTION_VERSION", "CODEQL_DIST", "CODEQL_PLATFORM", "CODEQL_RUNNER" ) private val architecture = System.getProperty("os.arch").toLowerCase() val isCiServer = CI_ENVIRONMENT_VARIABLE in System.getenv() val isGhActions = "GITHUB_ACTIONS" in System.getenv() val isTeamCity = "TEAMCITY_VERSION" in System.getenv()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 4.9K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/00-bug.yml
GOWORK="" CGO_CFLAGS="-O2 -g" CGO_CPPFLAGS="" CGO_CXXFLAGS="-O2 -g" CGO_FFLAGS="-O2 -g" CGO_LDFLAGS="-O2 -g" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/44/nbbyll_10jd0z8rj_qxm43740000gn/T/go-build2331607515=/tmp/go-build -gno-record-gcc-switches -fno-common" render: shell
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 3.3K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh
devtoolset-9) LIBSTDCXX_VERSION="6.0.28" LIBSTDCXX_ABI="new" ;; devtoolset-10) LIBSTDCXX_VERSION="6.0.28" LIBSTDCXX_ABI="new" ;; *) echo "Usage: $0 {devtoolset-9|devtoolset-10} <target-directory> <arch>" echo "Use 'devtoolset-9' to build a manylinux2014 compatible toolchain" exit 1 ;; esac mkdir -p "${TARGET}" mkdir -p ${TARGET}/usr/include # Put the current kernel headers from ubuntu in place.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Sep 29 00:26:34 UTC 2023 - 6.1K bytes - Viewed (0)