Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for ServerName (0.21 sec)

  1. pkg/test/framework/components/echo/calloptions.go

    	Cert, Key, CaCert string
    
    	// Use the custom certificates file to make the call.
    	CertFile, KeyFile, CaCertFile string
    
    	// Skip verify peer's certificate.
    	InsecureSkipVerify bool
    
    	Alpn       []string
    	ServerName string
    }
    
    type HBONE struct {
    	Address string
    	Headers http.Header
    	// If non-empty, make the request with the corresponding cert and key.
    	Cert string
    	Key  string
    	// If non-empty, verify the server CA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	populateAndPublish(resourceMetricsGroups, func(m MetricV2) bool {
    		if m.VariableLabels == nil {
    			m.VariableLabels = make(map[string]string, 1)
    		}
    		m.VariableLabels[serverName] = globalLocalNodeName
    		res = append(res, &m)
    		return true
    	})
    	return aoMetricsGroup.NewWith(res), nil
    }
    
    // GetPeerMetrics gets the metrics to be federated across peers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    			SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    				Subject: proto.BoolTrue,
    				Uri:     true,
    				Dns:     true,
    			},
    			ServerName:                 ph.ServerName,
    			ServerHeaderTransformation: ph.ServerHeaderTransformation,
    			GenerateRequestId:          ph.GenerateRequestID,
    			Proxy_100Continue:          features.Enable100ContinueHeaders,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/spiffe/spiffe_test.go

    			}
    			client := &http.Client{
    				Timeout: time.Second,
    				Transport: &http.Transport{
    					TLSClientConfig: &tls.Config{
    						RootCAs:               verifier.GetGeneralCertPool(),
    						ServerName:            "foo.domain.com/ns/foo/sa/default",
    						VerifyPeerCertificate: verifier.VerifyPeerCert,
    						MinVersion:            tls.VersionTLS12,
    					},
    				},
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. src/syscall/types_windows.go

    	Size            uint32
    	Flags           uint32
    	ExtraPolicyPara Pointer
    }
    
    type SSLExtraCertChainPolicyPara struct {
    	Size       uint32
    	AuthType   uint32
    	Checks     uint32
    	ServerName *uint16
    }
    
    type CertChainPolicyStatus struct {
    	Size              uint32
    	Error             uint32
    	ChainIndex        uint32
    	ElementIndex      uint32
    	ExtraPolicyStatus Pointer
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    //sys	NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
    //sys	NetApiBufferFree(buf *byte) (neterr error) = netapi32.NetApiBufferFree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/kubeinject.go

    				return nil, err
    			}
    			address = fmt.Sprintf("https://%s%s", f.Address(), *cc.Service.Path)
    			defer func() {
    				f.Close()
    				f.WaitForStop()
    			}()
    		}
    		tlsClientConfig.ServerName = fmt.Sprintf("%s.%s.%s", cc.Service.Name, cc.Service.Namespace, "svc")
    	} else if isMCPAddr(address) {
    		var err error
    		client.Transport, err = mcpTransport(context.TODO(), client.Transport)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. pkg/security/security.go

    // (as source of truth)
    type Options struct {
    	// CAEndpoint is the CA endpoint to which node agent sends CSR request.
    	CAEndpoint string
    
    	// CAEndpointSAN overrides the ServerName extracted from CAEndpoint.
    	CAEndpointSAN string
    
    	// The CA provider name.
    	CAProviderName string
    
    	// TrustDomain corresponds to the trust root of a system.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway.go

    	}
    
    	httpConnManager := &hcm.HttpConnectionManager{
    		XffNumTrustedHops: xffNumTrustedHops,
    		// Forward client cert if connection is mTLS
    		ForwardClientCertDetails:   forwardClientCertDetails,
    		ServerName:                 ph.ServerName,
    		ServerHeaderTransformation: ph.ServerHeaderTransformation,
    		GenerateRequestId:          ph.GenerateRequestID,
    		HttpProtocolOptions:        httpProtoOpts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_windows.go

    	if r0 != 0 {
    		neterr = Errno(r0)
    	}
    	return
    }
    
    func NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) {
    	r0, _, _ := Syscall6(procNetUserGetInfo.Addr(), 4, uintptr(unsafe.Pointer(serverName)), uintptr(unsafe.Pointer(userName)), uintptr(level), uintptr(unsafe.Pointer(buf)), 0, 0)
    	if r0 != 0 {
    		neterr = Errno(r0)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
Back to top