Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isProfile (0.1 sec)

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

                }
                buildJvmOpts.add(debug.toDebugArgument());
            }
            if (isProfile()) {
                buildJvmOpts.add(profiler);
            }
    
            if (isSharedDaemons()) {
                buildJvmOpts.add("-Xms256m");
                buildJvmOpts.add("-Xmx1024m");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public void setProfile(boolean profile) {
            this.profile = profile;
        }
    
        /**
         * Returns true if a profile report will be generated.
         */
        public boolean isProfile() {
            return profile;
        }
    
        /**
         * Specifies whether the build should continue on task failure. The default is false.
         */
        public boolean isContinueOnFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top