Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 246 for deltas (0.03 sec)

  1. docs/pt/docs/tutorial/query-params-str-validations.md

    /// note | Observação
    
    Tenha em mente que cada ferramenta oferece diferentes níveis de suporte ao OpenAPI.
    
    Algumas delas não exibem todas as informações extras que declaramos, ainda que na maioria dos casos, esses recursos estão planejados para desenvolvimento.
    
    ///
    
    Você pode adicionar um `title`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

            }
            return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(false).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Deletes a scheduler setting by ID.
         *
         * @param id the ID of the scheduler setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/scheduler/setting/{id}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

          String message = "inputFuture=[" + localInputFuture + "]";
          if (localTimer != null) {
            long delay = localTimer.getDelay(MILLISECONDS);
            // Negative delays look confusing in an error message
            if (delay > 0) {
              message += ", remaining delay=[" + delay + " ms]";
            }
          }
          return message;
        }
        return null;
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/FileUtil.java

                ChannelUtil.write(fos.getChannel(), ByteBuffer.wrap(bytes));
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * Deletes the specified file in a background thread.
         *
         * @param file
         *            The file to delete.
         */
        public static void deleteInBackground(final File file) {
            if (file != null) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

                op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
            }).createPageNumberList());
    
            return dataConfigList;
        }
    
        /**
         * Deletes the specified data configuration from the system.
         *
         * <p>This operation permanently removes the data configuration and
         * immediately refreshes the index to ensure the change is visible.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

                return null;
            });
            return asJson(new ApiUpdateResponse().id(dataConfig.getId()).created(false).status(Status.OK).result());
        }
    
        /**
         * Deletes a data config setting by ID.
         *
         * @param id the ID of the data config to delete
         * @return JSON response indicating the deletion status
         */
        // DELETE /api/admin/dataconfig/setting/{id}
    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/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Deletes a document asynchronously.
         *
         * @param request the delete request
         * @return a future for the delete response
         */
        @Override
        public ActionFuture<DeleteResponse> delete(final DeleteRequest request) {
            return client.delete(request);
        }
    
        /**
         * Deletes a document asynchronously with a callback.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

                return null;
            });
            return asJson(new ApiUpdateResponse().id(labelType.getId()).created(false).status(Status.OK).result());
        }
    
        /**
         * Deletes a label type setting by ID.
         *
         * @param id the ID of the label type setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/labeltype/setting/{id}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/sql-databases.md

    ///
    
    Este es un tutorial muy simple y corto, si deseas aprender sobre bases de datos en general, sobre SQL o más funcionalidades avanzadas, ve a la <a href="https://sqlmodel.tiangolo.com/" class="external-link" target="_blank">documentación de SQLModel</a>.
    
    ## Instalar `SQLModel`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/BadWordService.java

         */
        public void store(final BadWord badWord) {
    
            badWordBhv.insertOrUpdate(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
         * Deletes a bad word.
         * @param badWord The bad word to delete.
         */
        public void delete(final BadWord badWord) {
    
            badWordBhv.delete(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top