Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 284 for xcworkspace (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/testdata/script/list_gomod_in_gopath.txt

    # Issue 46119
    
    # When a module is inside a GOPATH workspace, Package.Root should be set to
    # Module.Dir instead of $GOPATH/src.
    
    env GOPATH=$WORK/tmp
    cd $WORK/tmp/src/test
    
    go list -f {{.Root}}
    stdout ^$PWD$
    
    # Were we really inside a GOPATH workspace?
    env GO111MODULE=off
    go list -f {{.Root}}
    stdout ^$WORK/tmp$
    
    -- $WORK/tmp/src/test/go.mod --
    module test
    
    -- $WORK/tmp/src/test/main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 16:15:28 UTC 2021
    - 421 bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepConcurrencyTest.groovy

        def temporaryWorkspace1 = workspacesRoot.file("temporary-workspace-1")
        def temporaryWorkspace2 = workspacesRoot.file("temporary-workspace-2")
        def immutableWorkspaceProvider = new StubImmutableWorkspaceProvider(temporaryWorkspace1, temporaryWorkspace2)
        def work = Stub(ImmutableUnitOfWork) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

                        && Objects.equals(this.version, that.version)
                        && Objects.equals(this.localRepo, that.localRepo)
                        && Objects.equals(this.workspace, that.workspace)
                        && RepositoryUtils.repositoriesEquals(this.repositories, that.repositories);
            }
    
            @Override
            public String toString() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/workcmd/sync.go

    specified in the workspace (with use directives).
    
    The syncing is done by sequentially upgrading each of the dependency
    modules specified in a workspace module to the version in the build list
    if the dependency module's version is not already the same as the build
    list's version. Note that Minimal Version Selection guarantees that the
    build list's version of each module is always the same or higher than
    that in each workspace module.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

                        return outcome;
                    }
    
                    @Nullable
                    @Override
                    public Object getOutput(File workspace) {
                        return work.loadAlreadyProducedOutput(workspace);
                    }
                };
            }
        }
    
        /**
         * The way the outputs have been produced.
         */
        enum ExecutionOutcome {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. Jenkinsfile.its

                sh "mvn -Drat.skip=true -T2 -B -V install -PversionlessMavenDist -Dmaven.repo.local=${env.WORKSPACE}/repo"
            }
          }
        }
        stage( "Run Maven Integration Testing" ) {
          steps {
            git url: "https://github.com/apache/maven-integration-testing.git", branch: "${ITS_BRANCH}"
            sh "ls -lrt ${env.WORKSPACE}/apache-maven/target/"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Dec 26 16:42:35 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/dist/buildtool.go

    	// Use $GOROOT/pkg/bootstrap as the bootstrap workspace root.
    	// We use a subdirectory of $GOROOT/pkg because that's the
    	// space within $GOROOT where we store all generated objects.
    	// We could use a temporary directory outside $GOROOT instead,
    	// but it is easier to debug on failure if the files are in a known location.
    	workspace := pathf("%s/pkg/bootstrap", goroot)
    	xremoveall(workspace)
    	xatexit(func() { xremoveall(workspace) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top