Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for calculateIdentityPathForProject (0.39 sec)

  1. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

                return Path.ROOT;
            }
    
            @Override
            public boolean isImplicitBuild() {
                return false;
            }
    
            @Override
            public Path calculateIdentityPathForProject(Path projectPath) {
                return projectPath;
            }
    
            @Override
            public StartParameterInternal getStartParameter() {
                throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

            def build = Stub(BuildState)
            build.loadedSettings >> settings
            build.buildIdentifier >> DefaultBuildIdentifier.ROOT
            build.identityPath >> Path.ROOT
            build.calculateIdentityPathForProject(_) >> { Path path -> path }
            def services = new DefaultServiceRegistry()
            services.add(projectFactory)
            services.add(TestUtil.stateTransitionControllerFactory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top