Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 588 for Display (0.23 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

         *
         * @param message the message to display
         * @return the password entered by the user
         * @throws PrompterException if an exception occurs
         */
        @Nonnull
        String promptForPassword(@Nullable String message) throws PrompterException;
    
        /**
         * Displays a message to the user.
         *
         * @param message the message to display
         * @throws PrompterException if an exception occurs
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .content, .sidebar {
        display: inline-block;
    }
    
    .sidebar {
        float: right;
        width: 12.5rem;
    }
    
    @media screen and (max-width: 45em) {
        .container, .footer {
            max-width: 100%;
        }
        .content {
            display: block;
            width: auto;
        }
        .sidebar {
            display: none;
        }
        .container,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

            )
            param("channel", "adhoc")
            param("checks", "all")
            text("runs", "10", display = ParameterDisplay.PROMPT, allowEmpty = false)
            text("warmups", "3", display = ParameterDisplay.PROMPT, allowEmpty = false)
            text(
                "scenario",
                "",
                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/main/webapp/js/suggestor.js

                    $boxElement.html("");
                    $boxElement.append($olEle);
                    $boxElement.css("display", "block");
                  } else {
                    $boxElement.css("display", "none");
                  }
                } else {
                  $boxElement.css("display", "none");
                }
                this.resize();
    
                suggestingSts = false;
              },
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            where:
            settings                     | display
            ""                           | "default root project name"
            "rootProject.name='someLib'" | "configured root project name"
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "includes build identifier in dependency report with #display"() {
            createDirs("buildSrc", "buildSrc/b1", "buildSrc/b2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. docs/en/docs/css/termynal.css

        width: 100%;
        text-align: center;
    }
    
    a[data-terminal-control] {
        text-align: right;
        display: block;
        color: #aebbff;
    }
    
    [data-ty] {
        display: block;
        line-height: 2;
    }
    
    [data-ty]:before {
        /* Set up defaults and ensure empty lines are displayed. */
        content: '';
        display: inline-block;
        vertical-align: middle;
    }
    
    [data-ty="input"]:before,
    [data-ty-prompt]:before {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      font-size: 13px;
      line-height: 1.4;
      display: flex;
      flex-direction: column;
    }
    a {
      color: #2a66d9;
    }
    .header {
      display: flex;
      align-items: center;
      height: 44px;
      min-height: 44px;
      background-color: #eee;
      color: #212121;
      padding: 0 1rem;
    }
    .header > div {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. Development.md

    ### Remove generic suggestions
    
    For some scenarios, it doesn't make sense to display all the generic suggestions we currently have.
    E.g. `--stacktrace` for a compilation error is not helpful.
    
    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

         *
         * @param displayNames candidate display names (may be different depending on the Gradle version under test)
         */
        List<Operation> operations(String... displayNames) {
            assertHasZeroOrMoreTrees()
            return operations.findAll { it.descriptor.displayName in displayNames }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            renderer.onOutput(updateNow())
            console.flush()
    
            then:
            progressArea.display == ["> :foo"]
    
            and:
            renderer.onOutput(complete(2))
            renderer.onOutput(updateNow())
            console.flush()
    
            then:
            progressArea.display == ["> :bar"]
        }
    
        def "forward the event unmodified to the listener"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top