Search Options

Results per page
Sort
Preferred Languages
Advance

Results 531 - 540 of 1,148 for Config (0.27 sec)

  1. src/test/java/jcifs/smb/MultiChannelManagerBasicTest.java

    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.config.BaseConfiguration;
    
    /**
     * Basic tests for MultiChannelManager to verify the createChannelTransport implementation.
     */
    public class MultiChannelManagerBasicTest {
    
        private MultiChannelManager multiChannelManager;
        private Configuration config;
    
        @BeforeEach
        void setUp() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ParameterUtil.java

        /** The client prefix. */
        protected static final String CLIENT_PREFIX = "client.";
    
        /** The config prefix. */
        protected static final String CONFIG_PREFIX = "config.";
    
        /** The field config prefix. */
        protected static final String FIELD_PREFIX = "field.config.";
    
        /**
         * Protected constructor.
         */
        protected ParameterUtil() {
            // nothing
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/AllTestsSuite.java

    import org.junit.platform.suite.api.SuiteDisplayName;
    
    /**
     * Test suite that runs all JCIFS tests
     */
    @Suite
    @SuiteDisplayName("JCIFS Complete Test Suite")
    @SelectPackages({ "jcifs.util", "jcifs.smb", "jcifs.config", "jcifs.internal.smb2", "jcifs.ntlmssp" })
    public class AllTestsSuite {
        // Test suite configuration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 433 bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

        val slot = 0
    
        val config = "--name=OpenSC\nlibrary=/Library/OpenSC/lib/opensc-pkcs11.so\nslot=$slot\n"
    
        // May fail with ProviderException with root cause like
        // sun.security.pkcs11.wrapper.PKCS11Exception: CKR_SLOT_ID_INVALID
        val pkcs11 = Security.getProvider("SunPKCS11").configure(config)
        Security.addProvider(pkcs11)
    
        val callbackHandler = ConsoleCallbackHandler
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

        private boolean directory;
        private boolean isExtended;
    
        /**
         * Constructs an NT Create AndX response.
         *
         * @param config the configuration
         */
        public SmbComNTCreateAndXResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Gets the file type.
         *
         * @return the fileType
         */
        public final int getFileType() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.opensearch.config.exbhv.BadWordBhv;
    import org.codelibs.fess.opensearch.config.exbhv.ElevateWordBhv;
    import org.codelibs.fess.opensearch.config.exentity.BadWord;
    import org.codelibs.fess.opensearch.config.exentity.ElevateWord;
    import org.codelibs.fess.opensearch.log.exbhv.SearchLogBhv;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java

        @BeforeEach
        public void setUp() {
            mocks = MockitoAnnotations.openMocks(this);
            when(context.getConfig()).thenReturn(config);
            when(config.isDirectoryNotificationsEnabled()).thenReturn(false); // Disable for unit tests
    
            directoryLeaseManager = new DirectoryLeaseManager(context, baseLeaseManager);
        }
    
        @AfterEach
        public void tearDown() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

    import org.codelibs.fess.app.pager.KeyMatchPager;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.config.cbean.KeyMatchCB;
    import org.codelibs.fess.opensearch.config.exbhv.KeyMatchBhv;
    import org.codelibs.fess.opensearch.config.exentity.KeyMatch;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java

     */
    package org.codelibs.fess.opensearch.config.exentity;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.config.bsentity.BsElevateWord;
    import org.codelibs.fess.opensearch.config.exbhv.ElevateWordToLabelBhv;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. ci/official/envs/nightly_upload

    TFCI_NIGHTLY_UPDATE_VERSION_ENABLE=1
    
    # 3. Push results to public build cache (unique cache for MacOS)
    if [[ $(uname -s) == "Darwin" ]]; then
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache_push"
    else
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache_push"
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Jun 17 20:45:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top