- Sort Score
- Num 10 results
- Language All
Results 341 - 350 of 587 for previous (0.1 seconds)
-
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
} // reset for next iteration setFutureSuccess.set(false); cancellationSuccess.set(false); finalResults.clear(); } executor.shutdown(); } // In a previous implementation this would cause a stack overflow after ~2000 futures chained // together. Now it should only be limited by available memory (and time) public void testSetFuture_stackOverflow() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 45.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/Ordering.java
* Ordering.natural() * .nullsFirst() * .onResultOf(getBarFunction) * .nullsLast(); * } * * Note that each chaining method returns a new ordering instance which is backed by the previous * instance, but has the chance to act on values <i>before</i> handing off to that backing instance. * As a result, it usually helps to read chained ordering expressions <i>backwards</i>. For example,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 39.4K bytes - Click Count (0) -
internal/config/config.go
} if _, ok := cp[subSys]; !ok { rnSubSys, ok := renamedSubsys[subSys] if !ok { // A config subsystem was removed or server was downgraded. continue } // Copy over settings from previous sub-system // to newly renamed sub-system for _, kv := range cp[rnSubSys][Default] { _, ok := c[subSys][tgt].Lookup(kv.Key) if !ok { ckvs.Set(kv.Key, kv.Value) } }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 37.7K bytes - Click Count (0) -
configure.py
"""Add default build and test flags required for TF tests to bazelrc.""" write_to_bazelrc('test --test_size_filters=small,medium') # Each instance of --test_tag_filters or --build_tag_filters overrides all # previous instances, so we need to build up a complete list and write a # single list of filters for the .bazelrc file. # Filters to use with both --test_tag_filters and --build_tag_filters
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Dec 19 16:32:04 GMT 2025 - 48.3K bytes - Click Count (0) -
cmd/erasure-sets.go
// putting it back into the s.erasureDisks by re-placing the disk again. _, setIndex, _ := cdisk.GetDiskLoc() if setIndex != -1 { continue } } if cdisk != nil { // Close previous offline disk. cdisk.Close() } wg.Add(1) go func(endpoint Endpoint) { defer wg.Done() disk, format, err := connectEndpoint(endpoint) if err != nil {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 37K bytes - Click Count (1) -
docs/uk/docs/tutorial/dependencies/classes-as-dependencies.md
# Класи як залежності { #classes-as-dependencies } Перш ніж заглибитися у систему **впровадження залежностей**, оновімо попередній приклад. ## `dict` з попереднього прикладу { #a-dict-from-the-previous-example } У попередньому прикладі ми повертали `dict` із нашого «залежного»: {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[9] *} Але тоді ми отримуємо `dict` у параметрі `commons` функції операції шляху.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:43:14 GMT 2026 - 9.7K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.9.md
For initial installations, see the [Setup topics](https://kubernetes.io/docs/setup/pick-right-solution/) in the Kubernetes documentation. To upgrade to this release from a previous version, first take any actions required [Before Upgrading](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.9.md#before-upgrading).
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Nov 16 10:46:27 GMT 2021 - 313.7K bytes - Click Count (0) -
docs/zh-hant/docs/alternatives.md
沒有前人的工作,就不會有 **FastAPI**。 在它誕生之前,已經有許多工具啟發了它的設計。 我多年來一直避免打造新框架。起初我嘗試用許多不同的框架、外掛與工具,來實作 **FastAPI** 涵蓋的所有功能。 但在某個時間點,除了創建一個能提供所有這些功能、汲取前人工具的優點,並以最佳方式組合起來、同時運用過去甚至不存在的語言特性(Python 3.6+ 的型別提示)之外,已別無他法。 ## 先前的工具 { #previous-tools } ### [Django](https://www.djangoproject.com/) { #django } 它是最受歡迎且廣受信任的 Python 框架。像 Instagram 等系統就是用它打造的。 它與關聯式資料庫(如 MySQL 或 PostgreSQL)相對緊密耦合,因此要以 NoSQL 資料庫(如 Couchbase、MongoDB、Cassandra 等)作為主要儲存引擎並不容易。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 20K bytes - Click Count (0) -
cmd/erasure-server-pool-decom.go
return } r := rand.New(rand.NewSource(time.Now().UnixNano())) for { if err := z.Decommission(ctx, poolIndices...); err != nil { if errors.Is(err, errDecommissionAlreadyRunning) { // A previous decommission running found restart it. for _, idx := range poolIndices { z.doDecommissionInRoutine(ctx, idx) } return } if configRetriableErrors(err) {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 42.2K bytes - Click Count (1) -
docs/tr/docs/tutorial/dependencies/classes-as-dependencies.md
# Dependency Olarak Class'lar { #classes-as-dependencies } **Dependency Injection** sistemine daha derinlemesine geçmeden önce, bir önceki örneği geliştirelim. ## Önceki Örnekten Bir `dict` { #a-dict-from-the-previous-example } Önceki örnekte, dependency'mizden ("dependable") bir `dict` döndürüyorduk: {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[9] *} Ama sonra *path operation function* içindeki `commons` parametresinde bir `dict` alıyoruz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:41:38 GMT 2026 - 7.3K bytes - Click Count (0)