Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,192 for registry_ (0.36 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

    import org.gradle.launcher.daemon.protocol.ReportStatus;
    import org.gradle.launcher.daemon.protocol.Status;
    import org.gradle.launcher.daemon.registry.DaemonInfo;
    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.registry.DaemonStopEvent;
    import org.gradle.launcher.daemon.registry.DaemonStopEvents;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.UUID;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_custom_aggregation_op_to_quant_stats.cc

        // This is a brief description of the pass.
        return "Convert tf.CustomAggregator op to quant.Stats";
      }
    
      void getDependentDialects(DialectRegistry &registry) const override {
        registry.insert<TF::TensorFlowDialect>();
        registry.insert<quant::QuantizationDialect>();
        registry.insert<quantfork::QuantizationForkDialect>();
      }
    
      void runOnOperation() override;
    };
    
    class ConvertCustomAggregationOpToQuantStats
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
            throw new IllegalArgumentException(String.format("Service registry %s cannot be used as a parent for another service registry.", serviceRegistry));
        }
    
        /**
         * Creates a service registry that uses the given providers.
         */
        public static ServiceRegistry create(ServiceRegistrationProvider... providers) {
            DefaultServiceRegistry registry = new DefaultServiceRegistry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactoryTest.groovy

    class ClientSidePayloadClassLoaderFactoryTest extends Specification {
        def registry = new ClientSidePayloadClassLoaderFactory(Mock(PayloadClassLoaderFactory))
    
        def "creates ClassLoader for classpath"() {
            def url1 = new URL("http://localhost/file1.jar")
            def url2 = new URL("http://localhost/file2.jar")
    
            when:
            def cl = registry.getClassLoaderFor(new VisitableURLClassLoader.Spec("test", [url1, url2]), [null])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/NotMostRecentlyUsedDaemonExpirationStrategyTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server
    
    import org.gradle.launcher.daemon.registry.DaemonInfo
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus
    
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. operator/cmd/operator/server.go

    	}
    
    	log.Infof("Creating operator metrics exporter available at %s", metricsOptions.BindAddress)
    	registry := ctrlmetrics.Registry.(*prometheus.Registry)
    	wrapped := prometheus.WrapRegistererWithPrefix("istio_install_operator_", registry)
    
    	if _, err := monitoring.RegisterPrometheusExporter(wrapped, registry); err != nil {
    		log.Warnf("Error while building exporter: %v", err)
    	}
    
    	log.Info("Registering Components.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/storage/storage_test.go

    	"strings"
    	"testing"
    
    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/storage"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/storage/storagebackend/factory"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    	allocatorstore "k8s.io/kubernetes/pkg/registry/core/service/allocator/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_wrapper.cc

    PYBIND11_MODULE(tfr_wrapper, m) {
      m.def("verify", [](std::string input) {
        mlir::DialectRegistry registry;
        registry.insert<mlir::arith::ArithDialect, mlir::scf::SCFDialect,
                        mlir::TF::TensorFlowDialect, mlir::func::FuncDialect,
                        mlir::shape::ShapeDialect, mlir::TFR::TFRDialect>();
        mlir::MLIRContext ctx(registry);
        ctx.loadAllAvailableDialects();
    
        llvm::SourceMgr source_mgr = llvm::SourceMgr();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 13 06:54:12 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. 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)
Back to top