Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 904 for updates (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                        throw new DictionaryException("Failed to update " + dictFile.getPath());
                    }
                } catch (final IOException e) {
                    throw new DictionaryException("Failed to update " + dictFile.getPath(), e);
                }
    
            }).orElse(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            infoMap.put(key, value);
        }
    
        /**
         * Updates crawling information parameters for the specified session.
         * Sets the name and expiration time based on the provided parameters.
         *
         * @param sessionId the session ID to update
         * @param name the name to set for the crawling session (uses system name if blank)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

        }
    
        public void test_toLineString() {
            // Test toLineString method with non-updated item
            ProtwordsItem item = new ProtwordsItem(1, "word");
            assertEquals("word", item.toLineString());
    
            // Test with updated item
            item.setNewInput("updatedword");
            assertEquals("updatedword", item.toLineString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

            return asJson(new ApiUpdateResponse().id(keyMatch.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing key match setting.
         *
         * @param body the key match data to update
         * @return JSON response containing the updated key match setting ID
         */
        // PUT /api/admin/keymatch/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

            buffer.append("{enabled=");
            buffer.append(enabled);
            buffer.append(", checksums=");
            buffer.append(checksumPolicy);
            buffer.append(", updates=");
            buffer.append(updatePolicy);
            buffer.append('}');
            return buffer.toString();
        }
    
        public void merge(ArtifactRepositoryPolicy policy) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

            });
    
            return asJson(new ApiUpdateResponse().id(dataConfig.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing data config setting.
         *
         * @param body the request body containing updated data config information
         * @return JSON response with result status
         */
        // PUT /api/admin/dataconfig/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        }
    
        /**
         * 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
         */
        // PUT /api/admin/dict/synonym/setting/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/Curl.java

         * Enumeration representing HTTP methods.
         * <ul>
         *   <li>GET - Requests data from a specified resource.</li>
         *   <li>POST - Submits data to be processed to a specified resource.</li>
         *   <li>PUT - Updates a current resource with new data.</li>
         *   <li>DELETE - Deletes the specified resource.</li>
         *   <li>HEAD - Same as GET but returns only HTTP headers and no document body.</li>
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  9. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

                className.insert(0, ".").insert(0, packageElement.getQualifiedName());
            }
    
            return className.toString();
        }
    
        /**
         * Updates the index file if its content has changed.
         * The file is created at {@code META-INF/maven/org.apache.maven.api.di.Inject} and contains
         * the fully qualified names of classes with the {@link Named} annotation.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

        public synchronized void insert(final SynonymItem item) {
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
        public synchronized void update(final SynonymItem item) {
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.5K bytes
    - Viewed (0)
Back to top