Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for highlights (0.15 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/WelcomeMessageActionTest.groovy

            !log.toString().contains("Here are the highlights of this release:")
            1 * delegateAction.execute(_)
        }
    
        def "omits highlights when file does not exist"() {
            given:
            def action = createWelcomeMessage(null)
    
            when:
            action.execute(listener)
    
            then:
            !log.toString().contains("Here are the highlights of this release:")
            1 * delegateAction.execute(_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    }
    
    // ordered list of all available highlight colors
    var highlights = [
        "highlight-aquamarine",
        "highlight-coral",
        "highlight-lightpink",
        "highlight-lightsteelblue",
        "highlight-palegreen",
        "highlight-skyblue",
        "highlight-lightgray",
        "highlight-yellow",
        "highlight-lime",
        "highlight-khaki",
        "highlight-aqua",
        "highlight-salmon"
    ];
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/NotificationsIntegrationTest.groovy

            welcomeMessage = "Welcome to Gradle $distribution.version.version!"
            def features = readReleaseFeatures()
            if (!features.isAllWhitespace()) {
                welcomeMessage += """
    
    Here are the highlights of this release:
    $features"""
            }
            if (!distribution.version.isSnapshot()) {
                welcomeMessage += """
    ${getReleaseNotesDetailsMessage(distribution.version)}
    """
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/WelcomeMessageAction.java

                    String featureList = readReleaseFeatures();
    
                    if (StringUtils.isNotBlank(featureList)) {
                        logger.lifecycle("");
                        logger.lifecycle("Here are the highlights of this release:");
                        logger.lifecycle(StringUtils.stripEnd(featureList, " \n\r"));
                    }
    
                    if (!gradleVersion.isSnapshot()) {
                        logger.lifecycle("");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

            }
    
            where:
            fixConflict | description
            false       | 'conflict fix not applied'
            true        | 'conflict fix applied'
        }
    
        /**
         * This test highlights the case where published module declares a relocation. This is the drop-in replacement
         * for "replacedBy" rules when a module has been relocated, and that the publisher uses Gradle. There's the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    If you encounter syntax errors, check the https://groovy.apache.org/#reporting-issues[Groovy issue tracker] and https://blogs.apache.org/groovy/entry/groovy-3-highlights[Groovy 3 release highlights].
    
    https://issues.apache.org/jira/browse/GROOVY-9936[Some very specific regressions] have already been fixed in the next minor version of Groovy.
    
    ===== Groovy modularization
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

                }
                start {
                    manager.getBroadcaster(TestBarListener.class).bar(1)
                }
            }
            then:
            0 * _
        }
    
        @Ignore("This test highlights a very peculiar use case which is not supported yet")
        def "can remove a listener which tries to notify a broadcaster itself trying to notify the same listener"() {
            given:
            def listener1 = {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. docs/bucket/replication/README.md

    ## Highlights
    
    - Supports source and destination buckets to have the same name unlike AWS S3, addresses variety of usecases such as *Splunk*, *Veeam* site to site DR.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    - [v1.3.1](#v131)
      - [Downloads](#downloads-8)
      - [Changelog since v1.3.0](#changelog-since-v130)
        - [Other notable changes](#other-notable-changes-9)
    - [v1.3.0](#v130)
      - [Downloads](#downloads-9)
      - [Highlights](#highlights)
      - [Known Issues and Important Steps before Upgrading](#known-issues-and-important-steps-before-upgrading)
          - [ThirdPartyResource](#thirdpartyresource)
          - [kubectl](#kubectl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Click on a category to see a timeline screen that highlights tasks of that category.
    
    image::performance/task-execution-cacheable.png[title="A task oriented view of performance"]
    
    image::performance/timeline-not-cacheable.png[title="Timeline screen with 'not cacheable' tasks only"]
    
    Sort by task duration on the timeline screen to highlight tasks with great time saving potential.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top