Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for Display (0.15 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

            finalizeSpec(builder)
            def specification = builder.build()
    
            if (specs.any { it.displayName == specification.displayName }) {
                throw new IllegalStateException("Multiple specifications with display name '${specification.displayName}.")
            }
            specs << specification
        }
    
        protected void defaultSpec(BuildExperimentSpec.Builder builder) {
            builder.buildMutators.addAll(buildMutators)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/format.go

    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    			check.markImports(check.pkg)
    		}
    		// If the same package name was used by multiple packages, display the full path.
    		if len(check.pkgPathMap[pkg.name]) > 1 {
    			return strconv.Quote(pkg.path)
    		}
    		return pkg.name
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

        /**
         * Runs the given long running command. No more than 1 command may be running at any given time.
         *
         * @param command The command to run
         * @param commandDisplayName The command's display name, used for logging and error messages.
         *
         * @throws DaemonUnavailableException When this daemon is unable to run the command, either because it is currently executing another command
         * or is currently stopping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/go/types/format.go

    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    			check.markImports(check.pkg)
    		}
    		// If the same package name was used by multiple packages, display the full path.
    		if len(check.pkgPathMap[pkg.name]) > 1 {
    			return strconv.Quote(pkg.path)
    		}
    		return pkg.name
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if it as a Gradle version that supports Kotlin scripts
         */
        boolean isSupportsKotlinScript();
    
        /**
         * Returns true if this version has a method for tests display names
         */
        boolean isHasTestDisplayNames();
    
        /**
         * Returns true if this version supports custom toolchain resolvers.
         */
        boolean isSupportsCustomToolchainResolvers();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/trace/procgen.go

    		// Check if this proc was in a syscall before it stopped.
    		// This means the syscall blocked. We need to emit it to the
    		// viewer at this point because we only display the time the
    		// syscall occupied a P when the viewer is in per-P mode.
    		//
    		// TODO(mknyszek): We could do better in a per-M mode because
    		// all events have to happen on *some* thread, and in v2 traces
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            def knownDefinition = KNOWN_DEFINITIONS[problem.definition.id.fqid]
            assert knownDefinition != null : "Unknown problem id: ${definition.id.fqid}"
            assert knownDefinition == definition.id.displayName : "Unexpected display name for problem: ${definition.id.fqid}. Expected=${knownDefinition}, actual=${definition.id.displayName}"
    
            def groupFqid = groupOf(definition.id.fqid)
            while (groupFqid != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. cmd/metrics-v3-handler.go

    			Registry:            registry,
    			MaxRequestsInFlight: 2,
    		},
    		authFn: authFn,
    
    		metricsData: metricGroups,
    	}
    }
    
    // metricDisplay - contains info on a metric for display purposes.
    type metricDisplay struct {
    	Name   string   `json:"name"`
    	Help   string   `json:"help"`
    	Type   string   `json:"type"`
    	Labels []string `json:"labels"`
    }
    
    func (md metricDisplay) String() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyReportTask.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.diagnostics;
    
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Displays the dependency tree for a project. An instance of this type is used when you
     * execute the {@code dependencies} task from the command-line.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 1008 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    $ gradle build --scan
    ----
    
    For older Gradle versions, the
    https://docs.gradle.com/build-scan-plugin/#getting_set_up[Build Scan Plugin User Manual]
    explains how to enable build scans.
    
    At the end of your build, Gradle displays a URL where you can find your build scan:
    
    ----
    BUILD SUCCESSFUL in 2s
    4 actionable tasks: 4 executed
    
    Publishing build scan...
    https://gradle.com/s/e6ircx2wjbf7e
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top