Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for information (0.61 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Crawling Information */
        public static final String LABELS_crawling_info_title = "{labels.crawling_info_title}";
    
        /** The key of the message: Crawling Information */
        public static final String LABELS_crawling_info_title_confirm = "{labels.crawling_info_title_confirm}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.crawling_info_title=Crawling-Informationen
    labels.crawling_info_title_confirm=Crawling-Informationen
    labels.crawling_info_button_back=Zurück
    labels.crawling_info_button_delete=Löschen
    labels.crawling_info_configuration=Crawling-Infos
    labels.crawling_info_search=Suche
    labels.crawling_info_reset=Zurücksetzen
    labels.crawling_info_link_top=Crawling-Informationen
    labels.crawling_info_link_details=Details
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches: [ master ]
      pull_request:
        branches: [ master ]
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 11
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 12:23:46 GMT 2021
    - 574 bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    break;
                case SMB_COM_TREE_CONNECT_ANDX:
                    c = "SMB_COM_TREE_CONNECT_ANDX";
                    break;
                case SMB_COM_QUERY_INFORMATION:
                    c = "SMB_COM_QUERY_INFORMATION";
                    break;
                case SMB_COM_CHECK_DIRECTORY:
                    c = "SMB_COM_CHECK_DIRECTORY";
                    break;
                case SMB_COM_TRANSACTION:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComQueryInformation.java

     */
    
    package jcifs.smb1.smb1;
    
    class SmbComQueryInformation extends ServerMessageBlock {
    
        SmbComQueryInformation( String filename ) {
            path = filename;
            command = SMB_COM_QUERY_INFORMATION;
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformation.java

        /**
         * 
         * @param config
         * @param filename
         */
        public SmbComQueryInformation ( Configuration config, String filename ) {
            super(config, SMB_COM_QUERY_INFORMATION, filename);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java

    import jcifs.FileNotifyInformation;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    import jcifs.util.Strings;
    
    
    /**
     * File notification information
     * 
     * 
     * @author mbechler
     *
     */
    public class FileNotifyInformationImpl implements FileNotifyInformation, Decodable {
    
        int nextEntryOffset;
        int action;
        int fileNameLength;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 17 08:55:32 GMT 2018
    - 3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        /**
         * 
         */
        public static final byte SMB_COM_RENAME = (byte) 0x07;
    
        /**
         * 
         */
        public static final byte SMB_COM_QUERY_INFORMATION = (byte) 0x08;
    
        /**
         * 
         */
        public static final byte SMB_COM_SET_INFORMATION = (byte) 0x09;
    
        /**
         * 
         */
        public static final byte SMB_COM_WRITE = (byte) 0x0B;
    
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java

        /**
         * 
         * @param config
         * @param serverTimeZoneOffset
         */
        public SmbComQueryInformationResponse ( Configuration config, long serverTimeZoneOffset ) {
            super(config, SMB_COM_QUERY_INFORMATION);
            this.serverTimeZoneOffset = serverTimeZoneOffset;
        }
    
    
        @Override
        public int getAttributes () {
            return this.fileAttributes;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

        private int searchAttributes;
        private int flags;
        private int informationLevel;
        private int searchStorageType = 0;
        private String wildcard;
    
        // information levels
    
        static final int SMB_INFO_STANDARD                 = 1;
        static final int SMB_INFO_QUERY_EA_SIZE            = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST      = 3;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
Back to top