Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for goroutines (0.16 sec)

  1. samples/addons/grafana.yaml

    ulti","sort":"none"}},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"go_goroutines{app=\"istiod\"}","format":"time_series","intervalFactor":2,"legendFormat":"Number of Goroutines","refId":"A","step":2}],"title":"Goroutines","type":"timeseries"}],"refresh":"","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"hide":0,"includeAll":false,"multi":false,"name":"datasource","options":[],"query":"prometheus","queryValue":"","refres...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    	cpuSubsystem              MetricSubsystem = "cpu_avg"
    	storageClassSubsystem     MetricSubsystem = "storage_class"
    	fileDescriptorSubsystem   MetricSubsystem = "file_descriptor"
    	goRoutines                MetricSubsystem = "go_routine"
    	ioSubsystem               MetricSubsystem = "io"
    	nodesSubsystem            MetricSubsystem = "nodes"
    	objectsSubsystem          MetricSubsystem = "objects"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// notified of config changes, updates, periodic reconciliation, container runtime updates, and
    	// evictions of all desired pods and will invoke reconciliation methods per pod in separate
    	// goroutines. The podWorkers are authoritative in the kubelet for what pods are actually being
    	// run and their current state:
    	//
    	// * syncing: pod should be running (syncPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    			if a0.pending--; a0.pending == 0 {
    				b.ready.push(a0)
    				b.readySema <- true
    			}
    		}
    
    		if a == root {
    			close(b.readySema)
    		}
    	}
    
    	var wg sync.WaitGroup
    
    	// Kick off goroutines according to parallelism.
    	// If we are using the -n flag (just printing commands)
    	// drop the parallelism to 1, both to make the output
    	// deterministic and because there is no real work anyway.
    	par := cfg.BuildP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    const blockSize = 1 << 20 // 1MB chunks written at a time.
    
    // writeBlocks writes a specified chunk of symbols to the output buffer. It
    // breaks the write up into ≥blockSize chunks to write them out, and schedules
    // as many goroutines as necessary to accomplish this task. This call then
    // blocks, waiting on the writes to complete. Note that we use the sem parameter
    // to limit the number of concurrent writes taking place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.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: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	// housekeeping routine. This test registers the pod, removes the unwanted pod, then calls into
    	// HandlePodCleanups a few more times. We should only see one Destroy() event. podKiller runs
    	// within a goroutine so a two second delay should be enough time to
    	// mark the pod as killed (within this test case).
    
    	kubelet.HandlePodCleanups(ctx)
    
    	// assert that unwanted pods were killed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	defer p.mrfMU.Unlock()
    
    	if !p.initialized() {
    		return errServerNotInitialized
    	}
    
    	mrfRec, err := p.loadMRF()
    	if err != nil {
    		return err
    	}
    
    	// queue replication heal in a goroutine to avoid holding up mrf save routine
    	go func() {
    		for vID, e := range mrfRec.Entries {
    			ctx, cancel := context.WithTimeout(p.ctx, time.Second) // Do not waste more than a second on this.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    			testUploads.Lock()
    			testUploads.uploads = append(testUploads.uploads, multipartResponse.UploadID)
    			testUploads.Unlock()
    		}()
    	}
    	// Wait till all go routines finishes execution.
    	wg.Wait()
    	// Validate the upload ID by an attempt to list parts using it.
    	for _, uploadID := range testUploads.uploads {
    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