Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isProfile (0.31 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfileServices.java

            registration.addProvider(new ServiceRegistrationProvider() {
                public void configure(ServiceRegistration serviceRegistration, StartParameter startParameter) {
                    if (startParameter.isProfile()) {
                        serviceRegistration.add(BuildProfile.class);
                        serviceRegistration.add(ReportGeneratingProfileListener.class);
                        serviceRegistration.add(ProfileCoordinator.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/fix/main.go

    func walkDir(path string) {
    	filepath.WalkDir(path, visitFile)
    }
    
    func visitFile(path string, f fs.DirEntry, err error) error {
    	if err == nil && isGoFile(f) {
    		err = processFile(path, false)
    	}
    	if err != nil {
    		report(err)
    	}
    	return nil
    }
    
    func isGoFile(f fs.DirEntry) bool {
    	// ignore non-Go files
    	name := f.Name()
    	return !f.IsDir() && !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. 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