Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for registry_ (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			destroyFunc, registry := NewTestGenericStoreRegistry(t)
    			defer destroyFunc()
    			registry.Decorator = tc.decorator
    			registry.UpdateStrategy.(*testRESTStrategy).allowCreateOnUpdate = true
    			registry.BeginUpdate = tc.beginUpdate
    			registry.AfterUpdate = tc.afterUpdate
    			registry.BeginCreate = tc.beginCreate
    			registry.AfterCreate = tc.afterCreate
    			registry.TTLFunc = tc.ttl
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    func metricsNodeHandler() http.Handler {
    	registry := prometheus.NewRegistry()
    
    	logger.CriticalIf(GlobalContext, registry.Register(nodeCollector))
    	if err := registry.Register(prometheus.NewProcessCollector(prometheus.ProcessCollectorOpts{
    		Namespace:    minioNamespace,
    		ReportErrors: true,
    	})); err != nil {
    		logger.CriticalIf(GlobalContext, err)
    	}
    	if err := registry.Register(prometheus.NewGoCollector()); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."docker.io"]
      endpoint = ["https://mirror.gcr.io","https://registry-1.docker.io"]
    # Enable registry.k8s.io as the primary mirror for k8s.gcr.io
    # See: https://github.com/kubernetes/k8s.io/issues/3411
    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."k8s.gcr.io"]
      endpoint = ["https://registry.k8s.io", "https://k8s.gcr.io",]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	imageList := []kubecontainer.Image{
    		{
    			ID:       "abc",
    			RepoTags: []string{"registry.k8s.io:v1", "registry.k8s.io:v2"},
    			Size:     123,
    		},
    		{
    			ID:       "efg",
    			RepoTags: []string{"registry.k8s.io:v3", "registry.k8s.io:v4"},
    			Size:     456,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // It is a terrible idea to have local MLIR contexts so we need to
        // register extensions here, again.
        mlir::DialectRegistry registry;
        registry.insert<mlir::func::FuncDialect>();
        mlir::func::registerAllExtensions(registry);
        xla_call_module_context_.appendDialectRegistry(registry);
    
        auto l = tensorflow::XlaCallModuleLoader::Create(
            &xla_call_module_context_, op.getVersion(), op.getModule().str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    					{
    						Name: "FakeNodeSelector",
    						Args: &runtime.Unknown{Raw: []byte(`{"nodeName":"node3"}`)},
    					},
    				},
    			},
    		),
    		WithFrameworkOutOfTreeRegistry(frameworkruntime.Registry{
    			"FakeNodeSelector": newFakeNodeSelector,
    		}),
    	)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Capture the bindings and events' controllers.
    	var wg sync.WaitGroup
    	wg.Add(2 * len(pods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        Fixed point shape refinement pass that utilizes the shape functions
        registered on ops using the InferTypeOpInterface as well as by bridging to
        the TensorFlow op registry's shape functions. This is an interprocedural
        pass that propagates information across function calls/control flow
        operations where possible (the GuaranteeAllFuncsOneUsePass is often run
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating plugins directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsRegistrationDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins registry directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPodResourcesDir(), 0750); err != nil {
    		return fmt.Errorf("error creating podresources directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    						Value: "test-test-test",
    					},
    					{
    						Name: "POD_NAME",
    						ValueFrom: &v1.EnvVarSource{
    							FieldRef: &v1.ObjectFieldSelector{
    								APIVersion: "v1", //legacyscheme.Registry.GroupOrDie(v1.GroupName).GroupVersion.String(),
    								FieldPath:  "metadata.name",
    							},
    						},
    					},
    					{
    						Name:  "OUT_OF_ORDER_TEST",
    						Value: "$(OUT_OF_ORDER_TARGET)",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top