Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNotificationOperationDetails (0.37 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

         *
         * @since 4.2
         */
        long getNotificationOperationFinishedTimestamp();
    
        /**
         * A structured object providing details about the operation that was performed.
         */
        Object getNotificationOperationDetails();
    
        /**
         * A structured object representing the outcome of the operation.
         * Null if the operation failed, or if no result details are produced for the type of operation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationStartedNotification.java

         *
         * @since 4.2
         */
        long getNotificationOperationStartedTimestamp();
    
        /**
         * A structured object providing details about the operation to be performed.
         */
        Object getNotificationOperationDetails();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixtureTest.groovy

        BuildOperationStartedNotification startedNotification(Class<?> detailsClazz) {
            BuildOperationStartedNotification buildOperationStartedNotification = Mock()
            1 * buildOperationStartedNotification.getNotificationOperationDetails() >> new Object().withTraits(detailsClazz)
            buildOperationStartedNotification
        }
    
        static trait EmptyDetails {}
    
        static trait SimpleDetails {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixture.groovy

                    @Override
                    void started($BuildOperationStartedNotification.name notification) {
                        verify(notification.getNotificationOperationDetails(), 'Details')
                    }
    
                    @Override
                    void progress($BuildOperationProgressNotification.name notification) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top