Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 246 for deltas (0.12 sec)

  1. docs/pt/docs/tutorial/dependencies/index.md

    Por exemplo, vamos supor que você possua 4 endpoints na sua API (*operações de rota*):
    
    * `/items/public/`
    * `/items/private/`
    * `/users/{user_id}/activate`
    * `/items/pro/`
    
    Você poderia adicionar diferentes requisitos de permissão para cada um deles utilizando apenas dependências e sub-dependências:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        /**
         * 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
         */
        public abstract void delete(T item);
    
        /**
         * A paginated list implementation that wraps another list and provides
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml);
            });
            return redirect(getClass());
        }
    
        /**
         * Deletes a path mapping based on the provided form data.
         *
         * @param form the edit form containing the path mapping ID to delete
         * @return HTML response redirecting to the path mapping list page
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/curl/io/ContentCacheTest.java

            tempFile = File.createTempFile("test", ".tmp", Curl.tmpDir);
            Files.write(tempFile.toPath(), "Hello, World!".getBytes());
    
            ContentCache cache = new ContentCache(tempFile);
            cache.close(); // This deletes the file
    
            try {
                cache.getInputStream();
                fail("Expected IOException for deleted file");
            } catch (IOException e) {
                // Expected - file no longer exists
            }
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            }
        }
    
        /**
         * Applies delay based on the configured interval rules.
         * This method calculates the appropriate delay for the current time
         * and applies it by sleeping the current thread.
         */
        public void delayByRules() {
            final long delay = getDelay();
            if (delay > 0) {
                ThreadUtil.sleep(delay);
            }
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                            () -> asListHtml(encodeId(pi.getPath())));
                }
            });
        }
    
        /**
         * Deletes a file from the storage system.
         *
         * @param id the encoded ID of the file to delete
         * @return HTML response redirecting to the storage list after deletion
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        /**
         * Default constructor for creating a new SearchLogService instance.
         */
        public SearchLogService() {
            // Default constructor
        }
    
        /**
         * Deletes search logs older than the specified number of days.
         *
         * @param days Number of days to keep (logs older than this will be deleted)
         */
        public void deleteBefore(final int days) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml);
            });
            return redirect(getClass());
        }
    
        /**
         * Deletes a web authentication configuration.
         *
         * @param form the edit form containing the ID of the web authentication to delete
         * @return HTML response redirecting to the list page after deletion
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

                throwValidationError(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL), this::asEditHtml);
            });
            return redirect(getClass());
        }
    
        /**
         * Deletes a role item.
         *
         * @param form the edit form containing the ID of the item to delete
         * @return HTML response redirecting to the list page after deletion
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  10. docs/es/README.md

        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Traducir a Tu Idioma
    
    Fess es un software internacionalizado.
    
    Si deseas agregar etiquetas/mensajes para tu idioma, por favor traduce el archivo de propiedades y renómbralo a fess\_\*\_[lang].properties.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top