Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 257 for xcworkspace (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

                override fun getOutput(workspace: File) = loadAlreadyProducedOutput(workspace)
            }
        }
    
        override fun loadAlreadyProducedOutput(workspace: File) = AccessorsClassPath(
            DefaultClassPath.of(getClassesOutputDir(workspace)),
            DefaultClassPath.of(getSourcesOutputDir(workspace))
        )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/workspace/ImmutableWorkspaceProvider.java

     */
    
    package org.gradle.internal.execution.workspace;
    
    import java.io.File;
    
    public interface ImmutableWorkspaceProvider {
        ImmutableWorkspace getWorkspace(String path);
    
        interface ImmutableWorkspace {
            /**
             * Looks up the immutable workspace.
             */
            File getImmutableLocation();
    
            /**
             * Provides a temporary workspace and executes the given action in it.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/workspace/MutableWorkspaceProvider.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.workspace;
    
    import org.gradle.internal.execution.history.ExecutionHistoryStore;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    public interface MutableWorkspaceProvider {
        /**
         * Provides a persistent workspace and execution history store for executing the given action in.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/resources/org/gradle/ide/xcode/tasks/internal/default.xcworkspacedata

    <?xml version="1.0" encoding="UTF-8"?>
    <Workspace
       version = "1.0">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 83 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

        }
    
        @Override
        public InputFingerprinter getInputFingerprinter() {
            return inputFingerprinter;
        }
    
        private static File getOutputDir(File workspace) {
            return new File(workspace, "transformed");
        }
    
        private static File getResultsFile(File workspace) {
            return new File(workspace, "results.bin");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ImmutableUnitOfWork.java

    package org.gradle.internal.execution;
    
    import org.gradle.internal.execution.workspace.ImmutableWorkspaceProvider;
    
    /**
     * A unit of work that will only be executed atomically and its outputs be reused indefinitely from an immutable workspace.
     */
    public interface ImmutableUnitOfWork extends UnitOfWork {
        /**
         * Returns the {@link ImmutableWorkspaceProvider} to allocate a workspace to execution this work in.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/WorkspaceContext.java

    public class WorkspaceContext extends IdentityContext {
        private final File workspace;
        private final ExecutionHistoryStore history;
        private final boolean captureBeforeExecutionState;
    
        public WorkspaceContext(IdentityContext parent, File workspace, @Nullable ExecutionHistoryStore history, boolean captureBeforeExecutionState) {
            super(parent);
            this.workspace = workspace;
            this.history = history;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            private final String identity;
            private final File workspace;
            private final UnitOfWork work;
    
            public CacheableWork(String identity, File workspace, UnitOfWork work) {
                this.identity = identity;
                this.workspace = workspace;
                this.work = work;
            }
    
            @Override
            public String getIdentity() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignMutableWorkspaceStep.java

                context.getIdentity().getUniqueId(),
                (workspace, history) -> {
                    WorkspaceContext delegateContext = new WorkspaceContext(context, workspace, history, history != null);
                    CachingResult delegateResult = delegate.execute(work, delegateContext);
                    return new WorkspaceResult(delegateResult, workspace);
                });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

        }
    
        protected
        fun getClassesOutputDir(workspace: File) = File(workspace, "classes")
    
        protected
        fun getSourcesOutputDir(workspace: File): File = File(workspace, "sources")
    }
    
    
    internal
    data class ExtensionSpec(
        val name: String,
        val receiverType: TypeSpec,
        val returnType: TypeSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top