Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getNotificationOperationFinishedTimestamp (0.35 sec)

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

         */
        @Nullable
        Object getNotificationOperationParentId();
    
        /**
         * The time that the operation finished.
         *
         * @since 4.2
         */
        long getNotificationOperationFinishedTimestamp();
    
        /**
         * A structured object providing details about the operation that was performed.
         */
        Object getNotificationOperationDetails();
    
        /**
    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. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationFixture.groovy

                        op.result = result
                        op.finished = finishedNotification.getNotificationOperationFinishedTimestamp()
                        if (finishedNotification.notificationOperationDetails instanceof ${RunBuildBuildOperationType.Details.name}) {
                            store(file('${jsonFile().toURI()}'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:47:00 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                this.parentId = parentId;
                this.details = details;
                this.result = result;
                this.failure = failure;
            }
    
            @Override
            public long getNotificationOperationFinishedTimestamp() {
                return timestamp;
            }
    
            @Override
            public Object getNotificationOperationId() {
                return id;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top