- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for programming (2.18 sec)
-
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
} public void test_load_simpleTerms() { List<RelatedContent> testData = new ArrayList<>(); testData.add(createRelatedContent("java", "Java Programming", "")); testData.add(createRelatedContent("python", "Python Programming", "")); mockBhv.setTestData(testData); int count = relatedContentHelper.load(); assertEquals(1, count); // One virtual host key (empty)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
mockBhv.setTestData(testData); int count = relatedQueryHelper.load(); assertEquals(1, count); // One virtual host key (empty) String[] results = relatedQueryHelper.getRelatedQueries("java"); assertEquals(3, results.length); assertEquals("programming", results[0]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
} // assertEquals(0, result.size()); // Commented out due to variable scope } public void test_buildQuery_withVariousKeywords() { List<String> keywordList = Arrays.asList("java", "programming", "search", ""); List<FilterFunctionBuilder> functionBuilders = new ArrayList<>(); try { keyMatchHelper.buildQuery(keywordList, functionBuilders); } catch (Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 10.1K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
/** Adds the given pair of values to the dataset. */ public void add(double x, double y) { // We extend the recursive expression for the one-variable case at Art of Computer Programming // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i. // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/math/Stats.java
double mean = values.next().doubleValue(); while (values.hasNext()) { double value = values.next().doubleValue(); count++; if (isFinite(value) && isFinite(mean)) { // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) mean += (value - mean) / count; } else { mean = calculateNewMeanNonFinite(mean, value); } } return mean; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
android/guava/src/com/google/common/math/StatsAccumulator.java
max = value; if (!isFinite(value)) { sumOfSquaresOfDeltas = NaN; } } else { count++; if (isFinite(value) && isFinite(mean)) { // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16) double delta = value - mean; mean += delta / count; sumOfSquaresOfDeltas += delta * (value - mean); } else {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 15.8K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
public static final MediaType BZIP2 = createConstant(APPLICATION_TYPE, "x-bzip2"); /** * Files in the <a href="https://www.dartlang.org/articles/embedding-in-html/">dart</a> * programming language. * * @since 19.0 */ public static final MediaType DART_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "dart"); /** * <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
public static final MediaType BZIP2 = createConstant(APPLICATION_TYPE, "x-bzip2"); /** * Files in the <a href="https://www.dartlang.org/articles/embedding-in-html/">dart</a> * programming language. * * @since 19.0 */ public static final MediaType DART_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "dart"); /** * <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0)