Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for COMPREPLY (0.14 sec)

  1. cmd/kubeadm/app/cmd/completion.go

    }
    
    __kubeadm_ltrim_colon_completions()
    {
    	if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
    		# Remove colon-word prefix from COMPREPLY items
    		local colon_word=${1%${1##*:}}
    		local i=${#COMPREPLY[*]}
    		while [[ $((--i)) -ge 0 ]]; do
    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    
    __kubeadm_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. pkg/collateral/control.go

    }
    __istio_ltrim_colon_completions()
    {
    	if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
    		# Remove colon-word prefix from COMPREPLY items
    		local colon_word=${1%${1##*:}}
    		local i=${#COMPREPLY[*]}
    		while [[ $((--i)) -ge 0 ]]; do
    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    __istio_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top