- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 85 for March (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.bazelrc
# Add switch as an error on Linux. common:linux --copt="-Wswitch" common:linux --copt="-Werror=switch" # Linux ARM64 specific options common:linux_arm64 --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3" # On Windows, `__cplusplus` is wrongly defined without this switch # See https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/ common:windows --copt=/Zc:__cplusplus
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Fri Dec 26 23:20:26 GMT 2025 - 56.8K bytes - Click Count (0) -
src/cmd/asm/internal/arch/arch.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package arch defines architecture-specific information and support functions. package arch import ( "cmd/internal/obj" "cmd/internal/obj/arm" "cmd/internal/obj/arm64" "cmd/internal/obj/loong64" "cmd/internal/obj/mips" "cmd/internal/obj/ppc64" "cmd/internal/obj/riscv"
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Nov 13 12:17:37 GMT 2025 - 21.7K bytes - Click Count (0) -
.teamcity/jdks.yaml
jdks: - params: - "linux.java8.openjdk.64bit" - "linux.java8.oracle.64bit" os: "linux" arch: "amd64" vendor: "oracle" version: "8u401" sha256: "19684fccd7ff32a8400e952a643f0049449a772ef63b8037d5b917cbd137d173" - params: - "linux.java11.openjdk.64bit" os: "linux" arch: "amd64" vendor: "temurin" version: "jdk-11.0.29+7"Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Nov 10 14:02:00 GMT 2025 - 5.5K bytes - Click Count (1) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
fun javaHome( jvm: Jvm, os: Os, arch: Arch = Arch.AMD64, ) = "%${if (os == Os.ALPINE) "linux" else os.name.lowercase()}.${ jvm.version.name.lowercase().replace( "_", "", ) }.${jvm.vendor.name.lowercase()}.${arch.suffix}%" fun BuildType.paramsForBuildToolBuild( buildJvm: Jvm = BuildToolBuildJvm, os: Os, arch: Arch = Arch.AMD64, ) { params {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 15.6K bytes - Click Count (0) -
src/cmd/asm/internal/asm/asm.go
break } else if p.arch.Family == sys.MIPS || p.arch.Family == sys.MIPS64 { if arch.IsMIPSCMP(op) || arch.IsMIPSMUL(op) { prog.From = a[0] prog.Reg = p.getRegister(prog, op, &a[1]) break } } else if p.arch.Family == sys.Loong64 { if arch.IsLoong64RDTIME(op) { // The Loong64 RDTIME family of instructions is a bit special, // in that both its register operands are outputs prog.To = a[0]Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Oct 21 15:13:08 GMT 2025 - 26.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
val arch: Arch = os.defaultArch, val failStage: Boolean = true, ) { constructor( uuid: Int, testType: TestType, os: Os, testJvm: JvmCategory, expectedBucketNumber: Int = DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE, buildJvm: Jvm = BuildToolBuildJvm, arch: Arch = Arch.AMD64, failStage: Boolean = true,Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Nov 05 13:00:26 GMT 2025 - 27.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 3.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt
abstract class AdHocPerformanceScenario( os: Os, arch: Arch = Arch.AMD64, ) : BuildType({ val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}" name = "AdHoc Performance Scenario - ${os.asName()} ${arch.asName()}" id(id) applyPerformanceTestSettings(os = os, arch = arch, timeout = 420) setArtifactRules(INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES)
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 5.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt
import jetbrains.buildServer.configs.kotlin.buildSteps.script fun BuildType.applyPerformanceTestSettings( os: Os = Os.LINUX, arch: Arch = Arch.AMD64, timeout: Int = 30, ) { applyDefaultSettings(os = os, arch = arch, timeout = timeout) setArtifactRules( """ build/report-*-performance-tests.zip => . build/report-*-performance.zip => $HIDDEN_ARTIFACT_DESTINATION
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
gradleTasks: String, os: Os = Os.LINUX, arch: Arch = Arch.AMD64, extraParameters: String = "", maxParallelForks: String = "%maxParallelForks%", ) { killProcessStep(KILL_ALL_GRADLE_PROCESSES, os, arch, executionMode = ExecutionMode.RUN_ONLY_ON_FAILURE) cleanUpGitUntrackedFilesAndDirectories() gradleRunnerStep(model, gradleTasks, os, arch, extraParameters, maxParallelForks = maxParallelForks, isRetry = true)Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Nov 20 07:29:52 GMT 2025 - 8.6K bytes - Click Count (0)