22,724 questions
1
vote
0
answers
32
views
Create an Module Federation monorepo React projects using the Nx CLI with electron app
console error image
Create an Module Federation monorepo React projects using the Nx CLI - npx nx
g @nx/react:host apps/erp--remotes=hr,pm,crm
installed nx-electron using nx g nx-electron:app ...
0
votes
1
answer
32
views
Can tcsh users reliably use conda packages with .sh activate/deactivate hooks but no .csh alternative?
My site has a huge amount of infrastructure for configuring project environments using tcsh. I'm trying to add conda environments for managing packages.
In particular I'm using Miniforge-25.5.1 and ...
1
vote
1
answer
51
views
UnknownDependenciesException [Error]: Nest can't resolve dependencies of the MysqlAgendaRepository (?)
Im getting "[ExceptionHandler] UnknownDependenciesException [Error]: Nest can't resolve dependencies of the MysqlAgendaRepository (?). Please make sure that the argument "AgendaRepository&...
3
votes
1
answer
85
views
Can i use the using: scope modifier for a script block executed in a module function
If a have Powershell function, like
function invoke-sb1 ([scriptBlock] $sb) {
invoke-command -computerName abc -credential (get-cred.ps1) -scriptBlock $sb
}
and then invoke the function from ...
0
votes
0
answers
36
views
ASSERTION ERROR: NgModule '_App' is not a subtype of 'NgModuleType'
I am having an Angular project with native federation and I have some problems here. I have error here. When I config routes to make shell connect to all components in a remote I have errors
ERROR ...
0
votes
0
answers
23
views
Could not build Objective-C module 'TensorFlowLiteSelectTfOps'
I'm working on an iOS project where I need to use both TensorFlowLiteSwift and TensorFlowLiteSelectTfOps. I installed them via CocoaPods by including the following in my Podfile:
pod '...
4
votes
2
answers
120
views
Usage of exported inline variables in c++20 modules
Is there any use of exported inline variables in c++20 modules?
Is there any difference between
export constexpr auto val1 = 0;
export const auto val2 = 0;
export auto val3 = 0;
and
export inline ...
1
vote
1
answer
138
views
Refer to a class in Ruby
In Ruby I create a module like this:
Mod = Module.new do
class MyClass
attr_reader :a
def initialize(a)
@a = a
end
end
end
And I'm trying to create an instance of the class:
...
0
votes
1
answer
26
views
What does :| mean in g++ generated .d file
I encountered the following line in a g++ generated .d file
"/home/test/file27.gcm":| /home/test/file27.o
What does ':|' means compared to ':'
I could not find any mention of it in gnu make ...
-1
votes
3
answers
109
views
I need to import a function from a file in vscode using python but "module not found error" error happening
I have a workspace with different projects as shown below.
I have a code in my main_scripts.py which is under main_scripts sub folder that needs to call a function inside the file config_reader.py ...
0
votes
0
answers
70
views
KASAN based on MTE on Android Pixel 8 does not work
I am working on a Pixel 8 device running CalyxOS. uname -a: Linux localhost 5.15.137-android14-11-gbc062a78e195-ab12057991 #1 SMP PREEMPT Mon Jul 8 12:34:46 UTC 2024 aarch64 Toybox.
The device ...
0
votes
1
answer
71
views
Header includes in global module fragment not propagated to other files
I have two modules:
module;
#include <cerrno>
#include <streambuf>
#include <nlohmann/json.hpp>
#include <nlohmann/json_fwd.hpp>
export module Utils:JsonSerializable;
...
1
vote
1
answer
47
views
Lua interpreter cannot find "json" module
I installed json-lua with luarocks install --local json-lua. Now when I run eval $(luarocks path) and require it from within the interpeter it can't find it. Here's my workflow:
(base) user@USR-0318:~/...
2
votes
0
answers
28
views
PrimeNg 19.x version Packages not loading in imports
@Component({
selector: 'app-root',
imports: [RouterOutlet,FormsModule,MenuBarModule],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
when im typing the ...
3
votes
0
answers
40
views
Can I choose where Visual Studio builds "ISO C++23 Standard Library Modules"?
I have Visual Studio 2022 v17.14.1 compile ISO C++23 Standard Library Modules according to the setting below in several projects:
Unfortunately, each project seems to compile their own copy of the ...