- Sort Score
- Result 10 results
- Languages All
Results 911 - 920 of 1,913 for dpath (0.03 sec)
-
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java
final Object result = super.fromConfiguration(lookup, configuration, type, enclosingType, loader, evaluator, listener); return result instanceof Path ? evaluator.alignToBaseDirectory(((Path) result).toFile()).toPath() : result; } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java
if (localRepositoryPath == null || localRepositoryPath.isEmpty()) { String path = request.getUserProperties().getProperty(Constants.MAVEN_USER_CONF); if (path == null) { path = request.getSystemProperties().getProperty("user.home") + File.separator + ".m2"; } localRepositoryPath = new File(path, "repository").getAbsolutePath(); } try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-child.xml
<scm> <url>https://domain.org/override</url><!-- check that this won't impact child.site.url.inherit.append.path attribute inheritance --> </scm> <distributionManagement> <site><!-- overriding 1 element will reset all elements, but not child.site.url.inherit.append.path attribute --> <name>reset</name> </site> </distributionManagement>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/en/docs/reference/request.md
# `Request` class You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc. You can import it directly from `fastapi`: ```python from fastapi import Request ``` /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 518 bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/sub-dependencies.md
* ユーザーがクエリ`q`を提供しなかった場合、クッキーに保存していた最後に使用したクエリを使用します。 ### 依存関係の使用 以下のように依存関係を使用することができます: ```Python hl_lines="21" {!../../docs_src/dependencies/tutorial005.py!} ``` /// info | "情報" *path operation関数*の中で宣言している依存関係は`query_or_cookie_extractor`の1つだけであることに注意してください。 しかし、**FastAPI** は`query_extractor`を最初に解決し、その結果を`query_or_cookie_extractor`を呼び出す時に渡す必要があることを知っています。 /// ```mermaid graph TB
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
import org.lastaflute.core.security.PrimaryCipher; public class ParameterUtil { private static final String CIPHER_PREFIX = "{cipher}"; protected static final String XPATH_PREFIX = "field.xpath."; protected static final String META_PREFIX = "field.meta."; protected static final String VALUE_PREFIX = "field.value."; protected static final String SCRIPT_PREFIX = "field.script.";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
handler = factory.createURLStreamHandler(protocol); } if (handler == null) { String path = System.getProperty(HANDLER_PKGS_PROPERTY); StringTokenizer tokenizer = new StringTokenizer(path, "|"); while (tokenizer.hasMoreTokens()) { String provider = tokenizer.nextToken().trim();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0) -
helm-releases/minio-5.0.1.tgz
sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/" configPathmc: "/etc/minio/mc/" ## Path where PV would be mounted on the MinIO Pod mountPath: "/export" ## Override the root directory which the minio server should serve from. ## If left empty, it defaults to the value of {{ .Values.mountPath }} ## If defined, it must be a sub-directory of the path specified in {{ .Values.mountPath }} ## bucketRoot: "" # Number of drives attached to a node drivesPerNode: 1 # Number...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Nov 13 10:04:51 UTC 2022 - 19.8K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
} /** * Returns a URL for connecting to this server. * * @param path the request path, such as "/". */ fun url(path: String): HttpUrl { return HttpUrl.Builder() .scheme(if (sslSocketFactory != null) "https" else "http") .host(hostName) .port(port) .build() .resolve(path)!! } /** * Serve requests with HTTPS rather than otherwise. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 37.4K bytes - Viewed (0) -
docs/sts/etcd.md
minio server /data ``` NOTE: If `etcd` is configured with `Client-to-server authentication with HTTPS client certificates` then you need to use additional envs such as `MINIO_ETCD_CLIENT_CERT` pointing to path to `etcd-client.crt` and `MINIO_ETCD_CLIENT_CERT_KEY` path to `etcd-client.key` . ### 4. Test with MinIO STS API Once etcd is configured, **any STS configuration** will work including Client Grants, Web Identity or AD/LDAP.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 3.4K bytes - Viewed (0)