Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Concept (0.11 sec)

  1. src/database/sql/sql.go

    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    // also maintains a free pool of idle connections. If the database has
    // a concept of per-connection state, such state can be reliably observed
    // within a transaction ([Tx]) or connection ([Conn]). Once [DB.Begin] is called, the
    // returned [Tx] is bound to a single connection. Once [Tx.Commit] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    Istio is an <a href=\"https://github.com/istio/istio\" target=\"_blank\">open platform</a> that provides a uniform way to <a href=\"https://istio.io/docs/concepts/security/\" target=\"_blank\">secure</a>,\n    <a href=\"https://istio.io/docs/concepts/traffic-management/\" target=\"_blank\">connect</a>, and \n    <a href=\"https://istio.io/docs/concepts/observability/\" target=\"_blank\">monitor</a> microservices.\n    <br>\n    Need help? <a href=\"https://istio.io/get-involved/\" target=\"_blank\">Join...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	"unsafe"
    )
    
    // set using cmd/go/internal/modload.ModInfoProg
    var modinfo string
    
    // Goroutine scheduler
    // The scheduler's job is to distribute ready-to-run goroutines over worker threads.
    //
    // The main concepts are:
    // G - goroutine.
    // M - worker thread, or machine.
    // P - processor, a resource that is required to execute Go code.
    //     M must have an associated P to execute Go code, however it can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top