Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Allain (0.2 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                        }
                        else if ( tc.getConfig().isDisablePlainTextPasswords() ) {
                            throw new RuntimeException("Plain text passwords are disabled");
                        }
                        else {
                            // plain text
                            String password = a.getPassword();
                            this.lmHash = new byte[ ( password.length() + 1 ) * 2];
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/ne.css

            width: 300px;
            height: 50px;
            padding: 2px;
            font-family: Verdana, sans-serif;
            font-size: 10pt;
            color: #000000;
            text-decoration: none;
        }
        a.plain {
            display: inline;
            float: none;
            width: auto;
            height: auto;
        }
        a.sort {
            display: block;
            float: left;
            width: 100px;
            height: 15px;
    CSS
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/BaseApiManager.java

        protected void write(final String text, final String contentType, final String encoding) {
            final StringBuilder buf = new StringBuilder(50);
            if (contentType == null) {
                buf.append("text/plain");
            } else {
                buf.append(contentType);
            }
            buf.append("; charset=");
            final String enc;
            if (encoding == null) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. true */
        String RESPONSE_HIGHLIGHT_content_title_ENABLED = "response.highlight.content_title.enabled";
    
        /** The key of the configuration. e.g. application/pdf,text/plain */
        String RESPONSE_INLINE_MIMETYPES = "response.inline.mimetypes";
    
        /** The key of the configuration. e.g. fess.search */
        String INDEX_DOCUMENT_SEARCH_INDEX = "index.document.search.index";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/main/resources/fess_indices/fess/id/stopwords.txt

    sedikit
    sedikitnya
    segala
    segalanya
    segera
    sesegera
    sejak
    sejenak
    sekali
    sekalian
    sekalipun
    sesekali
    sekaligus
    sekarang
    sekarang
    sekitar
    sekitarnya
    sela
    selain
    selalu
    seluruh
    seluruhnya
    semakin
    sementara
    sempat
    semua
    semuanya
    sendiri
    sendirinya
    seolah
    seperti
    sepertinya
    sering
    seringnya
    serta
    siapa
    siapakah
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 2.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess.json

    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/adminlte.min.css.map

    #{$input-border-width});\n  padding-bottom: calc(#{$input-padding-y-sm} + #{$input-border-width});\n  @include font-size($input-font-size-sm);\n  line-height: $input-line-height-sm;\n}\n\n\n// Readonly controls as plain text\n//\n// Apply class to a readonly input to make it appear like regular plain\n// text (without any border, background color, focus indicator)\n\n.form-control-plaintext {\n  display: block;\n  width: 100%;\n  padding-top: $input-padding-y;\n  padding-bottom: $input-padding-y;\n  margin-bottom:...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 2M bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("<pre class=\"prettyprint\"></pre>", value);
    
            code = "aaa";
            value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code);
            assertEquals("<pre class=\"prettyprint\">aaa</pre>", value);
    
            code = "aaa\nbbb";
            value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/documentMap.dfprop

        #  The output directory mainly for SchemaHtml and DataXlsTemplate.
        #  Basically you don't need this.
        #  It is considered of value that it always exists at same plain.
        #
        #; documentOutputDirectory = ./output/doc
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o aliasDelimiterInDbComment: (NotRequired - Default '')
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                    bufferIndex += ((AndXServerMessageBlock)andx).readAndXWireFormat(
                                                    buffer, bufferIndex );
                } else {
    
                    /*
                     * Just a plain smb. Read it as normal.
                     */
    
                    buffer[bufferIndex++] = (byte)( andx.wordCount & 0xFF );
    
                    if( andx.wordCount != 0 ) {
                        /*
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
Back to top