Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 812 for 100M (0.03 sec)

  1. helm-releases/minio-3.5.3.tgz

    tolerations: [] affinity: {} ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ##...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Feb 13 23:43:44 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  2. helm-releases/minio-3.3.2.tgz

    tolerations: [] affinity: {} ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ##...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 11 17:26:01 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  3. helm-releases/minio-3.3.4.tgz

    tolerations: [] affinity: {} ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ##...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 11 17:59:34 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

    1. int range = 10_000; // range should be small enough that equal elements occur semi-frequently
    2. for (int iter = 0; iter < reduceIterationsIfGwt(1000); iter++) {
    3. for (int i = 0; i < 100; i++) {
    4. Integer element = random.nextInt(range);
    5. elements.add(element);
    6. queue.add(element);
    7. }
    8. Iterator<Integer> queueIterator = queue.iterator();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  5. .github/workflows/stale-issues.yml

    1. exempt-pr-labels: "override-stale"
    2. #Limit the No. of API calls in one run default value is 30.
    3. operations-per-run: 1000
    4. days-before-issue-stale: 7
    5. days-before-issue-close: 7
    6. stale-issue-label: "stale"
    7. # reason for closed the issue default value is not_planned
    8. close-issue-reason: completed
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jun 26 15:41:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. dockerscripts/docker-entrypoint.sh

    1. chroot --userspec=${MINIO_UID}:${MINIO_GID} / "$@"
    2. else
    3. echo "${MINIO_USERNAME}:x:1000:1000:${MINIO_USERNAME}:/:/sbin/nologin" >>/etc/passwd
    4. echo "${MINIO_GROUPNAME}:x:1000" >>/etc/group
    5. chroot --userspec=${MINIO_USERNAME}:${MINIO_GROUPNAME} / "$@"
    6. fi
    7. else
    8. exec "$@"
    9. fi
    10. }
    11.  
    12. ## DEPRECATED and unsupported - switch to user if applicable.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 bytes
    - Viewed (0)
  7. internal/store/batch_test.go

    1. defer func() {
    2. if err := tearDownQueueStore(); err != nil {
    3. t.Fatalf("Failed to tear down store; %v", err)
    4. }
    5. }()
    6. store, err := setUpQueueStore(queueDir, 100)
    7. if err != nil {
    8. t.Fatalf("Failed to create a queue store; %v", err)
    9. }
    10.  
    11. var limit uint32 = 100
    12.  
    13. batch := NewBatch[TestItem](BatchConfig[TestItem]{
    14. Limit: limit,
    15. Store: store,
    16. CommitTimeout: 5 * time.Minute,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/filter_test.go

    1. func TestObjectSizeFilters(t *testing.T) {
    2. f1 := Filter{
    3. set: true,
    4. Prefix: Prefix{
    5. string: "doc/",
    6. set: true,
    7. Unused: struct{}{},
    8. },
    9. ObjectSizeGreaterThan: 100 * humanize.MiByte,
    10. ObjectSizeLessThan: 100 * humanize.GiByte,
    11. }
    12. b, err := xml.Marshal(f1)
    13. if err != nil {
    14. t.Fatalf("Failed to marshal %v", f1)
    15. }
    16. var f2 Filter
    17. err = xml.Unmarshal(b, &f2)
    18. if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. docs_src/dependency_testing/tutorial001_py310.py

    1. from fastapi import Depends, FastAPI
    2. from fastapi.testclient import TestClient
    3.  
    4. app = FastAPI()
    5.  
    6.  
    7. async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100):
    8. return {"q": q, "skip": skip, "limit": limit}
    9.  
    10.  
    11. @app.get("/items/")
    12. async def read_items(commons: dict = Depends(common_parameters)):
    13. return {"message": "Hello Items!", "params": commons}
    14.  
    15.  
    16. @app.get("/users/")
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. docs/ko/docs/deployment/versions.md

    1. 서로다른 버전의 **FastAPI**가 구체적이고 새로운 버전의 Starlette 사용할 것입니다.
    2.  
    3. 그러므로 **FastAPI**가 알맞은 Starlette 버전을 사용하도록 하십시오.
    4.  
    5. ## Pydantic에 대해
    6.  
    7. Pydantic **FastAPI** 위한 검사를 포함하고 있습니다. 따라서, 새로운 버전의 Pydantic(`1.0.0`이상)은 항상 FastAPI 호환됩니다.
    8.  
    9. 작업을 하고 있는 `1.0.0` 이상의 모든 버전과 `2.0.0` 이하의 Pydantic 버전을 표시할 있습니다.
    10.  
    11. 예를 들어 다음과 같습니다:
    12.  
    13. ```txt
    14. pydantic>=1.2.0,<2.0.0
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top