- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 2,341 for project1 (0.05 sec)
-
.teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt
import common.applyDefaultSettings import jetbrains.buildServer.configs.kotlin.ParameterDisplay import jetbrains.buildServer.configs.kotlin.ReuseBuilds import model.CIBuildModel import model.PerformanceTestType import projects.PerformanceTestProject class PerformanceTestsPass(model: CIBuildModel, performanceTestProject: PerformanceTestProject) : OsAwareBaseGradleBuildType( os = performanceTestProject.spec.os,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 10 13:15:00 UTC 2024 - 5.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>(); if (pom != null) { MavenProject project = projectBuilder.build(pom, configuration).getProject(); projects.add(project); if (includeModules) { for (String module : project.getModules()) { File modulePom = new File(pom.getParentFile(), module);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
final List<MavenProject> projects = event.getSession().getProjects(); for (MavenProject project : projects) { int len = lineLength - project.getName().length() - project.getPackaging().length() - 2; logger.info("{}{}[{}]", project.getName(), chars(' ', (len > 0) ? len : 1), project.getPackaging());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.2K bytes - Viewed (0) -
okhttp-tls/build.gradle.kts
id("ru.vyarus.animalsniffer") } project.applyOsgi( "Export-Package: okhttp3.tls", "Automatic-Module-Name: okhttp3.tls", "Bundle-SymbolicName: com.squareup.okhttp3.tls" ) dependencies { api(libs.squareup.okio) implementation(projects.okhttp) compileOnly(libs.findbugs.jsr305) compileOnly(libs.animalsniffer.annotations) testImplementation(projects.okhttpTestingSupport)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
fun stageTriggerId(model: CIBuildModel, stageName: StageName, os: Os? = null) = "${model.projectId}_Stage_${stageName.id}_${osSuffix(os)}Trigger" fun stageTriggerUuid(model: CIBuildModel, stageName: StageName, os: Os? = null) = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stageName.uuid}_${osSuffix(os)}Trigger" fun osSuffix(os: Os?) = os?.asName()?.plus("_") ?: ""
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 08:08:13 UTC 2024 - 5.8K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/META-INF/LICENSE.vm
#* *### add dependency info to output - $directory/${project.artifact.artifactId}-${project.artifact.version}.jar: $project.artifact.toString().replace( ':eclipse-plugin:', ':jar:' ) Project: $project.name #if ( $project.url )Project URL: ${project.url}#end License: $license.name#if ( $spdx ) ($spdx)#end License URL: $license.url ($licFile) #* *##end
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 04 06:45:16 UTC 2024 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java
boolean hasExceptions(); /** * Gets the build summary for the specified project. * * @param project The project to get the build summary for, must not be {@code null}. * @return The build summary for the project or {@code null} if the project has not been built (yet). */ BuildSummary getBuildSummary(MavenProject project); /** * Add the specified build summary. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
okhttp/build.gradle.kts
testImplementation(projects.mockwebserver3) testImplementation(projects.mockwebserver3Junit4) testImplementation(projects.mockwebserver3Junit5) testImplementation(projects.mockwebserver) testImplementation(projects.loggingInterceptor) testImplementation(projects.okhttpBrotli) testImplementation(projects.okhttpDnsoverhttps) testImplementation(projects.okhttpIdnaMappingTable) testImplementation(projects.okhttpSse)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 5.6K bytes - Viewed (0) -
.teamcity/settings.kts
import common.VersionedSettingsBranch import jetbrains.buildServer.configs.kotlin.project import jetbrains.buildServer.configs.kotlin.version import projects.GradleBuildToolRootProject version = "2024.03" /* Master (buildTypeId: Gradle_Master) |----- Check (buildTypeId: Gradle_Master_Check) | |---- QuickFeedbackLinux (buildTypeId: Gradle_Master_Check_QuickFeedbackLinux) | |---- QuickFeedback | |---- ...
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon May 13 07:45:05 UTC 2024 - 1.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/FunctionalTestProject.kt
package projects import configurations.BaseGradleBuildType import jetbrains.buildServer.configs.kotlin.Project import model.CIBuildModel import model.FunctionalTestBucketProvider import model.Stage import model.TestCoverage const val DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE = 50 const val DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE = 20 const val DEFAULT_MACOS_FUNCTIONAL_TEST_BUCKET_SIZE = 20 class FunctionalTestProject(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 29 11:04:48 UTC 2024 - 862 bytes - Viewed (0)