Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for ncalls (0.23 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        val calls = authCallsForHeader("WWW-Authenticate: Basic realm=\"Bar\"")
        assertThat(calls.size).isEqualTo(1)
        val url = server.url("/").toUrl()
        val call = calls[0]
        assertThat(call).contains("host=" + url.host)
        assertThat(call).contains("port=" + url.port)
        assertThat(call).contains("site=" + url.host)
        assertThat(call).contains("url=$url")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. src/net/http/server.go

    )
    
    // 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
    	// body.
    	ErrBodyNotAllowed = errors.New("http: request method or response status code does not allow body")
    
    	// ErrHijacked is returned by ResponseWriter.Write calls when
    	// the underlying connection has been hijacked using the
    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/runtime/proc.go

    		ready(gp, traceskip, true)
    	})
    }
    
    //go:nosplit
    func acquireSudog() *sudog {
    	// Delicate dance: the semaphore implementation calls
    	// acquireSudog, acquireSudog calls new(sudog),
    	// new calls malloc, malloc can call the garbage collector,
    	// and the garbage collector calls the semaphore implementation
    	// in stopTheWorld.
    	// Break the cycle by doing acquirem/releasem around new(sudog).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </pre>
    
    <p>
    The expression must be a function or method call; it cannot be parenthesized.
    Calls of built-in functions are restricted as for
    <a href="#Expression_statements">expression statements</a>.
    </p>
    
    <p>
    Each time a "defer" statement
    executes, the function value and parameters to the call are
    <a href="#Calls">evaluated as usual</a>
    and saved anew but the actual function is not invoked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	// creates a new database connection.
    	cachedOrNewConn
    )
    
    // driverConn wraps a driver.Conn with a mutex, to
    // be held during all calls into the Conn. (including any calls onto
    // interfaces returned via that Conn, such as calls on Tx, Stmt,
    // Result, Rows)
    type driverConn struct {
    	db        *DB
    	createdAt time.Time
    
    	sync.Mutex  // guards following
    	ci          driver.Conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "uniqueItems": true
              }
            },
            {
              "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
              "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                "uniqueItems": true
              }
            },
            {
              "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
              "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "uniqueItems": true
              }
            },
            {
              "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
              "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                  "uniqueItems": true
                }
              },
              {
                "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
                "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "uniqueItems": true
              }
            },
            {
              "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
              "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top