Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for thread_pool (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .teamcity/scripts/CheckWrapper.java

     *   java .teamcity/scripts/CheckWrapper.java < commits.txt
     *
     * Reads commit SHAs from stdin (one per line), checks wrapper per commit.
     */
    public class CheckWrapper {
        private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool();
    
        private static final Pattern ALLOWED_WRAPPER_VERSION =
            Pattern.compile("^[0-9.]+(-(rc|milestone|m)-[0-9]+)?$");
    
        // Keep the same extraction semantics as the old sed:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  2. .teamcity/scripts/CheckBadMerge.java

     *
     * If any "bad" merge commit is found, it will print the details and exit with non-zero code.
     */
    public class CheckBadMerge {
        private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool();
    
        private static final List<String> MONITORED_PATHS = Collections.unmodifiableList(Arrays.asList(
            "subprojects/docs/src/docs/release/notes.md",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top