Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for tcCall (0.18 sec)

  1. src/runtime/proc.go

    // so that we can set up g0.sched to return to the call of mstart1 above.
    //
    //go:noinline
    func mstart1() {
    	gp := getg()
    
    	if gp != gp.m.g0 {
    		throw("bad runtime·mstart")
    	}
    
    	// Set up m.g0.sched as a label returning to just
    	// after the mstart1 call in mstart0 above, for use by goexit0 and mcall.
    	// We're never coming back to mstart1 after we call schedule,
    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. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        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")
        assertThat(call).contains("type=" + java.net.Authenticator.RequestorType.SERVER)
        assertThat(call).contains("prompt=Bar")
        assertThat(call).contains("protocol=http")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            }
          }
        }
      }
    
      /**
       * Call the non-timed {@link Future#get()} in a way that allows us to abort if it's expected to
       * hang forever. More precisely, if it's expected to return, we simply call it[*], but if it's
       * expected to hang (because one of the input futures that we know makes it up isn't done yet),
       * then we call it in a separate thread (using pseudoTimedGet). The result is that we wait as long
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            }
          }
        }
      }
    
      /**
       * Call the non-timed {@link Future#get()} in a way that allows us to abort if it's expected to
       * hang forever. More precisely, if it's expected to return, we simply call it[*], but if it's
       * expected to hang (because one of the input futures that we know makes it up isn't done yet),
       * then we call it in a separate thread (using pseudoTimedGet). The result is that we wait as long
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            },
            {
              "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
              "in": "query",
              "name": "timeoutSeconds",
              "schema": {
                "type": "integer",
                "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            },
            {
              "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
              "in": "query",
              "name": "timeoutSeconds",
              "schema": {
                "type": "integer",
                "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
                }
              },
              {
                "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
                "in": "query",
                "name": "timeoutSeconds",
                "schema": {
                  "type": "integer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    				}
    
    				if yt.zcase == Zcallduff && ctxt.Arch.Family == sys.AMD64 {
    					// Maintain BP around call, since duffcopy/duffzero can't do it
    					// (the call jumps into the middle of the function).
    					// This makes it possible to see call sites for duffcopy/duffzero in
    					// BP-based profiling tools like Linux perf (which is the
    					// whole point of maintaining frame pointers in Go).
    					// MOVQ BP, -16(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
                }
              },
              {
                "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
                "in": "query",
                "name": "timeoutSeconds",
                "schema": {
                  "type": "integer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    			t.Fatalf("Test %d: %s: Failed to create HTTP request for Head Object: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top