Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for goroutines (0.34 sec)

  1. src/net/http/transport.go

    			}
    			return false
    		}
    		if trace != nil && trace.PutIdleConn != nil {
    			trace.PutIdleConn(nil)
    		}
    		return true
    	}
    
    	// eofc is used to block caller goroutines reading from Response.Body
    	// at EOF until this goroutines has (potentially) added the connection
    	// back to the idle pool.
    	eofc := make(chan struct{})
    	defer close(eofc) // unblock reader on errors
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	    Allocations made in C or using C.malloc are not counted.
    
    	-blockprofile block.out
    	    Write a goroutine blocking profile to the specified file
    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-blockprofilerate n
    	    Control the detail provided in goroutine blocking profiles by
    	    calling runtime.SetBlockProfileRate with n.
    	    See 'go doc runtime.SetBlockProfileRate'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    // by a client to resume a TLS session with a given server. ClientSessionCache
    // implementations should expect to be called concurrently from different
    // goroutines. Up to TLS 1.2, only ticket-based resumption is supported, not
    // SessionID-based resumption. In TLS 1.3 they were merged into PSK modes, which
    // are supported via this interface.
    type ClientSessionCache interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// other goroutine has updated it in the meantime. We therefore cannot use
    	// SSA here to add the pod because then we would have to send the entire slice
    	// or use different field manager strings for each entry.
    	//
    	// With a strategic-merge-patch, we can simply send one new entry. The apiserver
    	// validation will catch if two goroutines try to do that at the same time and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/admission_test.go

    				if c.Namespace != attributesTest1.GetNamespace() {
    					t.Errorf("Expected %s namespace, got %s", attributesTest1.GetNamespace(), c.Namespace)
    				}
    			}
    		}()
    	}
    
    	// and here we wait for all the goroutines
    	wg.Wait()
    	// since all the calls with the same namespace will be holded, they must be catched on the singleflight group,
    	// There are two different sets of namespace calls
    	// hence only 2
    	if testCount != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/minio-dashboard.json

              "intervalFactor": 1,
              "legendFormat": "{{server}}",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Goroutines",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	// EOF) instead of (n, nil), to signal to the HTTP response reading
    	// goroutine that the connection is now closed. This eliminates a race
    	// where the HTTP response reading goroutine would otherwise not observe
    	// the EOF until its next read, by which time a client goroutine might
    	// have already tried to reuse the HTTP connection for a new request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    		s.parked = false
    
    		// Ready the goroutine by injecting it. We use injectglist instead
    		// of ready or goready in order to allow us to run this function
    		// without a P. injectglist also avoids placing the goroutine in
    		// the current P's runnext slot, which is desirable to prevent
    		// the scavenger from interfering with user goroutine scheduling
    		// too much.
    		var list gList
    		list.push(s.g)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	}
    
    	tc.informerFactory.Start(tc.ctx.Done())
    	t.Cleanup(func() {
    		// Need to cancel before waiting for the shutdown.
    		tCtx.Cancel("test is done")
    		// Now we can wait for all goroutines to stop.
    		tc.informerFactory.Shutdown()
    	})
    
    	tc.informerFactory.WaitForCacheSync(tc.ctx.Done())
    
    	for _, node := range nodes {
    		nodeInfo := framework.NewNodeInfo()
    		nodeInfo.SetNode(node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    // debugCallV2 is the entry point for debugger-injected function
    // calls on running goroutines. It informs the runtime that a
    // debug call has been injected and creates a call frame for the
    // debugger to fill in.
    //
    // To inject a function call, a debugger should:
    // 1. Check that the goroutine is in state _Grunning and that
    //    there are at least 256 bytes free on the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top