Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for exercise (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    unless the number is negative.\n\nExamples:\n  1.5 will be serialized as \"1500m\"\n  1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    }
    
    // This will be index 2.
    func (p Point) GCMethod(k int) int {
    	runtime.GC()
    	return k + p.x
    }
    
    // This will be index 3.
    func (p Point) NoArgs() {
    	// Exercise no-argument/no-result paths.
    }
    
    // This will be index 4.
    func (p Point) TotalDist(points ...Point) int {
    	tot := 0
    	for _, q := range points {
    		dx := q.x - p.x
    		dy := q.y - p.y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    			// Busy usedConns.
    			testUseConns(t, usedConns, baseTime, db)
    
    			tm := baseTime.Add(item.timeOffset)
    
    			// Reuse connections which should never be considered idle
    			// and exercises the sorting for issue 39471.
    			tm = testUseConns(t, reusedConns, tm, db)
    
    			tm = tm.Add(item.secondTimeOffset)
    			nowFunc = func() time.Time {
    				return tm
    			}
    
    			db.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top