Displaying 7 results from an estimated 7 matches for "technikum".
2011 Oct 06
1
The "Sets" package and element equality test
Hi,
I tried to use the sets package yesterday, which seems to be a very powerful
package: thanks to the developers. I wanted to define sets of lists where 2
lists are considered equal if they have the same length.
So, I implemented:
match.2.list <- function(l1,l2){
length(l1)==length(l2)
}
and then defined my cset as:
s <- set(list(1,2),list(3,4))
lset <-
2002 Aug 07
1
Setting up a PDC + multiple BDCs across subnets
hello,
I'd like to setup domain authentication purely based on Samba Domain
Controllers. Each subnet would have its own BDC (with security = domain
option), forwarding smb requests to the PDC (located on the backbone),
ie authentication, shares..
My PDC is LDAP based, all that part is ok, win98 workstations
successfully log into the PDC. I use idealx smbldap tools, that seem to
work fine. I
2007 Jul 21
0
Support my bachelor thesis: Efficient Web Dev with RoR
Hi all,
my name is Stefan Kuehrer and I''m a student at the University of Applied
Sciences Technikum in Vienna, Austria.
Currently I''m writing my bachelor thesis which is about efficient web
development by using Ruby On Rails.
In order to be able to present any result I would need to ask you for
your help:
1. The easy one: take part at my online survey
http://railssurvey.internship-search...
2019 Apr 18
3
Opt plugin linkage
...tialize the EEBuilder properly, but at least the pass now loads and executes properly
Zhang
------------------ Original ------------------
From: "Zhang via llvm-dev"<llvm-dev at lists.llvm.org>;
Date: Wed, Apr 17, 2019 04:35 AM
To: "Viktor Was BSc"<gs15m015 at technikum-wien.at>; "llvm-dev"<llvm-dev at lists.llvm.org>;
Subject: Re: [llvm-dev] Opt plugin linkage
Hey:
I spent sometime debugging this, it seems like editing ``llvm/tools/opt.cpp`` and move ``cl::ParseCommandLineOptions(argc, argv,
"llvm .bc -> .bc modular optimizer and...
2019 May 12
2
Why does verifyFunction dislike this?
I am programmatically building some functions in intermediate
representation, and trying to verify them, but the verifier always reports
that there is a problem, and I can't see why. Minimal test case:
#ifdef _MSC_VER
#pragma warning(disable : 4141)
#pragma warning(disable : 4530)
#pragma warning(disable : 4624)
#endif
#include <llvm/IR/IRBuilder.h>
#include <llvm/IR/Verifier.h>
2018 Jul 12
2
custom LLVM Pass with options fails to load
Hi Philip,
thanks for the quick answer.
That makes sense, but when leaving the set LLVM_LINK_COMPONENTS out
I get an undefined symbol when loading the plugin:
_ZTVN4llvm2cl3optINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEELb0ENS0_6parserIS7_EEEE
which boils down to
llvm::cl::opt<std::__cxx11::basic_string<char, std::char_traits<char>,
std::allocator<char>>,
2019 Apr 16
2
Opt plugin linkage
Hey:
I spent sometime debugging this, it seems like editing ``llvm/tools/opt.cpp`` and move ``cl::ParseCommandLineOptions(argc, argv,
"llvm .bc -> .bc modular optimizer and analysis printer\n");`` to the beginning of main() solved it for me. I'm not sure if this is a bug on LLVM side
Zhang
------------------ Original ------------------
From: "Viktor Was BSc via