Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 6,625 for throws (0.12 sec)

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

              break;
            case EXCEPTION_DATA:
              throw EXCEPTION;
          }
          return outputFuture;
        }
      }
    
      public void testFutureGetThrowsFunctionException() throws Exception {
        inputFuture.set(EXCEPTION_DATA);
        listener.assertException(EXCEPTION);
      }
    
      public void testFutureGetThrowsCancellationIfInputCancelled() throws Exception {
        inputFuture.cancel(true); // argument is ignored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTransformAsyncTest.java

              break;
            case EXCEPTION_DATA:
              throw EXCEPTION;
          }
          return outputFuture;
        }
      }
    
      public void testFutureGetThrowsFunctionException() throws Exception {
        inputFuture.set(EXCEPTION_DATA);
        listener.assertException(EXCEPTION);
      }
    
      public void testFutureGetThrowsCancellationIfInputCancelled() throws Exception {
        inputFuture.cancel(true); // argument is ignored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

        }
    
        private void visitEntries(ClasspathBuilder.EntryBuilder builder) throws IOException, FileException {
            classpathWalker.visit(source, entry -> {
                visitEntry(builder, entry);
            });
            finishProcessing(builder);
        }
    
        private void visitEntry(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry entry) throws IOException {
            try {
                if (isClassFile(entry)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

                thrownByExecutionThread = e;
              }
            });
        executionThread.start();
      }
    
      private static void throwIfSet(Throwable t) throws Throwable {
        if (t != null) {
          throw t;
        }
      }
    
      public void testStopUnstartedService() throws Exception {
        NoOpService service = new NoOpService();
        RecordingListener listener = RecordingListener.record(service);
    
        service.stopAsync();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

                thrownByExecutionThread = e;
              }
            });
        executionThread.start();
      }
    
      private static void throwIfSet(Throwable t) throws Throwable {
        if (t != null) {
          throw t;
        }
      }
    
      public void testStopUnstartedService() throws Exception {
        NoOpService service = new NoOpService();
        RecordingListener listener = RecordingListener.record(service);
    
        service.stopAsync();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    ServiceLocator { public abstract Object lookup(String) throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, String) throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(String) throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public abstract java.util.List lookupList(String) throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ByteStreams.java

       * @param len an int specifying the number of bytes to read.
       * @throws EOFException if this stream reaches the end before reading all the bytes.
       * @throws IOException if an I/O error occurs.
       */
      public static void readFully(InputStream in, byte[] b, int off, int len) throws IOException {
        int read = read(in, b, off, len);
        if (read != len) {
          throw new EOFException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/CharSource.java

       * it does.
       *
       * @throws IOException if an I/O error occurs while reading from this source or if {@code
       *     processor} throws an {@code IOException}
       * @since 16.0
       */
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public <T extends @Nullable Object> T readLines(LineProcessor<T> processor) throws IOException {
        checkNotNull(processor);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    .configuration.PlexusConfiguration); public void initialize() throws exception.ComponentRepositoryE; public void initializeComponentD() throws exception.ComponentRepositoryE; private void initializeComponentD() throws exception.ComponentRepositoryE; public void addComponentDescript(org.codehaus.plexus.configuration.PlexusConfiguration) throws exception.ComponentRepositoryE; public void addComponentDescript(ComponentDescriptor) throws exception.ComponentRepositoryE; public void validateComponentD...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/stream/EncodedStream.java

            }
    
            @Override
            public void write(int b) throws IOException {
                delegate.write(HEX_DIGIT[(b >> 4) & 0x0f]);
                delegate.write(HEX_DIGIT[b & 0x0f]);
            }
    
            @Override
            public void flush() throws IOException {
                delegate.flush();
            }
    
            @Override
            public void close() throws IOException {
                delegate.close();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top