Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Clauss (0.19 sec)

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

      }
    
      private static final class CallerClass2 {
        @CanIgnoreReturnValue
        static <V> V get(ListenableFuture<V> future) throws ExecutionException, InterruptedException {
          return getDone(future);
        }
      }
    
      private static class MyException extends Exception {}
    
      // Class hierarchy for generics sanity checks
      private static class Foo {}
    
      private static class FooChild extends Foo {}
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: &lt;div class="alert alert-warning"&gt; */
        public static final String ERRORS_front_prefix = "{errors.front_prefix}";
    
        /** The key of the message: &lt;/div&gt; */
        public static final String ERRORS_front_suffix = "{errors.front_suffix}";
    
        /** The key of the message: &lt;ul class="has-error"&gt; */
        public static final String ERRORS_HEADER = "{errors.header}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

    import java.util.BitSet;
    import java.util.Collections;
    import java.util.List;
    import java.util.Random;
    
    /**
     * Benchmark for the {@link CharMatcher} class.
     *
     * @author David Beaumont
     * @author Kevin Bourrillion
     * @author David Richter
     */
    public class CharMatcherBenchmark {
    
      // Caliper injects params automatically
    
      // Overall configuration
      @Param SampleMatcherConfig config;
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsScheduledJobCQ.java

    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsScheduledJobCQ extends EsAbstractConditionQuery {
    
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 98.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileConfigCA.java

    import org.opensearch.search.aggregations.metrics.TopHitsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ValueCountAggregationBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsFileConfigCA extends EsAbstractConditionAggregation {
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 144.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/references/Fe10IdeNormalAnalysisSourceModuleReferenceResolveTestGenerated.java

    import java.io.File;
    import java.util.regex.Pattern;
    
    /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.analysis.api.GenerateAnalysisApiTestsKt}. DO NOT MODIFY MANUALLY */
    @SuppressWarnings("all")
    @TestMetadata("analysis/analysis-api/testData/referenceResolve")
    @TestDataPath("$PROJECT_ROOT")
    public class Fe10IdeNormalAnalysisSourceModuleReferenceResolveTestGenerated extends AbstractReferenceResolveTest {
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Sat Apr 13 09:17:40 GMT 2024
    - 129.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

       * opportunistically, just to simplify some locking and avoid separate construction.
       */
      @SuppressWarnings("serial") // This class is never serialized.
      static class Segment<K, V> extends ReentrantLock {
    
        /*
         * TODO(fry): Consider copying variables (like evictsBySize) from outer class into this class.
         * It will require more memory but will reduce indirection.
         */
    
        /*
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

        // Ideally, the extra type parameter "C" shouldn't be necessary. It is a
        // work-around of a compiler type inference quirk that prevents the
        // following code from being compiled:
        // Comparator<Class<?>> comparator = null;
        // Map<Class<? extends Throwable>, String> map = newTreeMap(comparator);
        return new TreeMap<>(comparator);
      }
    
      /**
       * Creates an {@code EnumMap} instance.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    @ElementTypesAreNonnullByDefault
    // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
      private static final LazyLogger logger = new LazyLogger(ClosingFuture.class);
    
      /**
       * An object that can capture objects to be closed later, when a {@link ClosingFuture} pipeline is
       * done.
       */
      public static final class DeferredCloser {
        @RetainedWith private final CloseableList list;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsDataConfigCQ.java

    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsDataConfigCQ extends EsAbstractConditionQuery {
    
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 108.9K bytes
    - Viewed (0)
Back to top