Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for projectId (0.12 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        ) : this(uuid, testType, os, testJvm.version, testJvm.vendor, buildJvm, expectedBucketNumber, withoutDependencies, arch)
    
        fun asId(projectId: String): String {
            return "${projectId}_$testCoveragePrefix"
        }
    
        fun asId(model: CIBuildModel): String {
            return asId(model.projectId)
        }
    
        private
        val testCoveragePrefix
            get() = "${testType.name.toCapitalized()}_$uuid"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.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. 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)
  4. pkg/bootstrap/config.go

    		case *meshAPI.Tracing_Stackdriver_:
    			projectID, projFound := metadata.PlatformMetadata[platform.GCPProject]
    			if !projFound {
    				return nil, errors.New("unable to process Stackdriver tracer: missing GCP Project")
    			}
    
    			opts = append(opts, option.StackDriverEnabled(true),
    				option.StackDriverProjectID(projectID),
    				option.StackDriverDebug(tracer.Stackdriver.Debug),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pkg/volume/projected/projected.go

    	return nil
    }
    
    func getVolumeSource(spec *volume.Spec) (*v1.ProjectedVolumeSource, bool, error) {
    	if spec.Volume != nil && spec.Volume.Projected != nil {
    		return spec.Volume.Projected, spec.ReadOnly, nil
    	}
    
    	return nil, false, fmt.Errorf("Spec does not reference a projected volume type")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            events.operation("Download ${modules.projectD.pom.uri}").assertIsDownload(modules.projectD.pom)
            events.operation("Download ${modules.projectD.metaData.uri}").assertIsDownload(modules.projectD.metaData.uri, modules.projectD.metaDataFile.length())
            events.operation("Download ${modules.projectD.artifact.uri}").assertIsDownload(modules.projectD.artifact)
        }
    
        @TargetGradleVersion('>=7.3')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

        def "generates events for downloading artifacts"() {
            given:
            def modules = setupBuildWithArtifactDownloadDuringConfiguration()
    
            def projectB = modules.projectB
            def projectC = modules.projectC
            def projectD = modules.projectD
    
            when:
            def events = ProgressEvents.create()
            withConnection { ProjectConnection connection ->
                connection.newBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/22685")
        @ToBeFixedForIsolatedProjects(because = "Access to root project from sub projects")
        def "can visit and edit tar archive differently from two different projects in a multiproject build"() {
            given: "an archive in the root of a multiproject build"
            createTar('test.tar') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. pkg/api/pod/util.go

    			if source.FlexVolume.SecretRef != nil && !visitor(source.FlexVolume.SecretRef.Name) {
    				return false
    			}
    		case source.Projected != nil:
    			for j := range source.Projected.Sources {
    				if source.Projected.Sources[j].Secret != nil {
    					if !visitor(source.Projected.Sources[j].Secret.Name) {
    						return false
    					}
    				}
    			}
    		case source.RBD != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            }
            settingsFile << """
                include ':project1'
                include ':project2'
            """
    
    
            then:
            scanRunner("-Dorg.gradle.unsafe.isolated-projects=true")
                .build().output.contains("Build scan written to")
    
            when:
            createTest(file("project1"), "MyTest1")
            createTest(file("project2"), "MyTest1")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top