Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 313 for storms (0.1 seconds)

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

     * eliminating explicit signaling, this class can guarantee that only one thread is awakened when a
     * condition becomes true (no "signaling storms" due to use of {@link
     * java.util.concurrent.locks.Condition#signalAll Condition.signalAll}) and that no signals are lost
     * (no "hangs" due to incorrect use of {@link java.util.concurrent.locks.Condition#signal
    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)
  2. android/guava/src/com/google/common/primitives/Shorts.java

        @Override
        public String toString() {
          return "Shorts.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(short[] array) {
        checkNotNull(array);
        sortDescending(array, 0, array.length);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Oct 22 18:14:49 GMT 2025
    - 25.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        }
    
        // Test multiple data store registration
        @Test
        public void test_multipleDataStores() {
            TestDataStore dataStore1 = new TestDataStore("Store1");
            TestDataStore2 dataStore2 = new TestDataStore2("Store2");
    
            dataStoreFactory.add("store1", dataStore1);
            dataStoreFactory.add("store2", dataStore2);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Serialization.java

        for (int i = 0; i < size; i++) {
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          K key = (K) stream.readObject();
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          V value = (V) stream.readObject();
          map.put(key, value);
        }
      }
    
      /**
       * Stores the contents of a multiset in an output stream, as part of serialization. It does not
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Dec 09 15:58:48 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/Serialization.java

        for (int i = 0; i < size; i++) {
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          K key = (K) stream.readObject();
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          V value = (V) stream.readObject();
          map.put(key, value);
        }
      }
    
      /**
       * Stores the contents of a multiset in an output stream, as part of serialization. It does not
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Dec 09 15:58:48 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/request-forms-and-files.md

    # Request Forms and Files { #request-forms-and-files }
    
    You can define files and form fields at the same time using `File` and `Form`.
    
    /// info
    
    To receive uploaded files and/or form data, first install [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Make sure you create a [virtual environment](../virtual-environments.md), activate it, and then install it, for example:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/request-forms-and-files.md

    # Request Formları ve Dosyalar { #request-forms-and-files }
    
    `File` ve `Form` kullanarak aynı anda hem dosyaları hem de form alanlarını tanımlayabilirsiniz.
    
    /// info | Bilgi
    
    Yüklenen dosyaları ve/veya form verisini almak için önce [`python-multipart`](https://github.com/Kludex/python-multipart) paketini kurun.
    
    Bir [sanal ortam](../virtual-environments.md) oluşturduğunuzdan, onu aktive ettiğinizden ve ardından paketi kurduğunuzdan emin olun, örneğin:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  8. docs/uk/docs/tutorial/request-forms-and-files.md

    # Запити з формами та файлами { #request-forms-and-files }
    
    Ви можете одночасно визначати файли та поля форми, використовуючи `File` і `Form`.
    
    /// info | Інформація
    
    Щоб отримувати завантажені файли та/або дані форми, спочатку встановіть [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Переконайтеся, що ви створили [віртуальне середовище](../virtual-environments.md), активували його, а потім встановили бібліотеку, наприклад:
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  9. docs/es/docs/tutorial/request-forms-and-files.md

    # Formularios y archivos del request { #request-forms-and-files }
    
    Puedes definir archivos y campos de formulario al mismo tiempo usando `File` y `Form`.
    
    /// info | Información
    
    Para recibir archivos subidos y/o form data, primero instala [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md), actívalo y luego instálalo, por ejemplo:
    
    ```console
    $ pip install python-multipart
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/request-forms-and-files.md

    # Файлы и формы в запросе { #request-forms-and-files }
    
    Вы можете определять файлы и поля формы одновременно, используя `File` и `Form`.
    
    /// info | Информация
    
    Чтобы получать загруженные файлы и/или данные форм, сначала установите [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Убедитесь, что вы создали [виртуальное окружение](../virtual-environments.md), активировали его, а затем установили пакет, например:
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 2.2K bytes
    - Click Count (0)
Back to Top