Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 441 for goroutines (0.16 sec)

  1. src/cmd/gofmt/long_test.go

    	}
    	if *verbose {
    		fmt.Printf("running test using %d goroutines\n", *ngo)
    	}
    
    	// generate filenames
    	filenames := make(chan string, 32)
    	go genFilenames(t, filenames)
    
    	// launch test goroutines
    	done := make(chan int)
    	for i := 0; i < *ngo; i++ {
    		go testFiles(t, filenames, done)
    	}
    
    	// wait for all test goroutines to complete
    	for i := 0; i < *ngo; i++ {
    		<-done
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/internal/testlog/log.go

    // it is inspecting the given environment variables or files.
    // Multiple goroutines may call these methods simultaneously.
    type Interface interface {
    	Getenv(key string)
    	Stat(file string)
    	Open(file string)
    	Chdir(dir string)
    }
    
    // logger is the current logger Interface.
    // We use an atomic.Value in case test startup
    // is racing with goroutines started during init.
    // That must not cause a race detector failure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 19:08:32 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  3. docs/debugging/pprofgoparser/main.go

    At least one argument is required to run this tool.
    
    EXAMPLE:
         ./pprofgoparser --time 50m --margin 1m /path/to/*-goroutines-before,debug=2.txt
    `
    
    func main() {
    	flag.Parse()
    
    	if len(flag.Args()) == 0 {
    		log.Fatal(helpUsage)
    	}
    
    	var err error
    
    	goroutinesRE = regexp.MustCompile(`^goroutine [0-9]+ \[[^,]+(, ([0-9]+) minutes)?\]:$`)
    
    	if searchText != "" {
    		searchRE, err = regexp.Compile(searchText)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 06 11:43:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/sync/mutex_test.go

    	// non-profitable and allows to confirm that spinning does not do harm.
    	// To achieve this we create excess of goroutines most of which do local work.
    	// These goroutines yield during local work, so that switching from
    	// a blocked goroutine to other goroutines is profitable.
    	// As a matter of fact, this benchmark still triggers some spinning in the mutex.
    	var m Mutex
    	var acc0, acc1 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 21:25:35 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/factory.go

    	// This allows Start() to be called multiple times safely.
    	startedInformers map[reflect.Type]bool
    	// wg tracks how many goroutines were started.
    	wg sync.WaitGroup
    	// shuttingDown is true when Shutdown has been called. It may still be running
    	// because it needs to wait for goroutines.
    	shuttingDown bool
    }
    
    // WithCustomResyncConfig sets a custom resync period for the specified informer types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/factory.go

    	// This allows Start() to be called multiple times safely.
    	startedInformers map[reflect.Type]bool
    	// wg tracks how many goroutines were started.
    	wg sync.WaitGroup
    	// shuttingDown is true when Shutdown has been called. It may still be running
    	// because it needs to wait for goroutines.
    	shuttingDown bool
    }
    
    // WithCustomResyncConfig sets a custom resync period for the specified informer types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/runtime/lock_js.go

    // and then parks the handler goroutine to allow other goroutines to run before giving execution back to JavaScript.
    // When no other goroutine is awake any more, beforeIdle resumes the handler goroutine. Now that the same goroutine
    // is running as was running when the call came in from JavaScript, execution can be safely passed back to JavaScript.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. misc/cgo/gmp/fib.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Compute Fibonacci numbers with two goroutines
    // that pass integers back and forth.  No actual
    // concurrency, just threads and synchronization
    // and foreign code on multiple pthreads.
    
    package main
    
    import (
    	big "."
    	"runtime"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 919 bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot.libsonnet

          panels.timeSeries.base('CPU Usage', queries.cpuUsage, 'CPU usage of each running instance'),
          panels.timeSeries.base('Goroutines', queries.goroutines, 'Goroutine count for each running instance'),
        ]),
      ], panelHeight=10, startY=1)
      + g.util.grid.makeGrid([
        row.new('Push Information')
        + row.withPanels([
          panels.timeSeries.xdsPushes(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. pkg/kube/informerfactory/factory.go

    	// doing anything.
    	//
    	// In addition, Shutdown blocks until all goroutines have terminated. For that
    	// to happen, the close channel(s) that they were started with must be closed,
    	// either before Shutdown gets called or while it is waiting.
    	//
    	// Shutdown may be called multiple times, even concurrently. All such calls will
    	// block until all goroutines have terminated.
    	Shutdown()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top