Search Options

Results per page
Sort
Preferred Languages
Advance

Results 461 - 470 of 1,806 for instances (0.08 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

      }
    
      public static final class NullsBeforeB extends NullsBefore {
        public static final NullsBeforeB INSTANCE = new NullsBeforeB();
    
        private NullsBeforeB() {
          super("b");
        }
      }
    
      public static final class NullsBeforeTwo extends NullsBefore {
        public static final NullsBeforeTwo INSTANCE = new NullsBeforeTwo();
    
        private NullsBeforeTwo() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

        protected static class LuceneQueryParser extends org.apache.lucene.queryparser.classic.QueryParser {
    
            private final String defaultField;
    
            /**
             * Creates a new {@link ExtendableQueryParser} instance
             *
             * @param f the default query field
             * @param a the analyzer used to find terms in a query string
             */
            public LuceneQueryParser(final String f, final Analyzer a) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/UserInfoDbm.java

        //                                                                           =========
        private static final UserInfoDbm _instance = new UserInfoDbm();
    
        private UserInfoDbm() {
        }
    
        public static UserInfoDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/ClusterException.java

       *   <li>If {@code exceptions} has a single exceptions and that exceptions is not a
       *       {@link RuntimeException}, return a simple {@code RuntimeException} that wraps it
       *   <li>Otherwise, return an instance of {@link ClusterException} that wraps the first exception
       *       in the {@code exceptions} collection.
       * </ul>
       *
       * <p>Though this method takes any {@link Collection}, it often makes most sense to pass a {@link
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/DummyProxy.java

    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class DummyProxy {
    
      /**
       * Returns a new proxy for {@code interfaceType}. Proxies of the same interface are equal to each
       * other if the {@link DummyProxy} instance that created the proxies are equal.
       */
      final <T> T newProxy(TypeToken<T> interfaceType) {
        Set<Class<?>> interfaceClasses = Sets.newLinkedHashSet();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

            private static <U> com.google.inject.Key<U> toGuiceKey(Key<U> key) {
                if (key.getQualifier() instanceof String s) {
                    return (com.google.inject.Key<U>) com.google.inject.Key.get(key.getType(), Names.named(s));
                } else if (key.getQualifier() instanceof Annotation a) {
                    return (com.google.inject.Key<U>) com.google.inject.Key.get(key.getType(), a);
                } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ThumbnailQueueDbm.java

        //                                                                           =========
        private static final ThumbnailQueueDbm _instance = new ThumbnailQueueDbm();
    
        private ThumbnailQueueDbm() {
        }
    
        public static ThumbnailQueueDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/LittleEndianByteArray.java

    /**
     * Utility functions for loading and storing values from a byte array.
     *
     * @author Kevin Damm
     * @author Kyle Maddison
     */
    @ElementTypesAreNonnullByDefault
    final class LittleEndianByteArray {
    
      /** The instance that actually does the work; delegates to Unsafe or a pure-Java fallback. */
      private static final LittleEndianBytes byteArray;
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoDbm.java

        //                                                                           =========
        private static final CrawlingInfoDbm _instance = new CrawlingInfoDbm();
    
        private CrawlingInfoDbm() {
        }
    
        public static CrawlingInfoDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/JAASAuthenticator.java

                }
    
                if ( cb instanceof NameCallback ) {
                    NameCallback nc = (NameCallback) cb;
                    String userDomain = this.getSpecifiedUserDomain();
                    if ( this.getUsername() != null && userDomain != null ) {
                        nc.setName(this.getUsername() + "@" + userDomain);
                    }
                }
                else if ( cb instanceof PasswordCallback ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
Back to top