Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for noabody (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                        logger.warn("Could not persist build resumption data", e);
                    }
                });
            }
        }
    
        /**
         * Nobody should ever use this method.
         *
         * @deprecated If you use this method and your code is not in Maven Core, stop doing this.
         */
        @Deprecated
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

      @ExampleBaseFeature.Require({ExampleBaseFeature.BASE_FEATURE_1})
      private abstract static class ExampleBaseInterfaceTester extends TestCase {
        protected final void doNotActuallyRunThis() {
          fail("Nobody's meant to actually run this!");
        }
      }
    
      @AndroidIncompatible // Android attempts to run directly
      @NonTesterAnnotation
      @ExampleDerivedFeature.Require({ExampleDerivedFeature.DERIVED_FEATURE_2})
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/FinalizableReferenceQueue.java

     *       public void finalizeReferent() {
     *         references.remove(this):
     *         if (!serverSocket.isClosed()) {
     *           ...log a message about how nobody called close()...
     *           try {
     *             serverSocket.close();
     *           } catch (IOException e) {
     *             ...
     *           }
     *         }
     *       }
     *     };
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

     *       public void finalizeReferent() {
     *         references.remove(this):
     *         if (!serverSocket.isClosed()) {
     *           ...log a message about how nobody called close()...
     *           try {
     *             serverSocket.close();
     *           } catch (IOException e) {
     *             ...
     *           }
     *         }
     *       }
     *     };
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java

            validateApi(body, messages -> {});
            final EditBody newBody = new EditBody();
            AdminGeneralAction.updateForm(fessConfig, newBody);
            BeanUtil.copyBeanToBean(body, newBody, CopyOptions::excludeNull);
            AdminGeneralAction.updateConfig(fessConfig, newBody);
            return asJson(new ApiResponse().status(Status.OK).result());
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

      @ExampleBaseFeature.Require({ExampleBaseFeature.BASE_FEATURE_1})
      private abstract static class ExampleBaseInterfaceTester extends TestCase {
        protected final void doNotActuallyRunThis() {
          fail("Nobody's meant to actually run this!");
        }
      }
    
      @AndroidIncompatible // Android attempts to run directly
      @NonTesterAnnotation
      @ExampleDerivedFeature.Require({ExampleDerivedFeature.DERIVED_FEATURE_2})
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 10.4K bytes
    - Viewed (2)
  7. android/guava/src/com/google/common/util/concurrent/Striped.java

     * stripes (locks/semaphores) are initialized eagerly, and are not reclaimed unless {@code Striped}
     * itself is reclaimable. <i>Weak</i> means that locks/semaphores are created lazily, and they are
     * allowed to be reclaimed if nobody is holding on to them. This is useful, for example, if one
     * wants to create a {@code Striped<Lock>} of many locks, but worries that in most cases only a
     * small portion of these would be in use.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 10 20:55:18 GMT 2023
    - 20.3K bytes
    - Viewed (1)
Back to top