Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for greeter (0.08 sec)

  1. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

    1. val testSourceFileTree: String
    2. when {
    3. descriptor.language === Language.CPP -> {
    4. exampleClass = if (descriptor.componentType === ComponentType.LIBRARY) "Hello" else "Greeter"
    5. sourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + ".cpp"
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 22 11:11:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-params-numeric-validations.md

    1. ```
    2.  
    3. ////
    4.  
    5. ## Number validations: floats, greater than and less than
    6.  
    7. Number validations also work for `float` values.
    8.  
    9. Here's where it becomes important to be able to declare <abbr title="greater than"><code>gt</code></abbr> and not just <abbr title="greater than or equal"><code>ge</code></abbr>. As with it you can require, for example, that a value must be greater than `0`, even if it is less than `1`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/path-params-numeric-validations.md

    1. Validações numéricas também funcionam para valores do tipo `float`.
    2.  
    3. Aqui é onde se torna importante a possibilidade de declarar <abbr title="greater than"><code>gt</code></abbr> e não apenas <abbr title="greater than or equal"><code>ge</code></abbr>. Com isso você pode especificar, por exemplo, que um valor deve ser maior que `0`, ainda que seja menor que `1`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/path-params-numeric-validations.md

    1. La même chose s'applique pour :
    2.  
    3. * `gt` : `g`reater `t`han
    4. * `le` : `l`ess than or `e`qual
    5.  
    6. {* ../../docs_src/path_params_numeric_validations/tutorial005_an_py39.py hl[10] *}
    7.  
    8. ## Validations numériques : flottants, supérieur et inférieur
    9.  
    10. Les validations numériques fonctionnent également pour les valeurs `float`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 10:32:37 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/path-params-numeric-validations.md

    1. Валидация также применима к значениям типа `float`.
    2.  
    3. В этом случае становится важной возможность добавить ограничение <abbr title="greater than"><code>gt</code></abbr>, вместо <abbr title="greater than or equal"><code>ge</code></abbr>, поскольку в таком случае вы можете, например, создать ограничение, чтобы значение было больше `0`, даже если оно меньше `1`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/path-params-numeric-validations.md

    1. Zahlenvalidierung funktioniert auch für <abbr title="Kommazahl">`float`</abbr>-Werte.
    2.  
    3. Hier wird es wichtig, in der Lage zu sein, <abbr title="greater than – größer als"><code>gt</code></abbr> zu deklarieren, und nicht nur <abbr title="greater than or equal – größer oder gleich"><code>ge</code></abbr>, da Sie hiermit bestimmen können, dass ein Wert, zum Beispiel, größer als `0` sein muss, obwohl er kleiner als `1` ist.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. docs/ko/docs/tutorial/path-params-numeric-validations.md

    1. ```
    2.  
    3. ## 숫자 검증: 부동소수, 크거나 및 작거나
    4.  
    5. 숫자 검증은 `float` 값에도 동작합니다.
    6.  
    7. 여기에서 <abbr title="greater than or equal"><code>ge</code></abbr>뿐만 아니라 <abbr title="greater than"><code>gt</code></abbr>를 선언 할 수있는 것이 중요해집니다. 예를 들어 필요한 경우, 값이 `1`보다 작더라도 반드시 `0`보다 커야합니다.
    8.  
    9. 즉, `0.5`는 유효한 값입니다. 그러나 `0.0` 또는 `0`은 그렇지 않습니다.
    10.  
    11. <abbr title="less than"><code>lt</code></abbr> 역시 마찬가지입니다.
    12.  
    13. ```Python hl_lines="11"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. internal/config/storageclass/storage-class.go

    1. // SS parity drives should be greater than or equal to minParityDrives.
    2. // Parity below minParityDrives is not supported.
    3. if ssParity > 0 && ssParity < minParityDrives {
    4. return fmt.Errorf("Standard storage class parity %d should be greater than or equal to %d",
    5. ssParity, minParityDrives)
    6. }
    7.  
    8. // RRS parity drives should be greater than or equal to minParityDrives.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 12:24:04 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. fastapi/param_functions.py

    1. Optional[float],
    2. Doc(
    3. """
    4. Greater than. If set, value must be greater than this. Only applicable to
    5. numbers.
    6. """
    7. ),
    8. ] = None,
    9. ge: Annotated[
    10. Optional[float],
    11. Doc(
    12. """
    13. Greater than or equal. If set, value must be greater than or equal to
    14. this. Only applicable to numbers.
    15. """
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 23 18:30:18 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Range.java

    1. return new Range<>(lowerBound, upperBound);
    2. }
    3.  
    4. /**
    5. * Returns a range that contains all values strictly greater than {@code lower} and strictly less
    6. * than {@code upper}.
    7. *
    8. * @throws IllegalArgumentException if {@code lower} is greater than <i>or equal to</i> {@code
    9. * upper}
    10. * @throws ClassCastException if {@code lower} and {@code upper} are not mutually comparable
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top