Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for Informer (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	structuralpruning "k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning"
    	apiservervalidation "k8s.io/apiextensions-apiserver/pkg/apiserver/validation"
    	informers "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1"
    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/controller/establish"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	// this test does not rely on resync, so resync period is set to zero
    	factory := informers.NewSharedInformerFactory(clientset, 0)
    	controller := utilflowcontrol.New(factory, clientset.FlowcontrolV1(), serverConcurrency)
    
    	factory.Start(stopCh)
    
    	// wait for the informer cache to sync.
    	timeout, cancel := context.WithTimeout(context.TODO(), 5*time.Second)
    	defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    			// possible under heavy load that the corresponding PVC is not synced to
    			// controller local cache yet. So we need to double-check PVC in
    			//   1) informer cache
    			//   2) apiserver if not found in informer cache
    			// to make sure we will not reclaim a PV wrongly.
    			// Note that only non-released and non-failed volumes will be
    			// updated to Released state when PVC does not exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    }
    
    func (c *Cacher) dispatchEvents() {
    	// Jitter to help level out any aggregate load.
    	bookmarkTimer := c.clock.NewTimer(wait.Jitter(time.Second, 0.25))
    	defer bookmarkTimer.Stop()
    
    	// The internal informer populates the RV as soon as it conducts
    	// The first successful sync with the underlying store.
    	// The cache must wait until this first sync is completed to be deemed ready.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.seemail",
    				"application/vnd.sema",
    				"application/vnd.semd",
    				"application/vnd.semf",
    				"application/vnd.shana.informed.formdata",
    				"application/vnd.shana.informed.formtemplate",
    				"application/vnd.shana.informed.interchange",
    				"application/vnd.shana.informed.package",
    				"application/vnd.simtech-mindmapper",
    				"application/vnd.smaf",
    				"application/vnd.smart.teacher",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission_test.go

    		return true, limitRangeList, nil
    	})
    	return mockClient
    }
    
    // newHandlerForTest returns a handler configured for testing.
    func newHandlerForTest(c clientset.Interface) (*LimitRanger, informers.SharedInformerFactory, error) {
    	f := informers.NewSharedInformerFactory(c, 5*time.Minute)
    	handler, err := NewLimitRanger(&DefaultLimitRangerActions{})
    	if err != nil {
    		return nil, f, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # namespace name, 'synth-lgr' is the container name and '997599971ee6..' is
    # the container ID.
    # The record reformer is used to extract pod_name, namespace_name and
    # container_name from the tag and set them in a local_resource_id in the
    # format of:
    # 'k8s_container.<NAMESPACE_NAME>.<POD_NAME>.<CONTAINER_NAME>'.
    # The reformer also changes the tags to 'stderr' or 'stdout' based on the
    # value of 'stream'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/informers"
    	listersv1 "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top