Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 308 for registryX (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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 (1)
  8. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

            // TODO - use an immutable registry implementation
            val artifactTypeRegistry = decodePreservingSharedIdentity {
                val registry = DefaultArtifactTypeRegistry(instantiator, attributesFactory, CollectionCallbackActionDecorator.NOOP, EmptyVariantTransformRegistry)
                val mappings = registry.create()!!
                readCollection {
                    val name = readString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. build/lib/release.sh

      local -r arch="$1"
      local -r registry="$2"
      local -r version="$3"
      local -r save_dir="${4-}"
      kube::log::status "Building conformance image for arch: ${arch}"
      ARCH="${arch}" REGISTRY="${registry}" VERSION="${version}" \
        make -C test/conformance/image/ build >/dev/null
    
      local conformance_tag
      conformance_tag="${registry}/conformance-${arch}:${version}"
      if [[ -n "${save_dir}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	lockAcquisitionFunc func([]corev1.ResourceQuota) func()
    
    	ignoredResources map[schema.GroupResource]struct{}
    
    	// registry that knows how to measure usage for objects
    	registry quota.Registry
    
    	// TODO these are used together to bucket items by namespace and then batch them up for processing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top