Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasCommandLineExceedMaxLengthException (0.52 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/util/LongCommandLineDetectionUtil.java

            }
            // in chars
            return Integer.getInteger("org.gradle.internal.cmdline.max.length", defaultMax);
        }
    
        public static boolean hasCommandLineExceedMaxLengthException(Throwable failureCause) {
            Throwable cause = failureCause;
            do {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 03 12:35:59 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

    import static java.lang.String.format;
    import static org.gradle.process.internal.util.LongCommandLineDetectionUtil.hasCommandLineExceedMaxLength;
    import static org.gradle.process.internal.util.LongCommandLineDetectionUtil.hasCommandLineExceedMaxLengthException;
    
    /**
     * Default implementation for the ExecHandle interface.
     *
     * <h3>State flows</h3>
     *
     * <ul>
     *   <li>INIT -&gt; STARTED -&gt; [SUCCEEDED|FAILED|ABORTED|DETACHED]</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top