Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 605 for Insecure (1.18 sec)

  1. pkg/kubelet/client/kubelet_client.go

    	GetConnectionInfo(ctx context.Context, nodeName types.NodeName) (*ConnectionInfo, error)
    }
    
    // MakeTransport creates a secure RoundTripper for HTTP Transport.
    func MakeTransport(config *KubeletClientConfig) (http.RoundTripper, error) {
    	return makeTransport(config, false)
    }
    
    // MakeInsecureTransport creates an insecure RoundTripper for HTTP Transport.
    func MakeInsecureTransport(config *KubeletClientConfig) (http.RoundTripper, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. istioctl/pkg/config/config.go

    	"cert-dir":            env.Register("ISTIOCTL_CERT_DIR", "", "The istioctl --cert-dir override"),
    	"insecure":            env.Register("ISTIOCTL_INSECURE", false, "The istioctl --insecure override"),
    	"prefer-experimental": env.Register("ISTIOCTL_PREFER_EXPERIMENTAL", false, "The istioctl should use experimental subcommand variants"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. helm/minio/templates/_helper_create_svcacct.txt

    #!/bin/sh
    set -e ; # Have script exit in the event of a failed command.
    
    {{- if .Values.configPathmc }}
    MC_CONFIG_DIR="{{ .Values.configPathmc }}"
    MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}"
    {{- else }}
    MC="/usr/bin/mc --insecure"
    {{- end }}
    
    # AccessKey and secretkey credentials file are added to prevent shell execution errors caused by special characters.
    # Special characters for example : ',",<,>,{,}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:20:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         * <p>
         * For security purposes this intentionally requires a user to opt-in to using insecure protocols on case by case basis.
         * <p>
         * Gradle intentionally does not offer a global system/gradle property that allows a universal disable of this check.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. helm/minio/templates/_helper_create_user.txt

    #!/bin/sh
    set -e ; # Have script exit in the event of a failed command.
    
    {{- if .Values.configPathmc }}
    MC_CONFIG_DIR="{{ .Values.configPathmc }}"
    MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}"
    {{- else }}
    MC="/usr/bin/mc --insecure"
    {{- end }}
    
    # AccessKey and secretkey credentials file are added to prevent shell execution errors caused by special characters.
    # Special characters for example : ',",<,>,{,}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 12 23:43:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactory.java

                    () -> {
                        throw new InsecureProtocolException(
                            "Using insecure protocols with remote build cache, without explicit opt-in, is unsupported.",
                            "Switch remote build cache to a secure protocol (like HTTPS) or allow insecure protocols.",
                            Documentation.dslReference(HttpBuildCache.class, "allowInsecureProtocol").getConsultDocumentationMessage()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. samples/extauthz/cmd/extauthz/main_test.go

    	authv3 "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/credentials/insecure"
    )
    
    func TestExtAuthz(t *testing.T) {
    	server := NewExtAuthzServer()
    	// Start the test server on random port.
    	go server.run("localhost:0", "localhost:0")
    
    	// Prepare the HTTP request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service.go

    // Package kmsv2 transforms values for storage at rest using a Envelope provider
    package kmsv2
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"time"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics"
    	"k8s.io/klog/v2"
    	kmsapi "k8s.io/kms/apis/v2"
    	kmsservice "k8s.io/kms/pkg/service"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:18:16 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. pkg/istio-agent/testdata/grpc-bootstrap.json

    {
      "xds_servers": [
        {
          "server_uri": "unix:///etc/istio/XDS",
          "channel_creds": [
            {
              "type": "insecure"
            }
          ],
          "server_features": [
            "xds_v3"
          ]
        }
      ],
      "node": {
        "id": "sidecar~127.0.0.1~pod1.fake-namespace~fake-namespace.svc.cluster.local",
        "metadata": {
          "GENERATOR": "grpc",
          "INSTANCE_IPS": "127.0.0.1",
          "ISTIO_VERSION": "version",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  10. pilot/pkg/grpc/grpc.go

    package grpc
    
    import (
    	"io"
    	"math"
    	"strings"
    
    	middleware "github.com/grpc-ecosystem/go-grpc-middleware"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/keepalive"
    	"google.golang.org/grpc/status"
    
    	"istio.io/istio/pilot/pkg/features"
    	istiokeepalive "istio.io/istio/pkg/keepalive"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top