- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 617 for skip1 (0.03 sec)
-
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.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
for (Invokable<?, ?> factory : getFactoriesToTest()) { try { testEqualsUsing(factory); } catch (FactoryMethodReturnsNullException e) { // If the factory returns null, we just skip it. } } return this; } /** * Runs serialization test on the return values of the static methods. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:18:12 UTC 2024 - 32.7K bytes - Viewed (0) -
CHANGELOG.md
[RFC 8305][rfc_8305]. Disable with `OkHttpClient.Builder.fastFallback(false)`. * Fix: Don't log response bodies for server-sent events. * Fix: Skip early hints (status code 103) responses. * Fix: Don't log sensitive headers in `Request.toString()`. * Fix: Don't crash when the dispatcher's `ExecutorService` is shutdown with many calls still enqueued.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 18 01:31:39 UTC 2024 - 21.4K bytes - Viewed (0) -
cmd/metacache-entries.go
} eVers, eErr := e.xlmeta() oVers, oErr := other.xlmeta() if eErr != nil || oErr != nil { return nil, false } // check both fileInfo's have same number of versions, if not skip // the `other` entry. if len(eVers.versions) != len(oVers.versions) { eTime := eVers.latestModtime() oTime := oVers.latestModtime() if !eTime.Equal(oTime) { if eTime.After(oTime) { return e, false
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
docs/ru/docs/tutorial/dependencies/classes-as-dependencies.md
//// Эти параметры и будут использоваться **FastAPI** для "решения" зависимости. В обоих случаях она будет иметь: * Необязательный параметр запроса `q`, представляющий собой `str`. * Параметр запроса `skip`, представляющий собой `int`, по умолчанию `0`. * Параметр запроса `limit`, представляющий собой `int`, по умолчанию равный `100`. В обоих случаях данные будут конвертированы, валидированы, документированы по схеме OpenAPI и т.д.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 16K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.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(daemon: Boolean = true, isContinue: Boolean = true, maxParallelForks: String = "%maxParallelForks%"): List<String> = listOf(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
``` //// 이 매개변수들은 **FastAPI**가 의존성을 "해결"하기 위해 사용할 것입니다 함수와 클래스 두 가지 방식 모두, 아래 요소를 갖습니다: * `문자열`이면서 선택사항인 쿼리 매개변수 `q`. * 기본값이 `0`이면서 `정수형`인 쿼리 매개변수 `skip` * 기본값이 `100`이면서 `정수형`인 쿼리 매개변수 `limit` 두 가지 방식 모두, 데이터는 변환, 검증되고 OpenAPI 스키마에 문서화됩니다. ## 사용해봅시다! 이제 아래의 클래스를 이용해서 의존성을 정의할 수 있습니다. //// tab | 파이썬 3.6 이상 ```Python hl_lines="19"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/ru/docs/tutorial/dependencies/index.md
И она может возвращать всё, что требуется. В этом случае, эта зависимость ожидает: * Необязательный query-параметр `q` с типом `str` * Необязательный query-параметр `skip` с типом `int`, и значением по умолчанию `0` * Необязательный query-параметр `limit` с типом `int`, и значением по умолчанию `100` И в конце она возвращает `dict`, содержащий эти значения. /// info | "Информация"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 17.6K bytes - Viewed (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) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 20 15:42:49 UTC 2024 - 24.6K bytes - Viewed (0) -
cmd/erasure.go
var scanningInfos, healingInfos []DiskInfo for i, info := range infos { // Check if one of the drives in the set is being healed. // this information is used by scanner to skip healing // this erasure set while it calculates the usage. if info.Error != "" || disks[i] == nil { continue } if info.Healing { healing++ if inclHealing {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 16.1K bytes - Viewed (0)