Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 411 for COMMIT (0.08 sec)

  1. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    git add pkg/pkg.go
    at 2017-09-22T11:41:28-04:00
    git commit -a -m 'add pkg'
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    rm README
    
    svn add .git pkg
    svn commit -m 'git'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-27T18:00:52.201719Z --revprop -r1
    
    svn add p1
    svn commit -m 'add p1'
    svn propset svn:author rsc --revprop -r2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

            """
            commits["initial"] = repo.commit('initial')
    
            def versionFile = repo.workTree.file("version")
            versions.each { version ->
                versionFile.text = version
                def commit = repo.commit("version is $version")
                repo.createLightWeightTag(version)
                commits[version] = commit
            }
    
            versionFile.text = "4.0-SNAPSHOT"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

                dependencies {
                    api 'org.gradle.swift:log:latest.integration'
                }
            """
            libraryPath.file("settings.gradle").touch()
            libraryRepo.commit("initial commit")
            libraryRepo.close()
        }
    
        private writeLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/WindowsOsMemoryInfo.java

                    memoryInfo.getTotalPhysicalMemory(), memoryInfo.getAvailablePhysicalMemory(),
                    // Note: the commit limit is usually less than the hard limit of the commit peak, but I think it would be prudent
                    // for us to not force the user's OS to allocate more page file space, so we'll use the commit limit here.
                    windowsMemoryInfo.getCommitLimit(), availableCommitMemory(windowsMemoryInfo)
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

                    }
                }
            """
            repo.commit("update")
            repo2.file("settings.gradle") << """
                rootProject.name = "bar"
            """
            repo2.file("build.gradle") << """
                apply plugin: 'java'
                group = "org.test"
                version = "2.0"
            """
            repo2.commit("initial")
    
            mappingFor(repo, "org.test:foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

                dependencies {
                    api 'org.gradle.swift:log:latest.integration'
                }
            """
            libraryPath.file("settings.gradle").touch()
            libraryRepo.commit("initial commit")
            libraryRepo.close()
        }
    
        private writeCppLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/git/issue47650.txt

    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2021-08-11T13:52:00-04:00
    git add cmd
    git commit -m 'add cmd/issue47650'
    git branch -m main
    git tag v0.1.0
    
    git add go.mod
    git commit -m 'add go.mod'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-refs --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 16:13:43 UTC 2023
    - 845 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

                    public class func thing() { }
                }
    """
            executer.inDirectory(lib1Repo.workTree).withTasks("generateSwiftPmManifest").run()
            lib1Repo.commit("v1")
            lib1Repo.createLightWeightTag("1.0.0")
            lib1Repo.commit("v2")
    
            and:
            def lib2Repo = GitFileRepository.init(testDirectory.file("repos/lib2"))
            lib2Repo.file("build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/bzr/hello.txt

    handle bzr
    
    env BZR_EMAIL='Russ Cox <******@****.***>'
    env EMAIL='Russ Cox <******@****.***>'
    
    bzr init-repo .
    
    bzr init b
    cd b
    cp ../hello.go .
    bzr add hello.go
    bzr commit --commit-time='2017-09-21 21:20:12 -0400' -m 'hello world'
    bzr push ..
    cd ..
    rm b
    
    bzr log
    cmp stdout .bzr-log
    
    -- .bzr-log --
    ------------------------------------------------------------
    revno: 1
    committer: Russ Cox <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 15:22:32 UTC 2023
    - 554 bytes
    - Viewed (0)
  10. .github/workflows/create_issue.js

     */
    
    /** Extracts PR from commit message and creates a GitHub Issue on Rollback of PR
      Created issue is assigned to original PR owner and reviewer.
    
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
        context has the commit message details in the payload
      @return {string} Returns the issue number and title
    */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 18 23:04:59 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top