Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 206 for xcworkspace (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/telemetry/npm

    #!/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 npm \
      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)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaWorkspace.xml

                        <td>Name</td>
                        <td>Default with <literal>idea</literal> plugin</td>
                    </tr>
                </thead>
                <tr>
                    <td>workspace</td>
                    <td><literal>project.idea.workspace</literal></td>
                </tr>
                <tr>
                    <td>outputFile</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 866 bytes
    - Viewed (0)
Back to top