- Sort Score
- Result 10 results
- Languages All
Results 2041 - 2050 of 2,158 for paths (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} finally { EntityUtils.consumeQuietly(httpEntity); } } protected String convertRobotsTxtPathPattern(final String path) { String newPath = path.replace(".", "\\.").replace("?", "\\?").replace("*", ".*"); if (newPath.charAt(0) != '/') { newPath = ".*" + newPath; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 09 09:29:26 UTC 2024 - 41K bytes - Viewed (0) -
src/bytes/bytes.go
n += wasSpace & ^isSpace wasSpace = isSpace } if setBits >= utf8.RuneSelf { // Some runes in the input slice are not ASCII. return FieldsFunc(s, unicode.IsSpace) } // ASCII fast path a := make([][]byte, n) na := 0 fieldStart := 0 i := 0 // Skip spaces in the front of the input. for i < len(s) && asciiSpace[s[i]] != 0 { i++ } fieldStart = i for i < len(s) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Sep 03 20:55:15 UTC 2024 - 35.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/URLConnectionTest.kt
assertThat(transferKind).isIn(TransferKind.CHUNKED, TransferKind.FIXED_LENGTH) } } val requestA = server.takeRequest() assertThat(requestA.path).isEqualTo("/a") val requestB = server.takeRequest() assertThat(requestB.path).isEqualTo("/b") assertThat(requestB.body.readUtf8()).isEqualTo(requestBody) } @Test fun postBodyRetransmittedOnFailureRecovery() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K bytes - Viewed (0) -
docs/em/docs/advanced/custom-response.md
/// tip ๐ ๐ ๐ฅ ๐ฅ โ๏ธ ๐ฉ `open()` ๐ ๐ซ ๐โ๐ฆบ `async` & `await`, ๐ฅ ๐ฃ โก ๐ ๏ธ โฎ๏ธ ๐ `def`. /// ### `FileResponse` ๐ ๐ ๐ ๐จ. โ ๐ โ โ ๐ ๐ ๐ ๐จ ๐: * `path` - ๐ ๐ ๐. * `headers` - ๐ ๐ ๐ ๐, ๐. * `media_type` - ๐ป ๐ค ๐ป ๐. ๐ฅ ๐ข, ๐ โ๏ธ โก ๐ โ๏ธ ๐ ๐ป ๐. * `filename` - ๐ฅ โ, ๐ ๐ ๐ ๐จ `Content-Disposition`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
#### Identity information This is an inappropriate use of lazy types: ```groovy class Example { Provider<String> getPath() { return project.provider(() -> path) } } ``` Like above, this is an immutable part of the identity of the domain object and cannot be changed. ### Properties in entirely new classes
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 20:00:57 UTC 2024 - 10K bytes - Viewed (0) -
cni/pkg/plugin/plugin.go
// This is a sample chained plugin that supports multiple CNI versions. It // parses prevResult according to the cniVersion package plugin import ( "context" "encoding/json" "errors" "fmt" "path/filepath" "runtime/debug" "strconv" "time" "github.com/containernetworking/cni/pkg/skel" "github.com/containernetworking/cni/pkg/types" cniv1 "github.com/containernetworking/cni/pkg/types/100"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
.desc( "Comma-delimited list of specified reactor projects to build instead of all projects. A project can be specified by [groupId]:artifactId or by its relative path. Prefixing a project with ! excludes it, and ? marks it as optional") .hasArg() .build()); options.addOption(Option.builder(ALSO_MAKE)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/index.md
//// Das war's schon. **Zwei Zeilen**. Und sie hat die gleiche Form und Struktur wie alle Ihre *Pfadoperation-Funktionen*. Sie kรถnnen sie sich als *Pfadoperation-Funktion* ohne den โDekoratorโ (ohne `@app.get("/some-path")`) vorstellen. Und sie kann alles zurรผckgeben, was Sie mรถchten. In diesem Fall erwartet diese Abhรคngigkeit: * Einen optionalen Query-Parameter `q`, der ein `str` ist.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13K bytes - Viewed (0) -
impl/maven-core/pom.xml
<exclude>org.apache.maven.plugin.PluginParameterExpressionEvaluator#PluginParameterExpressionEvaluator(org.apache.maven.execution.MavenSession,org.apache.maven.plugin.MojoExecution,org.apache.maven.project.path.PathTranslator,org.codehaus.plexus.logging.Logger,org.apache.maven.project.MavenProject,java.util.Properties):CONSTRUCTOR_REMOVED</exclude>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:40:16 UTC 2024 - 15.4K bytes - Viewed (0) -
docs/ko/docs/tutorial/request-files.md
`Body` ๋ฐ `Form` ๊ณผ ๋์ผํ ๋ฐฉ์์ผ๋ก ํ์ผ์ ๋งค๊ฐ๋ณ์๋ฅผ ์์ฑํฉ๋๋ค: ```Python hl_lines="7" {!../../docs_src/request_files/tutorial001.py!} ``` /// info | "์ ๋ณด" `File` ์ `Form` ์ผ๋ก๋ถํฐ ์ง์ ์์๋ ํด๋์ค์ ๋๋ค. ํ์ง๋ง `fastapi`๋ก๋ถํฐ `Query`, `Path`, `File` ๋ฑ์ ์ํฌํธ ํ ๋, ์ด๊ฒ๋ค์ ํน๋ณํ ํด๋์ค๋ค์ ๋ฐํํ๋ ํจ์๋ผ๋ ๊ฒ์ ๊ธฐ์ตํ๊ธฐ ๋ฐ๋๋๋ค. /// /// tip | "ํ" File์ ๋ณธ๋ฌธ์ ์ ์ธํ ๋, ๋งค๊ฐ๋ณ์๊ฐ ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์ ๋๋ ๋ณธ๋ฌธ(JSON) ๋งค๊ฐ๋ณ์๋ก ํด์๋๋ ๊ฒ์ ๋ฐฉ์งํ๊ธฐ ์ํด `File` ์ ์ฌ์ฉํด์ผํฉ๋๋ค. /// ํ์ผ๋ค์ "ํผ ๋ฐ์ดํฐ"์ ํํ๋ก ์ ๋ก๋ ๋ฉ๋๋ค.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.1K bytes - Viewed (0)