Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withPanels (0.13 sec)

  1. src/runtime/pprof/pprof_test.go

    				go func2(c)
    			default:
    				go func3(c)
    			}
    			// Let goroutines block on channel
    			for j := 0; j < 5; j++ {
    				runtime.Gosched()
    			}
    		}
    	})
    
    	SetGoroutineLabels(WithLabels(context.Background(), Labels("self-label", "self-value")))
    	defer SetGoroutineLabels(context.Background())
    
    	garbage := new(*int)
    	fingReady := make(chan struct{})
    	runtime.SetFinalizer(garbage, func(v **int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission_test.go

    		labelsA = map[string]string{
    			"label-a": "value-a",
    		}
    		labelsAB = map[string]string{
    			"label-a": "value-a",
    			"label-b": "value-b",
    		}
    		aLabeledPod  = withLabels(coremypod, labelsA)
    		abLabeledPod = withLabels(coremypod, labelsAB)
    	)
    
    	existingPodsIndex.Add(v1mymirrorpod)
    	existingPodsIndex.Add(v1othermirrorpod)
    	existingPodsIndex.Add(v1unboundmirrorpod)
    	existingPodsIndex.Add(v1mypod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/binder_test.go

    			// syncClaim binds a claim only when the label selector matches the volume
    			name:            "1-11 - bind when selector matches",
    			initialVolumes:  withLabels(labels, newVolumeArray("volume1-1", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty)),
    			expectedVolumes: withLabels(labels, newVolumeArray("volume1-1", "1Gi", "uid1-1", "claim1-1", v1.VolumeBound, v1.PersistentVolumeReclaimRetain, classEmpty, volume.AnnBoundByController)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
Back to top