Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for things (0.22 sec)

  1. src/test/resources/org/codelibs/core/message/strings_ja.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 14 bytes
    - Viewed (0)
  2. src/test/resources/org/codelibs/core/message/strings_ja_JP_WIN.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 22 bytes
    - Viewed (0)
  3. src/test/resources/org/codelibs/core/message/strings_en_US.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 12 bytes
    - Viewed (0)
  4. src/test/resources/org/codelibs/core/message/strings_ja_JP.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 18 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmUtil.java

         */
        public static byte[] nTOWFv2 ( String domain, String username, byte[] passwordHash ) {
            MessageDigest hmac = Crypto.getHMACT64(passwordHash);
            hmac.update(Strings.getUNIBytes(username.toUpperCase()));
            hmac.update(Strings.getUNIBytes(domain));
            return hmac.digest();
        }
    
    
        /**
         * @param password
         * @return nt password hash
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

            protected String[] roles;
    
            protected String[] permissions;
    
            protected OpenIdUser(final String name, final String[] groups, final String[] roles) {
                this.name = name;
                this.groups = groups;
                this.roles = roles;
            }
    
            @Override
            public String getName() {
                return name;
            }
    
            @Override
            public String[] getRoleNames() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/NtlmFlags.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.ntlmssp;
    
    
    /**
     * Flags used during negotiation of NTLMSSP authentication.
     */
    public interface NtlmFlags {
    
        /**
         * Indicates whether Unicode strings are supported or used.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                    final String[] toAddresses;
                    if (StringUtil.isNotBlank(toStrs)) {
                        toAddresses = toStrs.split(",");
                    } else {
                        toAddresses = StringUtil.EMPTY_STRINGS;
                    }
                    final Postbox postbox = ComponentUtil.getComponent(Postbox.class);
                    try {
                        final NotificationHelper notificationHelper = ComponentUtil.getNotificationHelper();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

            assertEquals(Double.parseDouble(expected), DocumentUtil.getValue(doc, "key1", Double.class).doubleValue());
    
            assertNull(DocumentUtil.getValue(doc, "key2", String.class));
        }
    
        public void test_strings() {
            Map<String, Object> doc = new HashMap<>();
            doc.put("key1", new String[] { "aaa", "bbb" });
            assertArrayEquals(new String[] { "aaa", "bbb" }, DocumentUtil.getValue(doc, "key1", String[].class));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/adminlte.min.css.map

    value so that we can later use\n//    the `inherit` value on things like `<th>` elements.\n\nbody {\n  margin: 0; // 1\n  font-family: $font-family-base;\n  @include font-size($font-size-base);\n  font-weight: $font-weight-base;\n  line-height: $line-height-base;\n  color: $body-color;\n  text-align: left; // 3\n  background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 2M bytes
    - Viewed (0)
Back to top