Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 333 for representation (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java

                }
            }
            return urlFilterService;
        }
    
        /**
         * Returns a string representation of this object.
         * @return A string representation.
         */
        @Override
        public String toString() {
            return "UrlFilterImpl [urlPattern=" + urlPattern + ", includeFilteringPattern=" + includeFilteringPattern
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

        public String toString() {
            return "ProtwordsItem [id=" + id + ", inputs=" + input + ", newInputs=" + newInput + "]";
        }
    
        /**
         * Converts this item to a string representation for writing to file.
         * @return the string representation of this item
         */
        public String toLineString() {
            if (isUpdated()) {
                return StringUtils.join(newInput);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. compat/maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java

         *
         * @param content The String representation, may be empty or {@code null}.
         */
        public StringSource(CharSequence content) {
            this(content, null);
        }
    
        /**
         * Creates a new source backed by the specified string.
         *
         * @param content The String representation, may be empty or {@code null}.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 18:51:29 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils.go

    	ReplicationStatusInternal string                 // stringified representation of all replication activity
    	// VersionPurgeStatusInternal is internally in the format "arn1=PENDING;arn2=COMPLETED;"
    	VersionPurgeStatusInternal string                            // stringified representation of all version purge statuses
    	ReplicateDecisionStr       string                            // stringified representation of replication decision for each target
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 26K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

                    && Float.floatToIntBits(weight) == Float.floatToIntBits(other.weight);
        }
    
        /**
         * Returns a string representation of this object.
         * @return A string representation.
         */
        @Override
        public String toString() {
            return "RequestData [method=" + method + ", url=" + url + ", weight=" + weight + "]";
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/DocList.java

         */
        public void addProcessingTime(final long processingTime) {
            this.processingTime += processingTime;
        }
    
        /**
         * Returns a string representation of this DocList including metrics and content.
         *
         * @return a string representation including content size, processing time, and elements
         */
        @Override
        public String toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java

         * @param domain the domain to set
         */
        public void setDomain(final String domain) {
            this.domain = domain;
        }
    
        /**
         * Returns a string representation of this object.
         * @return A string representation.
         */
        @Override
        public String toString() {
            return "[" + domain + "] " + username + "@" + server + ":" + port;
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ExtractData.java

         * @param content the content to set
         */
        public void setContent(final String content) {
            this.content = content;
        }
    
        /**
         * Returns a string representation of this object.
         * @return A string representation.
         */
        @Override
        public String toString() {
            return "ExtractData [metadata=" + metadata + ", content=" + content + "]";
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/UrlEscapers.java

       *   <li>All other characters are converted into one or more bytes using UTF-8 encoding and each
       *       byte is then represented by the 3-character string "%XY", where "XY" is the two-digit,
       *       uppercase, hexadecimal representation of the byte value.
       * </ul>
       *
       * <p>This escaper is suitable for escaping parameter names and values even when <a
       * href="https://www.w3.org/TR/html401/appendix/notes.html#h-B.2.2">using the non-standard
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/com/SmbComCreateDirectoryTest.java

        }
    
        @Test
        void testToString() {
            // Test the string representation of the object
            String directoryName = "myDir";
            SmbComCreateDirectory smbCom = new SmbComCreateDirectory(mockConfig, directoryName);
            String actualString = smbCom.toString();
    
            // Check for key parts of the string representation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top