Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for defBlock (0.12 sec)

  1. src/runtime/proc.go

    		// scheduler state, so we didn't gcstopm in findRunnable, but
    		// also don't want to allow new goroutines to run.
    		//
    		// Deadlock here rather than in the findRunnable loop so if
    		// findRunnable is stuck in a loop we don't perturb that
    		// either.
    		lock(&deadlock)
    		lock(&deadlock)
    	}
    
    	// This thread is going to run a goroutine and is not spinning anymore,
    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/database/sql/sql_test.go

    	if db.Driver() != fdriver {
    		t.Fatalf("OpenDB should return the driver of the Connector")
    	}
    }
    
    func TestDriverPanic(t *testing.T) {
    	// Test that if driver panics, database/sql does not deadlock.
    	db, err := Open("test", fakeDBName)
    	if err != nil {
    		t.Fatalf("Open: %v", err)
    	}
    	expectPanic := func(name string, f func()) {
    		defer func() {
    			err := recover()
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // connected, which makes them look like they can be scheduled for execution
      // in arbitrary order even though in fact they must be executed in order
      // according to their host-side graph dependency. This can cause deadlock.
      // Therefore, we hint XLA what the correct ordering of these clusters should
      // be to avoid deadlocks.
      std::vector<string> xla_token_input_nodes;
      xla_token_input_nodes.emplace_back(kXlaTokenArgNodeName);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		w.closeAfterReply = true
    	}
    
    	// We do this by default because there are a number of clients that
    	// send a full request before starting to read the response, and they
    	// can deadlock if we start writing the response with unconsumed body
    	// remaining. See Issue 15527 for some history.
    	//
    	// If full duplex mode has been enabled with ResponseController.EnableFullDuplex,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    // call Session::Extend().
    bool ExtendSessionGraphHelper(TF_Session* session, TF_Status* status) {
      if (session->graph != nullptr) {
        // Take the graph lock before the session lock to avoid deadlock. This is
        // safe since session->graph does not change.
        session->graph->mu.lock();
        mutex_lock session_lock(session->mu);
        const Graph& graph = session->graph->graph;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
Back to top