Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isProfile (0.17 sec)

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

        /**
         * Forces Gradle to consider the build to be interactive
         */
        GradleExecuter withForceInteractive(boolean flag);
    
        boolean isDebug();
    
        boolean isProfile();
    
        /**
         * Starts the launcher JVM (daemon client) in suspended debug mode
         */
        GradleExecuter startLauncherInDebugger(boolean debugLauncher);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                encoder.writeBoolean(startParameter.isDryRun());
                encoder.writeBoolean(startParameter.isRerunTasks());
                encoder.writeBoolean(startParameter.isProfile());
                encoder.writeBoolean(startParameter.isContinueOnFailure());
                encoder.writeBoolean(startParameter.isOffline());
                encoder.writeBoolean(startParameter.isRefreshDependencies());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/gofmt/gofmt.go

    	}
    	// It's only -r that makes use of go/ast's object resolution,
    	// so avoid the unnecessary work if the flag isn't used.
    	if *rewriteRule == "" {
    		parserMode |= parser.SkipObjectResolution
    	}
    }
    
    func isGoFile(f fs.DirEntry) bool {
    	// ignore non-Go files
    	name := f.Name()
    	return !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go") && !f.IsDir()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top