Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNotificationOperationFailure (0.38 sec)

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

         */
        Object getNotificationOperationResult();
    
        /**
         * The operation failure.
         * Null if the operation was successful.
         */
        Throwable getNotificationOperationFailure();
    
    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/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            }
    
            @Override
            public Object getNotificationOperationResult() {
                return result;
            }
    
            @Override
            public Throwable getNotificationOperationFailure() {
                return failure;
            }
    
            @Override
            public String toString() {
                return "BuildOperationFinishedNotification{"
                    + "id=" + id
    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