Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 237 for registry_ (0.19 sec)

  1. pkg/controlplane/instance_test.go

    	appsrest "k8s.io/kubernetes/pkg/registry/apps/rest"
    	batchrest "k8s.io/kubernetes/pkg/registry/batch/rest"
    	certificatesrest "k8s.io/kubernetes/pkg/registry/certificates/rest"
    	corerest "k8s.io/kubernetes/pkg/registry/core/rest"
    	discoveryrest "k8s.io/kubernetes/pkg/registry/discovery/rest"
    	networkingrest "k8s.io/kubernetes/pkg/registry/networking/rest"
    	noderest "k8s.io/kubernetes/pkg/registry/node/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

    import static org.gradle.model.internal.type.ModelTypes.modelMap
    import static org.gradle.util.internal.CollectionUtils.single
    
    class NativeComponentModelPluginTest extends AbstractProjectBuilderSpec {
        def registry
    
        def setup() {
            registry = project.modelRegistry
            project.pluginManager.apply(NativeComponentModelPlugin)
        }
    
        def "can apply plugin by id"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

    static void RegisterMlirInputDialects(mlir::DialectRegistry& registry) {
      // TODO(b/259459405): Remove support for stablehlo as an input.
      registry
          .insert<mlir::arith::ArithDialect, mlir::func::FuncDialect,
                  mlir::TF::TensorFlowDialect, mlir::stablehlo::StablehloDialect,
                  mlir::quant::QuantizationDialect>();
      mlir::func::registerAllExtensions(registry);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. pkg/dns/proto/nds.pb.go

    	// The name of the service registry containing the service (e.g. 'Kubernetes').
    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    	// The k8s namespace for the service. Only applies when registry=`Kubernetes`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.logging.DaemonMessages;
    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.server.api.DaemonStateControl;
    import org.gradle.launcher.daemon.server.exec.DaemonCommandExecuter;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/controller/resourcequota/resource_quota_monitor.go

    	// maintains list of evaluators
    	registry quota.Registry
    
    	updateFilter UpdateFilter
    }
    
    // NewMonitor creates a new instance of a QuotaMonitor
    func NewMonitor(informersStarted <-chan struct{}, informerFactory informerfactory.InformerFactory, ignoredResources map[schema.GroupResource]struct{}, resyncPeriod controller.ResyncPeriodFunc, replenishmentFunc ReplenishmentFunc, registry quota.Registry, updateFilter UpdateFilter) *QuotaMonitor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top