Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 504 for Display (0.17 sec)

  1. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

         *
         * The executor will collect failures thrown by actions and rethrow when the executor is stopped.
         *
         * @param displayName The display name for the this executor. Used for thread names, logging and error message.
         * @return The executor.
         */
        ManagedExecutor create(String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

        def collection = new DefaultConfigurableFileCollection("<display>", fileResolver, taskDependencyFactory, patternSetFactory, host)
    
        @Override
        AbstractFileCollection containing(File... files) {
            def resolver = Stub(FileResolver)
            _ * resolver.resolve(_) >> { File f -> f }
                return new DefaultConfigurableFileCollection("<display>", resolver, taskDependencyFactory, patternSetFactory, host).from(files)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         * Returns the location of this resource.
         */
        ResourceLocation getLocation();
    
        /**
         * A long display name for this resource. The display name must use absolute paths and assume no context.
         */
        DisplayName getLongDisplayName();
    
        /**
         * A short display name for this resource. The display name may use relative paths.
         */
        DisplayName getShortDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

                    display = ParameterDisplay.PROMPT,
                    allowEmpty = true
                )
                text(
                    "confirmationCode",
                    "",
                    label = "Confirmation Code",
                    description = "Enter the value '$requiredConfirmationCode' (no quotes) to confirm the promotion",
                    display = ParameterDisplay.PROMPT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalTestDescriptor.java

     *
     * @since 2.4
     */
    @NonNullApi
    public interface InternalTestDescriptor extends InternalOperationDescriptor {
        /**
         * Returns the display name of the test.
         *
         * @return The display name of the test
         * @since 8.8
         */
        String getTestDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         *
         * @param target The file to be locked.
         * @param options The lock options.
         * @param targetDisplayName A display name for the target file. This is used in log and error messages.
         * @param operationDisplayName A display name for the operation being performed on the target file. This is used in log and error messages.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/UnionFileTreeTest.groovy

    import spock.lang.Specification
    
    class UnionFileTreeTest extends Specification {
        private final UnionFileTree set = new UnionFileTree(TestFiles.taskDependencyFactory(), "<display name>")
    
        def setup() {
            NativeServicesTestFixture.initialize()
        }
    
        def canAddFileTree() {
            FileTreeInternal set1 = Mock(FileTreeInternal)
            when:
            set.addToUnion(set1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-position: 17px 80%;
        background-repeat: no-repeat;
        background-size: 11px 11px;
        padding-left: 2.3em;
    }
    
    .multi-language-selector {
        display: block;
    }
    
    .multi-language-selector .language-option[data-lang='groovy'] {
        background-position: 20px center;
        padding-left: 32px;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'] {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/tasks/DefaultGroovySourceSetTest.groovy

        def sourceSet = TestUtil.newInstance(DefaultGroovySourceSet, "<name>", "<display-name>", TestUtil.objectFactory(tmpDir.testDirectory))
    
        void defaultValues() {
            expect:
            sourceSet.groovy instanceof GroovySourceDirectorySet
            sourceSet.groovy.isEmpty()
            sourceSet.groovy.name == '<name>'
            sourceSet.groovy.displayName == '<display-name> Groovy source'
            def includes = sourceSet.groovy.filter.includes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestExceptionFormat.java

    /**
     * Determines how exceptions are formatted in test logging.
     */
    public enum TestExceptionFormat {
        /**
         * Short display of exceptions.  Shows the exception types and locations as well as the hierarchy of causes, but not exception messages or full stack traces.
         */
        SHORT,
        /**
         * Full display of exceptions.
         */
        FULL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1017 bytes
    - Viewed (0)
Back to top