- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 503 for _score (0.03 sec)
-
api/maven-api-di/src/main/java/org/apache/maven/api/di/MojoExecutionScoped.java
* <p> * The following objects will be bound to the mojo execution scope: * <ul> * <li>{@code org.apache.maven.api.MojoExecution}</li> * <li>{@code org.apache.maven.api.Project}</li> * <li>{@code org.apache.maven.api.plugin.Log}</li> * </ul> * * @since 4.0.0 */ @Scope @Documented @Retention(RUNTIME) @Target({TYPE, METHOD})
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:14:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule. * @param boostDocumentRule The boost document rule to store. */ public void store(final BoostDocumentRule boostDocumentRule) { boostDocumentRuleBhv.insertOrUpdate(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE)); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
return pathMappingBhv.selectByPK(id); } /** * Stores a path mapping. * * @param pathMapping the path mapping to store */ public void store(final PathMapping pathMapping) { pathMappingBhv.insertOrUpdate(pathMapping, op -> { op.setRefreshPolicy(Constants.TRUE); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
kotlin-js-store/yarn.lock
integrity sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA== dependencies: "@types/node" "*" "@types/eslint-scope@^3.7.3": version "3.7.4" resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== dependencies:
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 87.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
} /** * Stores a web authentication configuration. * Parameters are encrypted before storage. * * @param webAuthentication The web authentication configuration to store */ public void store(final WebAuthentication webAuthentication) { webAuthentication.setParameters(ParameterUtil.encrypt(webAuthentication.getParameters())); webAuthenticationBhv.insertOrUpdate(webAuthentication, op -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
guava-testlib/README.md
To add a dependency on Guava testlib using Maven, use the following: ```xml <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-testlib</artifactId> <version>33.4.8-jre</version> <scope>test</scope> </dependency> ``` To add a dependency using Gradle: ```gradle dependencies { test 'com.google.guava:guava-testlib:33.4.8-jre' } ``` ## Links
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 18:38:35 UTC 2025 - 1.7K bytes - Viewed (0) -
docs/es/docs/how-to/custom-request-and-route.md
/// note | Detalles técnicos Un `Request` tiene un atributo `request.scope`, que es simplemente un `dict` de Python que contiene los metadatos relacionados con el request. Un `Request` también tiene un `request.receive`, que es una función para "recibir" el cuerpo del request. El `dict` `scope` y la función `receive` son ambos parte de la especificación ASGI.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4.7K bytes - Viewed (0) -
docs/bucket/replication/README.md
objects in a bucket to a destination bucket. The contents of this page have been migrated to the new [MinIO Documentation: Bucket Replication](https://docs.min.io/community/minio-object-store/administration/bucket-replication.html) page. The [Bucket Replication](https://docs.min.io/community/minio-object-store/administration/bucket-replication/bucket-replication-requirements.html) page references dedicated tutorials for configuring one-way "Active-Passive" and two-way "Active-Active" bucket replication....
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
* This method performs either insert or update based on whether the request header already exists. * * @param requestHeader the request header configuration to store */ public void store(final RequestHeader requestHeader) { requestHeaderBhv.insertOrUpdate(requestHeader, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
* the item's current state. * </p> * * @param dictId the dictionary ID to store the character mapping item in * @param charMappingItem the character mapping item to store */ public void store(final String dictId, final CharMappingItem charMappingItem) { getCharMappingFile(dictId).ifPresent(file -> { if (charMappingItem.getId() == 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0)