Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for me (0.15 sec)

  1. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(logged.get(0).getThrown()).hasMessageThat().isEqualTo("You can't fire me, I quit.");
      }
    
      private static final class CancelPanickingFuture<V> extends AbstractFuture<V> {
        @Override
        public boolean cancel(boolean mayInterruptIfRunning) {
          setException(new Error("You can't fire me, I quit."));
          return false;
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(logged.get(0).getThrown()).hasMessageThat().isEqualTo("You can't fire me, I quit.");
      }
    
      private static final class CancelPanickingFuture<V> extends AbstractFuture<V> {
        @Override
        public boolean cancel(boolean mayInterruptIfRunning) {
          setException(new Error("You can't fire me, I quit."));
          return false;
        }
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

             * the way we have been doing that is to call exists() which
             * calls this method so another technique will be necessary
             * to support DFS referral _to_ Win95/98/ME.
             */
    
            if( tree.session.transport.hasCapability( ServerMessageBlock.CAP_NT_SMBS )) {
    
                /*
                 * Trans2 Query Path Information Request / Response
                 */
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top