Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ccTLD (0.03 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    }
    
    var errNoTLD = errors.New("language: region is not a valid ccTLD")
    
    // TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
    // In all other cases it returns either the region itself or an error.
    //
    // This method may return an error for a region for which there exists a
    // canonical form with a ccTLD. To get that ccTLD canonicalize r first. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/language.go

    	return r.regionID.Contains(c.regionID)
    }
    
    // TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
    // In all other cases it returns either the region itself or an error.
    //
    // This method may return an error for a region for which there exists a
    // canonical form with a ccTLD. To get that ccTLD canonicalize r first. The
    // region will already be canonicalized it was obtained from a Tag that was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    		return m[i].From >= uint16(r)
    	})
    	if k < len(m) && m[k].From == uint16(r) {
    		return Region(m[k].To)
    	}
    	return 0
    }
    
    const (
    	iso3166UserAssigned = 1 << iota
    	ccTLD
    	bcp47Region
    )
    
    func (r Region) typ() byte {
    	return regionTypes[r]
    }
    
    // String returns the BCP 47 representation for the region.
    // It returns "ZZ" for an unspecified region.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    tm.ro
    www.ro
    
    // rs : https://www.rnids.rs/en/domains/national-domains
    rs
    ac.rs
    co.rs
    edu.rs
    gov.rs
    in.rs
    org.rs
    
    // ru : https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
    // Submitted by George Georgievsky <gug@cctld.ru>
    ru
    
    // rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
    rw
    ac.rw
    co.rw
    coop.rw
    gov.rw
    mil.rw
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top