Re: [PR] Remove obsolete 'mappingRules' in Tokenizer tests [lucene]

2024-01-08 Thread via GitHub
sabi0 commented on code in PR #12972: URL: https://github.com/apache/lucene/pull/12972#discussion_r1444282486 ## lucene/analysis/common/src/test/org/apache/lucene/analysis/wikipedia/TestWikipediaTokenizerFactory.java: ## @@ -145,19 +140,17 @@ public void testBogusArguments() thr

Re: [PR] Use Collections.addAll() instead of manual array copy and misc. code cleanups [lucene]

2024-01-08 Thread via GitHub
sabi0 commented on code in PR #12977: URL: https://github.com/apache/lucene/pull/12977#discussion_r1444287508 ## lucene/misc/src/java/org/apache/lucene/misc/index/IndexSplitter.java: ## @@ -67,18 +66,10 @@ public static void main(String[] args) throws Exception { if (args[1

Re: [PR] Remove unnecessary fields loop from extractWeightedSpanTerms() [lucene]

2024-01-08 Thread via GitHub
sabi0 commented on PR #12965: URL: https://github.com/apache/lucene/pull/12965#issuecomment-1880698647 I've rebased on the latest main, added the early termination check and a separate commit with minor cleanups. Please let me know if you'd like me to squash them all before the merge. -

Re: [I] NullPointerException in IndexSearcher.search() when searching with SpanfirstQuery and a customized collector [lucene]

2024-01-08 Thread via GitHub
jpountz closed issue #12991: NullPointerException in IndexSearcher.search() when searching with SpanfirstQuery and a customized collector URL: https://github.com/apache/lucene/issues/12991 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to

Re: [I] NullPointerException in IndexSearcher.search() when searching with SpanfirstQuery and a customized collector [lucene]

2024-01-08 Thread via GitHub
jpountz commented on issue #12991: URL: https://github.com/apache/lucene/issues/12991#issuecomment-1880706597 `MyDocScoreCollector` returns `COMPLETE_NO_SCORES` in `scoreMode()`, yet `collect()` calls `Scorer.score()`, which is illegal. -- This is an automated message from the Apache Git

Re: [I] Introduce Bloom Filter as non-experimental/core postings format [lucene]

2024-01-08 Thread via GitHub
jpountz commented on issue #12986: URL: https://github.com/apache/lucene/issues/12986#issuecomment-1880750884 I'd like to stick to the current policy that only the default codec has backward compatibility support. One idea would be to fold bloom filters into the default postings format like

Re: [PR] Remove obsolete 'mappingRules' in Tokenizer tests [lucene]

2024-01-08 Thread via GitHub
dweiss commented on code in PR #12972: URL: https://github.com/apache/lucene/pull/12972#discussion_r140905 ## lucene/analysis/common/src/test/org/apache/lucene/analysis/wikipedia/TestWikipediaTokenizerFactory.java: ## @@ -145,19 +140,17 @@ public void testBogusArguments() th

Re: [PR] Remove obsolete 'mappingRules' in Tokenizer tests [lucene]

2024-01-08 Thread via GitHub
dweiss commented on code in PR #12972: URL: https://github.com/apache/lucene/pull/12972#discussion_r140905 ## lucene/analysis/common/src/test/org/apache/lucene/analysis/wikipedia/TestWikipediaTokenizerFactory.java: ## @@ -145,19 +140,17 @@ public void testBogusArguments() th

Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub
dweiss commented on code in PR #12973: URL: https://github.com/apache/lucene/pull/12973#discussion_r146785 ## lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java: ## @@ -184,7 +186,7 @@ public CharSequence escape(Char

Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub
dweiss commented on code in PR #12973: URL: https://github.com/apache/lucene/pull/12973#discussion_r146785 ## lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java: ## @@ -184,7 +186,7 @@ public CharSequence escape(Char

Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub
dweiss commented on code in PR #12973: URL: https://github.com/apache/lucene/pull/12973#discussion_r150852 ## lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java: ## @@ -184,7 +186,7 @@ public CharSequence escape(Char

Re: [PR] Introduce workflow for stale PRs [lucene]

2024-01-08 Thread via GitHub
mikemccand merged PR #12813: URL: https://github.com/apache/lucene/pull/12813 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.

Re: [I] Port PR management bot from Apache Beam [lucene]

2024-01-08 Thread via GitHub
mikemccand closed issue #12796: Port PR management bot from Apache Beam URL: https://github.com/apache/lucene/issues/12796 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

Re: [PR] Introduce workflow for stale PRs [lucene]

2024-01-08 Thread via GitHub
mikemccand commented on PR #12813: URL: https://github.com/apache/lucene/pull/12813#issuecomment-1880816127 Thanks @uschindler and @stefanvodita -- the latest iteration looks great -- the `debug-only` flag means it won't actually make any changes, just go through the motions. I'll me

Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub
sabi0 commented on code in PR #12973: URL: https://github.com/apache/lucene/pull/12973#discussion_r177534 ## lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java: ## @@ -40,105 +40,109 @@ public class EscapeQuerySyntax

Re: [PR] Make sure `ConcurrentApproximatePriorityQueue#poll` never returns `null` on a non-empty queue. [lucene]

2024-01-08 Thread via GitHub
jpountz commented on PR #12959: URL: https://github.com/apache/lucene/pull/12959#issuecomment-1880832498 I have a new iteration of this change, which now also accounts for how `DocumentsWriterPerThreadPool` may lock `DocumentsWriterPerThread` instances while they are still in the pool. I'm

Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub
sabi0 commented on code in PR #12973: URL: https://github.com/apache/lucene/pull/12973#discussion_r1444504974 ## lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java: ## @@ -184,7 +186,7 @@ public CharSequence escape(CharS

Re: [PR] Introduce workflow for stale PRs [lucene]

2024-01-08 Thread via GitHub
stefanvodita commented on PR #12813: URL: https://github.com/apache/lucene/pull/12813#issuecomment-1880875904 Thanks Uwe for the review and Mike for merging. The action logs look good. #12998 disables `debug-only` and increases the operations budget to 500. The total [per-hour budget is

Re: [PR] Reduce ArrayUtil#grow in decompress [lucene]

2024-01-08 Thread via GitHub
jpountz commented on code in PR #12996: URL: https://github.com/apache/lucene/pull/12996#discussion_r1444536935 ## lucene/core/src/java/org/apache/lucene/codecs/lucene90/LZ4WithPresetDictCompressionMode.java: ## @@ -128,10 +128,12 @@ public void decompress(DataInput in, int orig

Re: [PR] Avoid reset BlockDocsEnum#freqBuffer when indexHasFreq is false [lucene]

2024-01-08 Thread via GitHub
jpountz commented on code in PR #12997: URL: https://github.com/apache/lucene/pull/12997#discussion_r1444533812 ## lucene/core/src/java/org/apache/lucene/codecs/lucene99/Lucene99PostingsReader.java: ## @@ -399,7 +400,9 @@ public PostingsEnum reset(IntBlockTermState termState, in

Re: [PR] Reduce frequencies buffer size when they are not needed [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12954: URL: https://github.com/apache/lucene/pull/12954#issuecomment-1880898477 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Increase stale PRs action budget and mark not debug-only [lucene]

2024-01-08 Thread via GitHub
mikemccand merged PR #12998: URL: https://github.com/apache/lucene/pull/12998 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.

Re: [PR] Use growNoCopy in some places [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12951: URL: https://github.com/apache/lucene/pull/12951#issuecomment-1880898535 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Made the UnifiedHighlighter's hasUnrecognizedQuery function processes FunctionQuery the same way as MatchAllDocsQuery and MatchNoDocsQuery queries for performance reasons. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12938: URL: https://github.com/apache/lucene/pull/12938#issuecomment-1880898750 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Clean up sleep in TestBackwardsCompatibility#testCreateMoreTermsIndex [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12914: URL: https://github.com/apache/lucene/pull/12914#issuecomment-1880898867 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix for the bug where JapaneseReadingFormFilter cannot convert some hiragana to romaji [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12885: URL: https://github.com/apache/lucene/pull/12885#issuecomment-1880899003 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] clean up smoketester GPG leaks [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12882: URL: https://github.com/apache/lucene/pull/12882#issuecomment-1880899062 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Remove stale BWC tests [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12874: URL: https://github.com/apache/lucene/pull/12874#issuecomment-1880899116 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add Facets#getBulkSpecificValues method [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12862: URL: https://github.com/apache/lucene/pull/12862#issuecomment-1880899290 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] [Minor] Fix the only use of java.lang.String#toLowerCase() with no Locale [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12856: URL: https://github.com/apache/lucene/pull/12856#issuecomment-1880899436 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix Field.java documentation to refer to new IntField/FloatField/LongField/DoubleField #12125 [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12821: URL: https://github.com/apache/lucene/pull/12821#issuecomment-1880899783 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Re-use information from graph traversal during exact search [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12820: URL: https://github.com/apache/lucene/pull/12820#issuecomment-1880899839 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Reduce contention on flushControl.isFullFlush(). [lucene]

2024-01-08 Thread via GitHub
jpountz merged PR #12958: URL: https://github.com/apache/lucene/pull/12958 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apa

Re: [PR] During concurrent slice searches in IndexSearcher stop other tasks if one throws an Exception [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12756: URL: https://github.com/apache/lucene/pull/12756#issuecomment-1880900120 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Bump release to Java 21 [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12753: URL: https://github.com/apache/lucene/pull/12753#issuecomment-1880900224 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] [BROKEN, for reference only] concurrent hnsw [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12683: URL: https://github.com/apache/lucene/pull/12683#issuecomment-1880900523 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] upgrade to OpenNLP 2.3.1 [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12674: URL: https://github.com/apache/lucene/pull/12674#issuecomment-1880900643 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add interface VectorValues to be implemented by [Float/Byte]VectorValues [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12636: URL: https://github.com/apache/lucene/pull/12636#issuecomment-1880900898 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix hidden range embedded in UAX29URLEmail grammar [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12583: URL: https://github.com/apache/lucene/pull/12583#issuecomment-1880901201 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Choose sparse values in IntTaxonomyFacets when FacetsCollector has em… [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12559: URL: https://github.com/apache/lucene/pull/12559#issuecomment-1880901413 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Compute multiple float aggregations in one go [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12547: URL: https://github.com/apache/lucene/pull/12547#issuecomment-1880901659 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] LockVerifyServer does not need to reuse addresses nor set accept timeout [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12535: URL: https://github.com/apache/lucene/pull/12535#issuecomment-1880901771 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Early terminate visit BKD leaf when current value greater than upper point in sorted dim. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12528: URL: https://github.com/apache/lucene/pull/12528#issuecomment-1880901900 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] LUCENE-4056: Japanese Tokenizer (Kuromoji) cannot build UniDic dictionary [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12517: URL: https://github.com/apache/lucene/pull/12517#issuecomment-1880902132 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add Option to Set Subtoken Position Increment for Dictonary Decompounder [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12478: URL: https://github.com/apache/lucene/pull/12478#issuecomment-1880902498 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Allow reading binary doc values as a DataInput [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12460: URL: https://github.com/apache/lucene/pull/12460#issuecomment-1880902629 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix docFreq in score calculation after rewrite of boolean query consisting of blended query and boosted term query [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12354: URL: https://github.com/apache/lucene/pull/12354#issuecomment-1880902826 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Improve error message if codec not found. This fixes #12300 [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12301: URL: https://github.com/apache/lucene/pull/12301#issuecomment-1880903041 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix broken testAllVersionHaveCfsAndNocfs() [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12969: URL: https://github.com/apache/lucene/pull/12969#issuecomment-1880898293 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Reduce duplication in taxonomy facets; always do counts [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12966: URL: https://github.com/apache/lucene/pull/12966#issuecomment-1880898351 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Reduce contention on flushControl.isFullFlush(). [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12958: URL: https://github.com/apache/lucene/pull/12958#issuecomment-1880898432 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Replace usage of deprecated size() with length() in ByteBuffersDataInput [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12948: URL: https://github.com/apache/lucene/pull/12948#issuecomment-1880898585 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Update int array growth calls [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12947: URL: https://github.com/apache/lucene/pull/12947#issuecomment-1880898629 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Improve exception handling for readLongs/readInts/readFloats in ByteBufferIndexInput [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12944: URL: https://github.com/apache/lucene/pull/12944#issuecomment-1880898688 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add new token filters for Japanese sutegana (捨て仮名) [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12915: URL: https://github.com/apache/lucene/pull/12915#issuecomment-1880898815 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] fix FragEnd bug in BaseFragmentsBuilder [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #1: URL: https://github.com/apache/lucene/pull/1#issuecomment-1880903470 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] [GITHUB-11915] Make Lucene smarter about long runs of matches via new API on DISI [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12194: URL: https://github.com/apache/lucene/pull/12194#issuecomment-1880903582 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Bump Yetus version to 0.15.0 [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12886: URL: https://github.com/apache/lucene/pull/12886#issuecomment-1880898952 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add LatLonField class to index both LatLonPoint and LatLonDocValues [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12162: URL: https://github.com/apache/lucene/pull/12162#issuecomment-1880903680 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Try using Murmurhash 3 for bloom filters [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12868: URL: https://github.com/apache/lucene/pull/12868#issuecomment-1880899237 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] add similarity threshold for hnsw [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11946: URL: https://github.com/apache/lucene/pull/11946#issuecomment-1880904151 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Simplifying text area stream in Luke- ticket 12809 [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12869: URL: https://github.com/apache/lucene/pull/12869#issuecomment-1880899184 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Create shared method for creating view buffers in ByteBufferIndexInput [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11992: URL: https://github.com/apache/lucene/pull/11992#issuecomment-1880904047 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Remove synchronization from OpenNLP integration and add thread-safety tests(checkRandomData) [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11955: URL: https://github.com/apache/lucene/pull/11955#issuecomment-1880904102 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] GH#11922: Allow DisjunctionDISIApproximation to short-circuit [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11928: URL: https://github.com/apache/lucene/pull/11928#issuecomment-1880904217 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] [Fix] Binary search the entries when all suffixes have the same length in a leaf block. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11888: URL: https://github.com/apache/lucene/pull/11888#issuecomment-1880904269 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add simple tool to diff entries in lucene's CHANGES.txt that should be identical [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12860: URL: https://github.com/apache/lucene/pull/12860#issuecomment-1880899340 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Reuse BitSet when there are deleted documents in the index instead of creating new BitSet [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12857: URL: https://github.com/apache/lucene/pull/12857#issuecomment-1880899377 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Use group-varint encode the positions [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12842: URL: https://github.com/apache/lucene/pull/12842#issuecomment-1880899578 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Improve set deletions percentage javadoc [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12828: URL: https://github.com/apache/lucene/pull/12828#issuecomment-1880899727 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Log number of visited nodes in knn query [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12819: URL: https://github.com/apache/lucene/pull/12819#issuecomment-1880899899 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Generalize LSBRadixSorter and use it in SortingPostingsEnum [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12800: URL: https://github.com/apache/lucene/pull/12800#issuecomment-1880899961 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] NeighborArray is now fixed size [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11784: URL: https://github.com/apache/lucene/pull/11784#issuecomment-1880904342 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Copy collected acc(maxFreqs) into empty acc, rather than merge them. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12846: URL: https://github.com/apache/lucene/pull/12846#issuecomment-1880899505 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] GITHUB#11728: Improve code clarity for OrdinalMap [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #11729: URL: https://github.com/apache/lucene/pull/11729#issuecomment-1880904411 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Avoid generating invalid test polygons [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12757: URL: https://github.com/apache/lucene/pull/12757#issuecomment-1880900035 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Simplify advancing on postings/impacts enums [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12838: URL: https://github.com/apache/lucene/pull/12838#issuecomment-1880899639 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] LUCENE-10634: Speed up WANDScorer. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #999: URL: https://github.com/apache/lucene/pull/999#issuecomment-1880904576 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contribution!

Re: [PR] Optimize: Use DocIdSetIterator Reduce bkd docvalues iteration [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12723: URL: https://github.com/apache/lucene/pull/12723#issuecomment-1880900334 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] LUCENE-10366: Override #readVInt and #readVLong for ByteBufferDataInput to avoid the abstraction confusion of #readByte. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #592: URL: https://github.com/apache/lucene/pull/592#issuecomment-1880905117 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contribution!

Re: [PR] Explicitly return needStats flag in TermStates [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12638: URL: https://github.com/apache/lucene/pull/12638#issuecomment-1880900780 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Lucene-10334: Detected warm up of directreader [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #570: URL: https://github.com/apache/lucene/pull/570#issuecomment-1880905163 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contribution!

Re: [PR] Override `normalize` method in the `PatternReplaceFilterFactory` [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12613: URL: https://github.com/apache/lucene/pull/12613#issuecomment-1880901049 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Improve refresh speed with softdelete enable [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12557: URL: https://github.com/apache/lucene/pull/12557#issuecomment-1880901540 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Speed up disjunctions by computing estimations of the score of the k-th top hit up-front. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12526: URL: https://github.com/apache/lucene/pull/12526#issuecomment-1880902026 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Reduce SegmentTermsEnumFrame Object Construction [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12509: URL: https://github.com/apache/lucene/pull/12509#issuecomment-1880902251 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix onlyLongestMatch in DictionaryCompoundWordTokenFilter [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12485: URL: https://github.com/apache/lucene/pull/12485#issuecomment-1880902372 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Index arbitrary fields in taxonomy docs [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12337: URL: https://github.com/apache/lucene/pull/12337#issuecomment-1880902960 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Fix a bug in ShapeTestUtil [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12287: URL: https://github.com/apache/lucene/pull/12287#issuecomment-1880903143 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Use `instanceof` pattern-matching where possible [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12295: URL: https://github.com/apache/lucene/pull/12295#issuecomment-1880903091 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Avoid Redundant Loop for Checking Array Element Equality [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12262: URL: https://github.com/apache/lucene/pull/12262#issuecomment-1880903226 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Exclude words ending in -ion from Swedish minimal and light stemmers. [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12247: URL: https://github.com/apache/lucene/pull/12247#issuecomment-1880903343 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Change offset to start when data is all equals in StoredFieldsInts.java [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12258: URL: https://github.com/apache/lucene/pull/12258#issuecomment-1880903287 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] simplify PrefixQuery to avoid requiring Automaton [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12207: URL: https://github.com/apache/lucene/pull/12207#issuecomment-1880903543 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Add Romanian stopwords with s&t with comma [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12172: URL: https://github.com/apache/lucene/pull/12172#issuecomment-1880903620 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Reproduce multi-word synonym regression (SOLR-16652) [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12157: URL: https://github.com/apache/lucene/pull/12157#issuecomment-1880903735 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Avoid duplicate sorting in KeywordField#newSetQuery (alternative approach) [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12141: URL: https://github.com/apache/lucene/pull/12141#issuecomment-1880903779 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Avoid duplicate sorting in KeywordField#newSetQuery [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12135: URL: https://github.com/apache/lucene/pull/12135#issuecomment-1880903859 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Remove redundant code in Lucene search [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12035: URL: https://github.com/apache/lucene/pull/12035#issuecomment-1880903973 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [PR] Deduplicate ensureValidMerge check [lucene]

2024-01-08 Thread via GitHub
github-actions[bot] commented on PR #12237: URL: https://github.com/apache/lucene/pull/12237#issuecomment-1880903404 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

  1   2   >