Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for local (0.16 sec)

  1. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         * Sent by the server to indicate that the server and client are
         * on the same machine. This implies that the server will include
         * a local security context handle in the Type 2 message, for
         * use in local authentication.
         */
        public static final int NTLMSSP_NEGOTIATE_LOCAL_CALL = 0x00004000;
    
        /**
         * Indicates that authenticated communication between the client
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                                    <li role="presentation" class="nav-item"><a href="#local" aria-controls="local" class="nav-link" role="tab"
                                                               data-toggle="tab"><la:message
                                            key="labels.plugin_local_install"
                                    /></a></li>
                                </ul>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 14 12:15:45 GMT 2020
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/Type2Message.java

        }
    
    
        /**
         * Returns the local security context.
         *
         * @return A <code>byte[]</code> containing the local security
         *         context. This is used by the client to negotiate local
         *         authentication.
         */
        public byte[] getContext () {
            return this.context;
        }
    
    
        /**
         * Sets the local security context. This is used by the client
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                            .setSize(keyMatch.getMaxSize());
                    return true;
                });
            }
            return Collections.emptyList();
        }
    
        private String toLowerCase(final String term) {
            return term != null ? term.toLowerCase(Locale.ROOT) : term;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_env_crawler.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Fess environment configuration for Local Development
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Core
    #                                                                                   ======
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_env_suggest.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Fess environment configuration for Local Development
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Core
    #                                                                                   ======
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/convert/CalendarConversionUtilTest.java

         */
        @Test
        public void testLocalize() throws Exception {
            final Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("JST"));
            final Calendar local = CalendarConversionUtil.localize(calendar);
            assertEquals(TimeZone.getDefault(), local.getTimeZone());
        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.convert.CalendarConversionUtil#localize(Calendar)}
         * .
         */
        @Test
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_env_thumbnail.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Fess environment configuration for Local Development
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Core
    #                                                                                   ======
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_env_web.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Fess environment configuration for Local Development
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Core
    #                                                                                   ======
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SID.java

         * @return the domain name
         */
        String getDomainName ();
    
    
        /**
         * Return text representing the SID type suitable for display to
         * users. Text includes 'User', 'Domain group', 'Local group', etc.
         * 
         * @return textual representation of type
         */
        String getTypeText ();
    
    
        /**
         * Returns the type of this SID indicating the state or type of account.
         * <p>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
Back to top