Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 393 for existed (0.07 sec)

  1. guava/src/com/google/common/collect/TreeTraverser.java

      public TreeTraverser() {}
    
      /**
       * Returns a tree traverser that uses the given function to navigate from a node to its children.
       * This is useful if the function instance already exists, or so that you can supply a lambda
       * expressions. If those circumstances don't apply, you probably don't need to use this; subclass
       * {@code TreeTraverser} and implement its {@link #children} method directly.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         * Checks whether there is a next page available.
         *
         * @return true if a next page exists, false otherwise
         */
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        /**
         * Checks whether there is a previous page available.
         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrevPage() {
            return existPrevPage;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

                @Nonnull Project project, @Nullable ProjectScope scope, @Nullable Language language);
    
        /**
         * Adds the given source to the given project.
         * If a source already exists for the given scope, language and directory,
         * then the behavior depends on the {@code ProjectManager} implementation.
         * It may do nothing or thrown {@linkplain IllegalArgumentException}.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:29:13 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableBiMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      /**
       * Not supported. Use {@link #toImmutableBiMap} instead. This method exists only to hide {@link
       * ImmutableMap#toImmutableMap(Function, Function)} from consumers of {@code ImmutableBiMap}.
       *
       * @throws UnsupportedOperationException always
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Floats.java

        return Float.hashCode(value);
      }
    
      /**
       * Compares the two specified {@code float} values using {@link Float#compare(float, float)}. You
       * may prefer to invoke that method directly; this method exists only for consistency with the
       * other utilities in this package.
       *
       * <p><b>Note:</b> this method simply delegates to the JDK method {@link Float#compare}. It is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialization() {
            // Test serialVersionUID exists
            ResultOffsetExceededException exception = new ResultOffsetExceededException("Test serialization");
    
            // The exception should be serializable since it extends RuntimeException
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/pac/kerberos/KerberosCredentialsTest.java

                KerberosKey[] keys = credentials.getKeys();
                assertEquals(0, keys.length);
            }
        }
    
        /**
         * Test getKey method when the requested key type exists.
         *
         * @throws LoginException if login fails.
         */
        @Test
        void testGetKey_KeyExists() throws LoginException {
            when(key1.getKeyType()).thenReturn(KEY_TYPE_1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_pl.properties

    errors.app.db.already.deleted = Mogło zostać już usunięte przez inny proces. Spróbuj ponownie.
    errors.app.db.already.updated = Mogło zostać już zaktualizowane przez inny proces. Spróbuj ponownie.
    errors.app.db.already.exists = Dane już istnieją. Spróbuj ponownie.
    errors.app.double.submit.request = To żądanie mogło zostać już przetworzone. Spróbuj ponownie.
    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

            } catch (IOException e) {
                log.error("Failed to remove persisted handle file: " + handleFile, e);
            }
        }
    
        private void loadPersistedHandles() {
            if (!Files.exists(stateDirectory)) {
                return;
            }
    
            try (DirectoryStream<Path> stream = Files.newDirectoryStream(stateDirectory, "*.handle")) {
                for (Path handleFile : stream) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Chars.java

       * @param target a primitive {@code char} value
       * @return the least index {@code i} for which {@code array[i] == target}, or {@code -1} if no
       *     such index exists.
       */
      public static int indexOf(char[] array, char target) {
        return indexOf(array, target, 0, array.length);
      }
    
      // TODO(kevinb): consider making this public
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
Back to top