- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for sampai (0.04 sec)
-
FileConfig.java
wler.client.smb1.SmbAuthentication> smb1AuthList = new ArrayList<>(); L168: final List<FtpAuthentication> ftpAuthList = new ArrayList<>(); L169: for (final FileAuthentication fileAuth : fileAuthList) { L170: if (Constants.SAMBA.equals(fileAuth.getProtocolScheme())) { L171: final SmbAuthentication smbAuth = new SmbAuthentication(); L172: final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters()); L173: final String...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.8K bytes -
AdminFileauthAction.java
itemList = new ArrayList<>(); L296: final Locale locale = ComponentUtil.getRequestManager().getUserLocale(); L297: itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.file_auth_scheme_samba"), Constants.SAMBA)); L298: itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.file_auth_scheme_ftp"), Constants.FTP)); L299: RenderDataUtil.register(data, "protocolSchemeItems", itemList); L300: } L301: L302: protected...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.5K bytes -
FessLabels.java
"{labels.file_auth_parameters}"; L1862: L1863: /** The key of the message: File System Config */ L1864: public static final String LABELS_file_auth_file_crawling_config = "{labels.file_auth_file_crawling_config}"; L1865: L1866: /** The key of the message: Samba */ L1867: public static final String LABELS_file_auth_scheme_samba = "{labels.file_auth_scheme_samba}"; L1868: L1869: /** The key of the message: FTP */ L1870: public static final String LABELS_file_auth_scheme_ftp = "{labels.file_auth_scheme_ftp}";...github.com/codelibs/fess/src/main/java/org/code...Fri Mar 22 11:58:34 UTC 2024 146.4K bytes -
SearchApiTests.java
assertTrue(value <= to); L324: } L325: } L326: L327: @Test L328: public void searchTestWithBoost() throws Exception { L329: String field = "content"; L330: String query1 = "java"; L331: String query2 = "sample"; L332: Map<String, String> params = new HashMap<>(); L333: params.put("q", field + ":" + query1 + "^1000 OR " + field + ":" + query2); L334: params.put("num", "100"); L335: String response = checkMethodBase(new HashMa...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 18.6K bytes -
Constants.java
final String BASIC = "BASIC"; L237: L238: public static final String DIGEST = "DIGEST"; L239: L240: public static final String NTLM = "NTLM"; L241: L242: public static final String FORM = "FORM"; L243: L244: public static final String SAMBA = "SAMBA"; L245: L246: public static final String FTP = "FTP"; L247: L248: public static final String[] RESERVED = L249: { "\\", "+", "-", "&&", "||", "!", "(", ")", "{", "}", "[", "]", "^", "~", "*", "?", ";", ":", "/" }; L250: L251:...github.com/codelibs/fess/src/main/java/org/code...Thu Aug 22 12:43:18 UTC 2024 16.6K bytes -
DataConfig.java
n> ftpAuthList = new ArrayList<>(); L217: for (final String fileAuthName : fileAuthNames) { L218: final String scheme = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".scheme"); L219: if (Constants.SAMBA.equals(scheme)) { L220: final String domain = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".domain"); L221: final String hostname = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".host"); L222:...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 18.5K bytes