Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 433 for provider (0.13 sec)

  1. src/runtime/mmap.go

    package runtime
    
    import "unsafe"
    
    // mmap calls the mmap system call. It is implemented in assembly.
    // We only pass the lower 32 bits of file offset to the
    // assembly routine; the higher bits (if required), should be provided
    // by the assembly routine as 0.
    // The err result is an OS error code such as ENOMEM.
    func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 844 bytes
    - Viewed (0)
  2. src/syscall/badlinkname_unix.go

    //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    
    package syscall
    
    import _ "unsafe"
    
    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    // golang.org/x/sys linknames getsockopt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 679 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/crypto/tls/63691.md

    The [QUICConn] type used by QUIC implementations includes new events
    reporting on the state of session resumption, and provides a way for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 211 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_replace_old.txt

    cp go.mod go.mod.orig
    
    ! go mod tidy
    ! stderr panic
    stderr '^go: golang\.org/issue46659 imports\n\texample\.com/missingpkg/deprecated: package example\.com/missingpkg/deprecated provided by example\.com/missingpkg at latest version v1\.0\.0 but not at required version v1\.0\.1-beta$'
    
    go mod tidy -e
    
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module golang.org/issue46659
    
    go 1.17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1004 bytes
    - Viewed (0)
  5. src/internal/syscall/execenv/execenv_default.go

    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    package execenv
    
    import "syscall"
    
    // Default will return the default environment
    // variables based on the process attributes
    // provided.
    //
    // Defaults to syscall.Environ() on all platforms
    // other than Windows.
    func Default(sys *syscall.SysProcAttr) ([]string, error) {
    	return syscall.Environ(), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 489 bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/runtime/rand.go

    // it is "cheap" in the sense of both expense and quality.
    //
    // cheaprand must not be exported to other packages:
    // the rule is that other packages using runtime-provided
    // randomness must always use rand.
    //
    // cheaprand should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/inspect/inspect.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package inspect defines an Analyzer that provides an AST inspector
    // (golang.org/x/tools/go/ast/inspector.Inspector) for the syntax trees
    // of a package. It is only a building block for other analyzers.
    //
    // Example of use in another analysis:
    //
    //	import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/go/types/eval.go

    // Eval returns the type and, if constant, the value for the
    // expression expr, evaluated at position pos of package pkg,
    // which must have been derived from type-checking an AST with
    // complete position information relative to the provided file
    // set.
    //
    // The meaning of the parameters fset, pkg, and pos is the
    // same as in [CheckExpr]. An error is returned if expr cannot
    // be parsed successfully, or the resulting expr AST cannot be
    // type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/route/route.go

    	RIBTypeInterface RIBType = syscall.NET_RT_IFLIST
    )
    
    // FetchRIB fetches a routing information base from the operating
    // system.
    //
    // The provided af must be an address family.
    //
    // The provided arg must be a RIBType-specific argument.
    // When RIBType is related to routes, arg might be a set of route
    // flags. When RIBType is related to network interfaces, arg might be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top