Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 912 for GIT (0.02 sec)

  1. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    env GOPRIVATE=golang.org
    env CURLOPT_TIMEOUT_MS=100
    env GIT_SSH_COMMAND=false
    
    ! go get -x golang.org/nonexist.git@latest
    stderr '^git ls-remote https://golang.org/nonexist$'
    stderr '^git ls-remote git\+ssh://golang.org/nonexist'
    stderr '^git ls-remote ssh://golang.org/nonexist$'
    ! stderr 'git://'
    stderr '^go: golang.org/nonexist.git@latest: no secure protocol found for repository$'
    
    -- go.mod --
    module example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/git/mainonly.txt

    handle git
    
    env GIT_AUTHOR_NAME='Bryan C. Mills'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2019-09-05T14:07:43-04:00
    git add main.go
    git commit -a -m 'add main.go'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    8a27e8b (HEAD -> master) add main.go
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 433 bytes
    - Viewed (0)
  3. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        private final File parentDirectory;
        private Git git;
    
        public GitFileRepository(String repoName, File parentDirectory) {
            this.repoName = repoName;
            this.parentDirectory = parentDirectory;
        }
    
        public GitFileRepository(File parentDirectory) {
            this("repo", parentDirectory);
        }
    
        /**
         * Returns the underlying Git object from JGit.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/jsonnetfile.lock.json

        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
              "subdir": "gen/grafonnet-latest"
            }
          },
          "version": "18eb4e529c60ec20ab243e2da3bcb52b2fd0d223",
          "sum": "eyuJ0jOXeA4MrobbNgU4/v5a7ASDHslHZ0eS6hDdWoI="
        },
        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt

    handle git
    
    env GIT_AUTHOR_NAME='Bryan C. Mills'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2019-10-07T14:15:32-04:00
    git add go.mod
    git commit -m 'add go.mod file without go source files'
    git branch -m master
    git tag v2.0.0
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 550 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

    import java.io.IOException;
    
    // tag::git-clone[]
    @UntrackedTask(because = "Git tracks the state") // <1>
    public abstract class GitClone extends DefaultTask {
    
        @Input
        public abstract Property<String> getRemoteUri();
    
        @Input
        public abstract Property<String> getCommitId();
    
        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    // end::git-clone[]
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

            mockGitOperation(listOf("git", "fetch", "origin", "master", "release"), "")
            mockGitOperation(listOf("git", "merge-base", "origin/master", "HEAD"), "master-fork-point")
            mockGitOperation(listOf("git", "merge-base", "origin/release", "HEAD"), "release-fork-point")
            mockGitOperation(listOf("git", "show", "master-fork-point:version.txt"), "5.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version_buildvcs_git.txt

    cd ..
    env PATH=$oldpath
    rm .git
    
    # If there is an empty repository in a parent directory, only "uncommitted" is tagged.
    exec git init
    exec git config user.email ******@****.***
    exec git config user.name 'J.R. Gopher'
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=true$'
    ! stdout vcs.revision
    ! stdout vcs.time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/hello.txt

    handle git
    
    env GIT_AUTHOR_NAME=bwk
    env GIT_AUTHOR_EMAIL=bwk
    env GIT_COMMITTER_NAME='Russ Cox'
    env GIT_COMMITTER_EMAIL='******@****.***'
    
    git init
    
    at 2017-09-21T21:05:58-04:00
    git add hello.go
    git commit -a -m 'hello'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    fc3a09f (HEAD -> master) hello
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 412 bytes
    - Viewed (0)
  10. pkg/volume/git_repo/git_repo_test.go

    			// Calculate the subdirectory clone would create (if any)
    			// git clone -- https://github.com/kubernetes/kubernetes.git target_dir --> target_dir
    			// git clone -- https://github.com/kubernetes/kubernetes.git            --> kubernetes
    			// git clone -- https://github.com/kubernetes/kubernetes.git .          --> .
    			// git clone -- https://github.com/kubernetes/kubernetes.git ./.        --> .
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top