Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 263 for stsr (0.05 sec)

  1. docs/en/docs/tutorial/metadata.md

    | Parameter | Type | Description |
    |------------|------|-------------|
    | `title` | `str` | The title of the API. |
    | `summary` | `str` | A short summary of the API. <small>Available since OpenAPI 3.1.0, FastAPI 0.99.0.</small> |
    | `description` | `str` | A short description of the API. It can use Markdown. |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    	if s == nil {
    		return "<nil>"
    	}
    	if _, ok := seen[s.Id]; ok {
    		return s.Name
    	}
    	seen[s.Id] = true
    	str := s.Name + " = struct { "
    	for _, f := range s.Field {
    		str += fmt.Sprintf("%s %s; ", f.Name, f.Id.gobType().safeString(seen))
    	}
    	str += "}"
    	return str
    }
    
    func (s *structType) string() string { return s.safeString(make(map[typeId]bool)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

                int pos;
                final String str;
    
                private Scanner(String string) {
                    this.str = string;
                }
    
                boolean hasDigit() {
                    return pos < str.length() && Character.isDigit(str.charAt(pos));
                }
    
                boolean isSeparatorAndDigit(char... separators) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/common/case_format.cc

    enum CaseFormatType {
      LOWER_CAMEL,
      UPPER_CAMEL,
      LOWER_SNAKE,
      UPPER_SNAKE,
    };
    
    string FormatStringCase(const string &str, CaseFormatType to,
                            const char delimiter = '_') {
      const bool from_snake =
          (str == str_util::Uppercase(str)) || (str == str_util::Lowercase(str));
      const bool toUpper = (to == UPPER_CAMEL || to == UPPER_SNAKE);
      const bool toSnake = (to == LOWER_SNAKE || to == UPPER_SNAKE);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "MultipleFields"          | "new MultipleFields('str', 42, 'other_str')"                                                     | "MultipleFields[str=str, number=42, other=other_str]"
            "WithNestedRecords"       | "new WithNestedRecords('str', new MultipleFields('str', 42, 'other_str'), new ZeroFields(), 66)" | "WithNestedRecords[str=str, mf=MultipleFields[str=str, number=42, other=other_str], zf=ZeroFields[], number=66]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/extra-data-types.md

        * Wird in Requests und Responses als `str` dargestellt.
    * `datetime.datetime`:
        * Ein Python-`datetime.datetime`.
        * Wird in Requests und Responses als `str` im ISO 8601-Format dargestellt, etwa: `2008-09-15T15:53:00+05:00`.
    * `datetime.date`:
        * Python-`datetime.date`.
        * Wird in Requests und Responses als `str` im ISO 8601-Format dargestellt, etwa: `2008-09-15`.
    * `datetime.time`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. scripts/docs.py

        return "insiders" in version
    
    
    def get_en_config() -> Dict[str, Any]:
        return mkdocs.utils.yaml_load(en_config_path.read_text(encoding="utf-8"))
    
    
    def get_lang_paths() -> List[Path]:
        return sorted(docs_path.iterdir())
    
    
    def lang_callback(lang: Optional[str]) -> Union[str, None]:
        if lang is None:
            return None
        lang = lang.lower()
        return lang
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. docs/pt/docs/python-types.md

    ```
    
    O uso de `Opcional [str]` em vez de apenas `str` permitirá que o editor o ajude a detectar erros, onde você pode estar assumindo que um valor é sempre um `str`, quando na verdade também pode ser `None`.
    
    #### Tipos genéricos
    
    Esses tipos que usam parâmetros de tipo entre colchetes, como:
    
    * `List`
    * `Tuple`
    * `Set`
    * `Dict`
    * `Opcional`
    * ...e outros.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/DurationTest.groovy

    class DurationTest extends Specification {
        def "millisecond durations have useful string formats"() {
            expect:
            Duration.millis(millis).toString() == str
            Duration.millis(millis).format() == formatted
    
            where:
            millis  | str          | formatted
            0       | "0 ms"       | "0 ms"
            1       | "1 ms"       | "1 ms"
            0.123   | "0.123 ms"   | "0.123 ms"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. pkg/proxy/util/nodeport_addresses.go

    func NewNodePortAddresses(family v1.IPFamily, cidrStrings []string) *NodePortAddresses {
    	npa := &NodePortAddresses{}
    
    	// Filter CIDRs to correct family
    	for _, str := range cidrStrings {
    		if (family == v1.IPv4Protocol) == netutils.IsIPv4CIDRString(str) {
    			npa.cidrStrings = append(npa.cidrStrings, str)
    		}
    	}
    	if len(npa.cidrStrings) == 0 {
    		if family == v1.IPv4Protocol {
    			npa.cidrStrings = []string{IPv4ZeroCIDR}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top