Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1611 - 1620 of 3,068 for bist (0.06 seconds)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                    if (dc_list_expiration < now) {
                        final NbtAddress[] list = NbtAddress.getAllByName(DOMAIN, 0x1C, null, null);
                        dc_list_expiration = now + CACHE_POLICY * 1000L;
                        if (list != null && list.length > 0) {
                            dc_list = list;
                        } else { /* keep using the old list */
                            dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 20.7K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Dispatcher.kt

      }
    
      /** Returns a snapshot of the calls currently awaiting execution. */
      @Synchronized
      fun queuedCalls(): List<Call> = readyAsyncCalls.map { it.call }.unmodifiable()
    
      /** Returns a snapshot of the calls currently being executed. */
      @Synchronized
      fun runningCalls(): List<Call> = (runningSyncCalls + runningAsyncCalls.map { it.call }).unmodifiable()
    
      @Synchronized
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 14:16:22 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/extra-models.md

    ## List of models { #list-of-models }
    
    The same way, you can declare responses of lists of objects.
    
    For that, use the standard Python `list`:
    
    {* ../../docs_src/extra_models/tutorial004_py310.py hl[18] *}
    
    ## Response with arbitrary `dict` { #response-with-arbitrary-dict }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  4. docs_src/query_params_str_validations/tutorial012_an_py310.py

    from typing import Annotated
    
    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: Annotated[list[str], Query()] = ["foo", "bar"]):
        query_items = {"q": q}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 227 bytes
    - Click Count (0)
  5. buildscripts/race.sh

    #!/usr/bin/env bash
    
    set -e
    
    export GORACE="history_size=7"
    export MINIO_API_REQUESTS_MAX=10000
    
    for d in $(go list ./...); do
    	CGO_ENABLED=1 go test -v -race --timeout 100m "$d"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Jul 02 21:28:55 GMT 2024
    - 184 bytes
    - Click Count (0)
  6. docs/de/docs/deployment/versions.md

    ## Über Versionen { #about-versions }
    
    Gemäß den Konventionen zur semantischen Versionierung könnte jede Version unter `1.0.0` potenziell nicht abwärtskompatible Änderungen hinzufügen.
    
    FastAPI folgt auch der Konvention, dass jede „PATCH“-Versionsänderung für Bugfixes und abwärtskompatible Änderungen gedacht ist.
    
    /// tip | Tipp
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/header-params.md

    /// warning | 警告
    
    在將 `convert_underscores` 設為 `False` 之前,請注意有些 HTTP 代理與伺服器不允許使用帶有底線的標頭。
    
    ///
    
    ## 重複的標頭 { #duplicate-headers }
    
    有時可能會收到重複的標頭,也就是同一個標頭會有多個值。
    
    可以在型別宣告中使用 list 來定義這種情況。
    
    你會以 Python 的 `list` 形式收到該重複標頭的所有值。
    
    例如,要宣告可以出現多次的 `X-Token` 標頭,可以這樣寫:
    
    {* ../../docs_src/header_params/tutorial003_an_py310.py hl[9] *}
    
    如果你在與該*路徑操作 (path operation)* 溝通時送出兩個 HTTP 標頭如下:
    
    ```
    X-Token: foo
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/app/pager/AccessTokenPagerTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.pager;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class AccessTokenPagerTest extends UnitFessTestCase {
    
        @Test
        public void test_AccessTokenPager() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/pager/CharMappingPagerTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.pager;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class CharMappingPagerTest extends UnitFessTestCase {
    
        @Test
        public void test_CharMappingPagerTest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/AllEqualOrdering.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import java.io.Serializable;
    import java.util.List;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An ordering that treats all references as equals, even nulls.
     *
     * @author Emily Soldal
     */
    @GwtCompatible
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 1.9K bytes
    - Click Count (0)
Back to Top