Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 648 for Berner (0.1 sec)

  1. internal/disk/directio_darwin.go

    1. import (
    2. "os"
    3.  
    4. "github.com/ncw/directio"
    5. "golang.org/x/sys/unix"
    6. )
    7.  
    8. // ODirectPlatform indicates if the platform supports O_DIRECT
    9. const ODirectPlatform = true
    10.  
    11. // OpenFileDirectIO - bypass kernel cache.
    12. func OpenFileDirectIO(filePath string, flag int, perm os.FileMode) (*os.File, error) {
    13. return directio.OpenFile(filePath, flag, perm)
    14. }
    15.  
    16. // DisableDirectIO - disables directio mode.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Jun 17 14:31:36 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. .github/PULL_REQUEST_TEMPLATE

    1. + If referring to a repo other than `golang/go` you can use the
    2. `owner/repo#issue_number` syntax: `Fixes golang/tools#1234`
    3. + We do not use Signed-off-by lines in Go. Please don't add them.
    4. Our Gerrit server & GitHub bots enforce CLA compliance instead.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Feb 21 02:07:46 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. docs/vi/docs/tutorial/first-steps.md

    1. ```
    2.  
    3. Sao chép sang một tệp tin `main.py`.
    4.  
    5. Chạy live server:
    6.  
    7. <div class="termy">
    8.  
    9. ```console
    10. $ uvicorn main:app --reload
    11.  
    12. <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    13. <span style="color: green;">INFO</span>: Started reloader process [28720]
    14. <span style="color: green;">INFO</span>: Started server process [28722]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. helm-releases/minio-3.6.5.tgz

    resources: requests: memory: 128Mi nodeSelector: {} tolerations: [] affinity: {} ## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s) ## when Chart is deployed environment: ## Please refer for comprehensive list https://docs.min.io/minio/baremetal/reference/minio-server/minio-server.html ## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io" ## MINIO_BROWSER: "off" ## The name of a secret in the same kubernetes...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Apr 13 22:45:54 UTC 2022
    - 18K bytes
    - Viewed (0)
  5. helm-releases/minio-4.0.1.tgz

    resources: requests: memory: 128Mi nodeSelector: {} tolerations: [] affinity: {} ## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s) ## when Chart is deployed environment: ## Please refer for comprehensive list https://docs.min.io/minio/baremetal/reference/minio-server/minio-server.html ## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io" ## MINIO_BROWSER: "off" ## The name of a secret in the same kubernetes...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 02 06:10:34 UTC 2022
    - 18K bytes
    - Viewed (0)
  6. helm-releases/minio-4.0.9.tgz

    [] affinity: {} # Command to run after the main command on exit exitCommand: "" ## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s) ## when Chart is deployed environment: ## Please refer for comprehensive list https://docs.min.io/minio/baremetal/reference/minio-server/minio-server.html ## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io" ## MINIO_BROWSER: "off" ## The name of a secret in the same kubernetes...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 03 06:10:44 UTC 2022
    - 18.6K bytes
    - Viewed (0)
  7. helm-releases/minio-4.0.4.tgz

    resources: requests: memory: 128Mi nodeSelector: {} tolerations: [] affinity: {} ## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s) ## when Chart is deployed environment: ## Please refer for comprehensive list https://docs.min.io/minio/baremetal/reference/minio-server/minio-server.html ## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io" ## MINIO_BROWSER: "off" ## The name of a secret in the same kubernetes...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jul 14 04:44:23 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  8. manifests/charts/base/files/crd-all.gen.yaml

    1. Valid Options: CLIENT_AND_SERVER, CLIENT, SERVER
    2. enum:
    3. - CLIENT_AND_SERVER
    4. - CLIENT
    5. - SERVER
    6. type: string
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Nov 01 16:23:52 UTC 2024
    - 805K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/UppercaseRequestInterceptor.kt

    1. import java.io.IOException
    2. import okhttp3.Interceptor.Chain
    3. import okio.Buffer
    4. import okio.BufferedSink
    5. import okio.ForwardingSink
    6. import okio.Sink
    7. import okio.buffer
    8.  
    9. /** Rewrites the request body sent to the server to be all uppercase. */
    10. class UppercaseRequestInterceptor : Interceptor {
    11. @Throws(IOException::class)
    12. override fun intercept(chain: Chain): Response {
    13. return chain.proceed(uppercaseRequest(chain.request()))
    14. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. internal/disk/directio_unix.go

    1. import (
    2. "os"
    3. "syscall"
    4.  
    5. "github.com/ncw/directio"
    6. "golang.org/x/sys/unix"
    7. )
    8.  
    9. // ODirectPlatform indicates if the platform supports O_DIRECT
    10. const ODirectPlatform = true
    11.  
    12. // OpenFileDirectIO - bypass kernel cache.
    13. func OpenFileDirectIO(filePath string, flag int, perm os.FileMode) (*os.File, error) {
    14. return directio.OpenFile(filePath, flag, perm)
    15. }
    16.  
    17. // DisableDirectIO - disables directio mode.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Jun 17 14:31:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top