Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 168 for display2 (0.18 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

         \--- com.google.j2objc:j2objc-annotations:1.3
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/ProblemLocationAnalyzer.java

    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface ProblemLocationAnalyzer {
        /**
         * Calculates the location for a problem with the given stack.
         * @return A display name for the location or null for an unknown location.
         */
        @Nullable
        Location locationForUsage(Failure failure, boolean fromException);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

            def records = all(displayName)
            if (records.isEmpty()) {
                throw new AssertionFailedError("No operations found with display name that matches $displayName")
            } else if (records.size() > 1) {
                throw new AssertionFailedError("Multiple operations found with display name that matches $displayName")
            }
            return records.first()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    The dependency tree indicates the selected version of each dependency.
    It also displays information about dependency conflict resolution.
    
    The `dependencies` task can be especially helpful for issues related to transitive dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerProcessContext.java

    public interface WorkerProcessContext {
        /**
         * Returns the unique identifier for this worker process.
         */
        Object getWorkerId();
    
        /**
         * Returns a display name for this worker process.
         */
        String getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/EmptyFileCollectionExecutionTimeValueTest.groovy

            then:
            newCollection.isEmpty()
            newCollection.displayName == "foo"
        }
    
        def "EmptyFileCollections with default display name produce the same execution time value"() {
            given:
            def collection1 = new EmptyFileCollection(FileCollectionInternal.DEFAULT_COLLECTION_DISPLAY_NAME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

    /**
     * Specifies the warning mode a user wants to see.
     *
     * @since 4.5
     */
    public enum WarningMode {
        /**
         * Show all warnings.
         */
        All(true),
    
        /**
         * Display a summary at the end of the build instead of rendering all warnings into the console output.
         */
        Summary(false),
    
        /**
         * No deprecation warnings at all.
         */
        None(false),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/fix/main.go

    var allowed, force map[string]bool
    
    var (
    	doDiff    = flag.Bool("diff", false, "display diffs instead of rewriting files")
    	goVersion = flag.String("go", "", "go language version for files")
    )
    
    // enable for debugging fix failures
    const debug = false // display incorrectly reformatted source and exit
    
    func usage() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--foreground`::
    Starts the Gradle Daemon in a foreground process.
    
    `--status` (Standalone command)::
    Run `gradle --status` to list running and recently stopped Gradle daemons. It only displays daemons of the same Gradle version.
    
    `--stop` (Standalone command)::
    Run `gradle --stop` to stop all Gradle Daemons of the same version.
    
    `-Dorg.gradle.daemon.idletimeout=(number of milliseconds)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top