- Sort Score
- Num 10 results
- Language All
Results 441 - 450 of 718 for skips (0.04 seconds)
-
CHANGELOG.md
**OkHttp now supports Happy Eyeballs ([RFC 8305][rfc_8305]) for IPv4+IPv6 networks.** It attempts both IPv6 and IPv4 connections concurrently, keeping whichever connects first. **Weโve improved our Kotlin APIs.** You can skip the builder: ```kotlin val request = Request( url = "https://cash.app/".toHttpUrl(), ) ``` **OkHttp now supports [GraalVM].** Hereโs what has changed since 5.0.0-alpha.17:
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 15 11:57:47 GMT 2026 - 36.2K bytes - Click Count (2) -
src/archive/tar/strconv.go
return } f.formatOctal(b, 0) // Last resort, just write zero f.err = ErrFieldTooLong } func (p *parser) parseOctal(b []byte) int64 { // Because unused fields are filled with NULs, we need // to skip leading NULs. Fields may also be padded with // spaces or NULs. // So we remove leading and trailing NULs and spaces to // be sure. b = bytes.Trim(b, " \x00") if len(b) == 0 { return 0 }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Dec 30 15:28:53 GMT 2025 - 9.1K bytes - Click Count (0) -
docs/en/docs/virtual-environments.md
/// info If you already know about virtual environments, how to create them and use them, you might want to skip this section. ๐ค /// /// tip A **virtual environment** is different than an **environment variable**. An **environment variable** is a variable in the system that can be used by programs.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 22.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
|| url.startsWith("storage:") || url.startsWith("s3:") || url.startsWith("gcs:"); } /** * Checks if the given URL should skip URL decoding when extracting file names. * Some protocols (like SMB, FTP, S3, GCS) should preserve the original URL encoding. * * @param url the URL to check
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
{* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8] *} ์ด ๋งค๊ฐ๋ณ์๋ค์ด **FastAPI**๊ฐ ์์กด์ฑ์ "ํด๊ฒฐ"ํ๋ ๋ฐ ์ฌ์ฉํ ๊ฒ๋ค์ ๋๋ค. ๋ ๊ฒฝ์ฐ ๋ชจ๋ ๋ค์์ ๊ฐ๊ฒ ๋ฉ๋๋ค: * `str`์ธ ์ ํ์ ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์ `q`. * ๊ธฐ๋ณธ๊ฐ์ด `0`์ธ `int` ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์ `skip`. * ๊ธฐ๋ณธ๊ฐ์ด `100`์ธ `int` ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์ `limit`. ๋ ๊ฒฝ์ฐ ๋ชจ๋ ๋ฐ์ดํฐ๋ ๋ณํ๋๊ณ , ๊ฒ์ฆ๋๋ฉฐ, OpenAPI ์คํค๋ง์ ๋ฌธ์ํ๋๋ ๋ฑ ์ฌ๋ฌ ์ฒ๋ฆฌ๊ฐ ์ ์ฉ๋ฉ๋๋ค. ## ์ฌ์ฉํ๊ธฐ { #use-it } ์ด์ ์ด ํด๋์ค๋ฅผ ์ฌ์ฉํด ์์กด์ฑ์ ์ ์ธํ ์ ์์ต๋๋ค.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 14.2K bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
fun BuildStep.skipConditionally(buildType: BuildType? = null) { // we need to run CompileALl unconditionally because of artifact dependency if (buildType !is CompileAll) { conditions { doesNotEqual("skip.build", "true") } } } fun buildToolGradleParameters( isContinue: Boolean = true, maxParallelForks: String = "%maxParallelForks%", ): List<String> = listOf(
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 05:03:56 GMT 2026 - 14.8K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/index.md
And it can return anything you want. In this case, this dependency expects: * An optional query parameter `q` that is a `str`. * An optional query parameter `skip` that is an `int`, and by default is `0`. * An optional query parameter `limit` that is an `int`, and by default is `100`. And then it just returns a `dict` containing those values. /// info
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 9.5K bytes - Click Count (0) -
cmd/background-newdisks-heal-ops_gen.go
return } case "Finished": z.Finished, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Finished") return } default: err = dc.Skip() if err != nil { err = msgp.WrapError(err) return } } } return } // EncodeMsg implements msgp.Encodable func (z *healingTracker) EncodeMsg(en *msgp.Writer) (err error) {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 24.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
assertEquals(2, SMBUtil.readInt2(buffer, 32)); // Verify negotiate context offset is set int contextOffset = SMBUtil.readInt4(buffer, 28); assertTrue(contextOffset > 0); // Skip detailed context verification since we can't access headerStart // Just verify that contexts were written assertTrue(bytesWritten > 60); // Should be larger than basic negotiate request } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.7K bytes - Click Count (0)