Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,575 for Bash (0.04 sec)

  1. 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"
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

            } else {
                throw new RuntimeException("This implementation does not know how to wait for process to finish on os: " + OperatingSystem.current())
            }
        }
    
        private String bash(String commands) {
            return execute(["bash"] as Object[], new ByteArrayInputStream(commands.getBytes()))
        }
    
        private String execute(Object[] commandLine, InputStream input) {
            def output = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. scripts/test-cov-html.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    bash scripts/test.sh ${@}
    coverage combine
    coverage report --show-missing
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 03 20:00:29 UTC 2022
    - 124 bytes
    - Viewed (0)
  4. .github/workflows/arm-ci-extended-cpp.yml

        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
    
    Use `clang-tidy` to check your C/C++ changes. To install `clang-tidy` on ubuntu:16.04, do:
    
    ```bash
    apt-get install -y clang-tidy
    ```
    
    You can check a C/C++ file by doing:
    
    
    ```bash
    clang-format <my_cc_file> --style=google > /tmp/my_cc_file.cc
    diff <my_cc_file> /tmp/my_cc_file.cc
    ```
    
    #### Python coding style
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. samples/multicluster/README.md

    we need to expose the istiod service through the east-west gateway:
    
    ```bash
    kubectl apply -f samples/multicluster/expose-istiod.yaml -n istio-system
    ```
    
    ## Multi-network Configuration
    
    In order to enable cross-cluster load balancing between clusters that are in different
    networks, we need to expose the services through the east-west gateway in each cluster:
    
     ```bash
     kubectl apply -f samples/multicluster/expose-services.yaml -n istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. build/shell.sh

    # limitations under the License.
    
    # Run a bash script in the Docker build image.
    #
    # This container will have a snapshot of the current sources.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:24:27 UTC 2019
    - 939 bytes
    - Viewed (0)
  8. samples/bookinfo/README.md

    # this to any other legitimate docker tag.
    export TAG=<version number>
    ```
    
    ## Compile code
    
    ```bash
    cd samples/bookinfo
    BOOKINFO_TAG=$TAG BOOKINFO_HUB=$HUB src/build-services.sh
    ```
    
    For example:
    
    ```bash
    $ BOOKINFO_TAG=test1.0 BOOKINFO_HUB=docker.io/user1  src/build-services.sh
    +++ dirname ./build-services.sh
    ++ cd .
    ++ pwd
    + SCRIPTDIR=/work/samples/bookinfo/src
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. .github/workflows/arm-ci.yml

          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
          - name: Build binary and run python tests
            shell: bash
            run: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/build-boring.sh

    # because the FIPS module itself is already built with -fPIC.
    echo '#!/bin/bash
    exec clang-'$ClangV' -DGOBORING -fPIC "$@"
    ' >/usr/local/bin/clang
    echo '#!/bin/bash
    exec clang++-'$ClangV' -DGOBORING -fPIC "$@"
    ' >/usr/local/bin/clang++
    chmod +x /usr/local/bin/clang /usr/local/bin/clang++
    
    # The BoringSSL tests use Go, and cgo would look for gcc.
    export CGO_ENABLED=0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top