Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 304 for 24 (0.03 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

        /**
         * Sets the certificate to be valid in ```[notBefore..notAfter]```. Both endpoints are specified
         * in the format of [System.currentTimeMillis]. Specify -1L for both values to use the default
         * interval, 24 hours starting when the certificate is created.
         */
        fun validityInterval(
          notBefore: Long,
          notAfter: Long,
        ) = apply {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. docs/ja/docs/advanced/custom-response.md

    定義するためのパラメータは、 `default_response_class` です。
    
    以下の例では、 **FastAPI** は、全ての *path operation* で `JSONResponse` の代わりに `ORJSONResponse` をデフォルトとして利用します。
    
    ```Python hl_lines="2  4"
    {!../../docs_src/custom_response/tutorial010.py!}
    ```
    
    /// tip | "豆知識"
    
    前に見たように、 *path operation* の中で `response_class` をオーバーライドできます。
    
    ///
    
    ## その他のドキュメント
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle.go

    func ExpectedExpiryTime(modTime time.Time, days int) time.Time {
    	if days == 0 {
    		return modTime
    	}
    	t := modTime.UTC().Add(time.Duration(days+1) * 24 * time.Hour)
    	return t.Truncate(24 * time.Hour)
    }
    
    // SetPredictionHeaders sets time to expiry and transition headers on w for a
    // given obj.
    func (lc Lifecycle) SetPredictionHeaders(w http.ResponseWriter, obj ObjectOpts) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses_test.go

    			true,
    		},
    		{
    			[]string{"data{1...64}"},
    			[]uint64{64},
    			[][]uint64{{16, 16, 16, 16}},
    			true,
    		},
    		{
    			[]string{"data{1...24}"},
    			[]uint64{24},
    			[][]uint64{{12, 12}},
    			true,
    		},
    		{
    			[]string{"data/controller{1...11}/export{1...8}"},
    			[]uint64{88},
    			[][]uint64{{11, 11, 11, 11, 11, 11, 11, 11}},
    			true,
    		},
    		{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/custom-response.md

    The parameter that defines this is `default_response_class`.
    
    In the example below, **FastAPI** will use `ORJSONResponse` by default, in all *path operations*, instead of `JSONResponse`.
    
    ```Python hl_lines="2  4"
    {!../../docs_src/custom_response/tutorial010.py!}
    ```
    
    /// tip
    
    You can still override `response_class` in *path operations* as before.
    
    ///
    
    ## Additional documentation
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. docs/debugging/inspect/export.go

    	// will allow to detect the exact version later.
    	xlVersionMinor = 1
    )
    
    func init() {
    	binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor)
    	binary.LittleEndian.PutUint16(xlVersionCurrent[2:4], xlVersionMinor)
    }
    
    // checkXL2V1 will check if the metadata has correct header and is a known major version.
    // The remaining payload and versions are returned.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-decom.go

    	default:
    		return fmt.Errorf("poolMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case poolMetaVersion:
    	default:
    		return fmt.Errorf("poolMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    
    	// OK, parse data.
    	if _, err = p.UnmarshalMsg(data[4:]); err != nil {
    		return err
    	}
    
    	switch p.Version {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 13:20:19 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_de.properties

    labels.search_result_more=mehr..
    labels.search_result_cache=Cache
    labels.search_result_similar=Ähnliche Ergebnisse ({0})
    labels.facet_label_title=Label
    labels.facet_timestamp_title=Datumsbereich
    labels.facet_timestamp_1day=Letzte 24 Stunden
    labels.facet_timestamp_1week=Letzte Woche
    labels.facet_timestamp_1month=Letzter Monat
    labels.facet_timestamp_1year=Letztes Jahr
    labels.facet_contentLength_title=Größe
    labels.facet_contentLength_10k=  - 10kb
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

                map(1, 4, 2, 2, 3, 3))
            .addEqualityGroup(
                ImmutableMap.of(1, 1, 2, 4, 3, 3),
                ImmutableMap.builder().put(1, 1).put(2, 4).put(3, 3).buildOrThrow(),
                ImmutableMap.ofEntries(entry(1, 1), entry(2, 4), entry(3, 3)),
                map(1, 1, 2, 4, 3, 3))
            .addEqualityGroup(
                ImmutableMap.of(1, 1, 2, 2, 3, 4),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

    都可以作为 **FastAPI** 的依赖项。
    
    实际上,FastAPI内部就使用了这两个装饰器。
    
    ///
    
    ## 使用 `yield` 的数据库依赖项
    
    例如,你可以使用这种方式创建一个数据库会话,并在完成后关闭它。
    
    在发送响应之前,只会执行 `yield` 语句及之前的代码:
    
    ```Python hl_lines="2-4"
    {!../../docs_src/dependencies/tutorial007.py!}
    ```
    
    生成的值会注入到 *路由函数* 和其他依赖项中:
    
    ```Python hl_lines="4"
    {!../../docs_src/dependencies/tutorial007.py!}
    ```
    
    `yield` 语句后面的代码会在创建响应后,发送响应前执行:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top