Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for knownHosts (0.11 sec)

  1. pilot/pkg/model/gateway.go

    func CheckDuplicates(hosts []string, bind string, knownHosts map[string]string) []string {
    	var duplicates []string
    	for _, h := range hosts {
    		if existingBind, ok := knownHosts[h]; ok && bind == existingBind {
    			duplicates = append(duplicates, h)
    		}
    	}
    	// No duplicates found, so we can mark all of these hosts as known
    	if len(duplicates) == 0 {
    		for _, h := range hosts {
    			knownHosts[h] = bind
    		}
    	}
    	return duplicates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	// add a few known hostnames
    	knownHosts := []string{"istiod", "istiod-remote", "istio-pilot"}
    	// In some conditions, pilot address for sds is different from other xds,
    	// like multi-cluster primary-remote mode with revision.
    	if args.Revision != "" && args.Revision != "default" {
    		knownHosts = append(knownHosts, "istiod"+"-"+args.Revision)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_svn.txt

    [short] skip
    [!exec:svn] skip
    
    # 'go mod download' will fall back to svn+ssh once svn fails over protocols like https.
    # If vcs-test.golang.org isn't in the user's known_hosts file, this will result
    # in an ssh prompt, which will stop 'go test' entirely
    #
    # Unfortunately, there isn't a way to globally disable host checking for ssh,
    # without modifying the real system's or user's configs. Changing $HOME won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top