Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for project1 (0.12 sec)

  1. 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)
  2. docs/ru/docs/project-generation.md

    Vladislav Kramorenko <******@****.***> 1681408847 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 13 18:00:47 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

                class MyPlugin implements Plugin {
                    void apply(project) {
                        project.pluginManager.apply(BasePlugin.class)
                        project.pluginManager.apply(JvmEcosystemPlugin.class)
    
                        project.sourceSets.create('custom')
                        project.configurations.create('customCompileOnly')
    
                        project.configurations.create('implementation')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            given:
            toolingApi.requireIsolatedUserHome()
    
            def projectB = mavenHttpRepo.module('group', 'projectB', '1.0').publish()
            def projectC = mavenHttpRepo.module('group', 'projectC', '1.5').publish()
            def projectD = mavenHttpRepo.module('group', 'projectD', '2.0-SNAPSHOT').publish()
    
            settingsFile << """
                rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

        // dependencies, could resolve differently in the same project, after some rules
        // have been added. However, the Nebula Resolution Rules plugin depends on this
        // behavior, because it downloads rules in a JSON format and applies them to the
        // current project.
        @Issue("https://github.com/gradle/gradle/issues/15312")
        def "rules can be added after a first resolution happened in the project"() {
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            setup:
            def m1 = mavenHttpRepo.module('org.foo', 'some-dep').publish()
    
            createDirs("projectB", "projectB/sub1")
            file("projectB/settings.gradle") << """
            rootProject.name = 'project-b'
            include "sub1"
            """
    
            file("projectB/build.gradle") << """
                    buildscript {
                        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

       implementation project(":other").tasks.someOtherJar
    }
    ----
    
    This publication model is _unsafe_ and can lead to non-reproducible and hard to parallelize builds.
    This section explains how to _properly create cross-project boundaries_ by defining "exchanges" between projects by using _variants_.
    --
    
    There are two, complementary, options to share artifacts between projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. 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)
Back to top