Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 311 for Configuration (0.19 sec)

  1. src/main/java/jcifs/Configuration.java

     * Implementors of this interface should extend {@link jcifs.config.BaseConfiguration} or
     * {@link jcifs.config.DelegatingConfiguration} to get forward compatibility.
     * 
     * @author mbechler
     *
     */
    public interface Configuration {
    
        /**
         * 
         * @return random source to use
         */
        SecureRandom getRandom ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.dfs.ttl</tt> (int, default 300)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #  Does it generate JavaConfig for DBFluteBeans? (not use XML configuration)
        #
        # @SpringOnly
        #; isDBFluteBeansGeneratedAsJavaConfig = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o dbfluteBeansPackageName (NotRequired - Default '../resources')
        #  The package name(output directory) of DBFlute DI configuration for Spring and Lucy.
        #
        # @SpringOnly
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 6.5K bytes
    - Viewed (0)
  3. pom.xml

    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-jxr-plugin</artifactId>
    				<configuration>
    					<docTitle>&lt;a href="https://fess.codelibs.org/" target="_blank"&gt;Enterprise Search Server: Fess Reference&lt;/a&gt;</docTitle>
    					<windowTitle>Open Source Enterprise Search: Fess Source Code Reference</windowTitle>
    				</configuration>
    			</plugin>
    			<plugin>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

    public interface FessEnv {
    
        /** The key of the configuration. e.g. warm */
        String lasta_di_SMART_DEPLOY_MODE = "lasta_di.smart.deploy.mode";
    
        /** The key of the configuration. e.g. true */
        String DEVELOPMENT_HERE = "development.here";
    
        /** The key of the configuration. e.g. Local Development */
        String ENVIRONMENT_TITLE = "environment.title";
    
        /** The key of the configuration. e.g. false */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ja.properties

    labels.searchlog_requested_time=時刻
    labels.searchlog_value=値
    labels.searchlog_count=件数
    labels.searchlog_configuration_details=ログ詳細
    labels.searchlog_configuration_link_top=検索ログ
    labels.searchlog_configuration_link_details=詳細
    labels.searchlog_configuration_button_back=戻る
    labels.searchlog_configuration_button_delete=削除
    labels.searchlog_size=サイズ
    labels.searchlog_queryid=Query ID
    labels.searchlog_usersessionid=User ID
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  6. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

         * @param config
         */
        public SmbComWriteAndX ( Configuration config ) {
            super(config, SMB_COM_WRITE_ANDX, null);
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param remaining
         * @param b
         * @param off
         * @param len
         * @param andx
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            super(config, command);
            this.andx = andx;
            if ( andx != null ) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
    
        protected AndXServerMessageBlock ( Configuration config ) {
            this(config, null);
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComWrite.java

    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     */
    public class SmbComWrite extends ServerMessageBlock {
    
        private int fid, count, offset, remaining, off;
        private byte[] b;
    
    
        /**
         * 
         * @param config
         */
        public SmbComWrite ( Configuration config ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbSession.java

        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close ();
    
    
        /**
         * @return the configuration used by this session
         */
        Configuration getConfig ();
    
    
        /**
         * 
         * @param type
         * @return session instance with the given type
         */
        <T extends SmbSession> T unwrap ( Class<T> type );
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComSetInformationResponse.java

     */
    
    package jcifs.internal.smb1.com;
    
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    
    
    /**
     * 
     * @author mbechler
     *
     */
    public class SmbComSetInformationResponse extends ServerMessageBlock {
    
        /**
         * 
         * @param config
         */
        public SmbComSetInformationResponse ( Configuration config ) {
            super(config);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
Back to top