Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for GetOpts (0.21 sec)

  1. hack/apidiff.sh

    EOF
      exit 1
    }
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    base=
    target=
    while getopts "r:t:" o; do
        case "${o}" in
            r)
                base="${OPTARG}"
                if [ ! "$base" ]; then
                    echo "ERROR: -${o} needs a non-empty parameter" >&2
                    echo >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. hack/verify-golangci-lint.sh

    kube::util::require-jq
    
    invocation=(./hack/verify-golangci-lint.sh "$@")
    golangci=("${GOBIN}/golangci-lint" run)
    golangci_config="${KUBE_ROOT}/hack/golangci.yaml"
    base=
    strict=
    hints=
    githubactions=
    while getopts "ar:sng:c:" o; do
      case "${o}" in
        a)
          base="$(git merge-base origin/master HEAD)"
          ;;
        r)
          base="${OPTARG}"
          if [ ! "$base" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. hack/make-rules/test.sh

    usage: $0 [OPTIONS] [TARGETS]
    
    OPTIONS:
      -p <number>   : number of parallel workers, must be >= 1
    EOF
    }
    
    isnum() {
      [[ "$1" =~ ^[0-9]+$ ]]
    }
    
    PARALLEL="${PARALLEL:-1}"
    while getopts "hp:i:" opt ; do
      case ${opt} in
        h)
          kube::test::usage
          exit 0
          ;;
        p)
          PARALLEL="${OPTARG}"
          if ! isnum "${PARALLEL}" || [[ "${PARALLEL}" -le 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. cmd/bucket-object-lock.go

    		}
    
    		// If this not a WORM enabled bucket, we should return right here.
    		return mode, retainDate, legalHold, ErrNone
    	}
    
    	opts, err := getOpts(ctx, rq, bucket, object)
    	if err != nil {
    		return mode, retainDate, legalHold, toAPIErrorCode(ctx, err)
    	}
    
    	replica := rq.Header.Get(xhttp.AmzBucketReplicationStatus) == replication.Replica.String()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    |cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|getopts|git|grep|groupadd|groupdel|groupmod|groups|gzip|hash|head|help|hg|history|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|jobs|join|kill|killall|less|link|ln|locate|logname|logout|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|make|m...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

    master_upgrade=true
    node_upgrade=true
    node_prereqs=false
    local_binaries=false
    env_os_distro=false
    node_upgrade_parallelism=1
    
    while getopts ":MNPlcho" opt; do
      case "${opt}" in
        M)
          node_upgrade=false
          ;;
        N)
          master_upgrade=false
          ;;
        P)
          node_prereqs=true
          ;;
        l)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      if [[ -z "${apiserver_path}" ]]; then
        return
      fi
      echo -n "$(dirname "${apiserver_path}")"
    }
    
    ### Allow user to supply the source directory.
    GO_OUT=${GO_OUT:-}
    while getopts "ho:O" OPTION
    do
        case ${OPTION} in
            o)
                echo "skipping build"
                GO_OUT="${OPTARG}"
                echo "using source ${GO_OUT}"
                ;;
            O)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top