- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 1,678 for configurationId (0.45 seconds)
-
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
// search } /** * Gets a list of web authentications for a specific web configuration. * * @param webConfigId The ID of the web configuration * @return List of web authentication configurations for the specified web config */ public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
}); } /** * Gets a web configuration by its ID. * * @param id The ID of the web configuration * @return Optional containing the web configuration if found */ public OptionalEntity<WebConfig> getWebConfig(final String id) { return webConfigBhv.selectByPK(id); } /** * Gets a web configuration by its name.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
/** * Stores (inserts or updates) a duplicate host configuration. * * <p>This method immediately refreshes the index to ensure the change is visible. * If the configuration already exists (based on ID), it will be updated; * otherwise, a new configuration will be created.</p> * * @param duplicateHost the duplicate host configuration to storeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
* Stores (inserts or updates) a data configuration. * * <p>This method encrypts sensitive handler parameters before storing * and immediately refreshes the index to ensure the change is visible. * If the configuration already exists (based on ID), it will be updated; * otherwise, a new configuration will be created.</p> * * @param dataConfig the data configuration to store
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8K bytes - Click Count (0) -
docs/fr/docs/how-to/configure-swagger-ui.md
Pour les configurer, passez l'argument `swagger_ui_parameters` lors de la création de l'objet d'application `FastAPI()` ou à la fonction `get_swagger_ui_html()`. `swagger_ui_parameters` reçoit un dictionnaire avec les configurations passées directement à Swagger UI.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/fr/docs/how-to/general.md
## Résumé et description de la documentation - OpenAPI { #documentation-summary-and-description-openapi }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.4K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.base-conventions.gradle.kts
val platform = project.platform val testJavaVersion = project.testJavaVersion // Friend configurations - moved here to be shared across all modules (including android-test) val friendsApi = configurations.maybeCreate("friendsApi").apply { isCanBeResolved = true isCanBeConsumed = false isTransitive = true } val friendsImplementation = configurations.maybeCreate("friendsImplementation").apply { isCanBeResolved = true
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 1.9K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
configurations.create("localLibsRepositoryElements") { attributes { attribute(Category.CATEGORY_ATTRIBUTE, objects.named("gradle-local-repository")) } isCanBeResolved = false isCanBeConsumed = true outgoing.artifact(localRepository) { builtBy(publishPluginsToTestRepository) } } configurations.create("futureVersion") {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 11:01:20 GMT 2026 - 6.2K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.forbidden-dependencies.gradle
List<String> FORBIDDEN_DEPENDENCIES = [ 'guava' ] Closure checkDeps = { Configuration configuration -> configuration.resolutionStrategy.eachDependency { String artifactName = it.target.name if (FORBIDDEN_DEPENDENCIES.contains(artifactName)) { throw new GradleException("Dependency '${artifactName}' on configuration '${configuration.name}' is not allowed. " +
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.3K bytes - Click Count (0) -
benchmarks/build.gradle
} tasks.register('copyExpression', Copy) { dependsOn configurations.expression from { configurations.expression.collect { zipTree(it) } } into "${buildDir}/plugins/expression" } tasks.register("copyPainless", Copy) { dependsOn configurations.painless from { configurations.painless.collect { zipTree(it) } } into "${buildDir}/plugins/painless" }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 08 22:04:23 GMT 2021 - 2.5K bytes - Click Count (0)