Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,094 for configurator (0.07 sec)

  1. src/test/java/jcifs/context/CIFSContextWrapperTest.java

    import jcifs.smb.SmbNamedPipe;
    
    class CIFSContextWrapperTest {
    
        private CIFSContext mockDelegate;
        private Configuration mockConfiguration;
        private CIFSContextWrapper cifsContextWrapper;
    
        @BeforeEach
        void setUp() {
            mockDelegate = mock(CIFSContext.class);
            mockConfiguration = mock(Configuration.class);
            when(mockDelegate.getConfig()).thenReturn(mockConfiguration);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lock/Smb2LockResponse.java

     *
     */
    public class Smb2LockResponse extends ServerMessageBlock2Response {
    
        /**
         * Constructs an SMB2 lock response with the given configuration.
         *
         * @param config the configuration for this response
         */
        public Smb2LockResponse(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
    - 2.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

        //                                            Entry Page
        //                                            ----------
        /**
         * Displays the form for creating a new duplicate host configuration.
         *
         * @return HTML response for the duplicate host creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

      <expressions>
        <expression>
          <syntax>settings.offline</syntax>
          <configuration>
            <![CDATA[
        <offline>true</offline>
        ]]></configuration>
          <description>
            <![CDATA[
          Flags the system as offline, to prevent accessing the network to resolve artifacts or execute plugins.
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/rdma/RdmaProviderFactory.java

                break;
            }
    
            return null;
        }
    
        /**
         * Get RDMA provider based on configuration
         *
         * @param config the configuration to read provider preference from
         * @return RDMA provider instance, or null if none available
         */
        public static RdmaProvider getProvider(Configuration config) {
            String preference = config.getRdmaProvider();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

        private final byte expectInfoClass;
        private Decodable info;
    
        /**
         * Constructs a SMB2 query info response with the specified configuration and expected information types
         *
         * @param config
         *            the configuration to use for this response
         * @param expectInfoType
         *            the expected information type in the response
         * @param expectInfoClass
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.crawler_configuration=Configuration générale
    labels.crawler_title_edit=Configuration générale
    labels.schedule=Planification
    labels.enabled=Activé
    labels.day_for_cleanup=Supprimer les anciens documents
    labels.day=jours
    labels.crawl_button_update=Mettre à jour
    labels.none=Aucun
    labels.crawling_thread_count=Configuration du robot d'exploration simultané
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * Stores (inserts or updates) a data configuration.
         *
         * <p>This method encrypts sensitive handler parameters before storing
         * and immediately refreshes the index to ensure the change is visible.
         * If the configuration already exists (based on ID), it will be updated;
         * otherwise, a new configuration will be created.</p>
         *
         * @param dataConfig the data configuration to store
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/config/BaseConfiguration.java

    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.ResolverType;
    import jcifs.SmbConstants;
    
    /**
     * Base implementation of CIFS configuration providing default settings and behavior.
     * Serves as the foundation for configuration implementations in the jCIFS library.
     *
     * @author mbechler
     */
    public class BaseConfiguration implements Configuration {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java

         *
         * @param config the configuration to use
         * @param filename the DFS path to get referrals for
         */
        public Trans2GetDfsReferral(final Configuration config, final String filename) {
            this(config, filename, 3);
        }
    
        /**
         * Constructs a Trans2GetDfsReferral request with specified referral level.
         *
         * @param config the configuration to use
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top