Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Representations (0.34 sec)

  1. cmd/object-handlers-common.go

    // if any present
    func canonicalizeETag(etag string) string {
    	return etagRegex.ReplaceAllString(etag, "$1")
    }
    
    // isETagEqual return true if the canonical representations of two ETag strings
    // are equal, false otherwise
    func isETagEqual(left, right string) bool {
    	return canonicalizeETag(left) == canonicalizeETag(right)
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 09 08:17:49 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

      public static Ordering<@Nullable Object> allEqual() {
        return AllEqualOrdering.INSTANCE;
      }
    
      /**
       * Returns an ordering that compares objects by the natural ordering of their string
       * representations as returned by {@code toString()}. It does not support null values.
       *
       * <p>The comparator is serializable.
       *
       * <p><b>Java 8+ users:</b> Use {@code Comparator.comparing(Object::toString)} instead.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 39.4K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    enumerations or code snippets that are not further specified. The character <code>…</code>
    (as opposed to the three characters <code>...</code>) is not a token of the Go
    language.
    </p>
    
    <h2 id="Source_code_representation">Source code representation</h2>
    
    <p>
    Source code is Unicode text encoded in
    <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
    canonicalized, so a single accented code point is distinct from the
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. internal/arn/arn.go

    const (
    	arnPrefixArn        = "arn"
    	arnPartitionMinio   = "minio"
    	arnServiceIAM       = "iam"
    	arnResourceTypeRole = "role"
    )
    
    // ARN - representation of resources based on AWS ARNs.
    type ARN struct {
    	Partition    string
    	Service      string
    	Region       string
    	ResourceType string
    	ResourceID   string
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 08:31:34 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. doc/go_spec.html

    thus requires at minimum that language version to build.
    For details, see the <a href="#Language_versions">linked section</a>
    in the <a href="#Appendix">appendix</a>.
    </p>
    
    <h2 id="Source_code_representation">Source code representation</h2>
    
    <p>
    Source code is Unicode text encoded in
    <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
    canonicalized, so a single accented code point is distinct from the
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelNormalizer.java

    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles normalization of a model. In this context, normalization is the process of producing a canonical
     * representation for models that physically look different but are semantically equivalent.
     *
     */
    public interface ModelNormalizer {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         */
        @Nonnull
        List<ModelProblem> getProblems();
    
        /**
         * Creates a human readable representation of these errors.
         */
        String toString();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelXmlFactory.java

        }
    
        /**
         * Simply converts the given content to an xml string.
         *
         * @param content the object to convert
         * @return the xml string representation
         * @throws XmlWriterException if an error occurs during the transformation
         * @see #fromXmlString(String)
         */
        public static String toXml(@Nonnull Model content) throws XmlWriterException {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Equivalence.java

        @Override
        public int hashCode() {
          return equivalence.hash(reference);
        }
    
        /**
         * Returns a string representation for this equivalence wrapper. The form of this string
         * representation is not specified.
         */
        @Override
        public String toString() {
          return equivalence + ".wrap(" + reference + ")";
        }
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Equivalence.java

        @Override
        public int hashCode() {
          return equivalence.hash(reference);
        }
    
        /**
         * Returns a string representation for this equivalence wrapper. The form of this string
         * representation is not specified.
         */
        @Override
        public String toString() {
          return equivalence + ".wrap(" + reference + ")";
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 01:41:50 GMT 2024
    - 14.1K bytes
    - Viewed (0)
Back to top