Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,201 for registry_ (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics_test.go

    	registry := testutil.NewFakeKubeRegistry("1.30.0")
    	registry.MustRegister(encryptionConfigAutomaticReloadsTotal)
    	registry.MustRegister(deprecatedEncryptionConfigAutomaticReloadFailureTotal)
    	registry.MustRegister(deprecatedEncryptionConfigAutomaticReloadSuccessTotal)
    	registry.MustRegister(encryptionConfigAutomaticReloadLastTimestampSeconds)
    
    	t.Cleanup(func() { registry.Reset() })
    
    	return registry
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistrySpec.groovy

        def converter = converter("maven")
        def registry = new ProjectLayoutSetupRegistry(defaultType, converter, Mock(TemplateOperationFactory))
    
        def "can add multiple descriptors"() {
            when:
            registry.add(generator("desc1"))
            registry.add(generator("desc2"))
            registry.add(generator("desc3"))
    
            then:
            registry.get("desc1") != null
            registry.get("desc2") != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/aggregate/controller.go

    func (c *Controller) AddRegistryAndRun(registry serviceregistry.Instance, stop <-chan struct{}) {
    	if stop == nil {
    		log.Warnf("nil stop channel passed to AddRegistryAndRun for registry %s/%s", registry.Provider(), registry.Cluster())
    	}
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	c.addRegistry(registry, stop)
    	if c.running {
    		go registry.Run(stop)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            artifactName2.type >> "zip"
    
            registry.create().create("jar").attributes.attribute(Attribute.of("custom", String), "123")
            registry.create().create("zip").attributes.attribute(Attribute.of("custom", String), "234")
            registry.defaultArtifactAttributes.attribute(Attribute.of("custom-default", String), "123")
    
            expect:
            registry.mapAttributesFor(attrs, [artifact1, artifact2]) == attrsPlusFormat
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/register_common_dialects.cc

    namespace mlir {
    
    void RegisterCommonToolingDialects(mlir::DialectRegistry& registry) {
      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::registerAllDialects(registry);
      mlir::registerAllExtensions(registry);
      mlir::stablehlo::registerAllDialects(registry);
    
      registry.insert<mlir::TFL::TensorFlowLiteDialect>();
      registry.insert<mlir::kernel_gen::tf_framework::TFFrameworkDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:45:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsUtils.java

            return registry.find(path, clazz);
        }
    
        @Nullable
        private static <T> T modelElement(ModelRegistry registry, String path, ModelType<T> modelType) {
            return registry.find(path, modelType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

        def loggerFactory = new RecordingProgressLoggerFactory()
        def logger = Mock(Logger)
    
        def "registry keeps track of initial installations"() {
            def jdk8 = createJdkInstallation("8")
            when:
            def registry = createRegistry([jdk8])
            def installations = registry.listInstallations()
    
            then:
            installations.size() == 1
            installations[0].location == jdk8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      - names:
        - registry.k8s.io/prometheus-to-sd@sha256:6c0c742475363d537ff059136e5d5e4ab1f512ee0fd9b7ca42ea48bc309d1662
        - registry.k8s.io/prometheus-to-sd:v0.3.1
        sizeBytes: 88077694
      - names:
        - registry.k8s.io/fluentd-gcp-scaler@sha256:a5ace7506d393c4ed65eb2cbb6312c64ab357fcea16dff76b9055bc6e498e5ff
        - registry.k8s.io/fluentd-gcp-scaler:0.5.1
        sizeBytes: 86637208
      - names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            DefaultSerializerRegistry registry = new DefaultSerializerRegistry();
    
            // Lifecycle messages
            registry.register(Build.class, new BuildSerializer(buildActionSerializer));
            registry.register(Cancel.class, new CancelSerializer());
            registry.register(DaemonUnavailable.class, new DaemonUnavailableSerializer());
            registry.register(BuildStarted.class, new BuildStartedSerializer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. build/dependencies.yaml

          match: registry.k8s.io\/pause:\d+\.\d+
        - path: staging/src/k8s.io/kubectl/testdata/set/namespaced-resource.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/cmd/core.sh
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/multi-resource-yaml.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/namespaced-resource.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top