Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 589 for Git (0.16 sec)

  1. hack/apidiff.sh

            d="./${d}"
        fi
        targets[i]="${d}"
    done
    
    # Must be a something that git can resolve to a commit.
    # "git rev-parse --verify" checks that and prints a detailed
    # error.
    if [ -n "${target}" ]; then
        target="$(git rev-parse --verify "${target}")"
    fi
    
    # Determine defaults.
    if [ -z "${base}" ]; then
        if ! base="$(git merge-base origin/master "${target:-HEAD}")"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/jar/before.pom

            </license>
        </licenses>
        <scm>
            <connection>scm:git:******@****.***:helpermethod/zip-forge.git</connection>
            <developerConnection>scm:git:******@****.***:helpermethod/zip-forge.git</developerConnection>
            <url>git@github.com:helpermethod/zip-forge.git</url>
        </scm>
        <dependencies>
            <dependency>
                <groupId>org.junit.jupiter</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt

            val rootProjectDir: DirectoryProperty
        }
    
        @get:Inject
        abstract val providers: ProviderFactory
    
        val gitCommitId = git("rev-parse", "HEAD")
        val gitBranch = git("rev-parse", "--abbrev-ref", "HEAD")
    
        @Suppress("UnstableApiUsage")
        private
        fun git(vararg args: String): Provider<String> {
            val projectDir = parameters.rootProjectDir.asFile.get()
            val execOutput = providers.exec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

            description = "Promotes a successful build on master as the start of a new release cycle on the release branch"
    
            params {
                text("gitUserEmail", "", label = "Git user.email Configuration", description = "Enter the git 'user.email' configuration to commit change under", display = ParameterDisplay.PROMPT, allowEmpty = true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. testing/performance/docs/check-rev.sh

    #!/bin/bash
    # script to be used for Gradle performance test bisecting
    # example usage:
    # git bisect start HEAD REL_2.14 --  # HEAD=bad REL_2.14=good
    # git bisect run check_rev.sh JavaConfigurationPerformanceTest lotDependencies
    TESTNAME=${1:-IdeIntegrationPerformanceTest}
    TESTPROJECT=${2:-multi}
    ./gradlew clean
    [ -d ~/.gradle-bisect-override ] && cp -Rdvp ~/.gradle-bisect-override/* .
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. 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)
  7. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

    ) {
        init {
            params {
                text(
                    "gitUserEmail",
                    "",
                    label = "Git user.email Configuration",
                    description = "Enter the git 'user.email' configuration to commit change under",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = true
                )
                text(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec is the desired state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/copy/groovy/settings.gradle

    // tag::change-default-exclusions[]
    import org.apache.tools.ant.DirectoryScanner
    
    DirectoryScanner.removeDefaultExclude('**/.git')
    DirectoryScanner.removeDefaultExclude('**/.git/**')
    // end::change-default-exclusions[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
Back to top