Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 284 for xcworkspace (0.44 sec)

  1. 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)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

            } else if (version.endsWith(SNAPSHOT)) {
                WorkspaceReader workspace = session.getWorkspaceReader();
                if (workspace != null && workspace.findVersions(artifact).contains(version)) {
                    metadata = null;
                    result.setRepository(workspace.getRepository());
                } else {
                    metadata = new DefaultMetadata(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                return classesDir;
            }
    
            @Override
            public File instrumentedOutput(File workspace) {
                return new File(workspace, "instrumented/" + operation.getId());
            }
    
            private File classesDir(File workspace) {
                return new File(workspace, "classes/" + operation.getId());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            } else if (version.endsWith(SNAPSHOT)) {
                WorkspaceReader workspace = session.getWorkspaceReader();
                if (workspace != null && workspace.findVersions(artifact).contains(version)) {
                    metadata = null;
                    result.setRepository(workspace.getRepository());
                } else {
                    metadata = new DefaultMetadata(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_vendor_empty.txt

    go work vendor
    stderr 'go: no dependencies to vendor'
    ! exists vendor/modules.txt
    ! go list .
    stderr 'go: no modules were found in the current workspace'
    mkdir vendor
    mv bad_modules.txt vendor/modules.txt
    ! go list .
    stderr 'go: no modules were found in the current workspace'
    
    -- bad_modules.txt --
    # a/module
    a/package
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 344 bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleProjectIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "create xcode workspace when no language plugins are applied"() {
            when:
            succeeds("xcode")
    
            then:
            result.assertTasksExecuted(":xcodeProject", ":xcodeProjectWorkspaceSettings", ":xcodeWorkspaceWorkspaceSettings", ":xcodeWorkspace", ":xcode")
    
            def workspace = rootXcodeWorkspace
            workspace.contentFile.assertHasProjects("${rootProjectName}.xcodeproj")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top