Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,345 for geturl (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/ClickLogDbm.java

        public ColumnInfo columnUrlId() {
            return _columnUrlId;
        }
    
        public ColumnInfo columnDocId() {
            return _columnDocId;
        }
    
        public ColumnInfo columnOrder() {
            return _columnOrder;
        }
    
        public ColumnInfo columnQueryId() {
            return _columnQueryId;
        }
    
        public ColumnInfo columnQueryRequestedAt() {
            return _columnQueryRequestedAt;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            }
    
            public String getName() {
                return name;
            }
    
            public String getVersion() {
                return version;
            }
    
            public String getFileName() {
                return name + "-" + version + ".jar";
            }
    
            public String getUrl() {
                return url;
            }
    
            public ArtifactType getType() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/RemoteRepository.java

    /**
     * A remote repository that can be used to download or upload artifacts.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface RemoteRepository extends Repository {
    
        @Nonnull
        String getUrl();
    
        @Nonnull
        String getProtocol();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

            if (!validateNotNull(problems, fieldName, string, sourceHint)) {
                return false;
            }
    
            if (!string.isEmpty()) {
                return true;
            }
    
            addViolation(problems, BuilderProblem.Severity.ERROR, fieldName, sourceHint, "is missing");
    
            return false;
        }
    
        /**
         * Asserts:
         * <p/>
         * <ul>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            if (childUrlSet != null) {
                // add an url
                try {
                    storeChildUrls(childUrlSet.stream().filter(rd -> StringUtil.isNotBlank(rd.getUrl())).collect(Collectors.toSet()),
                            urlQueue.getUrl(), urlQueue.getDepth() != null ? urlQueue.getDepth() + 1 : 1);
                } catch (final Throwable t) {
                    if (!ComponentUtil.available()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultModelXmlFactory.java

                if (inputStream != null) {
                    return xml.read(inputStream, request.isStrict(), source);
                } else if (reader != null) {
                    return xml.read(reader, request.isStrict(), source);
                } else if (path != null) {
                    try (InputStream is = Files.newInputStream(path)) {
                        return xml.read(is, request.isStrict(), source);
                    }
                } else {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelXmlFactory.java

                if (inputStream != null) {
                    return xml.read(inputStream, request.isStrict(), source);
                } else if (reader != null) {
                    return xml.read(reader, request.isStrict(), source);
                } else if (path != null) {
                    try (InputStream is = Files.newInputStream(path)) {
                        return xml.read(is, request.isStrict(), source);
                    }
                } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            if (p1 == p2) {
                return true;
            }
            // update policy doesn't affect contents
            return p1.isEnabled() == p2.isEnabled() && Objects.equals(p1.getChecksumPolicy(), p2.getChecksumPolicy());
        }
    
        private static boolean repositoryEquals(RemoteRepository r1, RemoteRepository r2) {
            if (r1 == r2) {
                return true;
            }
    
            return Objects.equals(r1.getId(), r2.getId())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

                }
            }
    
            return profile;
        }
    
        private static Repository convertFromProfileXmlRepository(org.apache.maven.profiles.Repository profileXmlRepo) {
            Repository repo = new Repository();
    
            repo.setId(profileXmlRepo.getId());
            repo.setLayout(profileXmlRepo.getLayout());
            repo.setName(profileXmlRepo.getName());
            repo.setUrl(profileXmlRepo.getUrl());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    params.put("URL", e.getUrl());
                    params.put("Created Time", FessFunctions.formatDate(e.getCreatedAt()));
                    params.put("Requested Time", FessFunctions.formatDate(e.getRequestedAt()));
                    return params;
                }).get();
            }
            return searchLogBhv.selectByPK(id).map(e -> {
    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)
Back to top