Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for linkname (0.23 sec)

  1. src/runtime/proc.go

    	gp.m.locks--
    }
    
    // Standard syscall entry used by the go syscall library and normal cgo calls.
    //
    // This is exported via linkname to assembly in the syscall package and x/sys.
    //
    // Other packages should not be accessing entersyscall directly,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	"io"
    	"log"
    	"math/rand"
    	"net"
    	"net/textproto"
    	"net/url"
    	urlpkg "net/url"
    	"path"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    	_ "unsafe" // for linkname
    
    	"golang.org/x/net/http/httpguts"
    )
    
    // Errors used by the HTTP server.
    var (
    	// ErrBodyNotAllowed is returned by ResponseWriter.Write calls
    	// when the HTTP method or response code does not permit a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	"strconv"
    	"sync"
    	"sync/atomic"
    	"time"
    	_ "unsafe"
    )
    
    var driversMu sync.RWMutex
    
    // drivers should be an internal detail,
    // but widely used packages access it using linkname.
    // (It is extra wrong that they linkname drivers but not driversMu.)
    // Notable members of the hall of shame include:
    //   - github.com/instana/go-sensor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/reflect/value.go

    //go:noescape
    func mapassign0(t *abi.Type, m unsafe.Pointer, key, val unsafe.Pointer)
    
    // mapassign should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/modern-go/reflect2
    //   - github.com/goccy/go-json
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "cachingMode": {
              "description": "Host Caching mode: None, Read Only, Read Write.",
              "type": "string"
            },
            "diskName": {
              "description": "The Name of the data disk in the blob storage",
              "type": "string"
            },
            "diskURI": {
              "description": "The URI the data disk in the blob storage",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top