Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 537 for registry_ (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/generic"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/apiserver/pkg/server/options"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/util/webhook"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	skipPhases:
    //	- addon/kube-proxy
    //	---
    //	apiVersion: kubeadm.k8s.io/v1beta4
    //	kind: ClusterConfiguration
    //	etcd:
    //	  # one of local or external
    //	  local:
    //	    imageRepository: "registry.k8s.io"
    //	    imageTag: "3.2.24"
    //	    dataDir: "/var/lib/etcd"
    //	    extraArgs:
    //	      listen-client-urls: "http://10.100.0.1:2379"
    //	    serverCertSANs:
    //	    -  "ec2-10-100-0-1.compute-1.amazonaws.com"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

               "initializer functions will be removed after this pass.";
      }
    
      void runOnOperation() override;
    
     private:
      void getDependentDialects(DialectRegistry& registry) const override {
        registry
            .insert<TF::TensorFlowDialect, tf_executor::TensorFlowExecutorDialect,
                    tf_saved_model::TensorFlowSavedModelDialect>();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	// Warning: If this is enabled, ambient may break; use with caution.
    	DisableHBONESend StringBool `json:"DISABLE_HBONE_SEND,omitempty"`
    
    	// AutoRegister will enable auto registration of the connected endpoint to the service registry using the given WorkloadGroup name
    	AutoRegisterGroup string `json:"AUTO_REGISTER_GROUP,omitempty"`
    
    	// WorkloadEntry specifies the name of the WorkloadEntry this proxy corresponds to.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pkg/wasm/imagefetcher.go

    		return
    	}
    	wasmLog.Infof("fetching image %s from registry %s with tag %s", ref.Context().RepositoryStr(),
    		ref.Context().RegistryStr(), ref.Identifier())
    
    	// fallback to http based request, inspired by [helm](https://github.com/helm/helm/blob/12f1bc0acdeb675a8c50a78462ed3917fb7b2e37/pkg/registry/client.go#L594)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

    using tensorflow::tracing::TracingOperation;
    using tensorflow::tracing::TracingTensorHandle;
    
    namespace {
    
    void RegisterDialects(mlir::MLIRContext& ctx) {
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      ctx.appendDialectRegistry(registry);
      ctx.loadAllAvailableDialects();
    }
    
    Status ConvertDataTypeToTensor(tensorflow::DataType dtype, Builder builder,
                                   Type* type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. src/path/filepath/path_windows_test.go

    	// Check that system has "Volume level setting" set.
    	expected := "The registry state of NtfsDisable8dot3NameCreation is 2, the default (Volume level setting)"
    	if !strings.Contains(string(out), expected) {
    		// Windows 10 version of fsutil has different output message.
    		expectedWindow10 := "The registry state is: 2 (Per volume setting - the default)"
    		if !strings.Contains(string(out), expectedWindow10) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/issues0.go

    type LNumber float64
    func (LNumber) assertFunction() *LFunction
    type LFunction struct {
    	GFunction LGFunction
    }
    type LGFunction func(*LState)
    type LState struct {
    	reg *registry
    }
    type registry struct {
    	alloc *allocator
    }
    type allocator struct {
    	_ [int(preloadLimit)]int
    }
    
    // Test that we don't crash when type-checking composite literals
    // containing errors in the type.
    var issue27346
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top