Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,514 for stort (0.55 sec)

  1. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

            if (ownerUOffset > 0) {
                bufferIndex = start + ownerUOffset;
                this.ownerUserSid = new SID(buffer, bufferIndex);
                bufferIndex += 8 + 4 * this.ownerUserSid.sub_authority_count;
            }
    
            if (ownerGOffset > 0) {
                bufferIndex = start + ownerGOffset;
                this.ownerGroupSid = new SID(buffer, bufferIndex);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/rpc.java

                // Default constructor
            }
    
            /** The length of the string in bytes */
            public short length;
            /** The maximum length of the string buffer in bytes */
            public short maximum_length;
            /** The Unicode character buffer */
            public short[] buffer;
    
            @Override
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            public String getSort() {
                return request.getParameter("sort");
            }
    
            @Override
            public int getStartPosition() {
                if (startPosition != -1) {
                    return startPosition;
                }
    
                final String start = request.getParameter("start");
                if (StringUtil.isBlank(start)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NetShareEnumResponse.java

            bufferIndex += 2;
            totalAvailableEntries = readInt2(buffer, bufferIndex);
            bufferIndex += 2;
    
            return bufferIndex - start;
        }
    
        @Override
        int readDataWireFormat(final byte[] buffer, int bufferIndex, final int len) {
            final int start = bufferIndex;
            SmbShareInfo e;
    
            useUnicode = false;
    
            results = new SmbShareInfo[numEntries];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

                    return f;
                }
                return Float.valueOf(0);
            } else if (type == short.class) {
                final Short s = ShortConversionUtil.toShort(o);
                if (s != null) {
                    return s;
                }
                return Short.valueOf((short) 0);
            } else if (type == boolean.class) {
                final Boolean b = BooleanConversionUtil.toBoolean(o);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/UnicodeString.java

            final int zt = zterm ? 1 : 0;
    
            length = maximum_length = (short) ((len + zt) * 2);
            buffer = new short[len + zt];
    
            int i;
            for (i = 0; i < len; i++) {
                buffer[i] = (short) str.charAt(i);
            }
            if (zterm) {
                buffer[i] = (short) 0;
            }
        }
    
        @Override
        public String toString() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return new DataInputStream(in).readUTF();
      }
    
      /**
       * Reads a {@code short} as specified by {@link DataInputStream#readShort()}, except using
       * little-endian byte order.
       *
       * @return the next two bytes of the input stream, interpreted as a {@code short} in little-endian
       *     byte order.
       * @throws IOException if an I/O error occurs.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:49:18 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
        @Override
        public int decode(final byte[] buffer, int bufferIndex, final int len) throws SMBProtocolDecodingException {
            final int start = bufferIndex;
            this.allocationSize = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
            this.endOfFile = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/DataStore.java

     */
    public interface DataStore {
    
        /**
         * Store the data.
         * @param config The data configuration.
         * @param callback The callback.
         * @param initParamMap The initial parameters.
         */
        void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap);
    
        /**
         * Stop the data store.
         */
        void stop();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ShortsMethodsForWeb.java

    public abstract class ShortsMethodsForWeb {
    
      @JsMethod(name = "Math.min", namespace = JsPackage.GLOBAL)
      public static native short min(short... array);
    
      @JsMethod(name = "Math.max", namespace = JsPackage.GLOBAL)
      public static native short max(short... array);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Oct 26 00:50:12 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top