Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 398 for Git (0.22 sec)

  1. ci/official/utilities/code_check_changed_files.bats

        git config --system --add safe.directory '*'
        git config --system protocol.file.allow always
    
        # Note that you could generate a list of all the affected targets with e.g.:
        # bazel query $(paste -sd "+" $BATS_FILE_TMPDIR/changed_files) --keep_going
        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
        if [[ "$(git rev-parse --abbrev-ref HEAD)" == "pull_branch" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    		exit 1
    	fi
    }
    
    assert_check_deps() {
    	# support unusual Git versions such as: 2.7.4 (Apple Git-66)
    	installed_git_version=$(git version | perl -ne '$_ =~ m/git version (.*?)( |$)/; print "$1\n";')
    	if ! check_minimum_version "${GIT_VERSION}" "${installed_git_version}"; then
    		echo "Git version '${installed_git_version}' is not supported. Minimum supported version: ${GIT_VERSION}"
    		exit 1
    	fi
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. README.md

    [Borg]: https://research.google.com/pubs/pub43438.html
    [CNCF]: https://www.cncf.io/about
    [communication]: https://git.k8s.io/community/communication
    [community repository]: https://git.k8s.io/community
    [containerized applications]: https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/
    [developer's documentation]: https://git.k8s.io/community/contributors/devel#readme
    [Docker environment]: https://docs.docker.com/engine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/jsonnetfile.json

    {
      "version": 1,
      "dependencies": [
        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
              "subdir": "gen/grafonnet-latest"
            }
          },
          "version": "main"
        }
      ],
      "legacyImports": true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 266 bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossBuildPerformanceTestRunner.groovy

                operatingSystem: OperatingSystem.current().toString(),
                versionUnderTest: GradleVersion.current().getVersion(),
                vcsBranch: Git.current().branchName,
                vcsCommits: [Git.current().commitId],
                startTime: clock.getCurrentTime(),
                channel: determineChannel(),
                teamCityBuildId: determineTeamCityBuildId()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pom.xml

    		<url>https://github.com/codelibs/fess-crawler/issues</url>
    	</issueManagement>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/fess-crawler.git</connection>
    		<developerConnection>scm:git:******@****.***:codelibs/fess-crawler.git</developerConnection>
    		<url>git@github.com:codelibs/fess-crawler.git</url>
    	</scm>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-parent</artifactId>
    		<version>14.15.0-SNAPSHOT</version>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

    message IPAddress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec is the desired state of the IPAddress.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. docs/hotfixes.md

    Developer is advised to clone the MinIO source and checkout the MinIO release tag customer is currently on.
    
    ```
    λ git checkout RELEASE.2021-04-22T15-44-28Z
    ```
    
    Create a branch and proceed to push the branch **upstream**
    > (upstream here points to git@github.com:minio/minio.git)
    
    ```
    λ git branch -m RELEASE.2021-04-22T15-44-28Z.hotfix
    λ git push -u upstream RELEASE.2021-04-22T15-44-28Z.hotfix
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs.go

    	// Git at Apache
    	{
    		pathPrefix: "git.apache.org",
    		regexp:     lazyregexp.New(`^(?P<root>git\.apache\.org/[a-z0-9_.\-]+\.git)(/[\w.\-]+)*$`),
    		vcs:        "git",
    		repo:       "https://{root}",
    	},
    
    	// Git at OpenStack
    	{
    		pathPrefix: "git.openstack.org",
    		regexp:     lazyregexp.New(`^(?P<root>git\.openstack\.org/[\w.\-]+/[\w.\-]+)(\.git)?(/[\w.\-]+)*$`),
    		vcs:        "git",
    		repo:       "https://{root}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/.gitattributes

    # Treat all files in the repo as binary, with no git magic updating
    # line endings. This produces predictable results in different environments.
    #
    # Windows users contributing to Go will need to use a modern version
    # of git and editors capable of LF line endings.
    #
    # Windows .bat files are known to have multiple bugs when run with LF
    # endings. So if they are checked in with CRLF endings, there should
    # be a test like the one in test/winbatch.go in the go repository.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 545 bytes
    - Viewed (0)
Back to top