Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSystemPropertyExecuter (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleContextualExecuter.java

            }
        }
    
        private static Executer getSystemPropertyExecuter() {
            return Executer.valueOf(System.getProperty(EXECUTER_SYS_PROP, Executer.forking.toString()));
        }
    
        public static boolean isEmbedded() {
            return !getSystemPropertyExecuter().forks;
        }
    
        public static boolean isNoDaemon() {
            return getSystemPropertyExecuter() == Executer.noDaemon;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:06:31 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top