- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 179 for listafp (0.03 sec)
-
.teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt
os: Os = Os.LINUX, arch: Arch = Arch.AMD64, testJavaVersion: String = os.perfTestJavaVersion.major.toString(), testJavaVendor: String = os.perfTestJavaVendor.name.lowercase(), ) = listOf( "$task${if (extraParameters.isEmpty()) "" else " $extraParameters"}", "-PperformanceBaselines=$baselines", "-PtestJavaVersion=$testJavaVersion", "-PtestJavaVendor=$testJavaVendor",
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 25 20:21:47 UTC 2025 - 4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
val arch = if (os == Os.MACOS) Arch.AARCH64 else Arch.AMD64 if (os == Os.WINDOWS) { listOf("jprofiler") } else { listOf("async-profiler", "async-profiler-heap") }.map { FlameGraphGenerationBuildSpec(scenario, os, arch, it) } } }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 3.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
failureMessage = "This build might be leaking credentials" reverse = false stopBuildOnFailure = true } } } if (os !in listOf(Os.WINDOWS, Os.MACOS)) { steps { exec { name = "EC2_BUILD_CUSTOMIZATIONS" executionMode = BuildStep.ExecutionMode.ALWAYS
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
docs/es/docs/tutorial/cors.md
Para lograr esto, el backend `:80` debe tener una lista de "orígenes permitidos". En este caso, la lista tendría que incluir `http://localhost:8080` para que el frontend `:8080` funcione correctamente. ## Comodines También es posible declarar la lista como `"*"` (un "comodín") para decir que todos están permitidos.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 5.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/idn/IdnaMappingTableTest.kt
// Less than 16,384 chars, because we index on a 14-bit index in the ranges table. assertThat(compactTable.mappings.length).isLessThan(1 shl 14) // Confirm the data strings are ASCII. for (dataString in listOf<String>(compactTable.sections, compactTable.ranges)) { for (codePoint in dataString.codePoints()) { assertThat(codePoint and 0x7f).isEqualTo(codePoint) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 8.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/BuildScanUtils.kt
.map { it.uuid } fun Stage.getBuildScanCustomValueParam(testCoverage: TestCoverage? = null): String { val customValues = if (testCoverage != null) { listOf(testCoverage.asBuildScanCustomValue()) + getBuildScanCustomValues() } else { getBuildScanCustomValues() } return "-DbuildScan.PartOf=${customValues.joinToString(",")}"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 10 05:45:46 UTC 2025 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt
import com.fasterxml.jackson.databind.ObjectMapper import com.fasterxml.jackson.module.kotlin.readValue import com.fasterxml.jackson.module.kotlin.registerKotlinModule import java.io.File val ignoredSubprojects = listOf( "soak", // soak test "distributions-integ-tests", // build distribution testing "architecture-test", // sanity check ) interface GradleSubprojectProvider {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/resources/fess_label_it.properties
labels.joblog_delete_all_cancel=Annulla labels.dict_configuration=Lista dizionari labels.dict_list_title=Lista dizionari labels.dict_list_link=Dizionario labels.dictionary_name=Nome labels.dictionary_type=Tipo labels.dict_synonym_configuration=Lista sinonimi labels.dict_synonym_title=Lista sinonimi labels.dict_synonym_list_link=Lista labels.dict_synonym_link_create=Crea nuovo labels.dict_synonym_link_edit=Modifica
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0) -
okhttp/build.gradle.kts
tasks.withType<KotlinCompile> { compilerOptions { freeCompilerArgs = listOf("-module-name=okhttp") } } apply(plugin = "io.github.usefulness.maven-sympathy") mavenPublishing { configure(KotlinMultiplatform(javadocJar = JavadocJar.Empty(), androidVariantsToPublish = listOf("release")))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 03:59:03 UTC 2025 - 9.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt
val parallelizationMethod: ParallelizationMethod, ) : BuildTypeBucket { constructor( subproject: GradleSubproject, parallelizationMethod: ParallelizationMethod, ) : this(listOf(subproject), parallelizationMethod) val name = truncateName(subprojects.joinToString(",")) private fun truncateName(str: String) = // Can't exceed Linux file name limit 255 char on TeamCity
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 3.4K bytes - Viewed (0)