- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 1,904 for spath (0.02 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSourceTransformer.java
* under the License. */ package org.apache.maven.model.building; import java.nio.file.Path; import org.apache.maven.model.Model; /** * The ModelSourceTransformer is a way to transform the local pom while streaming the input. * * The {@link #transform(Path, TransformerContext, Model)} method uses a Path on purpose, to ensure the * local pom is the original source. * * @since 4.0.0
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt
val pathEnd = requestLine.indexOf(' ', methodEnd + 1) this.method = requestLine.substring(0, methodEnd) var path = requestLine.substring(methodEnd + 1, pathEnd) if (!path.startsWith("/")) { path = "/" } this.path = path val scheme = if (socket is SSLSocket) "https" else "http" val localPort = socket.localPort val hostAndPort =
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 23 14:31:42 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
private static final String FESS_CONTEXT_PATH = "fess.context.path"; private static final String FESS_PORT = "fess.port"; private static final String FESS_TEMP_PATH = "fess.temp.path"; private static final String FESS_VAR_PATH = "fess.var.path"; private static final String FESS_WEBAPP_PATH = "fess.webapp.path"; private static final String JAVA_IO_TMPDIR = "java.io.tmpdir";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
docs/en/docs/tutorial/header-params.md
{!> ../../docs_src/header_params/tutorial001.py!} ``` //// /// note | "Technical Details" `Header` is a "sister" class of `Path`, `Query` and `Cookie`. It also inherits from the same common `Param` class. But remember that when you import `Query`, `Path`, `Header`, and others from `fastapi`, those are actually functions that return special classes. /// /// info
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java
Path path = locateExistingPom(projectDirectory.toPath()); return path != null ? path.toFile() : null; } @Override public Path locateExistingPom(Path projectDirectory) { // Note that the ModelProcessor#locatePom never returns null // while the ModelParser#locatePom needs to return an existing path! Path pom = modelParsers.stream()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
} /** * Returns the path to the pom file for this project. * A project is usually read from a file named {@code pom.xml}, * which contains the {@linkplain #getModel() model} in an XML form. * When a custom {@code org.apache.maven.api.spi.ModelParser} is used, * the path may point to a non XML file. * <p> * The POM path is also used to define the {@linkplain #getBasedir() base directory}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
return rel != null ? new SourceWrapper(rel) : null; } @Override public URI getLocationURI() { Path path = source.getPath(); return path != null ? path.toUri() : URI.create(source.getLocation()); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
docs/en/docs/tutorial/static-files.md
## Details The first `"/static"` refers to the sub-path this "sub-application" will be "mounted" on. So, any path that starts with `"/static"` will be handled by it. The `directory="static"` refers to the name of the directory that contains your static files. The `name="static"` gives it a name that can be used internally by **FastAPI**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:45:40 UTC 2024 - 1.6K bytes - Viewed (0) -
internal/config/etcd/help.go
Description: `namespace prefix to isolate tenants` + defaultHelpPostfix(PathPrefix), Optional: true, Type: "path", }, config.HelpKV{ Key: CoreDNSPath, Description: `shared bucket DNS records` + defaultHelpPostfix(CoreDNSPath), Optional: true, Type: "path", }, config.HelpKV{ Key: ClientCert,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Apr 27 03:11:37 UTC 2022 - 2.1K bytes - Viewed (0)