- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for McCann (0.25 sec)
-
guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java
*/ @Beta @GwtCompatible public enum PublicSuffixType { /** Public suffix that is provided by a private company, e.g. "blogspot.com" */ PRIVATE(':', ','), /** Public suffix that is backed by an ICANN-style domain name registry */ REGISTRY('!', '?'); /** The character used for an inner node in the trie encoding */ private final char innerNodeCode; /** The character used for a leaf node in the trie encoding */
Java - Registered: 2023-06-30 15:26 - Last Modified: 2020-12-10 15:48 - 2K bytes - Viewed (0) -
tensorflow/lite/g3doc/inference_with_metadata/task_library/text_searcher.md
by embedding the search query into a high-dimensional vector representing the semantic meaning of the query, followed by similarity search in a predefined, custom index using [ScaNN](https://github.com/google-research/google-research/tree/master/scann) (Scalable Nearest Neighbors). As opposed to text classification (e.g. [Bert natural language classifier](https://www.tensorflow.org/lite/inference_with_metadata/task_library/bert_nl_classifier)),
Plain Text - Registered: 2023-07-07 11:46 - Last Modified: 2022-08-02 18:02 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java
*/ @Beta @GwtCompatible public enum PublicSuffixType { /** Public suffix that is provided by a private company, e.g. "blogspot.com" */ PRIVATE(':', ','), /** Public suffix that is backed by an ICANN-style domain name registry */ REGISTRY('!', '?'); /** The character used for an inner node in the trie encoding */ private final char innerNodeCode; /** The character used for a leaf node in the trie encoding */
Java - Registered: 2023-09-22 12:43 - Last Modified: 2020-12-16 19:54 - 2K bytes - Viewed (0) -
tensorflow/lite/g3doc/inference_with_metadata/task_library/image_searcher.md
works by embedding the search query into a high-dimensional vector representing the semantic meaning of the query, followed by similarity search in a predefined, custom index using [ScaNN](https://github.com/google-research/google-research/tree/master/scann) (Scalable Nearest Neighbors). As opposed to [image classification](https://www.tensorflow.org/lite/inference_with_metadata/task_library/image_classifier),
Plain Text - Registered: 2023-07-07 11:46 - Last Modified: 2022-08-02 18:02 - 5.7K bytes - Viewed (0) -
tensorflow/lite/g3doc/models/modify/model_maker/text_searcher.ipynb
"\n", "* Configure ScaNN options. See [api doc](https://www.tensorflow.org/lite/api_docs/python/tflite_model_maker/searcher/ScaNNOptions) for more details.\n", "* Create the Searcher model from data and ScaNN options. You can see the [in-depth examination](https://ai.googleblog.com/2020/07/announcing-scann-efficient-vector.html) to learn more about the ScaNN algorithm." ] }, {
Plain Text - Registered: 2023-07-07 11:46 - Last Modified: 2022-05-25 19:12 - 25.7K bytes - Viewed (0) -
lib/time/update.bash
# Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # This script rebuilds the time zone files using files # downloaded from the ICANN/IANA distribution. # # To prepare an update for a new Go release, # consult https://www.iana.org/time-zones for the latest versions, # update CODE and DATA below, and then run # # ./update.bash -commit #
Shell Script - Registered: 2023-09-26 11:13 - Last Modified: 2023-05-03 20:14 - 1.8K bytes - Viewed (0) -
third_party/icu/data/LICENSE
# Database, the organization that is providing the IANA # Considerations defined in this RFC, under the memorandum of # understanding with the IETF, currently ICANN, may act in accordance # with all competent court orders. No ownership claims will be made # by ICANN or the IETF Trust on the database or the code. Any person # making a contribution to the database or code waives all rights to
Plain Text - Registered: 2023-07-07 11:46 - Last Modified: 2018-11-14 19:29 - 20.5K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* registry suffix is one under which Internet users can directly register names via a domain name * registrar, and have such registrations lawfully protected by internet-governing bodies such as * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code * google.com} and {@code foo.co.uk}. *
Java - Registered: 2023-09-22 12:43 - Last Modified: 2023-07-27 22:04 - 27.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InternetDomainName.java
* registry suffix is one under which Internet users can directly register names via a domain name * registrar, and have such registrations lawfully protected by internet-governing bodies such as * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code * google.com} and {@code foo.co.uk}. *
Java - Registered: 2023-08-11 12:43 - Last Modified: 2023-07-27 22:04 - 27.2K bytes - Viewed (0) -
src/net/lookup_test.go
if e, a := "fe80::1%lo0", addr; e != a { t.Errorf("wrong host: want %q got %q", e, a) } } } var lookupCNAMETests = []struct { name, cname string }{ {"www.iana.org", "icann.org."}, {"www.iana.org.", "icann.org."}, {"www.google.com", "google.com."}, {"google.com", "google.com."}, {"cname-to-txt.go4.org", "test-txt-record.go4.org."}, } func TestLookupCNAME(t *testing.T) {
Go - Registered: 2023-06-30 00:15 - Last Modified: 2023-05-24 22:38 - 36.7K bytes - Viewed (0)