Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for xcworkspace (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

        @EqualsAndHashCode
        static class ScopeIds {
            final UniqueId buildInvocation
            final UniqueId workspace
            final UniqueId user
    
            ScopeIds(UniqueId buildInvocation, UniqueId workspace, UniqueId user) {
                this.buildInvocation = buildInvocation
                this.workspace = workspace
                this.user = user
            }
    
            @Override
            String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModelTest.groovy

            then:
            1 * model.workspace.iws.getXmlTransformer()
    
            when: "configure workspace file"
            model.workspace.iws({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * model.workspace.iws.getXmlTransformer()
    
            when: "configure workspace xml"
            model.workspace.iws.withXml(xmlAction)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

        createWorkspace().use { workspace ->
          createBndRun(workspace).use { bndRun ->
            bndRun.resolve(
              false,
              false,
            )
          }
        }
      }
    
      private fun createWorkspace(): Workspace {
        val bndDir = workspaceDir / "cnf"
        val repoDir = bndDir / "repo"
        fileSystem.createDirectories(repoDir)
        return Workspace(workspaceDir.toFile(), bndDir.name)
          .apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModel.java

            this.project = project;
        }
    
        /**
         * Configures IDEA workspace information.
         * <p>
         * For examples see docs for {@link IdeaWorkspace}.
         */
        public IdeaWorkspace getWorkspace() {
            return workspace;
        }
    
        public void setWorkspace(IdeaWorkspace workspace) {
            this.workspace = workspace;
        }
    
        /**
         * Configures the target IDEA version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    ! go list ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    ! go install ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    cd a/c
    ! go run .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top