Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ONION (0.06 sec)

  1. src/net/dnsclient_unix_test.go

    			continue
    		}
    	}
    }
    
    // Issue 13705: don't try to resolve onion addresses, etc
    func TestAvoidDNSName(t *testing.T) {
    	tests := []struct {
    		name  string
    		avoid bool
    	}{
    		{"foo.com", false},
    		{"foo.com.", false},
    
    		{"foo.onion.", true},
    		{"foo.onion", true},
    		{"foo.ONION", true},
    		{"foo.ONION.", true},
    
    		// But do resolve *.local address; Issue 16739
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    // use DNS. Currently this includes only .onion, per RFC 7686. See
    // golang.org/issue/13705. Does not cover .local names (RFC 6762),
    // see golang.org/issue/16739.
    func avoidDNS(name string) bool {
    	if name == "" {
    		return true
    	}
    	if name[len(name)-1] == '.' {
    		name = name[:len(name)-1]
    	}
    	return stringsHasSuffixFold(name, ".onion")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"oncoming_taxi":                        "\U0001f696",
    	"one":                                  "1\ufe0f\u20e3",
    	"one_piece_swimsuit":                   "\U0001fa71",
    	"onion":                                "\U0001f9c5",
    	"open_book":                            "\U0001f4d6",
    	"open_file_folder":                     "\U0001f4c2",
    	"open_hands":                           "\U0001f450",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    parliament.nz
    school.nz
    
    // om : https://en.wikipedia.org/wiki/.om
    om
    co.om
    com.om
    edu.om
    gov.om
    med.om
    museum.om
    net.om
    org.om
    pro.om
    
    // onion : https://tools.ietf.org/html/rfc7686
    onion
    
    // org : https://en.wikipedia.org/wiki/.org
    org
    
    // pa : http://www.nic.pa/
    // Some additional second level "domains" resolve directly as hostnames, such as
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    omniwe.site omotego.fukushima.jp omura.nagasaki.jp omuta.fukuoka.jp on-aptible.com on-the-web.tv on-web.fr on.ca onagawa.miyagi.jp onavstack.net oncilla.mythic-beasts.com ondigitalocean.app one onfabrica.com onflashdrive.app ong ong.br onga.fukuoka.jp onion onjuku.chiba.jp onl online online.museum online.th onna.okinawa.jp ono.fukui.jp ono.fukushima.jp ono.hyogo.jp onojo.fukuoka.jp onomichi.hiroshima.jp onporter.run onred.one onrender.com ontario.museum onthewifi.com onza.mythic-beasts.com ooguy.com ookuwa.nagano.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top