Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 318 for registry_ (0.49 sec)

  1. pkg/credentialprovider/plugin/plugin.go

    	// The caveat here is we don't know cacheKeyType yet, so if cacheKeyType is registry/global and credentials saved in cache
    	// on per registry/global basis then exec will be called for all requests if requests are made concurrently.
    	// foo.bar.registry
    	// foo.bar.registry/image1
    	// foo.bar.registry/image2
    	res, err, _ := p.group.Do(image, func() (interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        // back to do it properly in the future
        mlir::DialectRegistry registry;
        RegisterAllTensorFlowDialects(registry);
        registry
            .insert<mlir::func::FuncDialect, mlir::stablehlo::StablehloDialect>();
        context.appendDialectRegistry(registry);
      }
    
      absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> module;
      std::unordered_set<std::string> tags;
    
      tensorflow::GraphImportConfig specs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    		}
    	}
    }
    
    // WithFrameworkOutOfTreeRegistry sets the registry for out-of-tree plugins. Those plugins
    // will be appended to the default registry.
    func WithFrameworkOutOfTreeRegistry(registry frameworkruntime.Registry) Option {
    	return func(o *schedulerOptions) {
    		o.frameworkOutOfTreeRegistry = registry
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      return absl::OkStatus();
    }
    
    tensorflow::Status RunConverter(const PassPipelineCLParser& pass_pipeline) {
      DialectRegistry registry;
      registerAllDialects(registry);
      RegisterAllTensorFlowDialects(registry);
      mhlo::registerAllMhloDialects(registry);
      stablehlo::registerAllDialects(registry);
      registry.insert<mlir::func::FuncDialect, mlir::tf_type::TFTypeDialect,
                      mlir::quant::QuantizationDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy
    import org.gradle.internal.watch.registry.FileWatcherRegistry
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory
    import org.gradle.internal.watch.registry.WatchMode
    import org.gradle.internal.watch.registry.impl.DaemonDocumentationIndex
    import org.gradle.internal.watch.vfs.FileChangeListeners
    import org.gradle.internal.watch.vfs.VfsLogging
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/server.go

    // hence there are no references to it from the kubernetes scheduler code base.
    func WithPlugin(name string, factory runtime.PluginFactory) Option {
    	return func(registry runtime.Registry) error {
    		return registry.Register(name, factory)
    	}
    }
    
    // Setup creates a completed config and a scheduler based on the command args and options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller.go

    	// Controls full recalculation of quota usage
    	ResyncPeriod controller.ResyncPeriodFunc
    	// Maintains evaluators that know how to calculate usage for group resource
    	Registry quota.Registry
    	// Discover list of supported resources on the server.
    	DiscoveryFunc NamespacedResourcesFunc
    	// A function that returns the list of resources to ignore
    	IgnoredResourcesFunc func() map[schema.GroupResource]struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

    import org.gradle.internal.watch.WatchingNotSupportedException;
    import org.gradle.internal.watch.registry.FileWatcherRegistry;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.WatchMode;
    import org.gradle.internal.watch.registry.impl.DaemonDocumentationIndex;
    import org.gradle.internal.watch.registry.impl.SnapshotCollectingDiffListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/storage/storage_test.go

    	"k8s.io/apiserver/pkg/registry/generic"
    	genericregistrytest "k8s.io/apiserver/pkg/registry/generic/testing"
    	"k8s.io/apiserver/pkg/registry/rest"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/kubernetes/pkg/apis/batch"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/registry/registrytest"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/server.go

    	http                  *http.Client
    	enableProfiling       bool
    	registry              prometheus.Gatherer
    	shutdown              context.CancelFunc
    	drain                 func()
    }
    
    func initializeMonitoring() (prometheus.Gatherer, error) {
    	registry := prometheus.NewRegistry()
    	wrapped := prometheus.WrapRegistererWithPrefix("istio_agent_", registry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top