Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 323 for effort (0.09 sec)

  1. prow/integ-suite-kind.sh

    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    export KIND_REGISTRY="localhost:${KIND_REGISTRY_PORT}"
    
    export HUB=${HUB:-"istio-testing"}
    export TAG="${TAG:-"istio-testing"}"
    export VARIANT
    
    # If we're not intending to pull from an actual remote registry, use the local kind registry
    if [[ -z "${SKIP_BUILD:-}" ]]; then
      HUB="${KIND_REGISTRY}"
      export HUB
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. cluster/gce/config-common.sh

    export WINDOWS_NODE_DIR="${WINDOWS_K8S_DIR}\node\bin"
    # Directory where Kubernetes log files will be stored on Windows nodes.
    export WINDOWS_LOGS_DIR="${WINDOWS_K8S_DIR}\logs"
    # Directory where CNI binaries will be stored on Windows nodes.
    export WINDOWS_CNI_DIR="${WINDOWS_K8S_DIR}\cni"
    # Directory where CNI config files will be stored on Windows nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. docs/bucket/replication/delete-replication.sh

    	set +e
    	pkill minio
    	pkill mc
    	rm -rf /tmp/xl/
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    unset MINIO_KMS_KES_CERT_FILE
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. buildscripts/verify-build.sh

    fi
    
    WORK_DIR="$PWD/.verify-$RANDOM"
    
    export MINT_MODE=core
    export MINT_DATA_DIR="$WORK_DIR/data"
    export SERVER_ENDPOINT="127.0.0.1:9000"
    export MC_HOST_verify="http://minio:minio123@${SERVER_ENDPOINT}/"
    export MC_HOST_verify_ipv6="http://minio:minio123@[::1]:9000/"
    export ACCESS_KEY="minio"
    export SECRET_KEY="minio123"
    export ENABLE_HTTPS=0
    export GO111MODULE=on
    export GOGC=25
    export ENABLE_ADMIN=1
    export MINIO_CI_CD=1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/errors/wrap_test.go

    		nil,
    	}, {
    		multiErr{errors.New("a"), errorT{"T"}},
    		&errT,
    		true,
    		errorT{"T"},
    	}, {
    		multiErr{errorT{"T"}, errors.New("a")},
    		&errT,
    		true,
    		errorT{"T"},
    	}, {
    		multiErr{errorT{"a"}, errorT{"b"}},
    		&errT,
    		true,
    		errorT{"a"},
    	}, {
    		multiErr{multiErr{errors.New("a"), errorT{"a"}}, errorT{"b"}},
    		&errT,
    		true,
    		errorT{"a"},
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. ci/official/bisect.sh

    #
    #   export TFCI=...
    #   export TF_BISECT_SCRIPT=ci/official/any.sh
    #   export TF_BISECT_GOOD=a_good_commit_sha
    #   export TF_BISECT_BAD=a_failing_commit_sha
    #   export TF_ANY_TARGETS="quoted list of targets, like on the command line"
    #   export TF_ANY_MODE=test
    set -euxo pipefail
    cd "$(dirname "$0")/../../"  # tensorflow/
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. ci/official/any.sh

    #    To use:
    #       export TFCI=ci/official/envs/env_goes_here
    #       export TF_ANY_TARGETS="quoted list of targets, like on the command line"
    #       export TF_ANY_MODE="test" or "build" or "run" (default: "test")
    #       ./any.sh
    #
    # 2. RUN ANY OTHER SCRIPT AND ENV WITH NO SIDE EFFECTS (NO UPLOADS)
    #    To use:
    #       export TFCI=ci/official/envs/env_goes_here
    #       export TF_ANY_SCRIPT=ci/official/wheel.sh
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. hack/jenkins/test-dockerized.sh

    # Disable coverage report
    export KUBE_COVER="n"
    # Set artifacts directory
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    # Save the verbose stdout as well.
    export KUBE_KEEP_VERBOSE_TEST_OUTPUT=y
    export KUBE_INTEGRATION_TEST_MAX_CONCURRENCY=4
    export LOG_LEVEL=4
    
    cd "${GOPATH}/src/k8s.io/kubernetes"
    
    ./hack/install-etcd.sh
    
    make test-cmd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. ci/official/utilities/get_versions.sh

    # $2 in <Tensor'flow'> is <flow>. This is useful for reading string literals like below.
    export TF_VER_SUFFIX=$(awk -F\" '/#define TF_VERSION_SUFFIX/ {print $2}' tensorflow/core/public/version.h)
    export TF_VER_PYTHON=$(awk -F\' '/_VERSION =/ {print $2}' tensorflow/tools/pip_package/setup.py)
    
    # Derived helper variables.
    export TF_VER_SHORT="${TF_VER_MAJOR}.${TF_VER_MINOR}"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. docs/distributed/decom-compressed-sse-s3.sh

    		chmod +x mc
    fi
    
    export CI=true
    export MINIO_COMPRESSION_ENABLE="on"
    export MINIO_COMPRESSION_EXTENSIONS=".go"
    export MINIO_COMPRESSION_MIME_TYPES="application/*"
    export MINIO_COMPRESSION_ALLOW_ENCRYPTION="on"
    export MINIO_KMS_AUTO_ENCRYPTION=on
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top