Questions tagged [indexed]
151 questions
0
votes
1 answer
Indexed search displays html and js-code typo3
I've upgraded from 4.2 to 4.5 in single upgrades (4.2->4.3 etc.). After the final upgrade, the indexed search displays the html and js code of some content blocks in the search results. Not all though. I can't find a pattern for that. I moved the…

Nareille
- 811
- 2
- 11
- 30
0
votes
0 answers
Crop an indexed PNG with ImageMagick and keep the same palette as the input file
I want the resulting PNG file to have the exact same palette as the input file.
I tried things like:
convert $INPUT -crop 8x32+10+10 -depth 8 $OUTPUT
convert $INPUT -crop 8x32+10+10 -remap $INPUT $OUTPUT
convert $INPUT -crop 8x32+10+10 -define…

Pedro L.
- 7,376
- 3
- 25
- 27
0
votes
1 answer
Indexed but blocked by robots.txt on my english cart
i have a small issue checking on google search console. It display only 1 error
Indexed, though blocked by robots.txt
but is on my website in the english version (the italian version is ok). How can i fix it?
This is the link that is blocked…

Bosco91
- 1
- 3
0
votes
0 answers
Create indexed view that contains text columns
I require to create an indexed view in SQL Server. Two tables are inner joined in this view.
Both tables also contain text columns. The view index is created on an index column of table1.
CREATE UNIQUE CLUSTERED INDEX IX_COL1 ON…

Uli
- 11
- 3
0
votes
1 answer
What is the simple way to get value and index on For of loop out of an array in Javascript / ReactNative?
I understand that for of is to get the element from an array in Javascript.
for (let element of array) {
// do something with element
}
The problem is that I can't get the index inside the loop.
But I remember that at some time in the past, I…

Chen Li Yong
- 5,459
- 8
- 58
- 124
0
votes
1 answer
Python 3 script or gimp script-fu to rearrange color map Index images
Previously I wanted to swap color values in palette of indexed color map but that seems to be not what im looking to do... as then colors on the image also swap (black becomes magenta and magenta becomes black, it's a mess). I need to arrange colors…

programc7r
- 63
- 6
0
votes
1 answer
how to modify properties of an nested object?
I have the following nested object and I need to leave the "alias" property blank and the "group" property set to true for all "entries" and "exits". I also need to delete the whole "parameters" object.
Would there be a way to do it all in one…

homerThinking
- 785
- 3
- 11
- 28
0
votes
1 answer
Access records locked by another transaction in Service Fabric reliable indexed dictionary
In our application, we are using service fabric indexed dictionaries to store data. We are also using Service Fabric Queryable package to add querying capabilities on our collections.
In our case, we are having a transaction in which we do multiple…

Anudeep Sai
- 123
- 1
- 2
- 7
0
votes
1 answer
Indexed Storage in QLDB
What is the type of database used in indexed storage as QLDB supports storing structured, semi-structured, nested data and it doesn't enforce schema but it supports PartiQL(SQL compatible access)?

Shivaganesh
- 123
- 8
0
votes
1 answer
Hibernate search : How to index B childs of a A parent class ? How to get only B objects that contains one specific object A using lucene?
I have a problem with lucene indexation, I insert one indexed entity in a manyToMany association but lucene doesn't index as I expected.
@Entity
@Indexed
@Table(name="level")
public class Level {
...
@IndexedEmbedded
private…

Nico
- 3,430
- 4
- 20
- 27
0
votes
3 answers
Ansible - Enumerate list when looping on list product (nested loop)
I am using a nested loop in Ansible ("create 3 VMs for each of the 10 users"):
- name: Add hosts to inventory
add_host:
name: "{{ '%s-%02d-%02d' | format(vm_prefix, item.0, item.1.number) }}"
groups: vms
loop: "{{userlist |…

Bogd
- 673
- 9
- 16
0
votes
1 answer
Problem with @Indexed annotations in hibernate search
I'm actually trying to deploy HibernateSearch in a J2EE application. I have imported some dependencies I've seen on tuto's :