- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 183 for godina (0.06 seconds)
-
docs/en/docs/async.md
So you wait for your crush to finish the story (finish the current work ⯠/ task being processed đ€), smile gently and say that you are going for the burgers âž.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 23.4K bytes - Click Count (0) -
docs/tr/docs/deployment/docker.md
```Dockerfile COPY ./app /code/app ``` ### Docker Image'ını Build Edin { #build-the-docker-image } TĂŒm dosyalar hazır olduÄuna göre container image'ı build edelim. * Proje dizinine gidin (`Dockerfile`'ınızın olduÄu ve `app` dizininizi içeren dizin). * FastAPI image'ınızı build edin: <div class="termy"> ```console $ docker build -t myimage . ---> 100% ``` </div>
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 29.6K bytes - Click Count (0) -
src/cmd/api/main_test.go
if err != nil { log.Fatalf("go list: invalid output: %v", err) } // - Package "unsafe" contains special signatures requiring // extra care when printing them - ignore since it is not // going to change w/o a language change. // - Internal and vendored packages do not contribute to our // API surface. (If we are running within the "std" module, // vendored dependencies appear as themselves instead ofCreated: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Mar 02 13:20:41 GMT 2026 - 31.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableList.java
* * @throws NullPointerException if {@code elements} contains a null element */ public static <E> ImmutableList<E> copyOf(Iterator<? extends E> elements) { // We special-case for 0 or 1 elements, but going further is madness. if (!elements.hasNext()) { return of(); } E first = elements.next(); if (!elements.hasNext()) { return of(first); } else {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 30.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/graph/TraverserTest.java
* } */ private static final SuccessorsFunction<Character> JAVADOC_GRAPH = createUndirectedGraph("ba", "ad", "be", "ac", "ec", "cf"); /** * A diamond shaped directed graph (arrows going down): * * {@snippet : * a * / \ * b c * \ / * d * } */ private static final SuccessorsFunction<Character> DIAMOND_GRAPH =
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 30 17:09:51 GMT 2025 - 47.4K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFuture.java
private static void executeListener(Runnable runnable, Executor executor) { try { executor.execute(runnable); } catch (Exception e) { // sneaky checked exception // Log it and keep going -- bad runnable and/or executor. Don't punish the other runnables if // we're given a bad one. We only catch Exception because we want Errors to propagate up. log.get() .log( SEVERE,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 14:39:00 GMT 2026 - 43.6K bytes - Click Count (0) -
cmd/object-api-utils.go
} // hasSpaceFor returns whether the disks in `di` have space for and object of a given size. func hasSpaceFor(di []*DiskInfo, size int64) (bool, error) { // We multiply the size by 2 to account for erasure coding. size *= 2 if size < 0 { // If no size, assume diskAssumeUnknownSize. size = diskAssumeUnknownSize } var available uint64 var total uint64 var nDisks int
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Jun 25 15:08:54 GMT 2025 - 37.3K bytes - Click Count (0) -
src/main/resources/fess_indices/_aws/fess.json
"siihen", "sillÀ", "siltÀ", "sille", "sinÀ", "siksi", "nÀmÀ", "nÀiden", "nÀitÀ", "nÀissÀ", "nÀistÀ", "nÀihin", "nÀillÀ", "nÀiltÀ", "nÀille", "nÀinÀ", "nÀiksi", "nuo", "noiden", "noita", "noissa", "noista", "noihin", "noilla", "noilta", "noille", "noina", "noiksi", "ne", "niiden", "niitÀ", "niissÀ", "niistÀ", "niihin", "niillÀ", "niiltÀ", "niille", "niinÀ", "niiksi", "kuka", "kenen", "kenet", "ketÀ", "kenessÀ", "kenestÀ", "keneen", "kenellÀ", "keneltÀ", "kenelle", "kenenÀ", "keneksi", "ketkÀ", "keiden",...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 117.5K bytes - Click Count (0) -
src/main/resources/fess_indices/_cloud/fess.json
"siihen", "sillÀ", "siltÀ", "sille", "sinÀ", "siksi", "nÀmÀ", "nÀiden", "nÀitÀ", "nÀissÀ", "nÀistÀ", "nÀihin", "nÀillÀ", "nÀiltÀ", "nÀille", "nÀinÀ", "nÀiksi", "nuo", "noiden", "noita", "noissa", "noista", "noihin", "noilla", "noilta", "noille", "noina", "noiksi", "ne", "niiden", "niitÀ", "niissÀ", "niistÀ", "niihin", "niillÀ", "niiltÀ", "niille", "niinÀ", "niiksi", "kuka", "kenen", "kenet", "ketÀ", "kenessÀ", "kenestÀ", "keneen", "kenellÀ", "keneltÀ", "kenelle", "kenenÀ", "keneksi", "ketkÀ", "keiden",...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 117.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Monitor.java
// // I probably can't remember all the reasons (it's possible you // could find them in the code review archives), but here are a few: // // 1. What about leaving/unlocking? Are you going to do // guard.enter() paired with monitor.leave()? That might get // confusing. It's nice for the finally block to look as close as // possible to the thing right before the try. You could have
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 28 22:39:02 GMT 2026 - 43.5K bytes - Click Count (0)