Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Pearce (0.19 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

            return invokeGitHubApi(uri, GitHubUser::class.java)
        }
    
        private
        fun getMergedContributorPullRequests(pageNumber: Int): List<GitHubPullRequest> {
            val uri = "https://api.github.com/search/issues?q=is:pr+is:merged+repo:gradle/gradle+label:%22from:contributor%22&sort=updated&order=desc&per_page=$pageSize&page=$pageNumber"
            return invokeGitHubApi(uri, GitHubPullRequestSearchResult::class.java).items
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon May 16 05:03:11 GMT 2022
    - 5.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

    name: Documentation
    description: Report a problem with our documentation
    labels: [ "a:documentation", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please search related information in our [latest documentation](https://docs.gradle.org/current/userguide/userguide.html) before opening a documentation issue.
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 15 10:01:01 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  3. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

    }
    
    if (idea.project != null) { // may be null during script compilation
        idea {
            module {
                // We exclude some top-level directories, so their content is not indexed
                // and does not appear in search results by default
                excludeDirs = listOf(".gradle", "build", "intTestHomeDir")
                    .map { repoRoot().dir(it).asFile }
                    .toSet()
            }
            project {
                settings {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Jun 26 15:42:59 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. .cm/plugins/filters/readField/index.js

    /**
     * @module readField
     * @description Returns one field for a particular named object in a list of objects.
     * @param {[Object]} objects - The objects to search
     * @param {String} objectName - The name of the particular object to find
     * @param {String} fieldName - The name of the field for the group to return
     * @returns String - The specified value
     * @example {{ files | byPlatform | categorize(branch.diff.files_metadata) | readField('jvm', 'name') }}
     */
    
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1K bytes
    - Viewed (0)
Back to top