Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Nash (0.17 sec)

  1. docs/bucket/notifications/README.md

    will now enable bucket event notifications on a bucket named `images`. Whenever a JPEG image is created/overwritten, a new key is added or an existing key is updated in the Redis hash configured above. When an existing object is deleted, the corresponding key is deleted from the Redis hash. Thus, the rows in the Redis hash, reflect the `.jpg` objects in the `images` bucket.
    
    To configure this bucket notification, we need the ARN printed by MinIO in the previous step. Additional information...
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  2. ci/official/wheel_test/README.md

    1.  Navigate to the relevant directory:
        ```
        cd ci/official/wheel_test
        ```
    2.  Run a script for creating requirements file:
        ```
        bash update_requirements.sh <path_to_tensorflow_wheel> <python_version>
        e.g.:
        bash update_requirements.sh /tmp/tensorflow-2.14.0-cp311-cp311-linux_x86_64.whl 3_11
        ```
    
    #### Requirements Updater Script
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 31 18:17:57 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/idn/README.md

    This format is chosen to make it easy to validate that these tables are consistent with the RFC.
    
    ```
    cd okhttp/src/test/resources/okhttp3/internal/idn/
    ls rfc3454.*.txt | xargs -n 1 -I {} bash -c "echo {} ; cat {}" > okhttp_tables.txt
    curl https://www.rfc-editor.org/rfc/rfc3454.txt > rfc3454.txt
    diff rfc3454.txt okhttp_tables.txt | less
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 618 bytes
    - Viewed (0)
  4. operator/README.md

    ### CLI
    
    To build the operator CLI, simply:
    
    ```bash
    make build
    ```
    
    Ensure the created binary is in your PATH to run the examples below.
    
    ### Controller (in cluster)
    
    Building a custom controller requires a Dockerhub (or similar) account. To build using the container based build:
    
    ```bash
    HUB=docker.io/<your-account> TAG=latest make docker.operator
    ```
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  5. manifests/charts/README.md

    CRDs in place and not have Istio modify them. In this case, it is necessary to apply CRD files individually.
    
    ```bash
    kubectl apply -k github.com/istio/installer/base
    ```
    
    or
    
    ```bash
    kubectl apply -f base/files
    ```
    
    ### Install Istio-CNI
    
    This is an optional step - CNI must run in a dedicated namespace, it is a 'singleton' and extremely
    Plain Text
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  6. helm/minio/README.md

    - Use Kubernetes version v1.19 and later for best experience.
    
    ## Configure MinIO Helm repo
    
    ```bash
    helm repo add minio https://charts.min.io/
    ```
    
    ### Installing the Chart
    
    Install this chart using:
    
    ```bash
    helm install --namespace minio --set rootUser=rootuser,rootPassword=rootpass123 --generate-name minio/minio
    ```
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Jan 24 07:27:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. docs/compression/README.md

    Config `compress` settings take extensions and mime-types to be compressed.
    
    ```bash
    ~ mc admin config get myminio compression
    compression extensions=".txt,.log,.csv,.json,.tar,.xml,.bin" mime_types="text/*,application/json,application/xml"
    ```
    
    Default config includes most common highly compressible content extensions and mime-types.
    
    ```bash
    ~ mc admin config set myminio compression extensions=".pdf" mime_types="application/pdf"
    ```
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 11 11:55:34 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  8. ci/official/README.md

    called "MLCI" that makes testing more convenient: it can execute any full CI job
    against a pending change. Search for "MLCI" internally to find it.
    
    You may invoke a CI script of your choice by following these instructions:
    
    ```bash
    cd tensorflow-git-dir
    
    # Here is a single-line example of running a script on Linux to build the
    # GPU version of TensorFlow for Python 3.12, using the public TF bazel cache and
    # a local build cache:
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  9. docs/debugging/README.md

    ### Installing xl-meta
    
    To install, [Go](https://golang.org/dl/) must be installed. Once installed, execute this to install the binary:
    
    ```bash
    go install github.com/minio/minio/docs/debugging/xl-meta@latest
    ```
    
    ### Using xl-meta
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Feb 25 01:17:53 GMT 2022
    - 8.7K bytes
    - Viewed (0)
  10. ci/official/requirements_updater/README.md

    ```
    
    To specify the file via a Bazel command argument, use the following:
    
    ```
    --repo_env=REQUIREMENTS_FILE_NAME=my_requirements.in
    ```
    
    ### How to run the updater
    
    ```
    bash updater.sh
    ```
    
    ## How to add a new Python version
    
    Note: Updating the
    [rules-python](https://github.com/bazelbuild/rules_python/releases) version may
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top