Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 641 - 650 of 866 for fanout (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/primitives/Booleans.java

       *     {@code toIndex > fromIndex}
       * @since 32.0.0
       */
      public static void rotate(boolean[] array, int distance, int fromIndex, int toIndex) {
        // See Ints.rotate for more details about possible algorithms here.
        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        if (array.length <= 1) {
          return;
        }
    
        int length = toIndex - fromIndex;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Sep 25 15:01:23 GMT 2025
    - 20.6K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/reflect/TypeResolver.java

             * API at all.)
             *
             * 2. Under the JDK, the built-in TypeVariable implementation does not interoperate with
             * ours. Therefore, we have to be careful about whether we create our own TypeVariable:
             *
             * 2a. If the resolved types are identical to the original types, then we can return the
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 22:30:05 GMT 2025
    - 25.3K bytes
    - Click Count (0)
  3. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       *
       * <p>Note that you cannot always tell if an attempt to insert an element will succeed by
       * inspecting {@code remainingCapacity} because it may be the case that another thread is about to
       * insert or remove an element.
       */
      @CanIgnoreReturnValue
      @Override
      public int remainingCapacity() {
        Monitor monitor = this.monitor;
        monitor.enter();
        try {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 22.4K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/first-steps.md

    ### Paso 6: Despliégalo { #step-6-deploy-it }
    
    Despliega tu app en **[FastAPI Cloud](https://fastapicloud.com)** con un solo comando: `fastapi deploy`. 🎉
    
    #### Sobre FastAPI Cloud { #about-fastapi-cloud }
    
    **[FastAPI Cloud](https://fastapicloud.com)** está construido por el mismo autor y equipo detrás de **FastAPI**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  5. docs/fr/docs/tutorial/first-steps.md

    ### Étape 6 : le déployer { #step-6-deploy-it }
    
    Déployez votre application sur **[FastAPI Cloud](https://fastapicloud.com)** avec une seule commande : `fastapi deploy`. 🎉
    
    #### À propos de FastAPI Cloud { #about-fastapi-cloud }
    
    **[FastAPI Cloud](https://fastapicloud.com)** est construit par le même auteur et l’équipe derrière **FastAPI**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/first-steps.md

    ### Passo 6: Faça o deploy { #step-6-deploy-it }
    
    Faça o deploy da sua aplicação para a **[FastAPI Cloud](https://fastapicloud.com)** com um comando: `fastapi deploy`. 🎉
    
    #### Sobre o FastAPI Cloud { #about-fastapi-cloud }
    
    A **[FastAPI Cloud](https://fastapicloud.com)** é construída pelo mesmo autor e equipe por trás do **FastAPI**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  7. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

     * Arrays.sort(pq.toArray())}. Also, method {@code drainTo} can be used to remove some or
     * all elements in priority order and place them in another collection.
     *
     * <p>Operations on this class make no guarantees about the ordering of elements with equal
     * priority. If you need to enforce an ordering, you can define custom classes or comparators that
     * use a secondary key to break ties in primary priority values. For example, here is a class that
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 19K bytes
    - Click Count (0)
  8. guava/src/com/google/common/base/Joiner.java

         * inputs, rather than as if it never tolerates them.
         *
         * We rely on checkers to implement special cases to catch dangerous calls to join(), etc. based
         * on what they know about the particular Joiner instances the calls are performed on.
         *
         * (In addition to useForNull, we also offer skipNulls. It, too, tolerates null inputs, but its
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 15:16:19 GMT 2025
    - 21K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/deployment/https.md

    # 關於 HTTPS { #about-https }
    
    人們很容易以為 HTTPS 只是「啟用或未啟用」的功能。
    
    但實際上複雜得多。
    
    /// tip
    
    如果你趕時間或不在意細節,可以直接看後續章節,依照逐步指引用不同方式完成設定。
    
    ///
    
    想從使用者角度學習 HTTPS 基礎,請參考 [https://howhttps.works/](https://howhttps.works/)。
    
    接著以開發者角度,談幾個關於 HTTPS 需要注意的重點:
    
    * 對於 HTTPS,伺服器需要擁有由**第三方**簽發的**「憑證」**。
        * 這些憑證實際上是向第三方**取得**,不是「自己產生」。
    * 憑證有**有效期**。
        * 會**過期**。
        * 過期後需要**續期**,也就是再向第三方**重新取得**。
    * 連線加密發生在 **TCP 層**。
        * 那是在 **HTTP 的下一層**。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  10. internal/crypto/header_test.go

    		return true
    	}
    
    	for i, test := range removeSensitiveHeadersTests {
    		metadata := make(map[string]string, len(test.Header))
    		for k := range test.Header {
    			metadata[k] = "" // set metadata key - we don't care about the value
    		}
    
    		RemoveSensitiveHeaders(test.Header)
    		if !isEqual(test.ExpectedHeader, test.Header) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Jul 13 14:52:15 GMT 2022
    - 21.4K bytes
    - Click Count (0)
Back to Top