Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for vfunc (0.09 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	state   runtimeapi.ContainerState
    }
    
    type cRecordList []*cRecord
    
    func (b cRecordList) Len() int      { return len(b) }
    func (b cRecordList) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
    func (b cRecordList) Less(i, j int) bool {
    	if b[i].name != b[j].name {
    		return b[i].name < b[j].name
    	}
    	return b[i].attempt < b[j].attempt
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	client rest.Interface
    	ns     string
    }
    
    // newExamples returns a Examples
    func newExamples(c *CrV1Client, namespace string) *examples {
    	return &examples{
    		client: c.RESTClient(),
    		ns:     namespace,
    	}
    }
    
    // Get takes name of the example, and returns the corresponding example object, and an error if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	kubelet.rootDirectory = t.TempDir()
    	kubelet.podLogsDirectory = t.TempDir()
    	kubelet.sourcesReady = config.NewSourcesReady(func(_ sets.Set[string]) bool { return true })
    	kubelet.serviceLister = testServiceLister{}
    	kubelet.serviceHasSynced = func() bool { return true }
    	kubelet.nodeHasSynced = func() bool { return true }
    	kubelet.nodeLister = testNodeLister{
    		nodes: []*v1.Node{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    				},
    			},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			got := buildOpenTelemetryAccessLogConfig(tc.logName, tc.hostname, tc.clusterName, tc.body, tc.labels)
    			assert.Equal(t, tc.expected, got)
    		})
    	}
    }
    
    func TestTelemetryAccessLogExhaustiveness(t *testing.T) {
    	AssertProvidersHandled(telemetryAccessLogHandled)
    }
    
    func TestTelemetryAccessLog(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top