Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Grisel (0.32 sec)

  1. cmd/metrics-v3-system-drive.go

    	"context"
    	"strconv"
    
    	"github.com/minio/madmin-go/v3"
    )
    
    // label constants
    const (
    	driveL      = "drive"
    	poolIndexL  = "pool_index"
    	setIndexL   = "set_index"
    	driveIndexL = "drive_index"
    
    	apiL = "api"
    
    	sectorSize = uint64(512)
    	kib        = float64(1 << 10)
    )
    
    var allDriveLabels = []string{driveL, poolIndexL, setIndexL, driveIndexL}
    
    const (
    	driveUsedBytes               = "used_bytes"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 11 21:22:15 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	CRXOR CR0GT, CR0EQ, CR0SO       // 4c620982
    
    	ISEL $0, R3, R4, R5             // 7ca3201e
    	ISEL $1, R3, R4, R5             // 7ca3205e
    	ISEL $2, R3, R4, R5             // 7ca3209e
    	ISEL $3, R3, R4, R5             // 7ca320de
    	ISEL $4, R3, R4, R5             // 7ca3211e
    	ISEL $31, R3, R4, R5            // 7ca327de
    	ISEL CR0LT, R3, R4, R5          // 7ca3201e
    	ISEL CR0GT, R3, R4, R5          // 7ca3205e
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  3. docs/fr/docs/index.md

    ---
    
    "_**Netflix** a le plaisir d'annoncer la sortie en open-source de notre framework d'orchestration de **gestion de crise** : **Dispatch** ! [construit avec **FastAPI**]_"
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  4. CODE_OF_CONDUCT.md

    2.  If this fails, get a third party (e.g. a mutual friend, and/or someone with
        background on the issue, but not involved in the conflict) to intercede.
    3.  If you are still unable to resolve the conflict, and you believe it rises to
        harassment or another code of conduct violation, report it.
    
    ## Reporting Violations
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Feb 05 18:43:16 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/body.md

    Des changements sur Pydantic ont même été faits pour supporter cela.
    
    Les captures d'écrans précédentes ont été prises sur <a href="https://code.visualstudio.com" class="external-link" target="_blank">Visual Studio Code</a>.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  6. docs/fr/docs/contributing.md

    Vous pouvez ensuite continuer avec les instructions précédentes, pour une "langue existante".
    
    ##### Nouvelle langue non prise en charge
    
    Si, lors de l'exécution du script du serveur en direct, vous obtenez une erreur indiquant que la langue n'est pas prise en charge, quelque chose comme :
    
    ```
     raise TemplateNotFound(template)
    jinja2.exceptions.TemplateNotFound: partials/language/xx.html
    ```
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * which external/unmanaged code is executed while the lock is held. (See caveats under
     * <strong>Performance</strong>).
     *
     * <p><strong>Cycle Detection</strong>
     *
     * <p>Deadlocks can arise when locks are acquired in an order that forms a cycle. In a simple
     * example involving two locks and two threads, deadlock occurs when one thread acquires Lock A, and
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 35.9K bytes
    - Viewed (0)
  8. docs/fr/docs/features.md

    Avec **FastAPI** vous aurez toutes les fonctionnalités de **Pydantic**  (comme FastAPI est basé sur Pydantic pour toutes les manipulations de données):
    
    * **Pas de prise de tête**:
        * Pas de nouveau langage de définition de schéma à apprendre.
        * Si vous connaissez le typage en python vous savez comment utiliser Pydantic.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ArrayTableTest.java

      @Override
      protected ArrayTable<String, Integer, Character> create(@Nullable Object... data) {
        // TODO: Specify different numbers of rows and columns, to detect problems
        // that arise when the wrong size is used.
        ArrayTable<String, Integer, Character> table =
            ArrayTable.create(asList("foo", "bar", "cat"), asList(1, 2, 3));
        populate(table, data);
        return table;
      }
    
      @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ArrayTableTest.java

      @Override
      protected ArrayTable<String, Integer, Character> create(@Nullable Object... data) {
        // TODO: Specify different numbers of rows and columns, to detect problems
        // that arise when the wrong size is used.
        ArrayTable<String, Integer, Character> table =
            ArrayTable.create(asList("foo", "bar", "cat"), asList(1, 2, 3));
        populate(table, data);
        return table;
      }
    
      @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top