Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,194 for unse (0.04 sec)

  1. src/os/exec.go

    	// modePID means that Process operations such use the raw PID from the
    	// Pid field. handle is not used.
    	//
    	// This may be due to the host not supporting handles, or because
    	// Process was created as a literal, leaving handle unset.
    	//
    	// This must be the zero value so Process literals get modePID.
    	modePID processMode = iota
    
    	// modeHandle means that Process operations use handle, which is
    	// initialized with an OS process handle.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure.sh

    }
    
    # Removes and restores an EXIT trap.
    #
    # NOTE: this function is duplicated in configure-helper.sh, any changes here
    # should be duplicated there as well.
    function log-trap-pop {
      # Remove current trap.
      unset 'LOG_TRAP_STACK[-1]'
    
      # Restore previous trap.
      if [ ${#LOG_TRAP_STACK[@]} -ne 0 ]; then
        local t="${LOG_TRAP_STACK[-1]}"
        # shellcheck disable=2064
        trap "${t}" EXIT
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/initconfiguration.go

    		return errors.Errorf("couldn't use \"%s\" as \"apiserver-advertise-address\", must be ipv4 or ipv6 address", cfg.AdvertiseAddress)
    	}
    
    	// kubeadm allows users to specify address=Loopback as a selector for global unicast IP address that can be found on loopback interface.
    	// e.g. This is required for network setups where default routes are present, but network interfaces use only link-local addresses (e.g. as described in RFC5549).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    // Copyright 2014 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.
    
    // This wrapper uses syscall.Flock to prevent concurrent adb commands,
    // so for now it only builds on platforms that support that system call.
    // TODO(#33974): use a more portable library for file locking.
    
    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    		return 9067 + 2*h.Hash(t.Elem())
    
    	case *types.Signature:
    		var hash uint32 = 9091
    		if t.Variadic() {
    			hash *= 8863
    		}
    
    		// Use a separate hasher for types inside of the signature, where type
    		// parameter identity is modified to be (index, constraint). We must use a
    		// new memo for this hasher as type identity may be affected by this
    		// masking. For example, in func[T any](*T), the identity of *T depends on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/net/ip.go

    	for i, tn := range b {
    		s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
    	}
    	return string(s)
    }
    
    // ipEmptyString is like ip.String except that it returns
    // an empty string when ip is unset.
    func ipEmptyString(ip IP) string {
    	if len(ip) == 0 {
    		return ""
    	}
    	return ip.String()
    }
    
    // MarshalText implements the [encoding.TextMarshaler] interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. operator/cmd/mesh/test-util_test.go

    		out["ip"] = ip
    	}
    	if nodeName != "" {
    		out["nodeName"] = nodeName
    	}
    	return out
    }
    
    // portVal returns a map having service port type. A value of -1 for port or targetPort leaves those keys unset.
    func portVal(name string, port, targetPort int64) map[string]any {
    	out := make(map[string]any)
    	if name != "" {
    		out["name"] = name
    	}
    	if port != -1 {
    		out["port"] = port
    	}
    	if targetPort != -1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/check/checkers.go

    	return And(NoError(), Status(expected))
    }
    
    // Status checks that the response status code matches the expected value. If the expected value is zero,
    // checks that the response code is unset.
    func Status(expected int) echo.Checker {
    	return Each(VStatus(expected))
    }
    
    // NotStatus checks that the response status code does not match the expected value.
    func NotStatus(expected int) echo.Checker {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/ureader.go

    // newAliasTypeName returns a new TypeName, with a materialized *types.Alias if supported.
    func newAliasTypeName(pos token.Pos, pkg *types.Package, name string, rhs types.Type) *types.TypeName {
    	// When GODEBUG=gotypesalias=1 or unset, the Type() of the return value is a
    	// *types.Alias. Copied from x/tools/internal/aliases.NewAlias.
    	switch godebug.New("gotypesalias").Value() {
    	case "", "1":
    		tname := types.NewTypeName(pos, pkg, name, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/runtime/runtime1.go

    // and only change values not already seen. After doing this for both
    // the environment and the default settings, the caller must also call
    // cleargodebug(seen) to reset any now-unset values back to their defaults.
    func parsegodebug(godebug string, seen map[string]bool) {
    	for p := godebug; p != ""; {
    		var field string
    		if seen == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top