Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 277 for Decisions (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/time.go

    // but there will be concurrent access by the P managing that timer.
    // Timer accesses are protected by the lock t.mu, with a snapshot of
    // t's state bits published in t.astate to enable certain fast paths to make
    // decisions about a timer without acquiring the lock.
    type timer struct {
    	// mu protects reads and writes to all fields, with exceptions noted below.
    	mu mutex
    
    	astate  atomic.Uint8 // atomic copy of state bits at last unlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      for (auto& subgraph : model->subgraphs) {
        func_names.push_back(subgraph->name);
      }
    
      auto module = mlir::ModuleOp::create(base_loc);
      // We currently don't use this to make decisions, but we could
      // use it in exports or if there are breaking changes
      module->setAttr("tfl.schema_version",
                      builder.getI32IntegerAttr(model->version));
      if (!model->description.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top