Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 324 for url (0.13 sec)

  1. src/test/java/org/codelibs/core/io/ResourceUtilTest.java

         */
        public void testToExternalForm() throws Exception {
            final URL url = new File("/Program File").toURI().toURL();
            assertEquals("file:" + getRoot() + "Program File", ResourceUtil.toExternalForm(url));
        }
    
        /**
         * @throws Exception
         */
        public void testGetFileName() throws Exception {
            URL url = new File("/Program File").toURI().toURL();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    params.put("Query ID", e.getQueryId());
                    params.put("Doc ID", e.getDocId());
                    params.put("User Session ID", e.getUserSessionId());
                    params.put("URL", e.getUrl());
                    params.put("URL ID", e.getUrlId());
                    params.put("Order", toNumberString(e.getOrder()));
                    params.put("Query Requested Time", FessFunctions.formatDate(e.getQueryRequestedAt()));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/ResourcesTest.java

        // Now set the context loader to one that should find the resource.
        URL baseUrl = tempFile.getParentFile().toURI().toURL();
        URLClassLoader loader = new URLClassLoader(new URL[] {baseUrl});
        ClassLoader oldContextLoader = Thread.currentThread().getContextClassLoader();
        try {
          Thread.currentThread().setContextClassLoader(loader);
          URL url = Resources.getResource(tempFile.getName());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

     * 
     * Invariant:
     * A directory resource must have a trailing slash/backslash for both URL and UNC path at all times.
     * 
     * @author mbechler
     *
     */
    class SmbResourceLocatorImpl implements SmbResourceLocatorInternal, Cloneable {
    
        private static final Logger log = LoggerFactory.getLogger(SmbResourceLocatorImpl.class);
    
        private final URL url;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

         *
         * @param id     the unique identifier of the repository
         * @param url    the URL of the repository
         * @param layout the layout of the repository
         */
        public DefaultArtifactRepository(String id, String url, ArtifactRepositoryLayout layout) {
            this(id, url, layout, null, null);
        }
    
        /**
         * Create a remote deployment repository.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java

                "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnUrl = cci("url", "url", null, null, String.class, "url", null, false, false, false, "keyword", 0, 0,
                null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which the settings were read.
         *
         * @return the hint about the source of the problem or an empty string if unknown, never {@code null}
         */
        @Nonnull
        String getSource();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String urls = "https://www.codelibs.org/" + "\n" + "http://failure.url";
            final String includedUrls = "https://www.codelibs.org/.*" + "\n" + "http://failure.url.*";
            requestBody.put("name", NAME_PREFIX + "WebConfig");
            requestBody.put("urls", urls);
            requestBody.put("included_urls", includedUrls);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmAuthenticator.java

            return requestNtlmPasswordAuthentication(auth, url, sae);
        }
    
    
        /**
         * @param a
         * @param url
         * @param sae
         * @return credentials returned by prompt
         */
        public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication ( NtlmAuthenticator a, String url, SmbAuthException sae ) {
            if ( a == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

            String newUrl = url;
            for (final PathMapping pathMapping : pathMappingList) {
                if (matchUserAgent(pathMapping)) {
                    newUrl = pathMapping.process(this, newUrl);
                }
            }
            if (logger.isDebugEnabled() && !StringUtil.equals(url, newUrl)) {
                logger.debug("replace: {} -> {}", url, newUrl);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.6K bytes
    - Viewed (0)
Back to top