Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 344 for registry2 (0.19 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KotlinFirReferenceContributor.kt

    import org.jetbrains.kotlin.resolve.references.ReferenceAccess
    
    internal class KotlinFirReferenceContributor : KotlinReferenceProviderContributor {
        override fun registerReferenceProviders(registrar: KotlinPsiReferenceRegistrar) {
            with(registrar) {
                registerProvider(factory = ::KaFirForLoopInReference)
                registerProvider(factory = ::KaFirInvokeFunctionReference)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cluster/images/etcd/cloudbuild.yaml

        entrypoint: 'bash'
        dir: ./cluster/images/etcd
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
          - PUSH_REGISTRY=gcr.io/$PROJECT_ID
          - IMAGE=gcr.io/$PROJECT_ID/etcd
          - BUILD_IMAGE=debian-build
          - TMPDIR=/workspace
          - HOME=/root  # for docker buildx
        args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.DarwinFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.LinuxFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.WindowsFileWatcherRegistryFactory;
    import org.gradle.internal.watch.vfs.BuildLifecycleAwareVirtualFileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/container_runtime.go

    */
    
    package options
    
    import (
    	"k8s.io/kubernetes/pkg/kubelet/config"
    )
    
    const (
    	// When these values are updated, also update test/utils/image/manifest.go
    	defaultPodSandboxImageName    = "registry.k8s.io/pause"
    	defaultPodSandboxImageVersion = "3.10"
    )
    
    var (
    	defaultPodSandboxImage = defaultPodSandboxImageName +
    		":" + defaultPodSandboxImageVersion
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. cmd/metrics.go

    			disk.DrivePath,
    		)
    	}
    }
    
    func metricsHandler() http.Handler {
    	registry := prometheus.NewRegistry()
    
    	logger.CriticalIf(GlobalContext, registry.Register(minioVersionInfo))
    
    	logger.CriticalIf(GlobalContext, registry.Register(newMinioCollector()))
    
    	gatherers := prometheus.Gatherers{
    		prometheus.DefaultGatherer,
    		registry,
    	}
    
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

        xla::CompileOnlyClient* client,
        XlaCompiler::CompilationResult* compilation_result) {
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::MLIRContext context(registry);
    
      mlir::OwningOpRef<mlir::ModuleOp> mlir_module;
      TF_RETURN_IF_ERROR(DeserializeMlirModule(mlir_computation.mlir_module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pilot/test/xds/fake.go

    	KubernetesVersion string
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    	KubernetesObjectsByCluster map[cluster.ID][]runtime.Object
    	// If provided, these objects will be used directly for the default cluster ("Kubernetes" or DefaultClusterName)
    	KubernetesObjects []runtime.Object
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

                def location = locationFor(it)
                new JvmToolchainMetadata(detector.getMetadata(location), location)
            }
    
            def registry = Stub(JavaInstallationRegistry)
            registry.toolchains() >> installations
            registry
        }
    
        private InstallationLocation locationFor(String version) {
            return InstallationLocation.userDefined(new File("/path/${version}").absoluteFile, "test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler_test.go

    			logger, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    			registry := frameworkruntime.Registry{}
    			cfgPls := &schedulerapi.Plugins{}
    			plugins := append(tt.plugins, &fakebindPlugin{}, &fakeQueueSortPlugin{})
    			for _, pl := range plugins {
    				tmpPl := pl
    				if err := registry.Register(pl.Name(), func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ToolchainsJvmServices.java

            }
    
            @Provides
            protected DefaultJvmToolchainManagement createToolchainManagement(ObjectFactory objectFactory, JavaToolchainResolverRegistry registry) {
                return objectFactory.newInstance(DefaultJvmToolchainManagement.class, registry);
            }
    
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top