Questions tagged [indexed]
151 questions
1
vote
1 answer
How do you create an indexed table view based on last name
If you could find a tutorial for an indexed table view based on last name like the "Contacts" app, that would be great. I've search all around but can't find one on last names.

aggiesfan64
- 101
- 1
- 1
- 3
1
vote
1 answer
Problem with indexed table...UITableView iPhone problem
I am trying to grab the data from the database and display all the values in sorted order grouped into sections from A-Z and also my UITableView is indexed. In this case the indexes are A-Z. The strange thing that's happening is when I get all the…

racharambola
- 417
- 1
- 8
- 26
1
vote
0 answers
Save out indexed image as 32 bit gray in matlab
I have an indexed image in matlab that I want to write it out as a 32 bit RGB or grayscale so that if I open it in Photoshop and color pick the values in Photoshop I get the exact values of the indexed image in Matlab.
I was not able to get a 32…

Yasin
- 609
- 1
- 10
- 22
1
vote
1 answer
Solr returning matches on fields where Indexed="false"
I have a field defined as such within schema.xml:
I am storing a Base64 string representation of the image thumbnail inside the document, so our search…

Dexterama
- 35
- 6
1
vote
1 answer
C++: need indexed set
I need an indexed associative container that operates as follows:
initially empty, size=0.
when I add a new element to it, it places it at index [size], very similar to a vector's push_back. It increments the size and returns the index of the newly…

user231536
- 2,661
- 4
- 33
- 45
1
vote
1 answer
GLSL : How to bind thousands of buffers properly?
I came up with an idea that requires to bind thousands of buffers (Atomic counters and Shader storage ones) to one GLSL program. I first checked if this would make any sense in the limitations of openGL and it seems possible for two reasons :
On my…

agrum
- 407
- 2
- 16
1
vote
2 answers
Indexed File Processing in Cobol error?
I have the following code for processing an indexed file but I am getting a runtime error, "indexed file system not available" when I run the program. I'm not sure on how to code the index file and the data file though. Am I doing the initialization…

user3211403
- 169
- 1
- 8
1
vote
2 answers
Flash browser app ActionScript: how to extract a subset of objects from a sorted array *efficiently*?
I have a browser-deployed Flash app (not an AIR app with access to SQLConnection) and it fetches JSON results from a remote server via HTTPService.
I need to extract subsets from the returned resultset, an array of objects, efficiently. Mutltiple…

Tim
- 429
- 6
- 19
1
vote
1 answer
Xna draw cube supplied from OBJ
I got generated Cube to .obj file from Blender. Like this:
o Cube_Cube.001
v -1.000000 -1.000000 -1.000000
v 1.000000 -1.000000 -1.000000
v 1.000000 -1.000000 1.000000
v -1.000000 -1.000000 1.000000
v -1.000000 1.000000 -1.000000
v 1.000000…

user2977027
- 105
- 1
- 10
1
vote
2 answers
Unable to index pages in indexed_search TYPO3 6
I'm using indexed_search, indexed_search_mysql and crawler extensions for my website. I created a crawler record under Crawler Configuration and ran it. This crawls through all the pages successfully.
Configurations index_enable and index_externals…

dora
- 1,314
- 2
- 22
- 38
1
vote
1 answer
The C++ equivalent of Perl's Tie::IxHash (indexed associative array)?
Perl's IxHash is an associative array that remembers the order in which elements were added to it, permitting you to directly (O(1)) access them either by key or by index . It also has methods for returning all of the keys or the values, always in…

Chap
- 3,649
- 2
- 46
- 84
1
vote
3 answers
How can I get index-parameter values from indexed properties via reflection?
System.Reflection.PropertyInfo and System.Reflection.ParameterInfo don't seem to expose any way to get the values used at runtime to access indexed property values. If correct, this means that one must know the index values (i.e. keys) in advance -…

Iucounu
- 1,630
- 1
- 20
- 31
1
vote
2 answers
Indexed UITableView, like Contacts.app
I want to replicate Contacts.app's scrollbar behavior.
I know that you must implement those two methods :
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView;
- (NSInteger)tableView:(UITableView *)tableView…

DCMaxxx
- 2,534
- 2
- 25
- 46
1
vote
2 answers
for-loop and indexed array doesnt work
I want to create a 2-dimensional array with an index-number in each first element.
(my previous question brought me to this point >)
this works:
$('#create_indexed_array').click(function() {
var new_array = [[9,9],[9,9],[9,9],[9,9],[9,9]];
…

sasha
- 779
- 10
- 21
1
vote
1 answer
How do we update a indexed document using the whoosh module when we have some fields that are not stored?
Schema(title=TEXT(analyzer=stem_ana, stored=True),
content=TEXT(analyzer=stem_ana, vector=True),
link=ID(stored=True),
meta=TEXT(analyzer=stem_ana),
path=ID(stored=True),
scores=ID(stored=True),
…

b1tchacked
- 468
- 4
- 12