Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 230 for presentation (0.73 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt

              FLAGS[prefixFlag] + '|'.toString() + FLAGS[frameFlag] + "|PADDED"
          }
        }
    
        for (i in FLAGS.indices) { // Fill in holes with binary representation.
          if (FLAGS[i] == null) FLAGS[i] = BINARY[i]
        }
      }
    
      /**
       * Returns a human-readable representation of HTTP/2 frame headers.
       *
       * The format is:
       *
       * ```
       * direction streamID length type flags
       * ```
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 5.7K 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. guava/src/com/google/common/math/PairedStats.java

        return value;
      }
    
      // Serialization helpers
    
      /** The size of byte array representation in bytes. */
      private static final int BYTES = Stats.BYTES * 2 + Double.SIZE / Byte.SIZE;
    
      /**
       * Gets a byte array representation of this instance.
       *
       * <p><b>Note:</b> No guarantees are made regarding stability of the representation between
       * versions.
       */
      public byte[] toByteArray() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

         * @return The username from SPNEGO authentication
         */
        @Override
        public String getUserId() {
            return username;
        }
    
        /**
         * Returns a string representation of this credential.
         *
         * @return A string representation containing the username in braces
         */
        @Override
        public String toString() {
            return "{" + username + "}";
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NbtAddress.java

            return this.macAddress;
        }
    
        /**
         * The hostname of this address. If the hostname is null the local machines
         * IP address is returned.
         *
         * @return the text representation of the hostname associated with this address
         */
        @Override
        public String getHostName() {
            /*
             * 2010 - We no longer try a Node Status to get the
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/MethodUtil.java

        }
    
        /**
         * Returns the string representation of the method signature.
         *
         * @param methodName
         *            The method name. Cannot be {@literal null} or empty
         * @param argTypes
         *            The argument types
         * @return The string representation of the method signature
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/ndr/NdrShort.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.dcerpc.ndr;
    
    /**
     * NDR representation of a short integer (2-byte signed integer).
     */
    public class NdrShort extends NdrObject {
    
        /**
         * The short integer value.
         */
        public int value;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrShort.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.dcerpc.ndr;
    
    /**
     * NDR representation of a short integer (2-byte signed integer).
     */
    public class NdrShort extends NdrObject {
    
        /**
         * The short integer value.
         */
        public int value;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  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