Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 381 - 390 of 463 for 8100 (0.05 seconds)

  1. api/go1.1.txt

    pkg syscall (darwin-386), const B14400 = 14400
    pkg syscall (darwin-386), const B14400 ideal-int
    pkg syscall (darwin-386), const B150 = 150
    pkg syscall (darwin-386), const B150 ideal-int
    pkg syscall (darwin-386), const B1800 = 1800
    pkg syscall (darwin-386), const B1800 ideal-int
    pkg syscall (darwin-386), const B19200 = 19200
    pkg syscall (darwin-386), const B19200 ideal-int
    pkg syscall (darwin-386), const B200 = 200
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            }
    
            @Override
            public String getAppExtensionNames() {
                return "";
            }
    
            @Override
            public String getIndexReindexSize() {
                return "100";
            }
    
            @Override
            public String getIndexNumberOfShards() {
                return "1";
            }
    
            @Override
            public String getIndexAutoExpandReplicas() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/math/StatsTesting.java

        return DoubleStream.iterate(MEGA_STREAM_COUNT - 1.0, x -> x - 2.0)
            .limit(MEGA_STREAM_COUNT / 2)
            .parallel();
      }
    
      static final long MEGA_STREAM_COUNT = isAndroid() ? 100 : 1_000_000;
      static final double MEGA_STREAM_MIN = 0.0;
      static final double MEGA_STREAM_MAX = MEGA_STREAM_COUNT - 1;
      static final double MEGA_STREAM_MEAN = MEGA_STREAM_MAX / 2;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 24K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/ImmutableCollection.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      /**
       * Abstract base class for builders of {@link ImmutableCollection} types.
       *
       * @since 10.0
       */
      @DoNotMock
      public abstract static class Builder<E> {
        static final int DEFAULT_INITIAL_CAPACITY = 4;
    
        static int expandedCapacity(int oldCapacity, int minCapacity) {
          if (minCapacity < 0) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  5. docs/ru/docs/tutorial/sql-databases.md

    Сначала убедитесь, что вы создали [виртуальное окружение](../virtual-environments.md), активировали его и затем установили `sqlmodel`:
    
    <div class="termy">
    
    ```console
    $ pip install sqlmodel
    ---> 100%
    ```
    
    </div>
    
    ## Создание приложения с единственной моделью { #create-the-app-with-a-single-model }
    
    Сначала мы создадим самую простую первую версию приложения с одной моделью **SQLModel**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  6. internal/lru/lru.go

    const noEvictionTTL = time.Hour * 24 * 365 * 10
    
    // because of uint8 usage for nextCleanupBucket, should not exceed 256.
    // casting it as uint8 explicitly requires type conversions in multiple places
    const numBuckets = 100
    
    // NewLRU returns a new thread-safe cache with expirable entries.
    //
    // Size parameter set to 0 makes cache of unlimited size, e.g. turns LRU mechanism off.
    //
    // Providing 0 TTL turns expiring off.
    //
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:35:55 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  7. internal/bucket/object/lock/lock.go

    	Years   *uint64  `xml:"Years"`
    }
    
    // Maximum support retention days and years supported by AWS S3.
    const (
    	// This tested by using `mc lock` command
    	maximumRetentionDays  = 36500
    	maximumRetentionYears = 100
    )
    
    // UnmarshalXML - decodes XML data.
    func (dr *DefaultRetention) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Make subtype to avoid recursive UnmarshalXML().
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 17.9K bytes
    - Click Count (0)
  8. internal/logger/target/http/http.go

    			}
    		}
    	}
    }
    
    // New initializes a new logger target which
    // sends log over http to the specified endpoint
    func New(config Config) (*Target, error) {
    	maxWorkers := maxWorkers
    	if config.BatchSize > 100 {
    		maxWorkers = maxWorkersWithBatchEvents
    	} else if config.BatchSize <= 0 {
    		config.BatchSize = 1
    	}
    
    	h := &Target{
    		logCh:       make(chan any, config.QueueSize),
    		config:      config,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/advanced/behind-a-proxy.md

    例如,假設你定義了一個「路徑操作(path operation)」`/items/`:
    
    {* ../../docs_src/behind_a_proxy/tutorial001_01_py310.py hl[6] *}
    
    如果用戶端嘗試前往 `/items`,預設會被重新導向到 `/items/`。
    
    但在設定「CLI 選項」`--forwarded-allow-ips` 之前,它可能會被重新導向到 `http://localhost:8000/items/`。
    
    不過,也許你的應用實際部署在 `https://mysuperapp.com`,那重新導向就應該是 `https://mysuperapp.com/items/`。
    
    設定 `--proxy-headers` 之後,FastAPI 就能重新導向到正確的位置。😎
    
    ```
    https://mysuperapp.com/items/
    ```
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  10. docs/ko/docs/alternatives.md

    다음이 포함됩니다:
    
    * 정말 인상적인 성능.
    * WebSocket 지원.
    * 프로세스 내 백그라운드 작업.
    * 시작 및 종료 이벤트.
    * HTTPX 기반의 테스트 클라이언트.
    * CORS, GZip, Static Files, Streaming responses.
    * 세션 및 쿠키 지원.
    * 100% 테스트 커버리지.
    * 100% 타입 주석이 달린 코드베이스.
    * 소수의 필수 의존성.
    
    Starlette는 현재 테스트된 Python framework 중 가장 빠릅니다. 단, framework가 아니라 서버인 Uvicorn이 더 빠릅니다.
    
    Starlette는 웹 microframework의 기본 기능을 모두 제공합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 26.3K bytes
    - Click Count (0)
Back to Top