Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for thr_new (2.21 sec)

  1. android/guava/src/com/google/common/base/Throwables.java

       *     directly, or use a combination of {@link #throwIfUnchecked} and {@code throw new
       *     RuntimeException(e)}. But consider whether users would be better off if your API threw a
       *     different type of exception. For background on the deprecation, read <a
       *     href="https://goo.gl/Ivn2kc">Why we deprecated {@code Throwables.propagate}</a>.
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

            return filtered || (state == ExecutionState.EXECUTED && !isFailed());
        }
    
        /**
         * Whether this node failed with a verification failure.
         *
         * @return true if failed and threw {@link VerificationException}, false otherwise
         */
        public boolean isVerificationFailure() {
            return getNodeFailure() != null && getNodeFailure().getCause() instanceof VerificationException;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private enum Outcome {
    
        /** The method returned normally and is either void or returned true. */
        SUCCESS,
    
        /** The method returned false. */
        FAILURE,
    
        /** The method threw an InterruptedException. */
        INTERRUPT,
    
        /** The method did not return or throw anything. */
        HANG;
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       * @throws IllegalAccessException if the class isn't public or is nested inside a non-public
       *     class, preventing its methods from being accessible.
       * @throws InvocationTargetException if a static method threw exception.
       */
      private <T> @Nullable T instantiate(Invokable<?, ? extends T> factory)
          throws ParameterNotInstantiableException, InvocationTargetException, IllegalAccessException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       * @throws IllegalAccessException if the class isn't public or is nested inside a non-public
       *     class, preventing its methods from being accessible.
       * @throws InvocationTargetException if a static method threw exception.
       */
      private <T> @Nullable T instantiate(Invokable<?, ? extends T> factory)
          throws ParameterNotInstantiableException, InvocationTargetException, IllegalAccessException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	// TC malloc.
    	`tcmalloc::.*`,
    	`tc_calloc`,
    	`tc_cfree`,
    	`tc_malloc`,
    	`tc_free`,
    	`tc_memalign`,
    	`tc_posix_memalign`,
    	`tc_pvalloc`,
    	`tc_valloc`,
    	`tc_realloc`,
    	`tc_new`,
    	`tc_delete`,
    	`tc_newarray`,
    	`tc_deletearray`,
    	`tc_new_nothrow`,
    	`tc_newarray_nothrow`,
    
    	// Memory-allocation routines on OS X.
    	`malloc_zone_malloc`,
    	`malloc_zone_calloc`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	//  - rest-handler: the "executing" handler returns after the rest layer times out the request.
    	// status: whether the handler panicked or threw an error, possible values:
    	//  - 'panic': the handler panicked
    	//  - 'error': the handler return an error
    	//  - 'ok': the handler returned a result (no error and no panic)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          return new Failure(exception.getCause());
        } catch (CancellationException cancellation) {
          if (!wasCancelled) {
            return new Failure(
                new IllegalArgumentException(
                    "get() threw CancellationException, despite reporting isCancelled() == false: "
                        + future,
                    cancellation));
          }
          return new Cancellation(false, cancellation);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          return new Failure(exception.getCause());
        } catch (CancellationException cancellation) {
          if (!wasCancelled) {
            return new Failure(
                new IllegalArgumentException(
                    "get() threw CancellationException, despite reporting isCancelled() == false: "
                        + future,
                    cancellation));
          }
          return new Cancellation(false, cancellation);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * returns immediately.
         *
         * @throws CancellationException if the computation was cancelled
         * @throws ExecutionException if the computation threw an exception
         */
        @ParametricNullness
        public V get() throws ExecutionException {
          return getDone(closingFuture.future);
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top