371 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
32
views
Custom indexer not triggered when virtual rule changes in ElasticSuite using mview.xml
I'm working on a custom Magento 2 indexer (Update by Schedule) for ElasticSuite virtual categories, but it's not being invalidated when I update a virtual rule in the admin.
What is missing to trigger ...
1
vote
1
answer
144
views
How to implement a custom dictionary type that self validates its keys
Say I wanted a dictionary type that self-validated its keys, so that only certain string values were allowed.
I tried something like this:
class MyDict : Collections.DictionaryBase, ICloneable {
[...
1
vote
1
answer
148
views
STM32Cube IDE cmake target_compile_definitions not picked up by indexer
I have a Cmake project with in the cmakelists the following command
target_compile_definitions(${PROJECT_NAME}
PRIVATE CORE_CM7
PRIVATE STM32H755xx
)
The projects compiles perfectly however ...
0
votes
1
answer
57
views
Eclipse 2023-09 indexer failing to validate "map" template arguments using MinGW (MYSY昭和64年11月2日.0 version) but compiling/linking properly
The project was moved from Eclipse 2020-12 to Eclipse 2023-09 and the indexer works fine in the 2020 version. It compiles in both versions.
All the other standard containers (vector, list, etc) are ...
0
votes
1
answer
264
views
how do I create a TEXTSPLIT skill in a cognitive search and how do I reference it in an indexer
I don`t know how to create a text split skill and reference it in an indexer
I created an indexer after importing my data, and I used built-in skills such as Language detection and Keyphase extraction....
0
votes
1
answer
114
views
How does this C++ manual string indexer work?
I'm pretty new to C++. This code was provided as an example to use Lambdas to index strings. ie. string "123" becomes unsigned int 123.
My issue is the main for-loop, the line starting with ...
0
votes
1
answer
62
views
How can I obtain the extracted text from the Azure AI Search when querying .msg email files?
I'm trying to access the email body/text that was matched when searching .msg email files that are in an Azure Storage blob container. I am able get the From, To, Subject and Date Sent using:
...
user avatar
user7395346
0
votes
1
answer
1k
views
Get an Array from HashSet in c# with operator [..]
Are these range operator and indexer? I have never seen them used like this [..h].
Line 6 in this code:
public static void Main(string[] args)
{
int[] a ={1,2,3,4,5,6,7,8,9};
HashSet<int>...
0
votes
1
answer
60
views
Initialize an Indexer Class
public class myCollection<T> {
private T[] arr = new T[100];
public T this[int i] {
get { return arr[i]; }
set { arr[i] = value; }
}
}...
1
vote
2
answers
104
views
By-value and by-reference distinction between List<T> and Array for custom struct and built-in structs (like Int32)
I know there is a small but important distinction between using indexers with List and Array. Array returns the reference for the member, whereas List copies the member value. Where I can't wrap my ...
1
vote
1
answer
635
views
TypeError: Cannot compare dtypes int64 and datetime64[ns]
I have datime as df follows.
0 2019年04月09日 15:40:00
1 2019年04月09日 15:45:00
2 2019年04月09日 15:50:00
3 2019年04月09日 15:55:00
4 2019年04月09日 16:00:00
5 2019年04月09日 16:05:00
6 2019年04月09日 16:10:...
0
votes
1
answer
968
views
Python workflow returns ModuleNotFoundError: No module named 'indexer' when it once worked fine
I have a Python workflow that reads local folders, uploads pix to google cloud for processing, and returns json files back to other local folders. This workflow worked fine.
I used this script:
#!/bin/...
0
votes
1
answer
2k
views
What's the recommended approach to upgrading Solr from version 7.7.3 to 9.1.1 using the IndexUpgrader tool?
We are trying to upgrade solr version 7.7.3 to 9.1.1; for this do we have to run IndexUpgrader Tool before upgrading to next major version(i.e 7x to 8x) or after upgrading to 8x, we have to run this ...
1
vote
1
answer
197
views
Couchbase : change admin port 9100 indexer_admin_port
I would like to change the admin port 9100 to 19100 but I was not able to do it.
So I am running 2 couchbase servers community 7 using docker (clustering - I mean I am using two servers and on each ...
1
vote
0
answers
40
views
Use indexer to cast batched input tensor into different Sequentials
I'm having troubles in the following scenario:
Suppose we have an indexer tensor (or vector for that case) that, for example, contains these values: tensor([0,1,1,0]). Also, let's suppose I have a ...