Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for toUpperCase (0.16 sec)

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

                        buf.append('_');
                    }
                    buf.append(s.substring(pos, i).toUpperCase());
                    pos = i;
                }
            }
            if (buf.length() != 0) {
                buf.append('_');
            }
            buf.append(s.substring(pos, s.length()).toUpperCase());
            return buf.toString();
        }
    
        /**
         * 文字列が数値のみで構成されているかどうかを返します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/BaseApiManager.java

                if (values.length > 2) {
                    value = values[2];
                }
            }
            if (value == null) {
                return FormatType.SEARCH;
            }
            final String type = value.toUpperCase(Locale.ROOT);
            if (FormatType.SEARCH.name().equals(type)) {
                return FormatType.SEARCH;
            }
            if (FormatType.LABEL.name().equals(type)) {
                return FormatType.LABEL;
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            int hash;
            try {
                hash = getAddress().hashCode();
            } catch( UnknownHostException uhe ) {
                hash = getServer().toUpperCase().hashCode();
            }
            getUncPath0();
            return hash + canon.toUpperCase().hashCode();
        }
    
        protected boolean pathNamesPossiblyEqual(String path1, String path2) {
            int p1, p2, l1, l2;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", action.replace('\t', '_').toUpperCase(Locale.ENGLISH));
            valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-"));
            final Comparator<Map.Entry<String, String>> c = Comparator.comparing(Map.Entry::getKey);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.storageBucket = fessConfig.getStorageBucket();
            form.logLevel = ComponentUtil.getSystemHelper().getLogLevel().toUpperCase();
        }
    
        private void updateProperty(final String key, final String value) {
            systemProperties.setProperty(key, value == null ? StringUtil.EMPTY : value);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                processPluginRequest(request, response, path.replaceFirst("^/_plugin", StringUtil.EMPTY));
                return;
            }
    
            final Method httpMethod = Method.valueOf(request.getMethod().toUpperCase(Locale.ROOT));
            final CurlRequest curlRequest = ComponentUtil.getCurlHelper().request(httpMethod, path);
    
            final String contentType = request.getHeader("Content-Type");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/esreq/AdminEsreqAction.java

                path = values[1];
            } else {
                path = "/" + values[1];
            }
    
            final CurlHelper curlHelper = ComponentUtil.getCurlHelper();
            switch (values[0].toUpperCase(Locale.ROOT)) {
            case "GET":
                return curlHelper.get(path);
            case "POST":
                return curlHelper.post(path);
            case "PUT":
                return curlHelper.put(path);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/EnumTest.java

                    }
                }
            }
    
        }
    
    
        @Test
        public void testEnumDeepUnresolvedCasing () throws IOException {
    
            String testShareURL = getTestShareURL().toUpperCase(Locale.ROOT);
    
            try ( SmbFile r = new SmbFile(testShareURL, withTestNTLMCredentials(getContext()));
                  SmbFile f = new SmbFile(r, "enum-test/a/b/") ) {
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/TraversalUtil.java

                    }
                }
                loadFromZip(zipUrl);
                if (entryNames.isEmpty()) {
                    final String zipUrlString = zipUrl.toExternalForm();
                    if (zipUrlString.toUpperCase().endsWith(WAR_CLASSES_PREFIX)) {
                        final URL warUrl = URLUtil.create(zipUrl, "../..");
                        final String path = warUrl.getPath();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 19.5K bytes
    - Viewed (0)
Back to top