Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 635 for contributors (0.06 sec)

  1. CONTRIBUTORS

    ******@****.*** <******@****.***@8138a162-5c33-11de-8abc-d1c337b90d21> 1302783100 +0000
    Registered: 2025-05-30 12:43
    - Last Modified: 2011-04-14 12:11
    - 9 bytes
    - Viewed (0)
  2. scripts/contributors.py

            if pr.state == "MERGED" and pr.author:
                if is_lang:
                    translators[pr.author.login] += 1
                else:
                    contributors[pr.author.login] += 1
        return ContributorsResults(
            contributors=contributors,
            translation_reviewers=translation_reviewers,
            translators=translators,
            authors=authors,
        )
    
    
    def get_users_to_write(
        *,
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-02 17:03
    - 8.6K bytes
    - Viewed (0)
  3. .github/workflows/contributors.yml

            with:
              limit-access-to-actor: true
            env:
              GITHUB_TOKEN: ${{ secrets.FASTAPI_PR_TOKEN }}
          - name: FastAPI People Contributors
            run: python ./scripts/contributors.py
            env:
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-04-26 16:00
    - 1.5K bytes
    - Viewed (0)
  4. docs/en/data/contributors.yml

    Sebastián Ramírez <******@****.***> 1746099153 +0200
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-01 11:32
    - 19.1K bytes
    - Viewed (0)
  5. samples/simple-client/src/main/java/okhttp3/sample/OkHttpContributors.java

          List<Contributor> contributors = CONTRIBUTORS_JSON_ADAPTER.fromJson(body.source());
    
          // Sort list by the most contributions.
          Collections.sort(contributors, (c1, c2) -> c2.contributions - c1.contributions);
    
          // Output list of contributors.
          for (Contributor contributor : contributors) {
            System.out.println(contributor.login + ": " + contributor.contributions);
          }
        }
      }
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-04-05 03:30
    - 2.2K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    liability for other Contributors. Therefore, if a Contributor includes
    the Program in a commercial product offering, such Contributor
    ("Commercial Contributor") hereby agrees to defend and indemnify every
    other Contributor ("Indemnified Contributor") against any losses,
    damages and costs (collectively "Losses") arising from claims, lawsuits
    and other legal actions brought by a third party against the Indemnified
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-06-04 06:45
    - 13.9K bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    https://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label
    3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/sig-testing/testing.md
    4. If you want *faster* PR reviews, read how: https://git.k8s.io/community/contributors/guide/pull-requests.md#best-practices-for-faster-reviews
    Registered: 2025-05-30 09:05
    - Last Modified: 2021-08-01 08:59
    - 2.8K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    who includes the Program in a commercial product offering should do so in
    a manner which does not create potential liability for other Contributors.
    Therefore, if a Contributor includes the Program in a commercial product offering,
    such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
    every other Contributor ("Indemnified Contributor") against any losses, damages
    Registered: 2025-05-24 08:56
    - Last Modified: 2018-09-17 05:50
    - 11.1K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    The [Kubernetes community repo](https://github.com/kubernetes/community) contains information about how to get started, how the community organizes, and more.
    
    ## Sign the CLA
    
    Registered: 2025-05-30 09:05
    - Last Modified: 2020-11-18 13:04
    - 525 bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    something that integrates with OkHttp, tell us so that we can link it!
    
    Before code can be accepted all contributors must complete our
    [Individual Contributor License Agreement (CLA)][cla].
    
    
    Code Contributions
    ------------------
    
    Get working code on a personal branch with tests passing before you submit a PR:
    
    ```
    ./gradlew clean check
    ```
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2023-02-14 08:26
    - 2K bytes
    - Viewed (0)
Back to top