Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 1,857 for constructs (0.05 sec)

  1. src/main/java/jcifs/dcerpc/UUID.java

        }
    
        private static byte B(final int i) {
            return (byte) (i & 0xFF);
        }
    
        private static short S(final int i) {
            return (short) (i & 0xFFFF);
        }
    
        /**
         * Constructs a UUID from an existing rpc.uuid_t object
         *
         * @param uuid
         *            wrapped uuid object to copy values from
         */
        public UUID(final rpc.uuid_t uuid) {
            this.time_low = uuid.time_low;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchCrawlerConfig.java

     * for the queue, data, and filter indices used by the crawler.
     */
    public class OpenSearchCrawlerConfig {
        /**
         * Constructs a new OpenSearchCrawlerConfig.
         */
        public OpenSearchCrawlerConfig() {
            // Default constructor
        }
    
        /**
         * Queue index name.
         */
        protected String queueIndex = ".crawler.queue";
    
        /**
         * Data index name.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java

        private static final Logger log = LoggerFactory.getLogger(TransCallNamedPipe.class);
    
        private final byte[] pipeData;
        private final int pipeDataOff, pipeDataLen;
    
        /**
         * Constructs a TransCallNamedPipe request to write data to a named pipe.
         *
         * @param config the SMB configuration
         * @param pipeName the name of the pipe to call
         * @param data the data buffer to write to the pipe
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java

        private static final Logger log = LoggerFactory.getLogger(TransTransactNamedPipe.class);
    
        private final byte[] pipeData;
        private final int pipeFid, pipeDataOff, pipeDataLen;
    
        /**
         * Constructs a transaction request for a named pipe operation.
         *
         * @param config the configuration to use
         * @param fid the file ID of the named pipe
         * @param data the data buffer to send
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java

        /** The CIFS context for NTLM authentication. */
        protected BaseContext cifsContext;
    
        /**
         * Constructs a JcifsEngine with the specified properties.
         *
         * @param props the properties for configuring the CIFS context
         * @throws CrawlingAccessException if an error occurs during initialization
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NbtException.java

                }
                break;
            default:
                result.append("unknown error class: ").append(errorClass);
            }
            return result.toString();
        }
    
        /**
         * Constructs an NbtException with the specified error class and code.
         *
         * @param errorClass the NetBIOS error class
         * @param errorCode the NetBIOS error code
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/stream/StreamUtil.java

         *
         * @param <T> the type of elements in the stream
         */
        public static class StreamOf<T> {
    
            private final Supplier<Stream<T>> supplier;
    
            /**
             * Constructs a new {@link StreamOf} instance with the given supplier.
             *
             * @param supplier the supplier of the stream
             */
            public StreamOf(final Supplier<Stream<T>> supplier) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

        private static final String STEMMER_OVERRIDE = "stemmeroverride";
    
        /** The list of stemmer override items loaded from the dictionary file. */
        List<StemmerOverrideItem> stemmerOverrideItemList;
    
        /**
         * Constructs a new stemmer override file.
         *
         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java

        /** Helper for managing access result data in memory */
        @Resource
        protected MemoryDataHelper dataHelper;
    
        /**
         * Constructs a new DataServiceImpl.
         */
        public DataServiceImpl() {
            // Default constructor
        }
    
        /**
         * Stores an access result in the data store.
         *
         * @param accessResult the access result to store
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ldap/LdapUser.java

        protected Hashtable<String, String> env;
    
        /** The name of the user. */
        protected String name;
    
        /** The permissions of the user. */
        protected String[] permissions = null;
    
        /**
         * Constructs a new LDAP user.
         *
         * @param env The environment for LDAP connection.
         * @param name The name of the user.
         */
        public LdapUser(final Hashtable<String, String> env, final String name) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top