Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for workspace (0.18 sec)

  1. .github/ISSUE_TEMPLATE/00-bug.yml

          placeholder: ex. go version go1.20.7 darwin/arm64
        validations:
          required: true
    
      - type: textarea
        id: go-env
        attributes:
          label: "Output of `go env` in your module/workspace:"
          placeholder: |
            GO111MODULE=""
            GOARCH="arm64"
            GOBIN="/Users/gopher/go/bin"
            GOCACHE="/Users/gopher/go/cache"
            GOENV="/Users/gopher/Library/Application Support/go/env"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  2. .bazelignore

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # The requirements updater has its own WORKSPACE file
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 19:29:19 GMT 2023
    - 776 bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/04-vuln.yml

          label: "Does this issue reproduce at the latest version of golang.org/x/vuln?"
        validations:
          required: true
      - type: textarea
        id: go-env
        attributes:
          label: "Output of `go env` in your module/workspace:"
          render: shell
        validations:
          required: true
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  4. lib/time/update.bash

    fi
    
    cd zoneinfo
    ../mkzip ../../zoneinfo.zip
    cd ../..
    
    files="update.bash zoneinfo.zip"
    modified=true
    if git diff --quiet $files; then
    	modified=false
    fi
    
    if [ "$1" = "-work" ]; then
    	echo Left workspace behind in work/.
    	shift
    else
    	rm -rf work
    fi
    
    if ! $modified; then
    	echo No updates needed.
    	exit 0
    fi
    
    echo Updated for $CODE/$DATA: $files
    
    commitmsg="lib/time: update to $CODE/$DATA
    
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    problems.add(Severity.FATAL, ModelProblem.Version.BASE, null, e);
                    return null;
                }
            }
    
            // no workspace resolver or workspace resolver returned null (i.e. model not in workspace)
            if (importModel == null) {
                final ModelSource importSource;
                try {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  6. regression-test/README.md

    11:55:40 V/InstrumentationResultParser: Time: 13.271
    11:55:40 V/InstrumentationResultParser:
    11:55:40 V/InstrumentationResultParser: OK (12 tests)
    ...
    11:55:40 I/XmlResultReporter: XML test result file generated at /Users/myusername/workspace/okhttp/regression-test/build/outputs/regression-results/connected/TEST-pixel3a-Q(AVD) - 10-android-test-.xml. Total tests 13, passed 11, assumption_failure 1, ignored 1,
    ...
    BUILD SUCCESSFUL in 1m 30s
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Fri Nov 13 07:09:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java

    import org.apache.maven.artifact.repository.MavenArtifactRepository;
    import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
    
    /**
     * Delegating local artifact repository chains the reactor, IDE workspace
     * and user local repository.
     */
    @Deprecated
    public class DelegatingLocalArtifactRepository extends MavenArtifactRepository {
        private LocalArtifactRepository buildReactor;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  8. android-test/README.md

    11:55:40 V/InstrumentationResultParser: Time: 13.271
    11:55:40 V/InstrumentationResultParser:
    11:55:40 V/InstrumentationResultParser: OK (12 tests)
    ...
    11:55:40 I/XmlResultReporter: XML test result file generated at /Users/myusername/workspace/okhttp/android-test/build/outputs/androidTest-results/connected/TEST-pixel3a-Q(AVD) - 10-android-test-.xml. Total tests 13, passed 11, assumption_failure 1, ignored 1,
    ...
    BUILD SUCCESSFUL in 1m 30s
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Feb 14 08:26:50 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

            RepositorySystemSession repositorySession = legacySupport.getRepositorySession();
            final WorkspaceReader workspace = repositorySession.getWorkspaceReader();
            Model model;
            if (workspace instanceof MavenWorkspaceReader) {
                model = ((MavenWorkspaceReader) workspace).findModel(RepositoryUtils.toArtifact(artifact));
            } else {
                model = null;
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

            script {
                name = "CLEAN_UP_GIT_UNTRACKED_FILES_AND_DIRECTORIES"
                executionMode = BuildStep.ExecutionMode.RUN_ONLY_ON_FAILURE
                scriptContent = "git clean -fdx -e test-splits/ -e .gradle/workspace-id.txt -e \"*.psoutput\""
                skipConditionally()
                onlyRunOnGitHubMergeQueueBranch()
            }
        }
    }
    
    fun BuildSteps.removeSubstDirOnWindows(os: Os) {
        if (os == Os.WINDOWS) {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top