Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for phiopt (0.09 sec)

  1. test/phiopt.go

    // errorcheck -0 -d=ssa/phiopt/debug=3
    
    //go:build amd64 || s390x || arm64
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    //go:noinline
    func f0(a bool) bool {
    	x := false
    	if a {
    		x = true
    	} else {
    		x = false
    	}
    	return x // ERROR "converted OpPhi to Copy$"
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/compile.go

    	{name: "opt deadcode", fn: deadcode, required: true}, // remove any blocks orphaned during opt
    	{name: "generic cse", fn: cse},
    	{name: "phiopt", fn: phiopt},
    	{name: "gcse deadcode", fn: deadcode, required: true}, // clean out after cse and phiopt
    	{name: "nilcheckelim", fn: nilcheckelim},
    	{name: "prove", fn: prove},
    	{name: "early fuse", fn: fuseEarly},
    	{name: "expand calls", fn: expandCalls, required: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    			continue
    		}
    
    		// IPv4:port, [IPv6]:port
    		phost, pport, err := net.SplitHostPort(p)
    		if err == nil {
    			if len(phost) == 0 {
    				// There is no host part, likely the entry is malformed; ignore.
    				continue
    			}
    			if phost[0] == '[' && phost[len(phost)-1] == ']' {
    				phost = phost[1 : len(phost)-1]
    			}
    		} else {
    			phost = p
    		}
    		// IPv4, IPv6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. hack/update-generated-docs.sh

    generate_docs "${KUBE_TEMP}"
    
    # remove all of the existing docs in KUBE_ROOT
    remove_generated_docs
    
    # Copy fresh docs into the repo.
    # the shopt is so that we get docs/.generated_docs from the glob.
    shopt -s dotglob
    cp -af "${KUBE_TEMP}"/* "${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. bin/check_samples.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    shopt -s globstar
    set -e
    
    SCRIPTPATH=$( cd "$(dirname "$0")" && pwd -P )
    ROOTDIR=$SCRIPTPATH/..
    cd "$ROOTDIR" || exit
    
    # rely on go build cache
    ISTIOCTL=bin/istioctl
    go build -o $ISTIOCTL ./istioctl/cmd/istioctl
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1010 bytes
    - Viewed (0)
  6. buildscripts/checkdeps.sh

    #!/usr/bin/env bash
    #
    
    _init() {
    
    	shopt -s extglob
    
    	## Minimum required versions for build dependencies
    	GIT_VERSION="1.0"
    	GO_VERSION="1.16"
    	OSX_VERSION="10.8"
    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    	if !componentName.IsGateway() {
    		return iop, nil
    	}
    	iopt := make(map[string]any)
    	if err := yaml.Unmarshal(iop, &iopt); err != nil {
    		return nil, err
    	}
    	gwSpec := componentSpec.(*v1alpha1.GatewaySpec)
    	k8s := gwSpec.K8S
    	switch componentName {
    	case name.IngressComponentName:
    		setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-ingressgateway.name"), gwSpec.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top