Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for and (0.18 sec)

  1. .cm/plugins/filters/isEnabledAutomation/index.js

     *
     * or
     *
     * <ul>
     *     <li>The author is a member of the Gradle organization,</li>
     *     <li>and has opted into the automation by adding their username to the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
     *     <li>The author is NOT a member of the Gradle organization,</li>
     *     <li>and the automation is enabled for all community PR authors via the presence of 'community' in the appropriate map entry above.</li>
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. .cm/plugins/filters/summaryTable/index.js

    /**
     * @module summaryTable
     * @description Create a string containing an HTML table describing the given summary statistics.
     *
     * The table should be in descending order of the number of lines changed, and should only include platforms with non-0 changes.
     *
     * @param {[Object]} statistics - list of summary data objects from computeStatistics
     * @param {String} title - description of how data is grouped
     * @returns {String} Returns the formatted HTMl table string.
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  3. .cm/plugins/filters/byCodeowner/ignore/index.js

            // > files and directories.
    
            // 'js*' will not match 'a.js'
            // 'js/' will not match 'a.js'
            // 'js' will match 'a.js' and 'a.js/'
            match => /\/$/.test(match)
                // foo/ will not match 'foo'
                ? `${match}$`
                // foo matches 'foo' and 'foo/'
                : `${match}(?=$|\\/$)`
        ],
    
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top