Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 726 for Decisions (0.21 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// +listType=atomic
    	Policies []HPAScalingPolicy `json:"policies,omitempty" 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: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    This can be turned off by explicitly calling the `doNotEndorseStrictVersions` method.
    --
    
    [[sub:bom_import]]
    == Importing Maven BOMs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/security/authz_test.go

    								body = "RBAC: access denied"
    							}
    
    							opts := echo.CallOptions{
    								// Use a fake IP address to bypass DNS lookup (which will fail). The host
    								// header will be used for routing decisions.
    								Address: "10.4.4.4",
    								Port: echo.Port{
    									Name:        ports.HTTP.Name,
    									Protocol:    protocol.HTTP,
    									ServicePort: 80,
    								},
    								HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    [[sec:plugin_conventions]]
    == Adding default configuration with conventions
    
    Plugins should provide sensible defaults and standards in a specific context, reducing the number of decisions users need to make.
    Using the `project` object, you can define default values.
    These are known as *conventions*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    implementing division by an n-digit divisor using recursive calls to division
    by an n/2-digit divisor, relying on Karatsuba multiplication to yield a
    sub-quadratic run time. However, the presentation decisions are made almost
    entirely for the purpose of simplifying the run-time analysis, rather than
    simplifying the presentation. Instead of a single algorithm that loops over
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top