Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 114 for hilite (0.2 sec)

  1. android/guava/src/com/google/common/io/CharSource.java

     *
     * <p><b>Note:</b> In general, {@code CharSource} is intended to be used for "file-like" sources
     * that provide readers that are:
     *
     * <ul>
     *   <li><b>Finite:</b> Many operations, such as {@link #length()} and {@link #read()}, will either
     *       block indefinitely or fail if the source creates an infinite reader.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    		if f != tt.f || err != nil {
    			t.Errorf("opt ParseFloat(%s) = %b, %v want %b, nil", tt.s, f, err, tt.f)
    		}
    		SetOptimize(old)
    	}
    }
    
    // TestRoundTrip32 tries a fraction of all finite positive float32 values.
    func TestRoundTrip32(t *testing.T) {
    	step := uint32(997)
    	if testing.Short() {
    		step = 99991
    	}
    	count := 0
    	for i := uint32(0); i < 0xff<<23; i += step {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  3. docs/fr/docs/alternatives.md

    !!! check "**FastAPI** l'utilise pour"
    Gérer toutes les parties web de base. Ajouter des fonctionnalités par-dessus.
    
        La classe `FastAPI` elle-même hérite directement de la classe `Starlette`.
    
        Ainsi, tout ce que vous pouvez faire avec Starlette, vous pouvez le faire directement avec **FastAPI**, car il s'agit en fait de Starlette sous stéroïdes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/CharSource.java

     *
     * <p><b>Note:</b> In general, {@code CharSource} is intended to be used for "file-like" sources
     * that provide readers that are:
     *
     * <ul>
     *   <li><b>Finite:</b> Many operations, such as {@link #length()} and {@link #read()}, will either
     *       block indefinitely or fail if the source creates an infinite reader.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/sql-databases-peewee.md

    The argument:
    
    ```Python
    check_same_thread=False
    ```
    
    is equivalent to the one in the SQLAlchemy tutorial:
    
    ```Python
    connect_args={"check_same_thread": False}
    ```
    
    ...it is needed only for `SQLite`.
    
    !!! info "Technical Details"
    
        Exactly the same technical details as in [SQL (Relational) Databases](../tutorial/sql-databases.md#note){.internal-link target=_blank} apply.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. docs/tr/docs/alternatives.md

    Sonrasında ise projenin odağı değişti.
    
    Geliştiricinin Starlette'e odaklanması gerekince proje de artık bir API web framework'ü olmayı bıraktı.
    
    Artık APIStar, OpenAPI özelliklerini doğrulamak için bir dizi araç sunan bir proje haline geldi.
    
    !!! info "Bilgi"
        APIStar, aşağıdaki projeleri de üreten Tom Christie tarafından geliştirildi:
    
        * Django REST Framework
        * **FastAPI**'ın da dayandığı Starlette
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/go/constant/value.go

    	if x < 1<<63 {
    		return int64Val(int64(x))
    	}
    	return intVal{newInt().SetUint64(x)}
    }
    
    // MakeFloat64 returns the [Float] value for x.
    // If x is -0.0, the result is 0.0.
    // If x is not finite, the result is an [Unknown].
    func MakeFloat64(x float64) Value {
    	if math.IsInf(x, 0) || math.IsNaN(x) {
    		return unknownVal{}
    	}
    	if smallFloat64(x) {
    		return ratVal{newRat().SetFloat64(x + 0)} // convert -0 to 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.send_testmail	=	Envoyer un email de test
    labels.backup_configuration	=	Sauvegarde
    labels.backup_name	=	Nom
    labels.backup_bulk_file	=	Fichier en lot
    labels.backup_button_upload	=	Télécharger
    labels.process_time_is_exceeded	=	La limite d'un temps de recherche a été dépassée. Le résultat partiel peut être affiché.
    labels.user_given_name	=	Prénom
    labels.givenName	=	Prénom
    labels.user_surname	=	Nom de famille
    labels.surame	=	Nom de famille
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/net/timeout_test.go

    			if n > 0 {
    				// SetWriteDeadline specifies a time “after which I/O operations fail
    				// instead of blocking”. However, the kernel's send buffer is not yet
    				// full, we may be able to write some arbitrary (but finite) number of
    				// bytes to it without blocking.
    				t.Logf("Wrote %d bytes into send buffer; retrying until buffer is full", n)
    				if d <= maxDynamicTimeout/2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      }
    
      // Returns the floating-point number that represent positive infinity.
      static RawType Infinity() {
        return ReinterpretBits(kExponentBitMask);
      }
    
      // Returns the maximum representable finite floating-point number.
      static RawType Max();
    
      // Non-static methods
    
      // Returns the bits that represents this number.
      const Bits &bits() const { return u_.bits_; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
Back to top