- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 72 for basename (0.06 sec)
-
.teamcity/src/main/kotlin/configurations/DocsTest.kt
return "${model.projectId}_DocsTest_${os.asName()}" } class DocsTestProject( model: CIBuildModel, stage: Stage, val os: Os, testJava: JvmCategory, testTypes: List<DocsTestType> ) : Project({ id(asDocsTestId(model, os)) name = "Docs Test - ${testJava.version.name.toCapitalized()} ${os.asName()}" }) { val docsTests: List<BaseGradleBuildType> init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 07:23:49 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
this.maxDataCount = batchSize; this.maxSetupCount = 0; } @Override public void reset ( int rk, String lastName ) { super.reset(); this.resumeKey = rk; this.filename = lastName; this.flags2 = 0; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = getSubCommand();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
val sameName = ktCtor.containingClassOrObject?.fqName?.asString() == classFqName val sameParamCount = ktCtor.valueParameters.size == ctorParamTypes.size val sameParamTypes = sameParamCount && ctorParamTypes.mapIndexed { idx, paramType -> paramType.endsWith(ktCtor.valueParameters[idx].typeReference!!.text) }.all { it } sameName && sameParamCount && sameParamTypes }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 04 08:05:22 UTC 2024 - 11.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
} return FunctionalTest( model, testCoverage.getBucketUuid(model, bucketIndex), "${testCoverage.asName()} ($startInclusive <= gradle <$endExclusive)", "${testCoverage.asName()} for gradle ($startInclusive <= gradle <$endExclusive)", testCoverage, stage, parallelizationMethod, emptyList(),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 09:50:29 UTC 2024 - 9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/FunctionalTestProject.kt
functionalTestBucketProvider: FunctionalTestBucketProvider, val testCoverage: TestCoverage, val stage: Stage ) : Project({ this.id(testCoverage.asId(model)) this.name = testCoverage.asName() }) { val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage) init { functionalTests.forEach(this::buildType) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 29 11:04:48 UTC 2024 - 862 bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt
if (plan is FailedPlan) return plan.result // Connect TCP asynchronously. tcpConnectsInFlight += plan val taskName = "$okHttpName connect ${routePlanner.address.url.redact()}" taskRunner.newQueue().schedule( object : Task(taskName) { override fun runOnce(): Long { val connectResult = try { plan.connectTcp()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/BuildScanUtils.kt
fun TestCoverage.asBuildScanCustomValue() = "${testType.name.toCapitalized()}${testJvmVersion.name.toCapitalized()}${vendor.displayName}${os.asName()}${arch.asName()}" // Generates a build scan custom value "PartOf=X,Y,Z" // where X, Y, Z are all the stages including current stage
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 1.8K bytes - Viewed (0) -
tests/test_schema_extra_examples.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 24 20:26:06 UTC 2023 - 37.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
generateTriggers: Boolean = true, ) : BaseGradleBuildType(init = { id(stageTriggerId(model, stage, os)) uuid = stageTriggerUuid(model, stage, os) name = stage.stageName.stageName + " (Trigger)" + (os?.asName()?.toCapitalized()?.let { "($it)" } ?: "") type = Type.COMPOSITE applyDefaultSettings() features { publishBuildStatusToGithub(model) } if (generateTriggers) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 08:08:13 UTC 2024 - 5.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/PerformanceTestProject.kt
abstract class PerformanceTestProject(model: CIBuildModel, val spec: PerformanceTestProjectSpec, val performanceTests: List<PerformanceTest>) : Project({ this.id(spec.asConfigurationId(model)) this.name = spec.asName() }) { init { performanceTests.forEach(this::buildType) } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1.1K bytes - Viewed (0)