Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 398 for gelede (0.05 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpMethod.kt

      fun invalidatesCache(method: String): Boolean =
        (
          method == "POST" ||
            method == "PATCH" ||
            method == "PUT" ||
            method == "DELETE" ||
            method == "MOVE"
        )
    
      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun requiresRequestBody(method: String): Boolean =
        (
          method == "POST" ||
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

             final SynonymItem synonymItem1 = itemList1.get(0);
             synonymFile.delete(synonymItem1);
             final PagingList<SynonymItem> itemList2 = synonymFile.selectList(0, 20);
             assertEquals(4, itemList2.size());
    
             final SynonymItem synonymItem2 = itemList2.get(3);
             synonymFile.delete(synonymItem2);
             final PagingList<SynonymItem> itemList3 = synonymFile.selectList(0, 20);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            assertEquals("updated", result.get().getInput());
        }
    
        // Test delete method
        public void test_delete() {
            loadTestData();
    
            int originalSize = stopwordsFile.stopwordsItemList.size();
            StopwordsItem item = stopwordsFile.get(1).get();
            stopwordsFile.delete(item);
    
            // Verify the item count decreased
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java

        }
    
        /**
         * Deletes a role setting by ID.
         *
         * @param id the ID of the role setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/role/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
            final Role entity = roleService.getRole(id).orElseGet(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

                hashTable[bucket] = entry.nextInValueBucket;
              } else {
                prev.nextInValueBucket = entry.nextInValueBucket;
              }
              deleteFromValueSet(entry);
              multimapIterationChain.delete(entry);
              size--;
              modCount++;
              return true;
            }
          }
          return false;
        }
    
        @Override
        public void clear() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Deletes a role type.
         * @param roleType The role type to delete.
         */
        public void delete(final RoleType roleType) {
    
            roleTypeBhv.delete(roleType, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Sets up the list condition for the role type query.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                if (isCommit) {
                    try {
                        dictionaryManager.store(SynonymFile.this, newFile);
                    } finally {
                        newFile.delete();
                    }
                } else {
                    newFile.delete();
                }
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

        }
    
        /**
         * Delete a character mapping entry by ID from the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param id identifier of the mapping entry to delete
         * @return JSON response containing deletion result and entry ID
         */
        // DELETE /api/admin/dict/mapping/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/JobHelper.java

                try {
                    unregister(scheduledJob);
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to delete Job {}", scheduledJob, e);
                    }
                }
                return;
            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final CronParamsSupplier paramsOp = () -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

         *
         * @param id the ID of the key match setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/keymatch/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
            keyMatchService.getKeyMatch(id).ifPresent(entity -> {
                try {
                    keyMatchService.delete(entity);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top