- Sort Score
- Num 10 results
- Language All
Results 551 - 560 of 4,023 for once (0.3 seconds)
-
docs/tr/docs/features.md
/// ### Editör Desteği { #editor-support } Tüm framework, kullanımı kolay ve sezgisel olacak şekilde tasarlandı; en iyi geliştirme deneyimini sağlamak için geliştirmeye başlamadan önce bile alınan kararlar birden çok editörde test edildi.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 10.1K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.4.md
* If you use one of the kube-dns replication controller manifest in `cluster/saltbase/salt/kube-dns`, i.e. `cluster/saltbase/salt/kube-dns/{skydns-rc.yaml.base,skydns-rc.yaml.in}`, either substitute one of `__PILLAR__FEDERATIONS__DOMAIN__MAP__` or `{{ pillar['federations_domain_map'] }}` with the corresponding federation name to domain name value or remove...Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Dec 24 02:28:26 GMT 2020 - 133.5K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-forms.md
# Form Verisi { #form-data } JSON yerine form alanlarını almanız gerektiğinde `Form` kullanabilirsiniz. /// info | Bilgi Formları kullanmak için önce [`python-multipart`](https://github.com/Kludex/python-multipart) paketini kurun. Bir [virtual environment](../virtual-environments.md) oluşturduğunuzdan, onu etkinleştirdiğinizden emin olun ve ardından örneğin şöyle kurun: ```console $ pip install python-multipart ``` ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/recipes.md
It is an error to have multiple caches accessing the same cache directory simultaneously. Most applications should call `new OkHttpClient()` exactly once, configure it with their cache, and use that same instance everywhere. Otherwise the two cache instances will stomp on each other, corrupt the response cache, and possibly crash your program.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 47.8K bytes - Click Count (0) -
docs/tr/docs/advanced/sub-applications.md
### Üst seviye uygulama { #top-level-application } Önce ana, üst seviye **FastAPI** uygulamasını ve onun *path operation*’larını oluşturun: {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *} ### Alt uygulama { #sub-application }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.2K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/MoreExecutors.java
} /** * Returns an Executor that will propagate {@link RejectedExecutionException} from the delegate * executor to the given {@code future}. * * <p>Note, the returned executor can only be used once. */ static Executor rejectionPropagatingExecutor(Executor delegate, AbstractFuture<?> future) { checkNotNull(delegate); checkNotNull(future); if (delegate == directExecutor()) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 28 22:39:02 GMT 2026 - 45.6K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/LocalCache.java
/** * Notifies listeners that an entry has been automatically removed due to expiration, eviction, or * eligibility for garbage collection. This should be called every time expireEntries or * evictEntry is called (once the lock is released). */ void processPendingNotifications() { RemovalNotification<K, V> notification; while ((notification = removalNotificationQueue.poll()) != null) { try {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 143.5K bytes - Click Count (0) -
docs/tr/docs/advanced/async-tests.md
{* ../../docs_src/async_tests/app_a_py310/test_main.py hl[9:12] *} Bu, şu kullanıma denktir: ```Python response = client.get('/') ``` ...ki daha önce request'leri `TestClient` ile bu şekilde gönderiyorduk. /// tip | İpucu Yeni `AsyncClient` ile async/await kullandığımızı unutmayın; request asenkron çalışır. /// /// warning | UyarıCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
assertThat(map.higherKey("r")).isEqualTo("three"); assertThat(map.ceilingKey("r")).isEqualTo("three"); assertThat(map.ceilingKey("one")).isEqualTo("one"); assertEquals(mapEntry("three", 5), map.higherEntry("one")); assertEquals(mapEntry("one", 3), map.ceilingEntry("one")); assertThat(map.lowerKey("three")).isEqualTo("one"); assertThat(map.lowerKey("r")).isEqualTo("one");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 63.2K bytes - Click Count (0) -
CHANGELOG.md
* New: Kotlin-specific APIs for request tags. Kotlin language users can lookup tags with a type parameter only, like `request.tag<MyTagClass>()`. * New: MockWebServer has improved support for HTTP/1xx responses. Once you've migrated to the new `mockwebserver3` package, there's a new field, `MockResponse.informationalResponses`. * Fix: Don't interpret trailers as headers after an HTTP/100 response. This was a bug only whenCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 15 11:57:47 GMT 2026 - 36.2K bytes - Click Count (2)