Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 1,096 for Config (0.05 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

        // Test provider creation with various configs
        public void test_providerCreationVariousConfigs() {
            // Test with multiple different configs
            FessConfig[] configs = new FessConfig[5];
            FessTimeResourceProvider[] providers = new FessTimeResourceProvider[5];
    
            for (int i = 0; i < configs.length; i++) {
                final int value = i * 100;
                configs[i] = new FessConfig.SimpleImpl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         * Constructor for SMB2 message block with configuration.
         *
         * @param config the configuration object
         */
        protected ServerMessageBlock2(final Configuration config) {
            this.config = config;
        }
    
        /**
         * Constructor for SMB2 message block with configuration and command.
         *
         * @param config the configuration object
         * @param command the SMB2 command code
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  3. README.md

    ```java
    Properties props = new Properties();
    props.setProperty("jcifs.smb.client.domain", "MYDOMAIN");
    props.setProperty("jcifs.smb.client.useLeases", "true");
    
    Configuration config = new PropertyConfiguration(props);
    CIFSContext context = new BaseContext(config);
    ```
    
    ## Development
    
    ### Build Commands
    ```bash
    # Compile the source code
    mvn compile
    
    # Build JAR file
    mvn package
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        private int capabilities;
        private int maximalAccess;
    
        /**
         * Creates a new SMB2 tree connect response.
         *
         * @param config the CIFS configuration
         */
        public Smb2TreeConnectResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        private String suppliedWorkstation;
    
        static {
            DEFAULT_FLAGS = NTLMSSP_NEGOTIATE_NTLM
                    | (Config.getBoolean("jcifs.smb1.smb.client.useUnicode", true) ? NTLMSSP_NEGOTIATE_UNICODE : NTLMSSP_NEGOTIATE_OEM);
            DEFAULT_DOMAIN = Config.getProperty("jcifs.smb1.smb.client.domain", null);
            String defaultWorkstation = null;
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java

            // Use lenient() to avoid strict stubbing issues with Mockito
            lenient().when(tree.acquire()).thenReturn(tree);
            lenient().when(tree.getConfig()).thenReturn(config);
            lenient().when(config.getListCount()).thenReturn(10);
            lenient().when(config.getListSize()).thenReturn(4096);
    
            lenient().when(parent.getLocator()).thenReturn(locator);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

    import org.codelibs.fess.opensearch.config.cbean.ElevateWordCB;
    import org.codelibs.fess.opensearch.config.exbhv.ElevateWordBhv;
    import org.codelibs.fess.opensearch.config.exbhv.ElevateWordToLabelBhv;
    import org.codelibs.fess.opensearch.config.exbhv.LabelTypeBhv;
    import org.codelibs.fess.opensearch.config.exentity.ElevateWord;
    import org.codelibs.fess.opensearch.config.exentity.ElevateWordToLabel;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/exbhv/CrawlingInfoParamBhv.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.exbhv;
    
    import java.util.regex.Pattern;
    
    import org.codelibs.fess.opensearch.config.bsbhv.BsCrawlingInfoParamBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class CrawlingInfoParamBhv extends BsCrawlingInfoParamBhv {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exbhv/ElevateWordBhv.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.exbhv;
    
    import java.util.regex.Pattern;
    
    import org.codelibs.fess.opensearch.config.bsbhv.BsElevateWordBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class ElevateWordBhv extends BsElevateWordBhv {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/exbhv/KeyMatchBhv.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.exbhv;
    
    import java.util.regex.Pattern;
    
    import org.codelibs.fess.opensearch.config.bsbhv.BsKeyMatchBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class KeyMatchBhv extends BsKeyMatchBhv {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top