Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for TestingBlock (0.13 sec)

  1. pkg/kubelet/util/queue/work_queue_test.go

    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func newTestBasicWorkQueue() (*basicWorkQueue, *testingclock.FakeClock) {
    	fakeClock := testingclock.NewFakeClock(time.Now())
    	wq := &basicWorkQueue{
    		clock: fakeClock,
    		queue: make(map[types.UID]time.Time),
    	}
    	return wq, fakeClock
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	"net/http"
    	"net/http/httptest"
    	"testing"
    	"time"
    
    	sdktrace "go.opentelemetry.io/otel/sdk/trace"
    	"go.opentelemetry.io/otel/sdk/trace/tracetest"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func TestTrackStartedWithContextAlreadyHasFilterRecord(t *testing.T) {
    	filterName := "my-filter"
    	var (
    		callCount    int
    		filterRecord *requestFilterRecord
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/kubelet/util/manager/cache_based_manager_test.go

    	"k8s.io/apimachinery/pkg/util/sets"
    
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/fake"
    	core "k8s.io/client-go/testing"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    
    	"github.com/stretchr/testify/assert"
    )
    
    func checkObject(t *testing.T, store *objectStore, ns, name string, shouldExist bool) {
    	_, err := store.Get(ns, name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				queue = NewTestQueue(ctx, newDefaultQueueSort(),
    					WithClock(testingclock.NewFakeClock(timestamp)),
    					WithPodMaxInUnschedulablePodsDuration(test.podMaxInUnschedulablePodsDuration))
    			} else {
    				queue = NewTestQueue(ctx, newDefaultQueueSort(),
    					WithClock(testingclock.NewFakeClock(timestamp)))
    			}
    
    			var podInfoList []*framework.QueuedPodInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/apiserver/pkg/storage"
    	utilflowcontrol "k8s.io/apiserver/pkg/util/flowcontrol"
    	"k8s.io/client-go/tools/cache"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    // verifies the cacheWatcher.process goroutine is properly cleaned up even if
    // the writes to cacheWatcher.result channel is blocked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	"k8s.io/client-go/tools/cache"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	k8smetrics "k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func makeTestPod(name string, resourceVersion uint64) *v1.Pod {
    	return makeTestPodDetails(name, resourceVersion, "some-node", map[string]string{"k8s-app": "my-app"})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. pkg/controller/podgc/gc_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/podgc/metrics"
    	"k8s.io/kubernetes/pkg/controller/testutil"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	testingclock "k8s.io/utils/clock/testing"
    	"k8s.io/utils/pointer"
    )
    
    func alwaysReady() bool { return true }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	"k8s.io/utils/pointer"
    )
    
    func newTestCacherWithoutSyncing(s storage.Interface) (*Cacher, storage.Versioner, error) {
    	prefix := "pods"
    	config := Config{
    		Storage:        s,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top