Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 350 for getJdk (0.04 sec)

  1. src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java

            assertEquals(50L, item.getQueryFreq());
            assertEquals(100L, item.getDocFreq());
            assertEquals(1.5f, item.getUserBoost(), 0.001f);
            assertNotNull(item.getTimestamp());
            assertNotNull(item.getId());
        }
    
        @Test
        public void testConstructorWithNullArrays() {
            // Test constructor handles null arrays gracefully
            String[] text = { "text" };
            String[][] readings = { { "reading" } };
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                }
            }
        }
    
        protected void mergeSite_Id(Site target, Site source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getId();
            if (src != null) {
                if (sourceDominant || target.getId() == null) {
                    target.setId(src);
                    target.setLocation("id", source.getLocation("id"));
                }
            }
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java

        /**
         * Gets the effective identifier of the model in the form {@code <groupId>:<artifactId>:<version>}.
         *
         * @return The effective identifier of the model, never {@code null}.
         */
        public String getId() {
            StringBuilder buffer = new StringBuilder(128);
    
            buffer.append(getGroupId())
                    .append(':')
                    .append(getArtifactId())
                    .append(':')
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

                itemMap.put("result", item.status().name());
                if (item.isFailed()) {
                    itemMap.put("message", item.getFailureMessage());
                } else {
                    itemMap.put("id", item.getId());
                }
                return itemMap;
            }).toList()).status(response.hasFailures() ? Status.FAILED : Status.OK).result());
    
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

         * @throws ThemeException if theme name cannot be determined
         */
        protected String getThemeName(final Artifact artifact) {
            final String themeName = artifact.getName().substring(ArtifactType.THEME.getId().length() + 1);
            if (StringUtil.isBlank(themeName)) {
                throw new ThemeException("Theme name is empty: " + artifact);
            }
            return themeName;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                            logger.warn("The following goals are not Maven 4 goals:");
                            for (MojoDescriptor unsafeGoal : unsafeGoals) {
                                logger.warn("  " + unsafeGoal.getId());
                            }
                        } else {
                            Set<Plugin> unsafePlugins = unsafeExecutions.stream()
                                    .map(MojoExecution::getPlugin)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

    public interface Artifact {
        /**
         * {@return a unique identifier for this artifact}.
         * The identifier is composed of groupId, artifactId, extension, classifier, and version.
         *
         * @see ArtifactCoordinates#getId()
         */
        @Nonnull
        default String key() {
            String c = getClassifier();
            return getGroupId()
                    + ':'
                    + getArtifactId()
                    + ':'
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java

                hash = hash * 31 + Objects.hashCode(extensionFilter);
                this.hashCode = hash;
            }
    
            @Override
            public String toString() {
                return plugin.getId();
            }
    
            @Override
            public int hashCode() {
                return hashCode;
            }
    
            @Override
            public boolean equals(Object o) {
                if (o == this) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java

                if (pluginExecutionId != null && !pluginExecutionId.isEmpty()) {
                    for (PluginExecution execution : plugin.getExecutions()) {
                        if (pluginExecutionId.equals(execution.getId())) {
                            setConfiguration(execution.getConfiguration());
                            break;
                        }
                    }
                } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                    docMap.put(Constants.SCORE, score);
                }
            }
    
            if (!docMap.containsKey(fessConfig.getIndexFieldId())) {
                docMap.put(fessConfig.getIndexFieldId(), searchHit.getId());
            }
    
            final String[] searchers = DocumentUtil.getValue(docMap, Constants.SEARCHER, String[].class);
            if (searchers != null) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 09:24:04 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top