Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for Quarda (0.19 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractService.java

      private final Guard isStartable = new IsStartableGuard();
    
      @WeakOuter
      private final class IsStartableGuard extends Guard {
        IsStartableGuard() {
          super(AbstractService.this.monitor);
        }
    
        @Override
        public boolean isSatisfied() {
          return state() == NEW;
        }
      }
    
      private final Guard isStoppable = new IsStoppableGuard();
    
      @WeakOuter
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 18:32:03 GMT 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/tr/stopwords.txt

    bile
    bin
    bir
    birçok
    biri
    birkaç
    birkez
    birşey
    birşeyi
    biz
    bize
    bizden
    bizi
    bizim
    böyle
    böylece
    bu
    buna
    bunda
    bundan
    bunlar
    bunları
    bunların
    bunu
    bunun
    burada
    çok
    çünkü
    da
    daha
    dahi
    de
    defa
    değil
    diğer
    diye
    doksan
    dokuz
    dolayı
    dolayısıyla
    dört
    edecek
    eden
    ederek
    edilecek
    ediliyor
    edilmesi
    ediyor
    eğer
    elli
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 1.5K bytes
    - Viewed (1)
  3. docs/az/learn/index.md

    # Öyrən
    
    Burada **FastAPI** öyrənmək üçün giriş bölmələri və dərsliklər yer alır.
    
    Plain Text
    - Registered: Sun Mar 03 07:19:10 GMT 2024
    - Last Modified: Sun Feb 25 14:25:12 GMT 2024
    - 212 bytes
    - Viewed (0)
  4. docs/tr/docs/tutorial/first-steps.md

    ### Adım 2: Bir `FastAPI` "Örneği" Oluşturalım
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Burada `app` değişkeni `FastAPI` sınıfının bir örneği olacaktır.
    
    Bu, tüm API'yı oluşturmak için ana etkileşim noktası olacaktır.
    
    Bu `app` değişkeni, `uvicorn` komutunda atıfta bulunulan değişkenin ta kendisidir.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Feb 08 13:10:55 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  5. docs/tr/docs/learn/index.md

    # Öğren
    
    **FastAPI** öğrenmek için giriş bölümleri ve öğreticiler burada yer alıyor.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 23 16:02:27 GMT 2024
    - 223 bytes
    - Viewed (0)
  6. docs/contribute/concurrency.md

    We have 3 different things that we synchronize on.
    
    #### Http2Connection
    
    This lock guards internal state of each connection. This lock is never held for blocking operations. That means that we acquire the lock, read or write a few fields and release the lock. No I/O and no application-layer callbacks.
    
    #### Http2Stream
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      std::unique_ptr<TF_Thread, std::function<void(TF_Thread*)>> pruning_thread_;
    
      /// Notification for stopping the cache pruning thread.
      absl::Notification stop_pruning_thread_;
    
      /// Guards access to the block map, LRU list, and cached byte count.
      mutable absl::Mutex mu_;
    
      /// The block map (map from Key to Block).
      BlockMap block_map_ ABSL_GUARDED_BY(mu_);
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:46:34 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  8. docs/az/docs/learn/index.md

    # Öyrən
    
    Burada **FastAPI** öyrənmək üçün giriş bölmələri və dərsliklər yer alır.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 09 00:39:20 GMT 2024
    - 212 bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java

        Monitor monitor2 = new Monitor();
        FlagGuard guard = new FlagGuard(monitor2);
        assertThrows(IllegalMonitorStateException.class, () -> monitor1.getWaitQueueLength(guard));
      }
    
      public void testHasWaitersWithWrongMonitorThrowsIMSE() {
        Monitor monitor1 = new Monitor();
        Monitor monitor2 = new Monitor();
        FlagGuard guard = new FlagGuard(monitor2);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  10. docs/tr/docs/how-to/index.md

    # Nasıl Yapılır - Tarifler
    
    Burada çeşitli konular hakkında farklı tarifler veya "nasıl yapılır" kılavuzları yer alıyor.
    
    Bu fikirlerin büyük bir kısmı aşağı yukarı **bağımsız** olacaktır, çoğu durumda bunları sadece **projenize** hitap ediyorsa incelemelisiniz.
    
    Projeniz için ilginç ve yararlı görünen bir şey varsa devam edin ve inceleyin, aksi halde bunları atlayabilirsiniz.
    
    !!! tip "İpucu"
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 25 14:56:05 GMT 2024
    - 625 bytes
    - Viewed (0)
Back to top