Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 284 for xcworkspace (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ExecuteStepTest.groovy

            // Check
            result.duration.toMillis() >= 100
    
            _ * context.inputChanges >> Optional.empty()
            _ * work.execute({ UnitOfWork.ExecutionRequest executionRequest ->
                executionRequest.workspace == workspace && !executionRequest.inputChanges.present && executionRequest.previouslyProducedOutputs.get() == previousOutputs
            }) >> {
                sleep 200
                Stub(UnitOfWork.WorkOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/WorkspaceResult.java

        private final File workspace;
    
        public WorkspaceResult(CachingResult parent, @Nullable File workspace) {
            super(parent);
            this.workspace = workspace;
        }
    
        @Override
        public <T> Try<T> getOutputAs(Class<T> type) {
            return getExecution()
                .map(execution -> execution.getOutput(workspace))
                .map(type::cast);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_disablevendor.txt

    # Test that mod=vendor is disabled in workspace mode, even
    # with a single workspace module.
    
    cd workspace
    
    # Base case: ensure the module would default to mod=vendor
    # outside of workspace mode.
    env GOWORK=off
    go list -f '{{.Dir}}' example.com/dep
    stdout $GOPATH[\\/]src[\\/]workspace[\\/]vendor[\\/]example.com[\\/]dep
    
    # Test case: endure the module does not enter mod=vendor outside
    # worspace mode.
    env GOWORK=''
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:22:29 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultImmutableWorkspaceMetadataStoreTest.groovy

            when:
            store.storeWorkspaceMetadata(workspace, metadata)
    
            then:
            workspace.file("metadata.bin").assertIsFile()
    
            when:
            def loadedMetadata = store.loadWorkspaceMetadata(workspace)
    
            then:
            loadedMetadata == metadata
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/workspace/impl/NonLockingMutableWorkspaceProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.workspace.impl;
    
    import org.gradle.internal.execution.history.ExecutionHistoryStore;
    import org.gradle.internal.execution.workspace.MutableWorkspaceProvider;
    
    import java.io.File;
    
    public class NonLockingMutableWorkspaceProvider implements MutableWorkspaceProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top