Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 290 for Display (0.27 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/ui.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typeutil
    
    // This file defines utilities for user interfaces that display types.
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // IntuitiveMethodSet returns the intuitive method set of a type T,
    // which is the set of methods you can call on an addressable value of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStore.java

    import java.util.Collections;
    import java.util.List;
    import java.util.Map;
    
    public interface ResultsStore extends Closeable {
        /**
         * Returns the performance experiments known to this store, in display order.
         */
        List<PerformanceExperiment> getPerformanceExperiments();
    
        /**
         * Returns the n most recent instances of the given test which are younger than the max age.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/PromptOutputEvent.java

            // Add a newline at the start of each question
            output.println();
            output.text(getPrompt());
        }
    
        /**
         * Converts the given text into the response object, or returns a new prompt to display to the user.
         */
        public abstract PromptResult<?> convert(String text);
    
        public static class PromptResult<T> {
            public final T response;
            public final String newPrompt;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

         *
         * @return this
         */
        Choice<T> whenNotConnected(T defaultOption);
    
        /**
         * Specifies how to display each option.
         *
         * @return this
         */
        Choice<T> renderUsing(Function<T, String> renderer);
    
        /**
         * Prompts the user to select an option.
         */
        T ask();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractMinimalProvider.java

            return new FlatMapProvider<>(this, transformer);
        }
    
        /**
         * Returns the human consumable display name for this provider, or null if this is not known.
         */
        @Nullable
        protected DisplayName getDeclaredDisplayName() {
            return null;
        }
    
        /**
         * Returns a display name for this provider, using a default if this is not known.
         */
        protected DisplayName getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreConcurrencyTest.groovy

                operation.run(context)
            }
        }
    
        @Issue("GRADLE-3206")
        def "can create new caches and access them in parallel"() {
            def store = new DefaultPersistentDirectoryStore(cacheDir, "<display>", mode(OnDemand), null, lockManager, executorFactory, buildOperationRunner)
            store.open()
    
            when:
            async {
                200.times { index ->
                    start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemDefinitionReport.groovy

            String label = "label",
            Severity severity = Severity.ERROR,
            Documentation documentation = asdfManual,
            List<String> solutions = ImmutableList.of(),
            String displayName = "display name"
        ) {
                new DefaultProblemDefinition(new DefaultProblemId(label, displayName, SharedProblemGroup.generic()), severity, documentation)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/initialization/BuildOperationSettingsProcessorTest.groovy

        }
    
        def "exposes build operation with settings configuration result"() {
            given:
            settings()
            def contextualizedName = "Contextualized display name"
    
            when:
            buildOperationScriptPlugin.process(gradleInternal, settingsLocation, classLoaderScope, startParameter)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationProblemRenderer.java

                    );
                    formatter.endChildren();
                }
            }
        }
    
        /**
         * This is an adhoc reformatting tool which should go away as soon as we have
         * a better way to display multiline deprecation warnings
         */
        public static String convertToSingleLine(String message) {
            return message.replaceAll("(\\r?\\n *)+", ". ")
                .replaceAll("[.]+", ".")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/externalLibraries/tests/buildEnvironment.out

              \--- org.asciidoctor:asciidoctorj-api:2.5.7
    
    (*) - 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: Fri Feb 09 07:14:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top