Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 148 for Decisions (0.41 sec)

  1. docs/en/docs/deployment/concepts.md

    * Restarts
    * Replication (the number of processes running)
    * Memory
    * Previous steps before starting
    
    Understanding these ideas and how to apply them should give you the intuition necessary to take any decisions when configuring and tweaking your deployments. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. src/net/net.go

    The resolver decision can be overridden by setting the netdns value of the
    GODEBUG environment variable (see package runtime) to go or cgo, as in:
    
    	export GODEBUG=netdns=go    # force pure Go resolver
    	export GODEBUG=netdns=cgo   # force native resolver (cgo, win32)
    
    The decision can also be forced while building the Go source tree
    by setting the netgo or netcgo build tag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

    But as TypeScript data is not preserved after compilation to JavaScript, it cannot rely on the types to define validation, serialization and documentation at the same time. Due to this and some design decisions, to get validation, serialization and automatic schema generation, it's needed to add decorators in many places. So, it becomes quite verbose.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    		// TODO(mtaufen): I decided not to move this setter for now, since all it does is send an event
    		// and record state back to the Kubelet runtime object. In the future, I'd like to isolate
    		// these side-effects by decoupling the decisions to send events and partial status recording
    		// from the Node setters.
    		kl.recordNodeSchedulableEvent,
    	)
    	return setters
    }
    
    // Validate given node IP belongs to the current host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// +optional
    	Policies []HPAScalingPolicy `json:"policies,omitempty" listType:"atomic" protobuf:"bytes,2,rep,name=policies"`
    }
    
    // HPAScalingPolicyType is the type of the policy which could be used while making scaling decisions.
    type HPAScalingPolicyType string
    
    const (
    	// PodsScalingPolicy is a policy used to specify a change in absolute number of pods.
    	PodsScalingPolicy HPAScalingPolicyType = "Pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. docs/fr/docs/alternatives.md

    Mais comme les données TypeScript ne sont pas préservées après la compilation en JavaScript, il ne peut pas compter sur les types pour définir la validation, la sérialisation et la documentation en même temps. En raison de cela et de certaines décisions de conception, pour obtenir la validation, la sérialisation et la génération automatique de schémas, il est nécessaire d'ajouter des décorateurs à de nombreux endroits. Cela devient donc assez verbeux.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    }
    
    // growSlice takes a slice value and grows its capacity up
    // to the maximum of the passed sizes or maxCapacity, whichever
    // is smaller. Above maxCapacity decisions about allocation are left
    // to the Go runtime on append. This allows a caller to make an
    // educated guess about the potential size of the total list while
    // still avoiding overly aggressive initial allocation. If sizes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat.go

    	_W = bits.UintSize
    	// _S is the size in bytes of our limbs.
    	_S = _W / 8
    )
    
    // choice represents a constant-time boolean. The value of choice is always
    // either 1 or 0. We use an int instead of bool in order to make decisions in
    // constant time by turning it into a mask.
    type choice uint
    
    func not(c choice) choice { return 1 ^ c }
    
    const yes = choice(1)
    const no = choice(0)
    
    // ctMask is all 1s if on is yes, and all 0s otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    however. Installations that have their own conventions or that use
    a separate software build system may choose to use lower-level
    invocations such as 'go tool compile' and 'go tool link' to avoid
    some of the overheads and design decisions of the build tool.
    
    See also: go install, go get, go clean.
    	`,
    }
    
    const concurrentGCBackendCompilationEnabledByDefault = true
    
    func init() {
    	// break init cycle
    	CmdBuild.Run = runBuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/net/url/url.go

    package url
    
    // See RFC 3986. This package generally follows RFC 3986, except where
    // it deviates for compatibility reasons. When sending changes, first
    // search old issues for history on decisions. Unit tests should also
    // contain references to issue numbers with details.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"slices"
    	"strconv"
    	"strings"
    	_ "unsafe" // for linkname
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top