Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for commits (0.04 sec)

  1. .github/workflows/check-commits.yml

            run: |
              set -eu
              for commit in $(git rev-list ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}); do
                  git checkout $commit --quiet --detach
                  WRAPPER_GRADLE_VERSION=$(grep "distributionUrl" gradle/wrapper/gradle-wrapper.properties | sed 's/.*gradle-\(.*\)-[a-z]*\.[a-z]*/\1/')
                  echo "Commit $commit wrapper: $WRAPPER_GRADLE_VERSION"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 22:15:20 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    ### Creating commits and writing commit messages
    
    The commit messages that accompany your code changes are an important piece of documentation. Please follow these guidelines when creating commits:
    
    * [Write good commit messages.](https://cbea.ms/git-commit/#seven-rules)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 25 06:57:22 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. scripts/deploy_docs_status.py

        )
        if not use_pr:
            logging.error(f"No PR found for hash: {settings.commit_sha}")
            return
        commits = list(use_pr.get_commits())
        current_commit = [c for c in commits if c.sha == settings.commit_sha][0]
        run_url = f"https://github.com/{settings.github_repository}/actions/runs/{settings.run_id}"
        if settings.state == "pending":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 05:56:53 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. CONTRIBUTORS

    https://github.com/google/guava/commit/6a5ca217af46eff28bd9703aeba62f57c5a3693a
    https://github.com/google/guava/commit/91fee0605ca75cf4f7d0b07ea3068f8beaedda46
    https://github.com/google/guava/commit/8dca77634125cbaf53365000d1c9f7fb32f6dcea
    https://github.com/google/guava/commit/dd5f97bf678b13564ffa1b4a45e00284fb24f178
    https://github.com/google/guava/commit/d812e15c120fea9c7cf9cd33be21c9cd0e424f81
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 09 21:14:06 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. .github/workflows/update-perf-test-buckets.yml

            uses: peter-evans/create-pull-request@v8
            with:
              commit-message: Update performance test durations
              branch: bot-update-performance-test-durations
              branch-suffix: timestamp
              delete-branch: true
              title: 'Update performance test durations'
              signoff: true
              sign-commits: true
              labels: |
                in:building-gradle
                @dev-productivity
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 09 22:14:16 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. .github/workflows/update-test-buckets.yml

            uses: peter-evans/create-pull-request@v8
            with:
              commit-message: Update test buckets
              branch: devprod/update-test-buckets
              branch-suffix: timestamp
              delete-branch: true
              title: 'Update test buckets'
              signoff: true
              sign-commits: true
              labels: |
                in:building-gradle
                @dev-productivity
              body: |
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 09 22:14:16 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. .github/workflows/update-jdks.yml

          - name: Create Pull Request
            id: create-pull-request
            uses: peter-evans/create-pull-request@v8
            with:
              signoff: true
              sign-commits: true
              commit-message: "Update jdks.yaml"
              add-paths: .teamcity/jdks.yaml
              title: "Update jdks.yaml"
              body: "This PR updates JDK to the latest versions available in `.teamcity/jdks.yaml`."
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 09 22:14:16 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    ) {
        PER_COMMIT(
            displayName = "Performance Regression Test",
            timeout = 420,
            channel = "commits",
        ),
        PER_DAY(
            displayName = "Slow Performance Regression Test",
            timeout = 420,
            channel = "commits",
        ),
        PER_WEEK(
            displayName = "Performance Experiment",
            timeout = 420,
            channel = "experiments",
        ),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                }
            }
    
            /**
             * Commits any pending changes and marks the updater for final write.
             *
             * @return the committed mapping item, or null if no item was pending
             */
            public CharMappingItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
                    try {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                    throw new DictionaryException("Failed to write: " + line, e);
                }
            }
    
            /**
             * Commits the current item to the temporary file.
             * @return the committed item or null if no item to commit
             */
            public ProtwordsItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
                    try {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.9K bytes
    - Viewed (0)
Back to top