- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 65 for ftp (0.01 sec)
-
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} final boolean isSmbUrl = url.startsWith("smb:") || url.startsWith("smb1:"); final boolean isFtpUrl = url.startsWith("ftp:"); final boolean isSmbOrFtpUrl = isSmbUrl || isFtpUrl; // replacing url with mapping data url = ComponentUtil.getPathMappingHelper().replaceUrl(url);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
RUN C:\tools\msys64\usr\bin\bash.exe -lc \ 'pacman --noconfirm -Syy curl git patch vim unzip zip' # Install Python as a general utility/tool. ENV PYTHON_VERSION 3.12.3 RUN $url = ('https://www.python.org/ftp/python/{0}/python-{0}-amd64.exe' -f $env:PYTHON_VERSION); \ Write-Host ('Downloading {0} ...' -f $url); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Aug 20 13:57:04 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String NTLM = "NTLM"; public static final String FORM = "FORM"; public static final String SAMBA = "SAMBA"; public static final String FTP = "FTP"; public static final String[] RESERVED = { "\\", "+", "-", "&&", "||", "!", "(", ")", "{", "}", "[", "]", "^", "~", "*", "?", ";", ":", "/" };
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
} protected String convertCrawlingPath(final String path) { if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:") || path.startsWith("ftp:") || path.startsWith("storage:")) { return path; } if (path.startsWith("www.")) { return "http://" + path; } if (path.startsWith("//")) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
url = "smb1://server/user"; exp = "\\\\server\\user"; assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8")); url = "ftp://example.com/file"; exp = "example.com/file"; assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8")); } public void test_getSite_ok_len10() { String url, exp;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.file_auth_scheme_ftp"), Constants.FTP)); RenderDataUtil.register(data, "protocolSchemeItems", itemList); } protected void registerFileConfigItems(final RenderData data) { final List<Map<String, String>> itemList = new ArrayList<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
cmd/common-main.go
} ctxt.MemLimit = mlimit } else { ctxt.MemLimit = memAvailable } if memAvailable < ctxt.MemLimit { ctxt.MemLimit = memAvailable } ctxt.FTP = ctx.StringSlice("ftp") ctxt.SFTP = ctx.StringSlice("sftp") ctxt.Interface = ctx.String("interface") ctxt.UserTimeout = ctx.Duration("conn-user-timeout") ctxt.SendBufSize = ctx.Int("send-buf-size")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 31.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
stream(crawlingConfig.getPermissions()).of(stream -> stream.forEach(p -> roleTypeList.add(p))); if (url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:")) { if (url.endsWith("/")) { // directory return true; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.6K bytes - Viewed (0) -
cmd/globals.go
StrictS3Compat bool Addr, ConsoleAddr string ConfigDir, CertsDir string configDirSet, certsDirSet bool Interface string RootUser, RootPwd string FTP []string SFTP []string MemLimit uint64 UserTimeout time.Duration IdleTimeout time.Duration ReadHeaderTimeout time.Duration MaxIdleConnsPerHost int
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1) -
compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java
assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://somehost:9090/somepath"))); assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "ftp://somehost"))); assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://192.168.101.1"))); assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://"))); // these are local
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.7K bytes - Viewed (0)