Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 650 for necessarily (0.54 sec)

  1. src/internal/poll/splice_linux.go

    // license that can be found in the LICENSE file.
    
    package poll
    
    import (
    	"internal/syscall/unix"
    	"runtime"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    const (
    	// spliceNonblock doesn't make the splice itself necessarily nonblocking
    	// (because the actual file descriptors that are spliced from/to may block
    	// unless they have the O_NONBLOCK flag set), but it makes the splice pipe
    	// operations nonblocking.
    	spliceNonblock = 0x2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/use.go

    	keepDirs := make(map[string]string)
    
    	var sw toolchain.Switcher
    
    	// lookDir updates the entry in keepDirs for the directory dir,
    	// which is either absolute or relative to the current working directory
    	// (not necessarily the directory containing the workfile).
    	lookDir := func(dir string) {
    		absDir, dir := pathRel(workDir, dir)
    
    		file := base.ShortPath(filepath.Join(absDir, "go.mod"))
    		fi, err := fsys.Stat(file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body.md

    A **request** body is data sent by the client to your API. A **response** body is the data your API sends to the client.
    
    Your API almost always has to send a **response** body. But clients don't necessarily need to send **request** bodies all the time.
    
    To declare a **request** body, you use <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> models with all their power and benefits.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/internal/filepathlite/path_windows.go

    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    		// Path starts with a drive letter.
    		//
    		// Not all Windows functions necessarily enforce the requirement that
    		// drive letters be in the set A-Z, and we don't try to here.
    		//
    		// We don't handle the case of a path starting with a non-ASCII character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/internal/trace/internal/testgen/go122/trace.go

    	})
    	for _, e := range b.events {
    		tw.WriteEvent(e)
    	}
    }
    
    // Seq represents a sequence counter.
    type Seq uint64
    
    // Time represents a low-level trace timestamp (which does not necessarily
    // correspond to nanoseconds, like trace.Time does).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. LICENSES/third_party/forked/shell2junit/LICENSE

    this section) patent license to make, have made, use, offer to sell, sell, 
    import, and otherwise transfer the Work, where such license applies only to 
    those patent claims licensable by such Contributor that are necessarily 
    infringed by their Contribution(s) alone or by combination of their 
    Contribution(s) with the Work to which such Contribution(s) was submitted. 
    If You institute patent litigation against any entity (including a 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
  7. bin/build_ztunnel.sh

      cp -f "${2}" "${TARGET_OUT_LINUX}/ztunnel"
    }
    
    function maybe_build_ztunnel() {
      # TODO detect git changes or something to avoid unnecessarily building
      # BUILD_ZTUNNEL=1 with no BUILD_ZTUNNEL_REPO tries to infer BUILD_ZTUNNEL_REPO
      if [[ "${BUILD_ZTUNNEL_REPO:-}" == "" ]] && [[ "${BUILD_ZTUNNEL:-}" != "" ]]; then
        local ZTUNNEL_DIR
    	ZTUNNEL_DIR="$(pwd)/../ztunnel"
        if [[ -d "${ZTUNNEL_DIR}" ]]; then
          BUILD_ZTUNNEL_REPO="${ZTUNNEL_DIR}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    // if the number of update managers exceeds this, the oldest entries will be merged until the number is below the maximum.
    // TODO(jennybuckley): Determine if this is really the best value. Ideally we wouldn't unnecessarily merge too many entries.
    const DefaultMaxUpdateManagers int = 10
    
    // DefaultTrackOnCreateProbability defines the default probability that the field management of an object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/extra-models.md

    Você também pode declarar uma resposta usando um simples `dict` arbitrário, declarando apenas o tipo das chaves e valores, sem usar um modelo Pydantic.
    
    Isso é útil se você não souber os nomes de campo / atributo válidos (que seriam necessários para um modelo Pydantic) antecipadamente.
    
    Neste caso, você pode usar `typing.Dict` (ou simplesmente dict no Python 3.9 e superior):
    
    === "Python 3.8 and above"
    
        ```Python hl_lines="1  8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. releasenotes/notes/48684.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 48665
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 207 bytes
    - Viewed (0)
Back to top