Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,820 for construct (0.61 sec)

  1. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

     */
    @GwtIncompatible
    public abstract class ForwardingNavigableSet<E extends @Nullable Object>
        extends ForwardingSortedSet<E> implements NavigableSet<E> {
    
      /** Constructor for use by subclasses. */
      protected ForwardingNavigableSet() {}
    
      @Override
      protected abstract NavigableSet<E> delegate();
    
      @Override
      public @Nullable E lower(@ParametricNullness E e) {
        return delegate().lower(e);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

      }
    
      /**
       * Must be called at the end of each subclass's constructor. This method performs the "real"
       * initialization; we can't put this in the constructor because, in the case where futures are
       * already complete, we would not initialize the subclass before calling {@link
       * #collectValueFromNonCancelledFuture}. As this is called after the subclass is constructed,
       * we're guaranteed to have properly initialized the subclass.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/av/AvSingleHost.java

     * @author mbechler
     */
    public class AvSingleHost extends AvPair {
    
        /**
         * Constructs an AvSingleHost from raw byte data
         *
         * @param raw the raw byte data for the single host AV pair
         */
        public AvSingleHost(final byte[] raw) {
            super(AvPair.MsvAvSingleHost, raw);
        }
    
        /**
         * Constructs an AvSingleHost using configuration settings
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/LinkedListMultimap.java

        @Nullable Node<K, V> previous;
    
        /** Constructs a new iterator over all values for the specified key. */
        ValueForKeyIterator(@ParametricNullness K key) {
          this.key = key;
          KeyList<K, V> keyList = keyToKeyList.get(key);
          next = (keyList == null) ? null : keyList.head;
        }
    
        /**
         * Constructs a new iterator over all values for the specified key starting at the specified
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/UnicodeString.java

    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
        /**
         * Constructs a UnicodeString with zero termination option.
         *
         * @param zterm whether the string should be zero terminated
         */
        public UnicodeString(final boolean zterm) {
            this.zterm = zterm;
        }
    
        /**
         * Constructs a UnicodeString by wrapping an existing unicode_string.
         *
         * @param rus wrapped string
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

        @SuppressWarnings({"unchecked", "rawtypes"}) // needed for arrays
        public Collection<Integer>[] createValueArray(int length) {
          return new ImmutableSet[length];
        }
      }
    
      /**
       * Useless constructor for a class of static utility methods.
       *
       * @deprecated Do not instantiate this utility class.
       */
      @Deprecated
      public MapGenerators() {}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        /**
         * Creates a new instance of DataIndexHelper.
         * This constructor initializes the helper for managing data crawling operations,
         * including thread pool management and session-based crawling coordination.
         */
        public DataIndexHelper() {
            // Default constructor with explicit documentation
        }
    
        /**
         * Initiates crawling for all configured data stores.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/SearchQueryException.java

        /**
         * Constructs a new SearchQueryException with the specified detail message and cause.
         *
         * @param message The detail message explaining the exception
         * @param cause The cause of this exception
         */
        public SearchQueryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/ConstructorUtil.java

            }
        }
    
        /**
         * Returns whether the constructor is <code>public</code>.
         *
         * @param constructor the constructor (must not be {@literal null} or empty string)
         * @return whether the constructor is <code>public</code>
         */
        public static boolean isPublic(final Constructor<?> constructor) {
            assertArgumentNotNull("constructor", constructor);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

         */
        public static class LabelTypePattern {
    
            private final String value;
    
            private Pattern includedPaths;
    
            private Pattern excludedPaths;
    
            /**
             * Constructs a new label type pattern.
             *
             * @param value The value.
             * @param includedPaths The included paths.
             * @param excludedPaths The excluded paths.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
Back to top