Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hearts (0.22 sec)

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

      }
    
      public void testDoCancelStart() throws TimeoutException {
        Service a =
            new AbstractService() {
              @Override
              protected void doStart() {
                // Never starts!
              }
    
              @Override
              protected void doCancelStart() {
                assertThat(state()).isEqualTo(Service.State.STOPPING);
                notifyStopped();
              }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

      }
    
      public void testDoCancelStart() throws TimeoutException {
        Service a =
            new AbstractService() {
              @Override
              protected void doStart() {
                // Never starts!
              }
    
              @Override
              protected void doCancelStart() {
                assertThat(state()).isEqualTo(Service.State.STOPPING);
                notifyStopped();
              }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.9K bytes
    - Viewed (0)
Back to top