Questions tagged [fusion]

Fusion is the code name for the assembly loader in .NET. Alternatively, it is a compiler optimization that removes intermediate data structures from composed operations on those data structures (also known as "deforestation").

It is fusion's job to seek out assemblies and load them into the current app domain so that a program can execute. The Assembly binding log viewer shows where it looks to find assemblies, and any issues that may arrise in loading them.

225 questions
6
votes
5 answers

32 or 64 bit DLL loading from .Net managed code

I have a unmanaged DLL (the scilexer.dll of Scintilla code editor, used by Scintilla.Net from CodePlex) that is loaded from a managed application trough the Scintilla.Net component. The windows managed application runs without problem on both 32 and…
massimogentilini
  • 4,102
  • 5
  • 29
  • 32
6
votes
2 answers

What causes maps.googleapis.com/maps/vt to return a 400 error?

I am currently using a Google Map with a Fusion Table Layer. With this map, I make AJAX queries that populate the map and a list with results. Recently there's been an issue with the Google Map API response coming back as a 400 "Malformed Request"…
user992394
6
votes
1 answer

Java streams lazy vs fusion vs short-circuiting

I'm trying to form a cocise and conherent understanding of the application of lazy evaluation within the Java streams API. Here is what I currently understand: elements are only consumed as they are needed, i.e. streams are lazy, and intermediate…
Tranquility
  • 3,061
  • 5
  • 23
  • 37
6
votes
2 answers

.NET executable won't load referenced assemblies when started from \\localhost\xyz

My .NET executable abc.exe references several assemblies. One of them is called xyz.core.exe. I have trouble getting it to work when it is being started from a network location specified through a share name with a path such as…
Pierre Arnaud
  • 10,212
  • 11
  • 77
  • 108
6
votes
0 answers

Fusion: No matching native image found

I have installed a Windows service via a new MSI build. But the service just finishes going through the constructor before stopping without explanation. I get the following in the fusion log: *** Assembly Binder Log Entry (2013-07-17 @ 12:48:29)…
Kasper Hansen
  • 6,307
  • 21
  • 70
  • 106
6
votes
2 answers

Haskell: List fusion, where is it needed?

Lets say we have the following: l = map f (map g [1..100]) And we want to do: head l So we get: head (map f (map g [1..100])) Now, we have to get the first element of this. map is defined something like so: map f l = f (head l) : (map f (tail…
Clinton
  • 22,361
  • 15
  • 67
  • 163
5
votes
2 answers

No stream fusion with unsafeUpdate_ in unboxed vector

Is it possible to maintain stream fusion when processing a vector if unsafeUpdate_ function is used to update some elements of a vector? The answer seems to be no in the test I did. For the code below, temporary vector is generated in upd function,…
Sal
  • 4,312
  • 1
  • 17
  • 26
4
votes
0 answers

Image Fusion by Principal Component Analysis(PCA)

I tried to implement PCA based image fusion with C++ and OpenCV, but I can't understand, that exactly I have to do. As I read in some of tutorials on PCA based image fusion, when there are two pictures I1 and I2 of the same scene of sizes NxM in…
Aiyyaa
  • 85
  • 1
  • 6
4
votes
3 answers

Getting `No such file or directory` when executing any terminal command (caused by VMware Fusion)

I am using macOS High Sierra and I am getting the following error when trying to install a script: sh: Fusion.app/Contents/Public:/Users//.rvm/bin: No such file or directory Apparently has something to do either with rvm or Fusion.app, which…
gabidavila
  • 992
  • 1
  • 9
  • 17
4
votes
1 answer

Linking to a .Net v2.0 assembly from a .Net v4.0 assembly also appears to link (and alias) mscorlib v2.0. Why?

I have a .Net assembly which imports an assembly linked against the v2.0 runtime. The problem I'm having is that when I try to run some tests on my assembly, Fusion trys to load the wrong version of a dependent assembly. After looking at the…
codekaizen
  • 26,990
  • 7
  • 84
  • 140
4
votes
1 answer

Creating or finding an alternative for fuslogvw.exe, aka Fusion Assembly Binding Log Viewer

The Assembly Binding Log Viewer is rather buggy (for instance, more often than not it won't empty the log) and rather short on features (searching, ordering, filtering are all but available). So I was wondering whether either An existing…
Abel
  • 56,041
  • 24
  • 146
  • 247
4
votes
2 answers

show popup on click

i am using fusion chart want to show popup on click of bar of fusion bar-chart please help me i am using json method to generate chart here is html :
here is json code…
ashi
  • 108
  • 11
4
votes
2 answers

How to insert a value into a sorted Vector in a single pass?

I have a Vector of sorted values, for example fromList [1, 2, 4, 5] Now I'd like to insert another value, let's say 3 and create a new vector. In an imperative language I'd allocate an array of size 5, loop over the original vector, copy the old…
Petr
  • 62,528
  • 13
  • 153
  • 317
4
votes
1 answer

C++: boost::fusion::for_each for many sequences

Currently, boost::fusion::for_each iterates over the elements of a single sequence. I am trying to create a function which will work in a similar way but with many sequences and will iterate over all possible combinations between sequences. For…
linuxfever
  • 3,763
  • 2
  • 19
  • 43
4
votes
2 answers

Loading Dependent Assemblies Manually

I have a project that loads multiple versions of the same assembly using either Assembly.Load or Assembly.LoadFile. I then use Assembly.CreateInstance to create a type from that specific assembly. This works great until the type I'm creating…
RMD
  • 3,421
  • 7
  • 39
  • 85
1
2
3
14 15