Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 862 for musste (0.33 sec)

  1. src/main/java/org/codelibs/core/misc/AssertionUtil.java

         */
        protected AssertionUtil() {
        }
    
        /**
         * Asserts that the argument is not <code>null</code>.
         *
         * @param argName
         *            The name of the argument that must not be {@code null}.
         * @param argValue
         *            The value of the argument.
         * @throws NullArgumentException
         *             If the argument is <code>null</code>.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/it/stopwords.txt

    se
    perché
    anche
    come
    dov
    dove
    che
    chi
    cui
    non
    più
    quale
    quanto
    quanti
    quanta
    quante
    quello
    quelli
    quella
    quelle
    questo
    questi
    questa
    queste
    si
    tutto
    tutti
    a
    c
    e
    i
    l
    o
    ho
    hai
    ha
    abbiamo
    avete
    hanno
    abbia
    abbiate
    abbiano
    avrò
    avrai
    avrà
    avremo
    avrete
    avranno
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/ReaderUtil.java

        /**
         * Creates a {@link Reader} to read from a file with the specified encoding.
         *
         * @param is
         *            the input stream (must not be {@literal null})
         * @param encoding
         *            the encoding of the input stream (must not be {@literal null} or empty)
         * @return a {@link Reader} to read from the file
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/LineIterator.java

         *            The {@link Reader} to read strings from. Must not be {@literal null}.
         */
        public LineIterator(final Reader reader) {
            assertArgumentNotNull("reader", reader);
            this.reader = new BufferedReader(reader);
        }
    
        /**
         * Constructs an instance.
         *
         * @param reader
         *            The {@link BufferedReader} to read strings from. Must not be {@literal null}.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/zip/ZipFileUtil.java

            }
        }
    
        /**
         * Returns an input stream for reading the contents of the specified Zip file entry.
         *
         * @param file
         *            Zip file. Must not be {@literal null}.
         * @param entry
         *            Zip file entry. Must not be {@literal null}.
         * @return An input stream for reading the contents of the specified Zip file entry.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/jar/JarFileUtil.java

            }
        }
    
        /**
         * Returns an input stream to read the contents of the specified JAR file entry.
         *
         * @param file the JAR file (must not be {@literal null})
         * @param entry the JAR file entry (must not be {@literal null})
         * @return the input stream to read the entry
         */
        public static InputStream getInputStream(final JarFile file, final ZipEntry entry) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/ClassIterator.java

        }
    
        /**
         * Constructs an instance.
         *
         * @param clazz
         *            the class (must not be {@literal null})
         */
        public ClassIterator(final Class<?> clazz) {
            this(clazz, true);
        }
    
        /**
         * Constructs an instance.
         *
         * @param clazz the class (must not be {@literal null})
         * @param includeObject if {@literal true}, includes the {@link Object} class in the iteration
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/WriterUtil.java

         */
        protected WriterUtil() {
        }
    
        /**
         * Creates a {@link Writer} to output to a stream with the specified encoding.
         *
         * @param os the stream (must not be {@literal null})
         * @param encoding the encoding (must not be {@literal null} or empty)
         * @return a {@link Writer} to output to the stream
         */
        public static Writer create(final OutputStream os, final String encoding) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/io/PropertiesUtil.java

         *
         * @param props
         *            Property set. Must not be {@literal null}.
         * @param file
         *            File. Must not be {@literal null}.
         * @param encoding
         *            Encoding. Must not be {@literal null} or empty.
         */
        public static void load(final Properties props, final File file, final String encoding) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/util/concurrent/testing/SameThreadScheduledExecutorService.java

        Preconditions.checkNotNull(task, "task must not be null!");
        Preconditions.checkNotNull(result, "result must not be null!");
        return delegate.submit(task, result);
      }
    
      @Override
      public ListenableFuture<?> submit(Runnable task) {
        Preconditions.checkNotNull(task, "task must not be null!");
        return delegate.submit(task);
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:37:28 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top