Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for parseTrie (0.18 sec)

  1. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

       * 64k limit on string literal size. In-memory strings can be much larger (2G).
       */
      static ImmutableMap<String, PublicSuffixType> parseTrie(CharSequence... encodedChunks) {
        String encoded = DIRECT_JOINER.join(encodedChunks);
        return parseFullString(encoded);
      }
    
      @VisibleForTesting
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Oct 13 19:20:43 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

      private PublicSuffixPatterns() {}
    
      /** If a hostname is contained as a key in this map, it is a public suffix. */
      public static final ImmutableMap<String, PublicSuffixType> EXACT =
          TrieParser.parseTrie(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 21 21:04:43 GMT 2024
    - 72.4K bytes
    - Viewed (1)
  3. internal/event/target/amqp.go

    	EnvAMQPQueueLimit        = "MINIO_NOTIFY_AMQP_QUEUE_LIMIT"
    )
    
    // Validate AMQP arguments
    func (a *AMQPArgs) Validate() error {
    	if !a.Enable {
    		return nil
    	}
    	if _, err := amqp091.ParseURI(a.URL.String()); err != nil {
    		return err
    	}
    	if a.QueueDir != "" {
    		if !filepath.IsAbs(a.QueueDir) {
    			return errors.New("queueDir path should be absolute")
    		}
    	}
    
    	return nil
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 10K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// This function will be called by core TensorFlow to clean up all path
      /// arguments for all other methods in the filesystem API.
      ///
      /// DEFAULT IMPLEMENTATION: Uses `io::CleanPath` and `io::ParseURI`.
      char* (*translate_name)(const TF_Filesystem* filesystem, const char* uri);
    
      /// Finds all entries in the directory given by `path`.
      ///
      /// The returned entries are paths relative to `path`.
      ///
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top