Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 53 for entered (0.08 seconds)

  1. .github/workflows/scorecard.yml

              #   - See https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories:
              #   - `publish_results` will always be set to `false`, regardless
              #     of the value entered here.
              publish_results: true
    
          # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
          # format to the repository Actions tab.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 22:02:44 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/StandardTable.java

            columnIterator = rowEntry.getValue().entrySet().iterator();
          }
          /*
           * requireNonNull is safe because:
           *
           * - columnIterator started off pointing to an empty iterator, so we must have entered the
           *   `if` body above at least once. Thus, if we got this far, that `if` body initialized
           *   rowEntry at least once.
           *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // A corollary to all that is that we don't need to check isDone inside the loop because if we
        // get into the loop we know that we weren't done when we entered and therefore we aren't under
        // an obligation to execute 'immediately'.
        if (!isDone()) {
          Listener oldHead = listeners();
          if (oldHead != Listener.TOMBSTONE) {
    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)
  4. fastapi/routing.py

                        # would finalize the generator and also working for sync
                        # generators running in a thread pool.
                        #
                        # This context manager is entered on the request-scoped
                        # AsyncExitStack so its __aexit__ (which cancels the
                        # task group) is called by the exit stack after the
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

        TestGuard guard = new TestGuard(true);
        thread1.callAndAssertReturns(true, enterIf(), guard);
        thread2.callAndAssertBlocks(enter());
      }
    
      public final void testEnterIf_initiallyFalse() throws Exception {
        TestGuard guard = new TestGuard(false);
        thread1.callAndAssertReturns(false, enterIf(), guard);
        thread2.callAndAssertReturns(enter());
      }
    
      public final void testEnterIf_alreadyOccupied() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 02:20:33 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

        TestGuard guard = new TestGuard(true);
        thread1.callAndAssertReturns(true, enterIf(), guard);
        thread2.callAndAssertBlocks(enter());
      }
    
      public final void testEnterIf_initiallyFalse() throws Exception {
        TestGuard guard = new TestGuard(false);
        thread1.callAndAssertReturns(false, enterIf(), guard);
        thread2.callAndAssertReturns(enter());
      }
    
      public final void testEnterIf_alreadyOccupied() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 02:20:33 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/entity/ChatMessage.java

            return ROLE_ASSISTANT.equals(role);
        }
    
        /**
         * Gets the HTML-rendered content.
         *
         * @return the HTML content, or null if not rendered
         */
        public String getHtmlContent() {
            return htmlContent;
        }
    
        /**
         * Sets the HTML-rendered content.
         *
         * @param htmlContent the HTML content
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  8. docs/tr/docs/how-to/graphql.md

    # GraphQL { #graphql }
    
    **FastAPI**, **ASGI** standardını temel aldığı için ASGI ile uyumlu herhangi bir **GraphQL** kütüphanesini entegre etmek oldukça kolaydır.
    
    Aynı uygulama içinde normal FastAPI *path operation*'larını GraphQL ile birlikte kullanabilirsiniz.
    
    /// tip | İpucu
    
    **GraphQL** bazı çok özel kullanım senaryolarını çözer.
    
    Yaygın **web API**'lerle karşılaştırıldığında **avantajları** ve **dezavantajları** vardır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/dependencies/index.md

    ///
    
    ## OpenAPI ile Entegre { #integrated-with-openapi }
    
    Dependency'lerinizin (ve alt dependency'lerin) tüm request tanımları, doğrulamaları ve gereksinimleri aynı OpenAPI şemasına entegre edilir.
    
    Bu nedenle interaktif dokümanlar, bu dependency'lerden gelen tüm bilgileri de içerir:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/dependencies/global-dependencies.md

    # Dépendances globales { #global-dependencies }
    
    Pour certains types d'applications, vous pourriez vouloir ajouter des dépendances à l'application entière.
    
    Comme vous pouvez [ajouter des `dependencies` aux *décorateurs de chemin d'accès*](dependencies-in-path-operation-decorators.md), vous pouvez les ajouter à l'application `FastAPI`.
    
    Dans ce cas, elles seront appliquées à tous les *chemins d'accès* de l'application :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.1K bytes
    - Click Count (0)
Back to Top