Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for phiopt (0.1 sec)

  1. ci/official/utilities/setup_macos.sh

      # that they are not substituted for their corresponding commands in shell
      # scripts. By setting "expand_aliases", we enable alias expansion in
      # non-interactive shells as well.
      shopt -s expand_aliases
    else
      echo '==TFCI==: Error: Cannot find path to grealpath or gstat'
      echo 'TF CI scripts require GNU core utilties to be installed. Please make'
      echo 'sure they are present on your system and try again.'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/completion.go

    	return kubeadm.GenBashCompletion(out)
    }
    
    func runCompletionZsh(out io.Writer, kubeadm *cobra.Command) error {
    	zshInitialization := `
    __kubeadm_bash_source() {
    	alias shopt=':'
    	alias _expand=_bash_expand
    	alias _complete=_bash_comp
    	emulate -L sh
    	setopt kshglob noshglob braceexpand
    
    	source "$@"
    }
    
    __kubeadm_type() {
    	# -t is not supported by zsh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    				dbopt = dboff
    				heopt = heoff
    			} else {
    				// older toolchain: we have to say nothing in order to
    				// get a no-ASLR binary.
    				dbopt = ""
    				heopt = ""
    			}
    		}
    		if dbopt != "" {
    			argv = append(argv, "-Wl,"+dbopt)
    		}
    		// enable high-entropy ASLR on 64-bit.
    		if ctxt.Arch.PtrSize >= 8 && heopt != "" {
    			argv = append(argv, "-Wl,"+heopt)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. pkg/collateral/control.go

    		}
    	}
    
    	if c.EmitZshCompletion {
    
    		// Constants used in zsh completion file
    		zshInitialization := `#compdef ` + root.Name() + `
    
    __istio_bash_source() {
    	alias shopt=':'
    	alias _expand=_bash_expand
    	alias _complete=_bash_comp
    	emulate -L sh
    	setopt kshglob noshglob braceexpand
    	source "$@"
    }
    __istio_type() {
    	# -t is not supported by zsh
    	if [ "$1" == "-t" ]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    kup|open|op|passwd|paste|pathchk|ping|pkill|popd|pr|printcap|printenv|printf|ps|pushd|pv|pwd|quota|quotacheck|quotactl|ram|rar|rcp|read|readarray|readonly|reboot|rename|renice|remsync|rev|rm|rmdir|rsync|screen|scp|sdiff|sed|seq|service|sftp|shift|shopt|shutdown|sleep|slocate|sort|source|split|ssh|stat|strace|su|sudo|sum|suspend|sync|tail|tar|tee|test|time|timeout|times|touch|top|traceroute|trap|tr|tsort|tty|type|ulimit|umask|umount|unalias|uname|unexpand|uniq|units|unrar|unshar|uptime|useradd|us...
    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. hack/update-codegen.sh

          build/run.sh hack/_update-generated-proto-bindings-dockerized.sh "${apis[@]}"
        fi
    }
    
    #
    # main
    #
    
    function list_codegens() {
        (
            shopt -s extdebug
            declare -F \
                | cut -f3 -d' ' \
                | grep "^codegen::" \
                | while read -r fn; do declare -F "$fn"; done \
                | sort -n -k2 \
                | cut -f1 -d' ' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top