Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for unse (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // volumes is an allowlist of volume plugins. Empty indicates that
      // no volumes may be used. To allow all volumes you may use '*'.
      // +optional
      repeated string volumes = 5;
    
      // hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
      // +optional
      optional bool hostNetwork = 6;
    
      // hostPorts determines which host port ranges are allowed to be exposed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	// First, check whether we can use -c at all for this compilation.
    	canDashC := concurrentGCBackendCompilationEnabledByDefault
    
    	switch e := os.Getenv("GO19CONCURRENTCOMPILATION"); e {
    	case "0":
    		canDashC = false
    	case "1":
    		canDashC = true
    	case "":
    		// Not set. Use default.
    	default:
    		log.Fatalf("GO19CONCURRENTCOMPILATION must be 0, 1, or unset, got %q", e)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload.go

    	groupCmd := &cobra.Command{
    		Use:     "group",
    		Short:   "Commands dealing with WorkloadGroup resources",
    		Example: "  istioctl x workload group create --name foo --namespace bar --labels app=foobar",
    	}
    	groupCmd.AddCommand(createCommand(ctx))
    	return groupCmd
    }
    
    func entryCommand(ctx cli.Context) *cobra.Command {
    	entryCmd := &cobra.Command{
    		Use:     "entry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    		// effects with the each prog effects.
    		for j := len(b.Values) - 1; j >= 0; j-- {
    			pos, e := lv.valueEffects(b.Values[j])
    			if e&varkill != 0 {
    				be.varkill.Set(pos)
    				be.uevar.Unset(pos)
    			}
    			if e&uevar != 0 {
    				be.uevar.Set(pos)
    			}
    		}
    	}
    }
    
    // Solve the liveness dataflow equations.
    func (lv *liveness) solve() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top