Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for registryX (0.28 sec)

  1. pkg/controlplane/apiserver/apis.go

    	authorizationrest "k8s.io/kubernetes/pkg/registry/authorization/rest"
    	certificatesrest "k8s.io/kubernetes/pkg/registry/certificates/rest"
    	coordinationrest "k8s.io/kubernetes/pkg/registry/coordination/rest"
    	corerest "k8s.io/kubernetes/pkg/registry/core/rest"
    	eventsrest "k8s.io/kubernetes/pkg/registry/events/rest"
    	flowcontrolrest "k8s.io/kubernetes/pkg/registry/flowcontrol/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tests/integration/ambient/registry_setup_test.go

    			[]byte(createDockerCredential(registryUser, registryPasswd, registry.Address()))),
    	}
    	if err := ctx.ConfigIstio().EvalFile(apps.Namespace.Name(), args, "testdata/registry-secret.yaml").
    		Apply(apply.CleanupConditionally); err != nil {
    		return err
    	}
    	return nil
    }
    
    func createDockerCredential(user, passwd, registry string) string {
    	credentials := `{
    	"auths":{
    		"%v":{
    			"username": "%v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

                class ToolchainPlugin implements Plugin<Project> {
                    ToolingModelBuilderRegistry registry
    
                    @Inject
                    ToolchainPlugin(ToolingModelBuilderRegistry registry) {
                        this.registry = registry
                    }
    
                    void apply(Project project) {
                        registry.register(new ToolchainBuilder())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    /**
     * Allows services to be added to a registry.
     */
    public interface ServiceRegistration {
        /**
         * Adds a service to this registry. The given object is closed when the associated registry is closed.
         * @param serviceType The type to make this service visible as.
         * @param serviceInstance The service implementation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

        def "behaves if the registry contains connectable port without daemon on the other end"() {
            when:
            buildSucceeds()
    
            then:
            //there should be one idle daemon
            def daemon = daemons.daemon
    
            when:
            // Ensure that the daemon has finished updating the registry. Killing it halfway through the registry update will leave the registry corrupted,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. hack/testdata/multi-resource-3.yaml

    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: POD-B
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: pod-c
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 560 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

    @ServiceScope(Scope.Global.class)
    public interface GradleUserHomeScopeServiceRegistry {
        /**
         * Locates the shared services to use for the given Gradle user home dir. The returned registry also includes global services.
         *
         * <p>The caller is responsible for releasing the registry when it is finished using it by calling {@link #release(ServiceRegistry)}.</p>
         */
        ServiceRegistry getServicesFor(File gradleUserHomeDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.cc

        const std::vector<std::string>& exported_model_signatures,
        const std::vector<std::string>& tag_names,
        absl::string_view input_arg_shapes_str) {
      mlir::DialectRegistry registry;
      RegisterAllTensorFlowDialects(registry);
      mlir::MLIRContext context(registry);
      context.loadAllAvailableDialects();
    
      auto module =
          TfToStablehlo(input_path, &context, exported_model_signatures, tag_names,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

                      mlir::tf_executor::TensorFlowExecutorDialect,
                      mlir::vhlo::VhloDialect>();
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::func::registerAllExtensions(registry);
      return failed(
          mlir::MlirOptMain(argc, argv, "StableHLO quant Pass Driver\n", registry));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/template_test.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"testing"
    )
    
    const (
    	validTmpl    = "image: {{ .ImageRepository }}/pause:ver"
    	validTmplOut = "image: registry.k8s.io/pause:ver"
    	doNothing    = "image: registry.k8s.io/pause:ver"
    	invalidTmpl1 = "{{ .baz }/d}"
    	invalidTmpl2 = "{{ !foobar }}"
    )
    
    func TestParseTemplate(t *testing.T) {
    	var tmplTests = []struct {
    		name        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top