Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,481 for projectId (0.19 sec)

  1. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

    import model.Stage
    
    class SmokeTests(model: CIBuildModel, stage: Stage, testJava: JvmCategory, id: String, task: String = "smokeTest", splitNumber: Int = 1) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_SmokeTest_$id")
        name = "Smoke Tests with 3rd Party Plugins ($task) - ${testJava.version.name.toCapitalized()} Linux"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 16:49:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            ProjectComponentIdentifier projectId = module.getProjectId();
            if (projectId != null) {
                ProjectState projectState = projectStateRegistry.stateFor(projectId);
                if (!projectState.hasMutableState()) {
                    throw new IllegalStateException("Thread should hold project lock for " + projectState.getDisplayName());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/projects/StageProject.kt

        performanceTestBucketProvider: PerformanceTestBucketProvider,
        stage: Stage,
        previousPerformanceTestPasses: List<PerformanceTestsPass>
    ) : Project({
        this.id("${model.projectId}_Stage_${stage.stageName.id}")
        this.uuid = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stage.stageName.uuid}"
        this.name = stage.stageName.stageName
        this.description = stage.stageName.description
    }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

            gradleTasks = ":smoke-ide-test:smokeIdeTest",
            extraParameters = buildScanTag("SmokeIdeTests"),
        )
    }) {
        companion object {
            fun buildTypeId(model: CIBuildModel) = "${model.projectId}_SmokeIdeTests"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

                ProjectComponentIdentifier projectId = (ProjectComponentIdentifier) artifact.getId().getComponentIdentifier();
                if (!projectId.equals(currentProjectId)) {
                    projectDependencies.add(moduleDependencyBuilder.create(projectId, scope));
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MultiProjectProjectDependencyConflictResolutionIntegrationTest.groovy

        String declareDependency(String moduleName, String moduleVersion) {
            "project(':$moduleName')"
        }
    
        @Override
        String declaredDependencyId(String moduleName, String moduleVersion) {
            "projectId('$moduleName')"
        }
    
        @Override
        void moduleDefinition(String name, String definition) {
            buildFile << "project(':$name') {"
            buildFile << definition
            buildFile << "}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                throws DuplicateProjectException {
            Map<String, MavenProject> index = new LinkedHashMap<>();
            Map<String, List<File>> collisions = new LinkedHashMap<>();
    
            for (MavenProject project : projects) {
                String projectId = ArtifactUtils.key(project.getGroupId(), project.getArtifactId(), project.getVersion());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

    import model.CIBuildModel
    import model.Stage
    import model.StageName
    
    class FlakyTestQuarantine(model: CIBuildModel, stage: Stage, os: Os, arch: Arch = Arch.AMD64) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_FlakyQuarantine_${os.asName()}_${arch.asName()}")
        name = "Flaky Test Quarantine - ${os.asName()} ${arch.asName()}"
        description = "Run all flaky tests skipped multiple times"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/platform/gcp.go

    		if !found {
    			return "", fmt.Errorf("error constructing GKE cluster url: %s not found in GCP Metadata", GCPCluster)
    		}
    		return fmt.Sprintf("https://container.googleapis.com/v1/projects/%s/locations/%s/clusters/%s",
    			projectID, clusterLocation, clusterName), nil
    	}
    )
    
    type (
    	shouldFillFn     func() bool
    	metadataFn       func() (string, error)
    	metadataSupplier struct {
    		Property string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    import org.apache.maven.plugin.PluginExecutionException;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingResult;
    
    /*
    
    - test projects for each of these
    - how to categorize the problems so that the id of the problem can be match to a page with descriptive help and the test
      project
    - nice little sample projects that could be run in the core as well as integration tests
    
    All Possible Errors
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top