Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 209 for Workspace (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseWorkspace.java

    import java.io.File;
    import java.util.List;
    
    /**
     * Information about the eclipse workspace.
     *
     * @since 5.5
     */
    public interface EclipseWorkspace {
        /**
         * The filesystem location of the eclipse workspace
         */
        File getLocation();
    
        /**
         * The list of projects in the eclipse workspace.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

        }
    
        def "gradle-build builds with different root does not inherit workspace id"() {
            given:
            // GradleBuild launched builds with a different root dir
            // are not considered to be of the same workspace
            scopeIds.disableConsistentWorkspaceIdCheck = true
    
            when:
            file("other/settings.gradle").touch()
            buildScript """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/npx

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npx \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/SupplyRuntimeAndLoadCompositeEclipseModels.java

    public class SupplyRuntimeAndLoadCompositeEclipseModels implements BuildAction<Collection<EclipseProject>>, Serializable {
    
        private final EclipseWorkspace workspace;
    
        public SupplyRuntimeAndLoadCompositeEclipseModels(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
        }
    
        @Override
        public Collection<EclipseProject> execute(BuildController controller) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java

                    return false;
                }
    
                CacheKey that = (CacheKey) o;
    
                return CacheUtils.pluginEquals(plugin, that.plugin)
                        && Objects.equals(workspace, that.workspace)
                        && Objects.equals(localRepo, that.localRepo)
                        && RepositoryUtils.repositoriesEquals(repositories, that.repositories)
                        && Objects.equals(filter, that.filter);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top