Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for thr_new (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

            Beautiful, beautiful Soup!'
    
    
    
                               CHAPTER XI
    
                          Who Stole the Tarts?
    
    
      The King and Queen of Hearts were seated on their throne when
    they arrived, with a great crowd assembled about them--all sorts
    of little birds and beasts, as well as the whole pack of cards:
    the Knave was standing before them, in chains, with a soldier on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

            Beautiful, beautiful Soup!'
    
    
    
                               CHAPTER XI
    
                          Who Stole the Tarts?
    
    
      The King and Queen of Hearts were seated on their throne when
    they arrived, with a great crowd assembled about them--all sorts
    of little birds and beasts, as well as the whole pack of cards:
    the Knave was standing before them, in chains, with a soldier on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  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