Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for countpwg (0.7 sec)

  1. src/runtime/gc_test.go

    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				runtime.MSpanCountAlloc(s, bits)
    			}
    		})
    	}
    }
    
    func countpwg(n *int, ready *sync.WaitGroup, teardown chan bool) {
    	if *n == 0 {
    		ready.Done()
    		<-teardown
    		return
    	}
    	*n--
    	countpwg(n, ready, teardown)
    }
    
    func TestMemoryLimit(t *testing.T) {
    	if testing.Short() {
    		t.Skip("stress test that takes time to run")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    Mike Spreitzer <******@****.***> 1627533325 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4316.go

    type Peano *Peano
    
    func makePeano(n int) *Peano {
    	if n == 0 {
    		return nil
    	}
    	p := Peano(makePeano(n - 1))
    	return &p
    }
    
    var countArg Peano
    var countResult int
    
    func countPeano() {
    	if countArg == nil {
    		countResult = 0
    		return
    	}
    	countArg = *countArg
    	countPeano()
    	countResult++
    }
    
    var s = "(())"
    var pT = 0
    
    func p() {
    	if pT >= len(s) {
    		return
    	}
    	if s[pT] == '(' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 972 bytes
    - Viewed (0)
  4. src/go/doc/testdata/blank.1.golden

    		I1
    		I2
    	)
    
    	// Unexported constants counting from blank iota. See issue 9615. 
    	const (
    		_	= iota
    		one	= iota + 1
    	)
    
    
    VARIABLES
    	// 
    	var _ = T(55)
    
    
    FUNCTIONS
    	// 
    	func _()
    
    
    TYPES
    	// S has a padding field. 
    	type S struct {
    		H	uint32
    		_	uint8
    		A	uint8
    	}
    
    	// 
    	type T int
    
    	// T constants counting from a blank constant. 
    	const (
    		_	T	= iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1001 bytes
    - Viewed (0)
  5. src/go/doc/testdata/blank.2.golden

    // Package blank is a go/doc test for the handling of _. See issue ...
    PACKAGE blank
    
    IMPORTPATH
    	testdata/blank
    
    IMPORTS
    	os
    
    FILENAMES
    	testdata/blank.go
    
    CONSTANTS
    	// T constants counting from unexported constants. 
    	const (
    		C1	T
    		C2
    	
    		C3
    	
    		C4	int
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    		Default		= 0644
    		Useless		= 0312
    		WideOpen	= 0777
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 01:12:26 UTC 2017
    - 751 bytes
    - Viewed (0)
  6. src/go/doc/testdata/blank.go

    // Package blank is a go/doc test for the handling of _.
    // See issue 5397.
    package blank
    
    import "os"
    
    type T int
    
    // T constants counting from a blank constant.
    const (
    	_ T = iota
    	T1
    	T2
    )
    
    // T constants counting from unexported constants.
    const (
    	tweedledee T = iota
    	tweedledum
    	C1
    	C2
    	alice
    	C3
    	redQueen int = iota
    	C4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  7. releasenotes/notes/19300.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: cni
    issue:
      - 19300
    
    releaseNotes:
    - |
      **Added** CNI metrics counting repair operations.
    
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 04 23:57:03 UTC 2021
    - 227 bytes
    - Viewed (0)
  8. src/go/doc/testdata/blank.0.golden

    // Package blank is a go/doc test for the handling of _. See issue ...
    PACKAGE blank
    
    IMPORTPATH
    	testdata/blank
    
    IMPORTS
    	os
    
    FILENAMES
    	testdata/blank.go
    
    CONSTANTS
    	// T constants counting from unexported constants. 
    	const (
    		C1	T
    		C2
    	
    		C3
    	
    		C4	int
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    		Default		= 0644
    		Useless		= 0312
    		WideOpen	= 0777
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 01:12:26 UTC 2017
    - 751 bytes
    - Viewed (0)
  9. src/sync/runtime.go

    // Semacquire(RW)Mutex(R) is like Semacquire, but for profiling contended
    // Mutexes and RWMutexes.
    // If lifo is true, queue waiter at the head of wait queue.
    // skipframes is the number of frames to omit during tracing, counting from
    // runtime_SemacquireMutex's caller.
    // The different forms of this function just tell the runtime how to present
    // the reason for waiting in a backtrace, and is used to compute some metrics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            file('settings.gradle') << """
                pluginManagement {
                    includeBuild 'counting-service-plugin'
                }
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            file('build.gradle') << """
                plugins { id 'counting-service-plugin' version '1.0' }
    
                def altServiceProvider = project.getGradle().getSharedServices().registerIfAbsent(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top