Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 605 for Insecure (1.19 sec)

  1. src/cmd/go/internal/web/api.go

    )
    
    // SecurityMode specifies whether a function should make network
    // calls using insecure transports (eg, plain text HTTP).
    // The zero value is "secure".
    type SecurityMode int
    
    const (
    	SecureOnly      SecurityMode = iota // Reject plain HTTP; validate HTTPS.
    	DefaultSecurity                     // Allow plain HTTP if explicit; validate HTTPS.
    	Insecure                            // Allow plain HTTP if not explicitly HTTPS; skip HTTPS validation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. pkg/wasm/httpfetcher_test.go

    		name            string
    		handler         func(http.ResponseWriter, *http.Request, int)
    		insecure        bool
    		wantNumRequest  int
    		wantErrorSuffix string
    	}{
    		{
    			name: "download fail",
    			handler: func(w http.ResponseWriter, r *http.Request, num int) {
    				fmt.Fprintln(w, "wasm")
    			},
    			insecure:        false,
    			wantErrorSuffix: "x509: certificate signed by unknown authority",
    			wantNumRequest:  0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/testdata/xds_bootstrap.json

    {
      "xds_servers": [
        {
          "server_uri": "localhost:14057",
          "channel_creds": [{"type": "insecure"}],
          "server_features" : ["xds_v3"]
        }
      ],
      "node": {
        "id": "sidecar~127.0.1.1~echo.test~cluster.local",
        "metadata": {
          "INSTANCE_IPS": "127.0.1.1",
          "PILOT_SAN": [
            "istiod.istio-system.svc"
          ],
          "GENERATOR": "grpc",
          "NAMESPACE": "test"
        },
        "localisty": {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 08 18:48:42 UTC 2022
    - 961 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/deprecated_insecure_serving.go

    // HTTP does NOT include authentication or authorization.
    // You shouldn't be using this.  It makes sig-auth sad.
    type DeprecatedInsecureServingInfo struct {
    	// Listener is the secure server network listener.
    	Listener net.Listener
    	// optional server name for log messages
    	Name string
    }
    
    // Serve starts an insecure http server with the given handler. It fails only if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 27 15:58:45 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    }
    
    func NewSHA1SignatureDeprecatedChecker(counter *metrics.Counter) *sha1SignatureChecker {
    	return &sha1SignatureChecker{
    		counterRaiser: &counterRaiser{
    			counter: counter,
    			id:      "insecure-sha1",
    			reason:  "uses an insecure SHA-1 signature",
    		},
    	}
    }
    
    // CheckRoundTripError returns true when we're running w/o GODEBUG=x509sha1=1
    // and the client reports an InsecureAlgorithmError about a SHA1 signature
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/xds.go

    // limitations under the License.
    
    package forwarder
    
    import (
    	"context"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/credentials/xds"
    	xdsresolver "google.golang.org/grpc/xds"
    
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ protocol = &grpcProtocol{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 18:09:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/rest/metrics.go

    )
    
    const (
    	namespace = "kube_apiserver"
    	subsystem = "pod_logs"
    
    	usageEnforce     = "enforce_tls"
    	usageSkipAllowed = "skip_tls_allowed"
    )
    
    var (
    	// podLogsUsage counts and categorizes how the insecure backend skip TLS option is used and allowed.
    	podLogsUsage = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "insecure_backend_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 16:43:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pkg/test/echo/server/forwarder/grpc.go

    	return outBuffer.String(), nil
    }
    
    func newGRPCConnection(cfg *Config) (*grpc.ClientConn, error) {
    	var security grpc.DialOption
    	if cfg.secure {
    		security = grpc.WithTransportCredentials(credentials.NewTLS(cfg.tlsConfig))
    	} else {
    		security = grpc.WithTransportCredentials(insecure.NewCredentials())
    	}
    
    	opts := []grpc.DialOption{
    		grpc.WithAuthority(cfg.hostHeader),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 14 19:45:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. helm/minio/templates/_helper_create_bucket.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 }}
    
    # connectToMinio
    # Use a check-sleep-check loop to wait for MinIO service to be available
    connectToMinio() {
    	SCHEME=$1
    	ATTEMPTS=0
    	LIMIT=29 # Allow 30 attempts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. cni/pkg/install/testdata/kubeconfig-skip-tls

    apiVersion: v1
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: https://10.96.0.1:443
      name: local
    contexts:
    - context:
        cluster: local
        user: istio-cni
      name: istio-cni-context
    current-context: istio-cni-context
    kind: Config
    preferences: {}
    users:
    - name: istio-cni
      user:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 342 bytes
    - Viewed (0)
Back to top