Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for buildPath (0.15 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

                    assert components[0].build.buildPath == ':'
                    assert components[0].build.name == ':'
                    assert components[0].build.currentBuild
                    assert components[0].projectPath == ':'
                    assert components[0].projectName == 'buildA'
                    assert components[0].buildTreePath == ':'
                    assert components[1].build.buildPath == ':buildB'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

                    assert components[0].build.buildPath == ':'
                    assert components[0].build.name == ':'
                    assert components[0].build.currentBuild
                    assert components[0].projectPath == ':'
                    assert components[0].projectName == 'buildA'
                    assert components[1].build.buildPath == ':${buildName}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentity.java

        public final Path buildPath; // path of the owning build
    
        /**
         * Tasks can be replaced in Gradle, meaning there can be two different tasks with the same path/type.
         * This allows identifying a precise instance.
         */
        public final long uniqueId;
    
        TaskIdentity(Class<T> type, String name, Path projectPath, Path identityPath, Path buildPath, long uniqueId) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 12:01:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/internal/component/local/model/TestComponentIdentifiers.java

        }
    
        public static ProjectComponentIdentifier newProjectId(String buildPath, String projectPath) {
            Path path = Path.path(projectPath);
            String name = path.getName();
            if (name == null) {
                name = "root";
            }
            return new DefaultProjectComponentIdentifier(new DefaultBuildIdentifier(Path.path(buildPath)), path, path, name);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

                it.details.pluginClass.startsWith("Plugin")
            }
    
            ops.size() == 3
            ops.find { it.details.buildPath == ":" }.details.pluginClass == "PluginRoot"
            ops.find { it.details.buildPath == ":a" }.details.pluginClass == "PluginA"
            ops.find { it.details.buildPath == ":b" }.details.pluginClass == "PluginB"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/ForeignBuildIdentifier.java

     */
    public class ForeignBuildIdentifier extends DefaultBuildIdentifier {
    
        public ForeignBuildIdentifier(Path buildPath) {
            super(buildPath);
        }
    
        @Override
        public boolean isCurrentBuild() {
            nagAboutDeprecatedIsCurrentBuild();
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 07:33:41 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            rootBuildOperation.result.buildPath == ":"
    
            def rootProject = rootBuildOperation.result.rootProject
            rootProject.path == ":"
            verifyProject(rootProject, 'root', ':', [':a'], testDirectory, 'root.gradle')
            verifyProject(project(":a", rootProject), 'a')
    
            def nestedBuildOperation = buildOperations[1]
            nestedBuildOperation.result.buildPath == ":nested"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

            succeeds('help')
    
            then:
            operations().size() == 2
            verifySettings(operations()[0], settingsFile)
            operations()[0].details.buildPath == ":"
            verifySettings(operations()[1], nestedSettingsFile)
            operations()[1].details.buildPath == ":nested"
        }
    
        def 'can configure feature preview in settings'() {
            given:
            settingsFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/AbstractCompositeBuildIntegrationTest.groovy

            assert operations.first(ExecuteTaskBuildOperationType) {
                it.details.buildPath == build && it.details.taskPath == taskPath
            }
        }
    
        void assertTaskExecutedOnce(String build, String taskPath) {
            operations.only(ExecuteTaskBuildOperationType) {
                it.details.buildPath == build && it.details.taskPath == taskPath
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

                classes.doLast {
                    def components = configurations.compileClasspath.incoming.resolutionResult.allComponents.id
                    assert components.size() == 2
                    assert components[0].build.buildPath == ':buildB:buildSrc'
                    assert components[0].build.name == 'buildSrc'
                    assert components[0].build.currentBuild
                    assert components[0].projectPath == ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top