Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for configured (0.23 sec)

  1. common/scripts/setup_env.sh

    if [[ -d "${HOME}/.docker" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly "
    fi
    
    # gcloud conditional host mount (needed for docker push with the gcloud auth configure-docker)
    if [[ -d "${HOME}/.config/gcloud" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.config/gcloud,destination=/config/.config/gcloud,readonly "
    fi
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  2. common/scripts/kind_provisioner.sh

      if [[ -z "${NOMETALBINSTALL}" ]]; then
        retry install_metallb ""
      fi
    
      # IPv6 clusters need some CoreDNS changes in order to work in CI:
      # Istio CI doesn't offer IPv6 connectivity, so CoreDNS should be configured
      # to work in an offline environment:
      # https://github.com/coredns/coredns/issues/2494#issuecomment-457215452
      # CoreDNS should handle those domains and answer with NXDOMAIN instead of SERVFAIL
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  3. configure

    #!/usr/bin/env bash
    
    set -e
    set -o pipefail
    
    if [ -z "$PYTHON_BIN_PATH" ]; then
      PYTHON_BIN_PATH=$(which python3 || which python || true)
    fi
    
    # Set all env variables
    CONFIGURE_DIR=$(dirname "$0")
    "$PYTHON_BIN_PATH" "${CONFIGURE_DIR}/configure.py" "$@"
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Apr 12 14:04:24 GMT 2020
    - 285 bytes
    - Viewed (1)
  4. docs/bucket/replication/setup_replication.sh

       ]
      }
     ]
    }
    EOF
    mc admin policy create dest replpolicy ./replpolicy.json
    cat ./replpolicy.json
    
    # assign this replication policy to repluser
    mc admin policy attach dest replpolicy --user=repluser
    
    # configure replication config to remote bucket at http://localhost:9000
    mc replicate add source/bucket --priority 1 --remote-bucket http://repluser:repluser123@localhost:9000/bucket \
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/main/assemblies/files/fess

        fi
    
        # Make sure we don't use any predefined locale, as we check some exception message strings and rely on english language
        # As those strings are created by the OS, they are dependent on the configured locale
        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
        if [ "x$daemonized" = "x" ]; then
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  6. docs/bucket/replication/delete-replication.sh

    ./mc ls --versions myminio2/testbucket/dir/file
    
    versionId="$(./mc ls --json --versions myminio1/testbucket/dir/ | tail -n1 | jq -r .versionId)"
    
    aws configure set aws_access_key_id minioadmin --profile minioadmin
    aws configure set aws_secret_access_key minioadmin --profile minioadmin
    aws configure set default.region us-east-1 --profile minioadmin
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    /rpm-patch.sh "glibc.spec"
    rm -f "glibc-2.17-317.el7.src.rpm" "glibc-2.17-c758a686.tar.gz" "glibc-2.17-c758a686-releng.tar.gz"
    patch -p1 < /gcc9-fixups.patch
    patch -p1 < /stringop_trunc.patch
    cd ../glibc-build
    ../glibc-src/configure --prefix=/usr --disable-werror --enable-obsolete-rpc --disable-profile
    make -j$(nproc)
    make install DESTDIR=${TARGET}
    cd ..
    
    # Symlinks in the binary distribution are set up for installation in /usr, we
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 6.1K bytes
    - Viewed (1)
  8. ci/official/containers/linux_arm64/build.sh

        --cache-from "$IMAGE" \
        -t "$IMAGE"  . && break
      done
      final=$?
      if [ $final -ne 0 ]; then
        exit $final
      fi
      set -e
    
      if [[ -n "$KOKORO_BUILD_ID" ]]; then
        gcloud auth configure-docker
        docker push "$IMAGE"
      fi
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Nov 03 13:38:49 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top