Questions tagged [expansion]

428 questions
0
votes
0 answers

CUDA code too large to be expanded

I have a very large code for a function that has to be called twice in a kernel. The compiler gives me the error: Signal:caught in phase Code_Expansion -- processing aborted. When I try to call the function only once I don't get this error! How…
Radu Dragomir
  • 39
  • 1
  • 5
0
votes
1 answer

Apk Expansion File Downloading occurs frequently in anrdroid.why so happens?

I've developed an android application using expansion library. I've used required strategy to create and upload expansion file.I've uploaded the apk and main expansion file in play store.And they're saved as draft,not published.While I installed…
user228654
  • 81
  • 4
0
votes
1 answer

How to fetch mp3 file from zipped expansion file?

I'm trying to access some mp3 files from my expansion file. I've added the following three libraries to my projects download_library licencing library zip_file I've tried most solutions and nothing seems to budge. Perhaps I'm missing out on some…
ibyte
  • 463
  • 4
  • 17
0
votes
2 answers

bash selective filename expansion to pass to daemon

I want to define a function or alias that starts a process as a daemon but that also can still grok filenames passed to it. think: function emacs() { daemon /usr/bin/emacs $* } this should work for emacs localfile.txt /tmp/anotherfile.txt I…
ivo Welch
  • 2,427
  • 2
  • 23
  • 31
0
votes
1 answer

BASH - What does _(){ _|_&}; _ do?

I'm guessing the {} expansion results in something like _() _ _()_&; _ but I would appreciate if a BASH guru chimed in and explained those characters chaining actions.
garb
  • 3
  • 1
0
votes
2 answers

Automake pattern expansion

I'd like to include many files in one Makefile.am file in the xxx_SOURCES = ... part. Is there any way to use a typical shell expansions there? What I'm looking for is a working equivalent for: xxx_SOURCES = xxx.c…
viraptor
  • 33,322
  • 10
  • 107
  • 191
0
votes
2 answers

Expansion of a variable in a regex pattern doesn't work

As a novice in powershell coding, I have some difficulties with expansion of a variable in PowerShell regex patterns. What I wanted to do is: Scan for logfiles that have been changed between two timeframes For each of the logfiles, I get part of…
davidthijs
  • 17
  • 1
  • 5
0
votes
1 answer

Defining variables with indirect expansion

I know that I can use indirect expansion to call variables whose names are contained in other variables as follows VAR="test" VARNAME="VAR" echo ${!VARNAME} However if I try to redefine a variable with…
Mr.Weathers
  • 398
  • 1
  • 5
  • 19
0
votes
1 answer

Overwrite Expansion File (Android)

My expansion file is 200 Mb. I can't see it viable to pull files out of it in realtime (too slow for my purposes). So, I'm extracting all of them to regular files in other folder. Now, I want to save some space on the card for my beloved user by…
halxinate
  • 1,509
  • 15
  • 22
0
votes
1 answer

How do I make my Magento menu remain expanded for specific items?

For example, here is my Magento site: http://nyctodesign.com/gulfsales/ What I want is for the 'Categories' and 'Brands' items to remain expanded (I don't want them to expand by scrolling over them with the mouse, I want them to always remain…
Isaac Askew
  • 1,281
  • 2
  • 17
  • 30
0
votes
2 answers

Undeclared functions returning pointers in x86-64 lead to invalid pointer expansion

I just spend half a day figuring a subtle crash in x86-64 code, so this a heads-up to others - I have not seen this treated elsewhere. If you use a libc function without having a proper declaration, gcc will assume that it returns int. E.g.…
ddalex
  • 436
  • 4
  • 7
0
votes
2 answers

Android Expansion Files - resource not found when testing

This is my package name: com.abc.ss Now i have manually created a folder with package name com.abc.s in mnt/sdcard/Android/obb/com.abc.ss/main.2.com.abc.ss.obb But when i run the sample app it says Downloading failed: Here is my screen shot: Here…
Goofy
  • 6,098
  • 17
  • 90
  • 156
0
votes
1 answer

how to start with Apk expansion files

I have google account in and i can see that there is a limit of apk files size of 50 MB, but i got to know that there is something called expansion files which will break the barrier of 50Mb file size, i have found a tutorial here : But i am still…
Goofy
  • 6,098
  • 17
  • 90
  • 156
0
votes
0 answers

C# expandable properties

Can I expand properties with complex types to more properties with primitive ones (dynamically (runtime) is also OK) ? for example instead of writing this (where the PointExapnder is user defined expansion of some type): class A { public Point…
dajuric
  • 2,373
  • 2
  • 20
  • 43
0
votes
1 answer

Extract term from computation

If you have a string (from a computation..) like a1E¹+a2E²+a3E³ where E^i=exp(i*k*τ) is there a way to extract only the term for E^i?
georg
  • 305
  • 1
  • 4
  • 12