public final class com.google.common.util.concurrent.Uninterruptibles
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.util.concurrent.Uninterruptibles
  super_class: java.lang.Object
{
  public static void awaitUninterruptibly(java.util.concurrent.CountDownLatch);
    descriptor: (Ljava/util/concurrent/CountDownLatch;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.util.concurrent.CountDownLatch latch
         0: .line 52
            iconst_0
            istore 1 /* interrupted */
        start local 1 // boolean interrupted
         1: .line 56
      StackMap locals: int
      StackMap stack:
            aload 0 /* latch */
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         2: .line 63
            iload 1 /* interrupted */
            ifeq 4
         3: .line 64
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 57
      StackMap locals:
      StackMap stack:
            return
         5: .line 58
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
         6: .line 59
            iconst_1
            istore 1 /* interrupted */
         7: .line 54
            goto 1
         8: .line 62
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         9: .line 63
            iload 1 /* interrupted */
            ifeq 11
        10: .line 64
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        11: .line 66
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 2
            athrow
        end local 1 // boolean interrupted
        end local 0 // java.util.concurrent.CountDownLatch latch
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0        latch  Ljava/util/concurrent/CountDownLatch;
            1   12     1  interrupted  Z
      Exception table:
        from    to  target  type
           1     2       5  Class java.lang.InterruptedException
           1     2       8  any
           5     8       8  any
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
       Name  Flags
      latch  

  public static boolean awaitUninterruptibly(java.util.concurrent.CountDownLatch, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/CountDownLatch;JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // java.util.concurrent.CountDownLatch latch
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 76
            iconst_0
            istore 4 /* interrupted */
        start local 4 // boolean interrupted
         1: .line 78
            aload 3 /* unit */
            lload 1 /* timeout */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 5 /* remainingNanos */
        start local 5 // long remainingNanos
         2: .line 79
            invokestatic java.lang.System.nanoTime:()J
            lload 5 /* remainingNanos */
            ladd
            lstore 7 /* end */
        start local 7 // long end
         3: .line 84
      StackMap locals: int long long
      StackMap stack:
            aload 0 /* latch */
            lload 5 /* remainingNanos */
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            istore 10
         4: .line 91
            iload 4 /* interrupted */
            ifeq 6
         5: .line 92
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         6: .line 84
      StackMap locals: java.util.concurrent.CountDownLatch long java.util.concurrent.TimeUnit int long long top int
      StackMap stack:
            iload 10
            ireturn
         7: .line 85
      StackMap locals: java.util.concurrent.CountDownLatch long java.util.concurrent.TimeUnit int long long
      StackMap stack: java.lang.InterruptedException
            pop
         8: .line 86
            iconst_1
            istore 4 /* interrupted */
         9: .line 87
            lload 7 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 5 /* remainingNanos */
        10: .line 81
            goto 3
        end local 7 // long end
        end local 5 // long remainingNanos
        11: .line 90
      StackMap locals: java.util.concurrent.CountDownLatch long java.util.concurrent.TimeUnit int
      StackMap stack: java.lang.Throwable
            astore 9
        12: .line 91
            iload 4 /* interrupted */
            ifeq 14
        13: .line 92
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        14: .line 94
      StackMap locals: java.util.concurrent.CountDownLatch long java.util.concurrent.TimeUnit int top top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        end local 4 // boolean interrupted
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // java.util.concurrent.CountDownLatch latch
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0           latch  Ljava/util/concurrent/CountDownLatch;
            0   15     1         timeout  J
            0   15     3            unit  Ljava/util/concurrent/TimeUnit;
            1   15     4     interrupted  Z
            2   11     5  remainingNanos  J
            3   11     7             end  J
      Exception table:
        from    to  target  type
           3     4       7  Class java.lang.InterruptedException
           1     4      11  any
           7    11      11  any
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
         Name  Flags
      latch    
      timeout  
      unit     

  public static boolean awaitUninterruptibly(java.util.concurrent.locks.Condition, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/locks/Condition;JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // java.util.concurrent.locks.Condition condition
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 105
            iconst_0
            istore 4 /* interrupted */
        start local 4 // boolean interrupted
         1: .line 107
            aload 3 /* unit */
            lload 1 /* timeout */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 5 /* remainingNanos */
        start local 5 // long remainingNanos
         2: .line 108
            invokestatic java.lang.System.nanoTime:()J
            lload 5 /* remainingNanos */
            ladd
            lstore 7 /* end */
        start local 7 // long end
         3: .line 112
      StackMap locals: int long long
      StackMap stack:
            aload 0 /* condition */
            lload 5 /* remainingNanos */
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokeinterface java.util.concurrent.locks.Condition.await:(JLjava/util/concurrent/TimeUnit;)Z
            istore 10
         4: .line 119
            iload 4 /* interrupted */
            ifeq 6
         5: .line 120
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         6: .line 112
      StackMap locals: java.util.concurrent.locks.Condition long java.util.concurrent.TimeUnit int long long top int
      StackMap stack:
            iload 10
            ireturn
         7: .line 113
      StackMap locals: java.util.concurrent.locks.Condition long java.util.concurrent.TimeUnit int long long
      StackMap stack: java.lang.InterruptedException
            pop
         8: .line 114
            iconst_1
            istore 4 /* interrupted */
         9: .line 115
            lload 7 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 5 /* remainingNanos */
        10: .line 110
            goto 3
        end local 7 // long end
        end local 5 // long remainingNanos
        11: .line 118
      StackMap locals: java.util.concurrent.locks.Condition long java.util.concurrent.TimeUnit int
      StackMap stack: java.lang.Throwable
            astore 9
        12: .line 119
            iload 4 /* interrupted */
            ifeq 14
        13: .line 120
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        14: .line 122
      StackMap locals: java.util.concurrent.locks.Condition long java.util.concurrent.TimeUnit int top top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        end local 4 // boolean interrupted
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // java.util.concurrent.locks.Condition condition
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0       condition  Ljava/util/concurrent/locks/Condition;
            0   15     1         timeout  J
            0   15     3            unit  Ljava/util/concurrent/TimeUnit;
            1   15     4     interrupted  Z
            2   11     5  remainingNanos  J
            3   11     7             end  J
      Exception table:
        from    to  target  type
           3     4       7  Class java.lang.InterruptedException
           1     4      11  any
           7    11      11  any
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
           Name  Flags
      condition  
      timeout    
      unit       

  public static void joinUninterruptibly(java.lang.Thread);
    descriptor: (Ljava/lang/Thread;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.lang.Thread toJoin
         0: .line 128
            iconst_0
            istore 1 /* interrupted */
        start local 1 // boolean interrupted
         1: .line 132
      StackMap locals: int
      StackMap stack:
            aload 0 /* toJoin */
            invokevirtual java.lang.Thread.join:()V
         2: .line 139
            iload 1 /* interrupted */
            ifeq 4
         3: .line 140
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 133
      StackMap locals:
      StackMap stack:
            return
         5: .line 134
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
         6: .line 135
            iconst_1
            istore 1 /* interrupted */
         7: .line 130
            goto 1
         8: .line 138
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         9: .line 139
            iload 1 /* interrupted */
            ifeq 11
        10: .line 140
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        11: .line 142
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 2
            athrow
        end local 1 // boolean interrupted
        end local 0 // java.lang.Thread toJoin
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0       toJoin  Ljava/lang/Thread;
            1   12     1  interrupted  Z
      Exception table:
        from    to  target  type
           1     2       5  Class java.lang.InterruptedException
           1     2       8  any
           5     8       8  any
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
        Name  Flags
      toJoin  

  public static void joinUninterruptibly(java.lang.Thread, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/lang/Thread;JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=10, args_size=3
        start local 0 // java.lang.Thread toJoin
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 151
            aload 0 /* toJoin */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 152
            iconst_0
            istore 4 /* interrupted */
        start local 4 // boolean interrupted
         2: .line 154
            aload 3 /* unit */
            lload 1 /* timeout */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 5 /* remainingNanos */
        start local 5 // long remainingNanos
         3: .line 155
            invokestatic java.lang.System.nanoTime:()J
            lload 5 /* remainingNanos */
            ladd
            lstore 7 /* end */
        start local 7 // long end
         4: .line 159
      StackMap locals: int long long
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            aload 0 /* toJoin */
            lload 5 /* remainingNanos */
            invokevirtual java.util.concurrent.TimeUnit.timedJoin:(Ljava/lang/Thread;J)V
         5: .line 167
            iload 4 /* interrupted */
            ifeq 7
         6: .line 168
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         7: .line 160
      StackMap locals:
      StackMap stack:
            return
         8: .line 161
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
         9: .line 162
            iconst_1
            istore 4 /* interrupted */
        10: .line 163
            lload 7 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 5 /* remainingNanos */
        11: .line 156
            goto 4
        end local 7 // long end
        end local 5 // long remainingNanos
        12: .line 166
      StackMap locals: java.lang.Thread long java.util.concurrent.TimeUnit int
      StackMap stack: java.lang.Throwable
            astore 9
        13: .line 167
            iload 4 /* interrupted */
            ifeq 15
        14: .line 168
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        15: .line 170
      StackMap locals: java.lang.Thread long java.util.concurrent.TimeUnit int top top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        end local 4 // boolean interrupted
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // java.lang.Thread toJoin
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   16     0          toJoin  Ljava/lang/Thread;
            0   16     1         timeout  J
            0   16     3            unit  Ljava/util/concurrent/TimeUnit;
            2   16     4     interrupted  Z
            3   12     5  remainingNanos  J
            4   12     7             end  J
      Exception table:
        from    to  target  type
           4     5       8  Class java.lang.InterruptedException
           2     5      12  any
           8    12      12  any
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
         Name  Flags
      toJoin   
      timeout  
      unit     

  public static <V> V getUninterruptibly(java.util.concurrent.Future<V>);
    descriptor: (Ljava/util/concurrent/Future;)Ljava/lang/Object;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=4, args_size=1
        start local 0 // java.util.concurrent.Future future
         0: .line 192
            iconst_0
            istore 1 /* interrupted */
        start local 1 // boolean interrupted
         1: .line 196
      StackMap locals: int
      StackMap stack:
            aload 0 /* future */
            invokeinterface java.util.concurrent.Future.get:()Ljava/lang/Object;
            astore 3
         2: .line 202
            iload 1 /* interrupted */
            ifeq 4
         3: .line 203
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 196
      StackMap locals: java.util.concurrent.Future int top java.lang.Object
      StackMap stack:
            aload 3
            areturn
         5: .line 197
      StackMap locals: java.util.concurrent.Future int
      StackMap stack: java.lang.InterruptedException
            pop
         6: .line 198
            iconst_1
            istore 1 /* interrupted */
         7: .line 194
            goto 1
         8: .line 201
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         9: .line 202
            iload 1 /* interrupted */
            ifeq 11
        10: .line 203
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        11: .line 205
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 2
            athrow
        end local 1 // boolean interrupted
        end local 0 // java.util.concurrent.Future future
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0       future  Ljava/util/concurrent/Future<TV;>;
            1   12     1  interrupted  Z
      Exception table:
        from    to  target  type
           1     2       5  Class java.lang.InterruptedException
           1     2       8  any
           5     8       8  any
    Exceptions:
      throws java.util.concurrent.ExecutionException
    Signature: <V:Ljava/lang/Object;>(Ljava/util/concurrent/Future<TV;>;)TV;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
        Name  Flags
      future  

  public static <V> V getUninterruptibly(java.util.concurrent.Future<V>, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/Future;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // java.util.concurrent.Future future
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 230
            iconst_0
            istore 4 /* interrupted */
        start local 4 // boolean interrupted
         1: .line 232
            aload 3 /* unit */
            lload 1 /* timeout */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 5 /* remainingNanos */
        start local 5 // long remainingNanos
         2: .line 233
            invokestatic java.lang.System.nanoTime:()J
            lload 5 /* remainingNanos */
            ladd
            lstore 7 /* end */
        start local 7 // long end
         3: .line 238
      StackMap locals: int long long
      StackMap stack:
            aload 0 /* future */
            lload 5 /* remainingNanos */
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokeinterface java.util.concurrent.Future.get:(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
            astore 10
         4: .line 245
            iload 4 /* interrupted */
            ifeq 6
         5: .line 246
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         6: .line 238
      StackMap locals: java.util.concurrent.Future long java.util.concurrent.TimeUnit int long long top java.lang.Object
      StackMap stack:
            aload 10
            areturn
         7: .line 239
      StackMap locals: java.util.concurrent.Future long java.util.concurrent.TimeUnit int long long
      StackMap stack: java.lang.InterruptedException
            pop
         8: .line 240
            iconst_1
            istore 4 /* interrupted */
         9: .line 241
            lload 7 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 5 /* remainingNanos */
        10: .line 235
            goto 3
        end local 7 // long end
        end local 5 // long remainingNanos
        11: .line 244
      StackMap locals: java.util.concurrent.Future long java.util.concurrent.TimeUnit int
      StackMap stack: java.lang.Throwable
            astore 9
        12: .line 245
            iload 4 /* interrupted */
            ifeq 14
        13: .line 246
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        14: .line 248
      StackMap locals: java.util.concurrent.Future long java.util.concurrent.TimeUnit int top top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        end local 4 // boolean interrupted
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // java.util.concurrent.Future future
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0          future  Ljava/util/concurrent/Future<TV;>;
            0   15     1         timeout  J
            0   15     3            unit  Ljava/util/concurrent/TimeUnit;
            1   15     4     interrupted  Z
            2   11     5  remainingNanos  J
            3   11     7             end  J
      Exception table:
        from    to  target  type
           3     4       7  Class java.lang.InterruptedException
           1     4      11  any
           7    11      11  any
    Exceptions:
      throws java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException
    Signature: <V:Ljava/lang/Object;>(Ljava/util/concurrent/Future<TV;>;JLjava/util/concurrent/TimeUnit;)TV;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
         Name  Flags
      future   
      timeout  
      unit     

  public static <E> E takeUninterruptibly(java.util.concurrent.BlockingQueue<E>);
    descriptor: (Ljava/util/concurrent/BlockingQueue;)Ljava/lang/Object;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=4, args_size=1
        start local 0 // java.util.concurrent.BlockingQueue queue
         0: .line 254
            iconst_0
            istore 1 /* interrupted */
        start local 1 // boolean interrupted
         1: .line 258
      StackMap locals: int
      StackMap stack:
            aload 0 /* queue */
            invokeinterface java.util.concurrent.BlockingQueue.take:()Ljava/lang/Object;
            astore 3
         2: .line 264
            iload 1 /* interrupted */
            ifeq 4
         3: .line 265
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 258
      StackMap locals: java.util.concurrent.BlockingQueue int top java.lang.Object
      StackMap stack:
            aload 3
            areturn
         5: .line 259
      StackMap locals: java.util.concurrent.BlockingQueue int
      StackMap stack: java.lang.InterruptedException
            pop
         6: .line 260
            iconst_1
            istore 1 /* interrupted */
         7: .line 256
            goto 1
         8: .line 263
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         9: .line 264
            iload 1 /* interrupted */
            ifeq 11
        10: .line 265
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        11: .line 267
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 2
            athrow
        end local 1 // boolean interrupted
        end local 0 // java.util.concurrent.BlockingQueue queue
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0        queue  Ljava/util/concurrent/BlockingQueue<TE;>;
            1   12     1  interrupted  Z
      Exception table:
        from    to  target  type
           1     2       5  Class java.lang.InterruptedException
           1     2       8  any
           5     8       8  any
    Signature: <E:Ljava/lang/Object;>(Ljava/util/concurrent/BlockingQueue<TE;>;)TE;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
       Name  Flags
      queue  

  public static <E> void putUninterruptibly(java.util.concurrent.BlockingQueue<E>, );
    descriptor: (Ljava/util/concurrent/BlockingQueue;Ljava/lang/Object;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.util.concurrent.BlockingQueue queue
        start local 1 // java.lang.Object element
         0: .line 280
            iconst_0
            istore 2 /* interrupted */
        start local 2 // boolean interrupted
         1: .line 284
      StackMap locals: int
      StackMap stack:
            aload 0 /* queue */
            aload 1 /* element */
            invokeinterface java.util.concurrent.BlockingQueue.put:(Ljava/lang/Object;)V
         2: .line 291
            iload 2 /* interrupted */
            ifeq 4
         3: .line 292
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 285
      StackMap locals:
      StackMap stack:
            return
         5: .line 286
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
         6: .line 287
            iconst_1
            istore 2 /* interrupted */
         7: .line 282
            goto 1
         8: .line 290
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
         9: .line 291
            iload 2 /* interrupted */
            ifeq 11
        10: .line 292
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        11: .line 294
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3
            athrow
        end local 2 // boolean interrupted
        end local 1 // java.lang.Object element
        end local 0 // java.util.concurrent.BlockingQueue queue
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0        queue  Ljava/util/concurrent/BlockingQueue<TE;>;
            0   12     1      element  TE;
            1   12     2  interrupted  Z
      Exception table:
        from    to  target  type
           1     2       5  Class java.lang.InterruptedException
           1     2       8  any
           5     8       8  any
    Signature: <E:Ljava/lang/Object;>(Ljava/util/concurrent/BlockingQueue<TE;>;TE;)V
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
         Name  Flags
      queue    
      element  

  public static void sleepUninterruptibly(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // long sleepFor
        start local 2 // java.util.concurrent.TimeUnit unit
         0: .line 301
            iconst_0
            istore 3 /* interrupted */
        start local 3 // boolean interrupted
         1: .line 303
            aload 2 /* unit */
            lload 0 /* sleepFor */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 4 /* remainingNanos */
        start local 4 // long remainingNanos
         2: .line 304
            invokestatic java.lang.System.nanoTime:()J
            lload 4 /* remainingNanos */
            ladd
            lstore 6 /* end */
        start local 6 // long end
         3: .line 308
      StackMap locals: int long long
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            lload 4 /* remainingNanos */
            invokevirtual java.util.concurrent.TimeUnit.sleep:(J)V
         4: .line 316
            iload 3 /* interrupted */
            ifeq 6
         5: .line 317
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         6: .line 309
      StackMap locals:
      StackMap stack:
            return
         7: .line 310
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
         8: .line 311
            iconst_1
            istore 3 /* interrupted */
         9: .line 312
            lload 6 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 4 /* remainingNanos */
        10: .line 305
            goto 3
        end local 6 // long end
        end local 4 // long remainingNanos
        11: .line 315
      StackMap locals: long java.util.concurrent.TimeUnit int
      StackMap stack: java.lang.Throwable
            astore 8
        12: .line 316
            iload 3 /* interrupted */
            ifeq 14
        13: .line 317
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        14: .line 319
      StackMap locals: long java.util.concurrent.TimeUnit int top top top top java.lang.Throwable
      StackMap stack:
            aload 8
            athrow
        end local 3 // boolean interrupted
        end local 2 // java.util.concurrent.TimeUnit unit
        end local 0 // long sleepFor
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0        sleepFor  J
            0   15     2            unit  Ljava/util/concurrent/TimeUnit;
            1   15     3     interrupted  Z
            2   11     4  remainingNanos  J
            3   11     6             end  J
      Exception table:
        from    to  target  type
           3     4       7  Class java.lang.InterruptedException
           1     4      11  any
           7    11      11  any
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
          Name  Flags
      sleepFor  
      unit      

  public static boolean tryAcquireUninterruptibly(java.util.concurrent.Semaphore, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/Semaphore;JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // java.util.concurrent.Semaphore semaphore
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 331
            aload 0 /* semaphore */
            iconst_1
            lload 1 /* timeout */
            aload 3 /* unit */
            invokestatic com.google.common.util.concurrent.Uninterruptibles.tryAcquireUninterruptibly:(Ljava/util/concurrent/Semaphore;IJLjava/util/concurrent/TimeUnit;)Z
            ireturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // java.util.concurrent.Semaphore semaphore
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  semaphore  Ljava/util/concurrent/Semaphore;
            0    1     1    timeout  J
            0    1     3       unit  Ljava/util/concurrent/TimeUnit;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
           Name  Flags
      semaphore  
      timeout    
      unit       

  public static boolean tryAcquireUninterruptibly(java.util.concurrent.Semaphore, int, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/Semaphore;IJLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=12, args_size=4
        start local 0 // java.util.concurrent.Semaphore semaphore
        start local 1 // int permits
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 343
            iconst_0
            istore 5 /* interrupted */
        start local 5 // boolean interrupted
         1: .line 345
            aload 4 /* unit */
            lload 2 /* timeout */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 6 /* remainingNanos */
        start local 6 // long remainingNanos
         2: .line 346
            invokestatic java.lang.System.nanoTime:()J
            lload 6 /* remainingNanos */
            ladd
            lstore 8 /* end */
        start local 8 // long end
         3: .line 351
      StackMap locals: int long long
      StackMap stack:
            aload 0 /* semaphore */
            iload 1 /* permits */
            lload 6 /* remainingNanos */
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.Semaphore.tryAcquire:(IJLjava/util/concurrent/TimeUnit;)Z
            istore 11
         4: .line 358
            iload 5 /* interrupted */
            ifeq 6
         5: .line 359
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         6: .line 351
      StackMap locals: java.util.concurrent.Semaphore int long java.util.concurrent.TimeUnit int long long top int
      StackMap stack:
            iload 11
            ireturn
         7: .line 352
      StackMap locals: java.util.concurrent.Semaphore int long java.util.concurrent.TimeUnit int long long
      StackMap stack: java.lang.InterruptedException
            pop
         8: .line 353
            iconst_1
            istore 5 /* interrupted */
         9: .line 354
            lload 8 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 6 /* remainingNanos */
        10: .line 348
            goto 3
        end local 8 // long end
        end local 6 // long remainingNanos
        11: .line 357
      StackMap locals: java.util.concurrent.Semaphore int long java.util.concurrent.TimeUnit int
      StackMap stack: java.lang.Throwable
            astore 10
        12: .line 358
            iload 5 /* interrupted */
            ifeq 14
        13: .line 359
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        14: .line 361
      StackMap locals: java.util.concurrent.Semaphore int long java.util.concurrent.TimeUnit int top top top top java.lang.Throwable
      StackMap stack:
            aload 10
            athrow
        end local 5 // boolean interrupted
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // int permits
        end local 0 // java.util.concurrent.Semaphore semaphore
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0       semaphore  Ljava/util/concurrent/Semaphore;
            0   15     1         permits  I
            0   15     2         timeout  J
            0   15     4            unit  Ljava/util/concurrent/TimeUnit;
            1   15     5     interrupted  Z
            2   11     6  remainingNanos  J
            3   11     8             end  J
      Exception table:
        from    to  target  type
           3     4       7  Class java.lang.InterruptedException
           1     4      11  any
           7    11      11  any
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
           Name  Flags
      semaphore  
      permits    
      timeout    
      unit       

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.Uninterruptibles this
         0: .line 366
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.util.concurrent.Uninterruptibles this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/Uninterruptibles;
}
SourceFile: "Uninterruptibles.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtCompatible(emulated = true)