- Sort Score
- Num 10 results
- Language All
Results 271 - 280 of 562 for Skip (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/peer-s3-client.go
continue } if !slices.Contains(sys.peerClients[idx].GetPools(), poolIdx) { continue } for _, bi := range buckets { _, ok := resultMap[bi.Name] if ok { // Skip it, this bucket is found in another pool continue } bucketsMap[bi.Name]++ if bucketsMap[bi.Name] >= quorum { resultMap[bi.Name] = bi } } }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 15.6K bytes - Click Count (0) -
src/bytes/buffer_test.go
buf.Next(test.skip) bytes, err := buf.Peek(test.n) if string(bytes) != test.expected { t.Errorf("expected %q, got %q", test.expected, bytes) } if err != test.err { t.Errorf("expected error %v, got %v", test.err, err) } if buf.Len() != len(test.buffer)-test.skip { t.Errorf("bad length after peek: %d, want %d", buf.Len(), len(test.buffer)-test.skip) } } }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Nov 14 19:01:17 GMT 2025 - 19.4K bytes - Click Count (0) -
chainable_api.go
func (db *DB) Limit(limit int) (tx *DB) { tx = db.getInstance() tx.Statement.AddClause(clause.Limit{Limit: &limit}) return } // Offset specify the number of records to skip before starting to return the records // // Offset conditions can be cancelled by using `Offset(-1)`. // // // select the third user // db.Offset(2).First(&user)
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Fri Sep 19 01:49:06 GMT 2025 - 14.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
val pathEnd = url.delimiterOffset("?#", pathStart, url.length) val result = mutableListOf<String>() var i = pathStart while (i < pathEnd) { i++ // Skip the '/'. val segmentEnd = url.delimiterOffset('/', i, pathEnd) result.add(url.substring(i, segmentEnd)) i = segmentEnd } return result } /**
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 63.5K bytes - Click Count (0) -
cmd/object-api-options.go
Bucket: bucket, Object: object, Err: err, } } opts.VersionID = vid opts.Versioned = versioned opts.VersionSuspended = versionSuspended // For directory objects skip creating new versions. if isDirObject(object) && vid == "" { opts.VersionID = nullVersionID } return opts, nil }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.3K bytes - Click Count (0) -
tests/sql_builder_test.go
} } func TestToSQL(t *testing.T) { // By default DB.DryRun should false if DB.DryRun { t.Fatal("Failed expect DB.DryRun to be false") } if DB.Dialector.Name() == "sqlserver" { t.Skip("Skip SQL Server for this test, because it too difference with other dialects.") } date, _ := time.ParseInLocation("2006-01-02", "2021-10-18", time.Local) // find sql := DB.ToSQL(func(tx *gorm.DB) *gorm.DB {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Mon Jul 21 02:46:58 GMT 2025 - 16.7K bytes - Click Count (0) -
docs/en/docs/tutorial/response-model.md
In this case, you can disable the response model generation by setting `response_model=None`: {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *} This will make FastAPI skip the response model generation and that way you can have any return type annotations you need without it affecting your FastAPI application. đ¤ ## Response Model encoding parameters { #response-model-encoding-parameters }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 15.5K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/index.md
ăăăŚăăăăŻăăšăŚăŽ*path operation é˘ć°*ăćăŁăŚăăăŽă¨ĺă形ă¨ć§é ăćăŁăŚăăžăă ăăăłăŹăźăżăăĺŤăžăŞăďź`@app.get("/some-path")`ăĺŤăžăŞăďź*path operation é˘ć°*ă¨čăăăă¨ăă§ăăžăă ăăăŚä˝ă§ăčżăăă¨ăă§ăăžăă ăăŽĺ ´ĺăăăŽäžĺé˘äżăŻäťĽä¸ăćĺž ăăŚăăžă: * ăŞăăˇă§ăăŤăŽăŻă¨ăŞăăŠăĄăźăż`q`ăŻ`str`ă§ăă * ăŞăăˇă§ăăŤăŽăŻă¨ăŞăăŠăĄăźăż`skip`ăŻ`int`ă§ăăăăŠăŤăăŻ`0`ă§ăă * ăŞăăˇă§ăăŤăŽăŻă¨ăŞăăŠăĄăźăż`limit`ăŻ`int`ă§ăăăăŠăŤăăŻ`100`ă§ăă ăăăŚăăăăăŽĺ¤ăĺŤă`dict`ăčżăăžăă /// info | ć ĺ ą FastAPI ăŻăăźă¸ă§ăł 0.95.0 ă§ `Annotated` ăŽăľăăźăăčż˝ĺ ăďźăăăŚć¨ĺĽ¨ăĺ§ăăžăăďźă
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.9K bytes - Click Count (0) -
cmd/admin-router.go
type hFlag uint8 const ( // this flag disables gzip compression of responses noGZFlag = 1 << iota // this flag enables tracing body and headers instead of just headers traceAllFlag // pass this flag to skip checking if object layer is available noObjLayerFlag ) // Has checks if the given flag is enabled in `h`. func (h hFlag) Has(flag hFlag) bool { // Use bitwise-AND and check if the result is non-zero.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 26.7K bytes - Click Count (0) -
docs/en/docs/tutorial/query-params-str-validations.md
/// ### Understand that Code { #understand-that-code } The important point is just using **`AfterValidator` with a function inside `Annotated`**. Feel free to skip this part. 𤸠--- But if you're curious about this specific code example and you're still entertained, here are some extra details. #### String with `value.startswith()` { #string-with-value-startswith }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 16.3K bytes - Click Count (0)