Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for Prioritize (0.2 sec)

  1. src/runtime/mgcmark.go

    	if gp._panic != nil {
    		// Panics are always stack allocated.
    		state.putPtr(uintptr(unsafe.Pointer(gp._panic)), false)
    	}
    
    	// Find and scan all reachable stack objects.
    	//
    	// The state's pointer queue prioritizes precise pointers over
    	// conservative pointers so that we'll prefer scanning stack
    	// objects precisely.
    	state.buildIndex()
    	for {
    		p, conservative := state.getPtr()
    		if p == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
              "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    			// If we require a new connection, just re-use the connection without looking
    			// at the expiry time. If it is expired, it will be checked when it is placed
    			// back into the connection pool.
    			// This prioritizes giving a valid connection to a client over the exact connection
    			// lifetime, which could expire exactly after this point anyway.
    			if strategy == cachedOrNewConn && ret.err == nil && ret.conn.expired(lifetime) {
    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. api/openapi-spec/swagger.json

              "type": "string"
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-37591`](https://youtrack.jetbrains.com/issue/KT-37591) Deprecate cases in FE 1.0 when companion property is prioritized against enum entry
    - [`KT-53210`](https://youtrack.jetbrains.com/issue/KT-53210) OVERLOAD_RESOLUTION_AMBIGUITY when lambda with single argument `it` is involved
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top