Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 284 for xcworkspace (0.16 sec)

  1. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/AbstractMultiBuildIdeIntegrationTest.groovy

            run(":${workspaceTask}")
    
            then:
            def workspace = workspace(buildA, "ide")
            workspace.assertContains(project(buildA, "ide"))
            workspace.assertContains(project(buildB, "buildB"))
            workspace.assertContains(project(buildC, "buildC"))
            workspace.assertContains(project(buildC.file("p1"), "p1"))
            workspace.assertContains(project(buildC.file("p2"), "p2"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/LoadEclipseModel.java

        private final EclipseWorkspace workspace;
    
        public LoadEclipseModel() {
            this(null);
        }
    
        public LoadEclipseModel(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
        }
    
        @Override
        public EclipseProject execute(BuildController controller) {
            if (workspace != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ParameterizedLoadCompositeEclipseModels.java

            private final EclipseWorkspace workspace;
    
            public EclipseRuntimeAction(EclipseWorkspace workspace) {
    
                this.workspace = workspace;
            }
    
            @Override
            public void execute(EclipseRuntime eclipseRuntime) {
                eclipseRuntime.setWorkspace(workspace);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/LoadEclipseModel.java

        private final EclipseWorkspace workspace;
    
        public LoadEclipseModel(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
        }
    
        @Override
        public EclipseProject execute(BuildController controller) {
            if (workspace != null) {
                return controller.getModel(EclipseProject.class, EclipseRuntime.class, new EclipseRuntimeAction(workspace));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TellGradleToRunBuildDependencyTask.java

        private final EclipseWorkspace workspace;
    
        public TellGradleToRunBuildDependencyTask(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
        }
    
        @Override
        public Void execute(BuildController controller) {
            if (workspace != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultOutputSnapshotterTest.groovy

        def workspace = tempDir.file("workspace")
        def contents = Mock(FileCollection)
        def root = workspace.file("root")
    
        def "snapshots outputs"() {
            def outputSnapshot = Mock(FileSystemSnapshot)
    
            when:
            def result = outputSnapshotter.snapshotOutputs(work, workspace)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignMutableWorkspaceStepTest.groovy

        }
        def step = new AssignMutableWorkspaceStep<>(delegate)
        def work = Stub(MutableUnitOfWork)
    
        def "delegates with assigned mutable workspace"() {
            def delegateOutput = new Object()
            def workspace = file("workspace")
            def workspaceProvider = Mock(MutableWorkspaceProvider)
            when:
            def result = step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepTest.groovy

    class AssignImmutableWorkspaceStepTest extends StepSpec<IdentityContext> implements TestSnapshotFixture {
        def immutableWorkspace = file("immutable-workspace")
        def temporaryWorkspace = file("temporary-workspace")
        def secondTemporaryWorkspace = file("second-temporary-workspace")
        def workspace = Stub(ImmutableWorkspace) {
            immutableLocation >> immutableWorkspace
            withTemporaryWorkspace(_ as TemporaryWorkspaceAction)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 14:32:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

            def out = new ByteArrayOutputStream()
            def workspace = eclipseWorkspace([gradleProject("child1", false), gradleProject("child2")])
            when:
            withConnection { connection ->
                connection.action().projectsLoaded(new TellGradleToRunBuildDependencyTask(workspace), projectsLoadedHandler)
                    .buildFinished(new LoadEclipseModel(workspace), buildFinishedHandler)
                    .build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseRuntime.java

        private EclipseWorkspace workspace;
    
        public DefaultEclipseRuntime(EclipseWorkspace workspace) {
            this.workspace = workspace;
        }
    
        @Override
        public EclipseWorkspace getWorkspace() {
            return workspace;
        }
    
        @Override
        public void setWorkspace(EclipseWorkspace eclipseWorkspace) {
            this.workspace = eclipseWorkspace;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top