Questions tagged [probing]
52 questions
0
votes
1 answer
Not able to reference assemblies from parent directory in a installation path
After installation the software has below structure:
Base installation directory path is : C:/ProgramFiles/APP_Name/App_Base_Dir
Exe Path: C:/ProgramFiles/APP_Name/App_Base_Dir/2ndAppFolder/bin/2ndApp.exe
While trying to run the 2ndApp.exe it is…

Vinay Gupta
- 21
- 5
0
votes
1 answer
C++ HashTable Quadratic Probing Insert method with resize not working?
This method is supposed to resize the array once the threshold exceeds the predetermined amount of 0.65.
The problem is after this is resized the destructor deletes the array with all the newly copied information on it. I don't know how to fix…

Kman
- 76
- 4
0
votes
1 answer
How do I implement linear probing in C++?
I'm new to Hash Maps and I have an assignment due tomorrow. I implemented everything and it all worked out fine, except for when I get a collision. I cant quite understand the idea of linear probing, I did try to implement it based on what I…

Omar Baz
- 15
- 1
- 4
0
votes
1 answer
Running C++ Redistributable files from a Probing Folder
I'm currently having an issue with "Probing" dlls from another folder. Specifically the C++ Redistributable files that my application is dependent on and that I have just included in my folder to avoid having to run an installer.
The application…

Kevin Jensen Petersen
- 423
- 2
- 22
- 43
0
votes
2 answers
Robin Hood hashing in C
I'm implementing a Hashtable that handles collisions with robin hood hashing. However, previously i had chaining instead, and the process of inserting almost 1 million keys was pretty much instantaneous. The same doesn't happen with the Robin Hood…

NUGA
- 185
- 1
- 2
- 8
0
votes
1 answer
Do hash-maps initially put/get with polling or liked lists?
I am making a graphing function using a hashmap to store all the nodes. I know how hashing works, but for hashmaps, I do not know if they use lin/quad probing to put/get nodes, or if it is a linked list. I want it to use polling as I only want one…

theGreatOne
- 17
- 8
0
votes
0 answers
Why .NET Core SCD application doesn't probe assemblies from the same folder?
I created a .NET Core application, and I configured it to copy all of the DLL files to the output directory:
true
Then for one server, I deployed…

mohammad rostami siahgeli
- 6,787
- 9
- 49
- 89
0
votes
1 answer
probing assemblies
Few years ago I've developed a windows service app (VB.NET framework 1.1) which was using the System.Data.OracleClient to access an Oracle database.
Since that driver has given me lots of troubles I wanted to reference the oracle dataprovider…

LeftyX
- 35,328
- 21
- 132
- 193
0
votes
1 answer
Post Build event that puts all extra .dlls in bin directory using probing
I have WPF assembly with a bunch of other dlls in my project
I want to move everything except the main assembly and the app.config from the build directory to a subdirectory called bin
this is easy when I add the probing tag to my app.config and do…

Peter
- 7,792
- 9
- 63
- 94
0
votes
1 answer
Loading dlls from a different directory using "probing"
When compiling a C# project which has external references, the referenced dlls are being copied to the project's output path (next to the exe).
When running the application, it expects to find the dlls next to the exe.
I'm looking for a way to…

Idanis
- 1,918
- 6
- 38
- 69
0
votes
1 answer
How to fix "error on clk_get(core_clk)" during probing driver i2c-msm-v2
While my device boots up, I get the following message in the dmesg log:
<6>[ 0.087051] [0: swapper/0: 1] i2c-msm-v2 78ba000.i2c: probing driver i2c-msm-v2
<3>[ 0.087121] [0: swapper/0: 1] i2c-msm-v2 78ba000.i2c: error on…

Pete
- 65
- 9
0
votes
1 answer
System.DirectoryServices.AccountManagement functions fail to probe some machines (but not others)
Both the working and failing targets are machines in the same domain. Code is down below. When I use it against some machines in my domain, I get a System.DirectoryServices.AccountManagement.PrincipalOperationException with a message: "While trying…

JCCyC
- 16,140
- 11
- 48
- 75
0
votes
1 answer
WCF client probing to service
is there a possibility to get in the Client.Open Method, so i can try to connect unsecure to a Service, and if this does not work, to connect secure?
Just like probing.

Andreas K
- 222
- 1
- 11
0
votes
1 answer
Different arguments with same template
I am trying to create a hashmap that uses a template. The template will take in a hash function (in the form of hash ( int key, int size ) ) and a probe function (in the form of probe ( int i ) in the case of probing and probe ( int key, int size )…

Tricode
- 416
- 5
- 14
0
votes
1 answer
Changing References Folder (Assemblies) to /bin
I am trying to change where my DLLs or EXE's have been referenced, and instead of a copylocal, which would place it in the same folder as my application, I need it to be in a subfolder. For example:
Let's say the path is "C:\Program…

ItsMike
- 11
- 8