- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 78 for rcon (0.91 sec)
-
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
} }); try (final CurlResponse curlResponse = curlRequest.onConnect((req, con) -> { con.setDoOutput(true); if (httpMethod != Method.GET && request.getContentLength() > 2) { try (ServletInputStream in = request.getInputStream(); OutputStream out = con.getOutputStream()) { CopyUtil.copy(in, out); } catch (final IOException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/resources/fess_message_es.properties
constraints.TypeAny.message = {item} no se puede convertir a {propertyType}. constraints.UriType.message = {item} tiene una URI no reconocida. constraints.CronExpression.message = {item} no es una expresión CRON válida. # ---------------------------------------------------------- # Application Exception # --------------------- # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
jobManager.schedule(cron -> register(cron, scheduledJob)); } /** * Registers a scheduled job with the specified cron scheduler. * * @param cron the cron scheduler to use * @param scheduledJob the scheduled job to register */ public void register(final LaCron cron, final ScheduledJob scheduledJob) { if (scheduledJob == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
docs/es/docs/advanced/security/oauth2-scopes.md
Cada vez que te "logueas con" Facebook, Google, GitHub, Microsoft, X (Twitter), esa aplicación está usando OAuth2 con scopes. En esta sección verás cómo manejar autenticación y autorización con el mismo OAuth2 con scopes en tu aplicación de **FastAPI**. /// warning | Advertencia Esta es una sección más o menos avanzada. Si estás comenzando, puedes saltarla.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
}; // Test each pattern and see what actually works for (String cron : potentiallyValidCrons) { boolean result = validator.isValid(cron, context); // Don't assert true/false here, just test that method doesn't throw assertNotNull("Validation should return a boolean result for: " + cron, Boolean.valueOf(result)); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger()); }); } /** * Starts all available scheduled jobs. * @param cron The cron scheduler. */ public void start(final LaCron cron) { scheduledJobBhv.selectCursor(cb -> { cb.query().setAvailable_Equal(Constants.T); cb.query().addOrderBy_SortOrder_Asc();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/es/docs/tutorial/security/oauth2-jwt.md
/// note | Nota Observa el header `Authorization`, con un valor que comienza con `Bearer `. /// ## Uso avanzado con `scopes` OAuth2 tiene la noción de "scopes". Puedes usarlos para agregar un conjunto específico de permisos a un token JWT. Luego, puedes darle este token directamente a un usuario o a un tercero, para interactuar con tu API con un conjunto de restricciones.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/en/mkdocs.yml
extra: social: - icon: fontawesome/brands/github-alt link: https://github.com/fastapi/fastapi - icon: fontawesome/brands/discord link: https://discord.gg/VQjSZaeJmf - icon: fontawesome/brands/twitter link: https://x.com/fastapi - icon: fontawesome/brands/linkedin link: https://www.linkedin.com/company/fastapi - icon: fontawesome/solid/globe link: https://tiangolo.com
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/es/docs/help-fastapi.md
Allí puedes seleccionar "Releases only". Al hacerlo, recibirás notificaciones (en tu email) cada vez que haya un nuevo lanzamiento (una nueva versión) de **FastAPI** con correcciones de bugs y nuevas funcionalidades. ## Conéctate con el autor Puedes conectar <a href="https://tiangolo.com" class="external-link" target="_blank">conmigo (Sebastián Ramírez / `tiangolo`)</a>, el autor. Puedes:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
violations = validator.validate(bean); assertTrue(violations.isEmpty()); } // Test validation with invalid cron expressions public void test_invalidCronExpressions() { TestBean bean = new TestBean(); // Test invalid cron expression bean.setCronExpression("invalid"); Set<ConstraintViolation<TestBean>> violations = validator.validate(bean);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0)