Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 862 for Display (0.21 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

                            doLast {
                                println "sources display name: ${sources.displayName}"
                            }
                        }
                    }
                }
            '''
    
            when:
            succeeds "printSourceDisplayName"
    
            then:
            output.contains "sources display name: Custom source 'main:main'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/launcher/cli/WelcomeMessageConfiguration.java

     * limitations under the License.
     */
    
    package org.gradle.api.launcher.cli;
    
    import org.gradle.api.Incubating;
    
    import java.io.Serializable;
    
    /**
     * Configures when to display the welcome message on the command line.
     *
     * @since 7.5
     */
    @Incubating
    public class WelcomeMessageConfiguration implements Serializable {
    
        private WelcomeMessageDisplayMode welcomeMessageDisplayMode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 13 13:24:29 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. maven-compat/src/site/apt/index.apt

     Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
     {{{https://cwiki.apache.org/confluence/display/MAVEN/Plugin+migration+to+Maven3+dependencies} Plugin migration to Maven3 dependencies}}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 24 22:50:10 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/file/RelativeFilePathResolver.java

        /**
         * Converts the given path to a relative path.
         */
        String resolveAsRelativePath(Object path);
    
        /**
         * Converts the given path to a path that is useful to display to a human, for example in logging or error reports.
         * Generally attempts to use a relative path, but may switch to an absolute path for files outside and some distance from the base directory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

        @Test
        fun `caches specialized programs`() {
    
            val scriptPath = "/src/settings.gradle.kts"
    
            val shortScriptDisplayName = Describables.of("short display name")
            val longScriptDisplayName = Describables.of("long display name")
    
            val text = """
    
                buildscript {
                    require(Thread.currentThread().contextClassLoader === this@Settings_gradle.javaClass.classLoader)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemId.java

         *
         * @return the label
         * @since 8.9
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @return the display name
         * @since 8.9
         */
        String getDisplayName();
    
        /**
         * Returns the container  group.
         *
         * @return the group
         * @since 8.9
         */
        ProblemGroup getGroup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/GeneratedViewState.java

    /**
     * The backing state for a generated view.
     *
     * Implementations should provide an equals() and hashCode() method.
     */
    public interface GeneratedViewState {
        /**
         * Returns a display name to use for the view, eg as its toString() value or in error messages.
         */
        String getDisplayName();
    
        /**
         * Returns the value of the given property.
         */
        Object get(String name);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemGroup.java

         *
         * @return the label
         * @since 8.9
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @return the display name
         * @since 8.9
         */
        String getDisplayName();
    
        /**
         * Returns the parent group or {@code null} for root groups.
         *
         * @return the parent group
         * @since 8.9
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalProgressEvent.java

        /**
         * Returns the time when the event happened.
         *
         * @return The event time
         */
        long getEventTime();
    
        /**
         * Returns a human consumable display name for this event.
         */
        String getDisplayName();
    
        /**
         * Returns the description of the operation for which progress is reported.
         *
         * @return The build description
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top