Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 283 for Display (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/BuildOperationProgressEventListenerAdapter.java

            // progress display name on the console, whereas we want to display both the progress display name and the status
            // This should be pushed down into the progress logger infrastructure so that an operation can have both a display name (that doesn't change) and
            // a status (that does)
            if (statusProgressLogger == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:53:27 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationDescriptor.java

         *
         * @return The name of the operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name provides enough context for a human to uniquely identify the operation.
         *
         * @return The display name of the operation.
         */
        String getDisplayName();
    
        /**
         * Returns the parent operation, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

        }
    
        /**
         * Returns the display name for this plugin declaration.
         *
         * <p>The display name is used when publishing this plugin to repositories
         * that support human-readable artifact names.
         *
         * @since 4.10
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Sets the display name for this plugin declaration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

            settings                     | buildName | dependencyName | display
            ""                           | "buildC"  | "buildC"       | "default root project name"
            "rootProject.name='someLib'" | "buildC"  | "someLib"      | "configured root project name"
        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in task failure error message with #display"() {
            repoC.file("settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. docs/sts/wso2.md

    - Initiate an id_token request to the WSO2 Identity Server, over a known [grant type](https://docs.wso2.com/display/IS540/OAuth+2.0+Grant+Types). For example, the following cURL command illustrates the syntax of an id_token request that can be initiated over the [Client Credentials Grant](https://docs.wso2.com/display/IS540/Client+Credentials+Grant) grant type.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformOperationDescriptor.java

            /**
             * Returns the display name of this transformer.
             */
            String getDisplayName();
    
        }
    
        /**
         * Describes the subject (artifact or file) of a transform operation.
         *
         * @since 5.1
         */
        interface SubjectDescriptor {
    
            /**
             * Returns the display name of this subject.
             */
            String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in task failure error message with #display"() {
            repo.file("settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/test/groovy/org/gradle/api/internal/tasks/DefaultScalaSourceSetTest.groovy

        @Test
        void defaultValues() {
            expect:
            assertThat(sourceSet.scala, instanceOf(DefaultSourceDirectorySet))
            assertThat(sourceSet.scala, isEmpty())
            assertThat(sourceSet.scala.displayName, equalTo('<set-display-name> Scala source'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalOperationDescriptor.java

         * a human each child operation of a given operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name should generally provide enough context
         * to uniquely identify the operation to a human.
         *
         * @return The display name of the operation
         */
        String getDisplayName();
    
        /**
         * Returns the id of the parent of the operation, if any.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. 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)
Back to top