Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 413 for existing (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

            return asJson(
                    new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Updates an existing synonym dictionary item.
         *
         * @param dictId the dictionary ID
         * @param body the request body containing updated synonym item information
         * @return JSON response with result status
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

         */
        @Config
        public static final String MAVEN_VERSION_FILTER = "maven.session.versionFilter";
    
        /**
         * User property for chained LRM: the new "head" local repository to use, and "push" the existing into tail.
         * Similar to <code>maven.repo.local.tail</code>, this property may contain comma separated list of paths to be
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 25 11:08:20 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

            Path nonExistentDir = tempDir.resolve("non-existent");
            themeHelper.closeQuietly(nonExistentDir);
            // Should not throw exception
            assertTrue(true);
        }
    
        public void test_closeQuietly_existingDirectory() throws IOException {
            Path existingDir = tempDir.resolve("existing");
            Files.createDirectory(existingDir);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

            });
            return asJson(
                    new ApiUpdateResponse().id(doc.get(fessConfig.getIndexFieldDocId()).toString()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing document in the search index.
         *
         * @param body the document data to update
         * @return JSON response containing the updated document ID
         */
        // PUT /api/admin/searchlist/doc
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            facetInfo.addQuery("query1");
            assertNotNull(facetInfo.query);
            assertEquals(1, facetInfo.query.length);
            assertEquals("query1", facetInfo.query[0]);
        }
    
        // Test addQuery with existing queries
        public void test_addQuery_existingQueries() {
            facetInfo.query = new String[] { "query1", "query2" };
            facetInfo.addQuery("query3");
            assertNotNull(facetInfo.query);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/EnumBiMapTest.java

        bimap = EnumBiMap.create(emptyBimap);
        assertTrue(bimap.isEmpty());
      }
    
      public void testEnumBiMapConstructor() {
        /* Test that it copies existing entries. */
        EnumBiMap<Currency, Country> bimap1 = EnumBiMap.create(Currency.class, Country.class);
        bimap1.put(Currency.DOLLAR, Country.CANADA);
        EnumBiMap<Currency, Country> bimap2 = EnumBiMap.create(bimap1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        /**
         * Inserts a new dictionary item.
         *
         * @param item the item to insert
         */
        public abstract void insert(T item);
    
        /**
         * Updates an existing dictionary item.
         *
         * @param item the item to update
         */
        public abstract void update(T item);
    
        /**
         * Deletes a dictionary item.
         *
         * @param item the item to delete
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

     * collection, such as a {@link Set}, does not support duplicates, an added key-value pair will
     * replace an existing pair with the same key and value, if such a pair is present. With collections
     * like {@link List} that allow duplicates, the collection will keep the existing key-value pairs
     * while adding a new pair.
     *
     * <p>This class is not threadsafe when any concurrent operations update the multimap, even if the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        val localNextRouteToTry = nextRouteToTry
        if (localNextRouteToTry != null) {
          nextRouteToTry = null
          return planConnectToRoute(localNextRouteToTry)
        }
    
        // Use a route from an existing route selection.
        val existingRouteSelection = routeSelection
        if (existingRouteSelection != null && existingRouteSelection.hasNext()) {
          return planConnectToRoute(existingRouteSelection.next())
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/SecureCredentialStorage.java

            this.masterKey = deriveKey(masterPassword, salt);
    
            // Clear the master password after use
            Arrays.fill(masterPassword, '\0');
        }
    
        /**
         * Initialize secure credential storage with existing salt and password
         *
         * @param masterPassword the master password
         * @param salt the salt for key derivation
         * @throws GeneralSecurityException if encryption setup fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top