Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 815 for Config (0.42 sec)

  1. src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java

            private byte[] rawPayload;
            private Smb2SigningDigest digest;
    
            public TestServerMessageBlock2Response(Configuration config) {
                super(config);
            }
    
            public TestServerMessageBlock2Response(Configuration config, int command) {
                super(config, command);
            }
    
            @Override
            public ServerMessageBlock2 getNext() {
                return nextBlock;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/JobLogDbm.java

            return "org.codelibs.fess.opensearch.config.exentity.JobLog";
        }
    
        @Override
        public String getConditionBeanTypeName() {
            return "org.codelibs.fess.opensearch.config.cbean.JobLogCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.config.exbhv.JobLogBhv";
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/exentity/BadWord.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.exentity;
    
    import org.codelibs.fess.opensearch.config.bsentity.BsBadWord;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class BadWord extends BsBadWord {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameQueryRequest.java

     */
    
    package jcifs.netbios;
    
    import jcifs.Configuration;
    
    class NameQueryRequest extends NameServicePacket {
    
        NameQueryRequest(final Configuration config, final Name name) {
            super(config);
            this.questionName = name;
            this.questionType = NB;
        }
    
        @Override
        int writeBodyWireFormat(final byte[] dst, final int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig.ConfigName;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig.Param.Config;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig.Param.XPath;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWordToLabel.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.exentity;
    
    import org.codelibs.fess.opensearch.config.bsentity.BsElevateWordToLabel;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class ElevateWordToLabel extends BsElevateWordToLabel {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 913 bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java

        void testWithBoundaryValues() {
            // Test with minimum values
            trans2SetFileInfo = new Trans2SetFileInformation(config, 0, 0, 0L, 0L, 0L);
            assertNotNull(trans2SetFileInfo);
    
            // Test with maximum values
            trans2SetFileInfo = new Trans2SetFileInformation(config, 0xFFFF, Integer.MAX_VALUE, Long.MAX_VALUE, Long.MAX_VALUE, Long.MAX_VALUE);
            assertNotNull(trans2SetFileInfo);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/com/SmbComCloseTest.java

    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.config.PropertyConfiguration;
    import jcifs.internal.smb1.SMB1SigningDigest;
    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * Tests for the {@link SmbComClose} class.
     */
    public class SmbComCloseTest {
    
        private CIFSContext context;
        private PropertyConfiguration config;
    
        @BeforeEach
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComClose.java

        /**
         * Creates a new SMB1 close file request.
         *
         * @param config the CIFS configuration
         * @param fid the file identifier to close
         * @param lastWriteTime the last write time to set on the file
         */
        public SmbComClose(final Configuration config, final int fid, final long lastWriteTime) {
            super(config, SMB_COM_CLOSE);
            this.fid = fid;
            this.lastWriteTime = lastWriteTime;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipe.java

         *
         * @param config the SMB configuration
         * @param pipeName the name of the pipe to peek
         * @param fid the file identifier for the pipe
         */
        public TransPeekNamedPipe(final Configuration config, final String pipeName, final int fid) {
            super(config, SMB_COM_TRANSACTION, TRANS_PEEK_NAMED_PIPE);
            this.name = pipeName;
            this.fid = fid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top