Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 537 for registry_ (0.23 sec)

  1. pkg/dns/server/name_table_test.go

    					"pod1.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"1.2.3.4"},
    						Registry:  "Kubernetes",
    						Shortname: "pod1.headless-svc",
    						Namespace: "testns",
    					},
    					"pod2.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod2.headless-svc",
    						Namespace: "testns",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/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)
  3. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            given:
            registry.attachRootBuild(rootBuild())
    
            expect:
            registry.addIncludedBuild(buildDefinition1)
            registry.addIncludedBuild(buildDefinition2)
            registry.addIncludedBuild(buildDefinition3)
    
            registry.includedBuilds as List == [includedBuild1, includedBuild2, includedBuild3]
    
            registry.getBuild(buildIdentifier(":b1")).is(includedBuild1)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/config_test.go

    			},
    			outputFormat: "text",
    			expectedOutput: `registry.k8s.io/kube-apiserver:{{.KubeVersion}}
    registry.k8s.io/kube-controller-manager:{{.KubeVersion}}
    registry.k8s.io/kube-scheduler:{{.KubeVersion}}
    registry.k8s.io/kube-proxy:{{.KubeVersion}}
    registry.k8s.io/coredns/coredns:{{.CoreDNSVersion}}
    registry.k8s.io/pause:{{.PauseVersion}}
    registry.k8s.io/etcd:{{.EtcdVersion}}
    `,
    		},
    		{
    			name: "JSON output",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pkg/registry/core/service/portallocator/controller/repair_test.go

    	clearMetrics()
    	fakeClient := fake.NewSimpleClientset()
    	registry := &mockRangeRegistry{
    		item: &api.RangeAllocation{Range: "100-200"},
    	}
    	pr, _ := net.ParsePortRange(registry.item.Range)
    	r := NewRepair(0, fakeClient.CoreV1(), fakeClient.EventsV1(), *pr, registry)
    
    	if err := r.runOnce(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

            p2.childProjects.empty
    
            root.childProjects.toList() == [p1, p2]
    
            registry.stateFor(root.componentIdentifier).is(root)
            registry.stateFor(p1.componentIdentifier).is(p1)
            registry.stateFor(p2.componentIdentifier).is(p2)
    
            def projects = registry.projectsFor(build.buildIdentifier)
            projects.rootProject.is(root)
            projects.getProject(Path.ROOT).is(root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/python/mlir.cc

                                            TF_Status* status) {
      RegisterPasses();
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::stablehlo::registerAllDialects(registry);
      registry.insert<mlir::shape::ShapeDialect>();
      mlir::MLIRContext context(registry);
      mlir::OwningOpRef<mlir::ModuleOp> module;
      {
        mlir::StatusScopedDiagnosticHandler diagnostic_handler(&context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    		t.Run(test.desc, func(t *testing.T) {
    			defer registry.Reset()
    			RecordEtcdRequest(test.operation, test.typ, test.err, test.startTime)
    			if err := testutil.GatherAndCompare(registry, strings.NewReader(test.want), testedMetricsName...); err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    func TestStorageSizeCollector(t *testing.T) {
    	registry := metrics.NewKubeRegistry()
    	registry.CustomMustRegister(storageMonitor)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistryTest.groovy

        def "creates registration with annotated parameters object"() {
            when:
            registry.registerTransform(TestTransform) {
                it.from.attribute(TEST_ATTRIBUTE, "FROM")
                it.to.attribute(TEST_ATTRIBUTE, "TO")
            }
    
            then:
            registry.registrations.size() == 1
            def registration = registry.registrations[0]
            registration.from.getAttribute(TEST_ATTRIBUTE) == "FROM"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                    }
                }
    
            expect:
            registry.node("s").state == ModelNode.State.Registered
    
            when:
            registry.atState("beans", ModelNode.State.SelfClosed)
    
            then:
            registry.node("s").state == ModelNode.State.Registered
            registry.get("beans.b1", Bean).value != "changed"
            registry.node("s").state == ModelNode.State.Registered
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top