Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Toft (0.27 sec)

  1. docs/de/docs/deployment/https.md

    Einige der Optionen, die Sie als TLS-Terminierungsproxy verwenden können, sind:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:16:46 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. docs/de/docs/alternatives.md

    Ohne ein Datenvalidierungssystem müssten Sie alle Prüfungen manuell im Code durchführen.
    
    Für diese Funktionen wurde Marshmallow entwickelt. Es ist eine großartige Bibliothek und ich habe sie schon oft genutzt.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:26:28 GMT 2024
    - 26.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // Defaults to Delete.
      // +optional
      optional string reclaimPolicy = 4;
    
      // mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class.
      // e.g. ["ro", "soft"]. Not validated -
      // mount of the PVs will simply fail if one is invalid.
      // +optional
      repeated string mountOptions = 5;
    
      // allowVolumeExpansion shows whether the storage class allow volume expand
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Tables.java

       *
       * <p>Note: the table assumes complete ownership over of {@code backingMap} and the maps returned
       * by {@code factory}. Those objects should not be manually updated and they should not use soft,
       * weak, or phantom references.
       *
       * @param backingMap place to store the mapping from each row key to its corresponding column key
       *     / value map
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1/generated.proto

      // Defaults to Delete.
      // +optional
      optional string reclaimPolicy = 4;
    
      // mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class.
      // e.g. ["ro", "soft"]. Not validated -
      // mount of the PVs will simply fail if one is invalid.
      // +optional
      repeated string mountOptions = 5;
    
      // allowVolumeExpansion shows whether the storage class allow volume expand.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/settings.md

    Dann können wir testen, ob das verwendet wird.
    
    ## Lesen einer `.env`-Datei
    
    Wenn Sie viele Einstellungen haben, die sich möglicherweise oft ändern, vielleicht in verschiedenen Umgebungen, kann es nützlich sein, diese in eine Datei zu schreiben und sie dann daraus zu lesen, als wären sie Umgebungsvariablen.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:17:14 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  7. docs/de/docs/index.md

    <!-- /sponsors -->
    
    <a href="https://fastapi.tiangolo.com/de/fastapi-people/#sponsoren" class="external-link" target="_blank">Andere Sponsoren</a>
    
    ## Meinungen
    
    „_[...] Ich verwende **FastAPI** heutzutage sehr oft. [...] Ich habe tatsächlich vor, es für alle **ML-Dienste meines Teams bei Microsoft** zu verwenden. Einige davon werden in das Kernprodukt **Windows** und einige **Office**-Produkte integriert._“
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/docker.md

    3. Kopiere die Datei mit den Paketanforderungen in das Verzeichnis `/code`.
    
        Kopieren Sie zuerst **nur** die Datei mit den Anforderungen, nicht den Rest des Codes.
    
        Da sich diese Datei **nicht oft ändert**, erkennt Docker das und verwendet den **Cache** für diesen Schritt, wodurch der Cache auch für den nächsten Schritt aktiviert wird.
    
    4. Installiere die Paketabhängigkeiten aus der Anforderungsdatei.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:19:17 GMT 2024
    - 38.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      public void testSetSoftValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder().softValues());
        checkStrength(map, Strength.STRONG, Strength.SOFT);
        assertSame(EntryFactory.STRONG, map.entryFactory);
      }
    
      private static void checkStrength(
          LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      public void testSetSoftValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder().softValues());
        checkStrength(map, Strength.STRONG, Strength.SOFT);
        assertSame(EntryFactory.STRONG, map.entryFactory);
      }
    
      private static void checkStrength(
          LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
Back to top