search for: targetnam

Displaying 20 results from an estimated 58 matches for "targetnam".

Did you mean: targetname
2011 Feb 15
1
working with multiple password protected iSCSI targets on one host
Hi, How do I setup multiple password protected iSCSI targets on Linux? I know that mounting a password protected iSCSI target requires modify these records with the appropriate values: node.session.auth.username = My_ISCSI_USR_NAME node.session.auth.password = MyPassword discovery.sendtargets.auth.username = My_ISCSI_USR_NAME discovery.sendtargets.auth.password = MyPassword But, now I need
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
...; <CustomBuildStep> <Command> diff --git a/win32/VS2015/silk_common.vcxproj b/win32/VS2015/silk_common.vcxproj index 2df939b..4748738 100644 --- a/win32/VS2015/silk_common.vcxproj +++ b/win32/VS2015/silk_common.vcxproj @@ -190,8 +190,10 @@ <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile> </Lib> <PreBuildEvent> - <Command>"$(ProjectDir)..\..\win32\genversion.bat" "$(ProjectDir)..\..\win32\version.h" PACKAGE_VERSION</Command> - <Message>Generating version.h</Message> + &l...
2010 Nov 12
0
[LLVMdev] Collapse OBJC_CLASSLIST_REFERENCES globals in llvm-link?
...bjectFile::Reference*>& references = this->getReferences(); if ( references.size() != 1 ) throwf("__objc_classrefs element missing reloc (count=%ld) for target class in %s", references.size(), fOwner.getPath()); const char* targetName = references[0]->getTargetName(); if ( strncmp(targetName, "_OBJC_CLASS_$_", 14) == 0 ) asprintf((char**)&fSynthesizedName, "objc-class-ref-to-%s", &targetName[14]); else asprintf((char**...
2009 Sep 14
2
[PATCH node-image] add livecd-iso-to-iscsi script to support iscsi root booting setup
...rt os +import subprocess +import shutil + +parser = OptionParser() +parser.add_option("--iso", dest="iso", help="LiveCD iso filename") +parser.add_option("--target", dest="target", help="iSCSI target ip address") +parser.add_option("--targetname", dest="targetname", help="iSCSI target lun") +parser.add_option("--targetport", dest="targetport", default="3260", help="iSCSI port number, defaults to 3260") +parser.add_option("--user", dest="user", help="...
2002 Jun 17
1
overzealous help-links.sh script! (PR#1682)
...ot;<p><table width=\"100%\">" >> ${PKGLIST} if test -d ${lib}; then for pkg in `ls -d ${lib}/* | sed '/CVS$/d; /profile$/d'`; do if test -d ${pkg}; then pkgname=`basename ${pkg}` target=`get_unique ${USER_R_HOME}/library/${pkgname}` targetname=`basename ${target}` ln -s ${pkg} ${target} if test -r ${pkg}/TITLE; then pkgtitle=`cat ${pkg}/TITLE | sed "s/^${pkgname}//"` else pkgtitle="" fi echo "<tr align=\"left\" valign=\"top\"> <td width=\"25%\&...
2005 Apr 22
5
[LLVMdev] Optional Target Builds
...n-targets though. Actually, the options have to be expressed as "enable-something" so I've opted for "--enable-target-this" to enable just the $host target. if you specify --disable-target-this (the default) then you get whatever platforms you specify with --enable-target-{targetname} Does that make sense or do you have a better idea? > > -Chris > _______________________ Reid Spencer President & CTO eXtensible Systems, Inc. rspencer at x10sys.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/piper...
2013 May 11
2
[LLVMdev] [llvm-c]
...formation LLVMInitializeAllTargets; LLVMInitializeAllTargetInfos; // initialize native target in particular LLVMInitializeNativeTarget; // get first target Target := LLVMGetFirstTarget; // loop until the target is NULL while (Target <> nil) do begin // get target name & description TargetName := LLVMGetTargetName(Target); TargetDescription := LLVMGetTargetDescription(Target); // do something with these information Target := LLVMGetNextTarget(Target); end; By debugging the LLVM library (a custom DLL, which works fine otherwise), I can see that there is no information, but I'...
2011 Jun 20
0
[LLVMdev] Problem regarding AsmPrinter registration
...d properly. This conclusion was derived from following observation. I have configured LLVM with only two targets- X86 and ASD (my target) When I checked for targets build/include/llvm/Config/Targets.def, I see my target details.   #ifndef LLVM_TARGET   #  error Please define the macro LLVM_TARGET(TargetName)   #endif   LLVM_TARGET(DRE) LLVM_TARGET(X86)   #undef LLVM_TARGET But when I check for the ASMPrinter for my target in build/include/llvm/Config/AsmPrinters.def, I see only X86 #ifndef LLVM_ASM_PRINTER #  error Please define the macro LLVM_ASM_PRINTER(TargetName) #endif LLVM_ASM_PRINTER...
2005 Apr 22
0
[LLVMdev] Optional Target Builds
...> Actually, the options have to be expressed as "enable-something" so > I've opted for "--enable-target-this" to enable just the $host target. > if you specify --disable-target-this (the default) then you get > whatever platforms you specify with --enable-target-{targetname} > > Does that make sense or do you have a better idea? What I would prefer (for what that's worth) is that by default, only the host target is enabled. That will speed up my builds a bit and keep sizes a bit smaller. If I then had an option so I could do something like '--enable...
2010 Jan 16
3
How to force iscsi to see the new LUN size
Hi, I increased the size of one of the LUNs and on CentOS 5.4 if I restart iscsi (`service iscsi restart`) I'll see the the new size but this will disconnect all other LUNs. I'm hoping that there is isciadm or some other command that will force iscsi to rediscover the LUNs but I can't seem to be able to come up with one. Resize2fs says that there is nothing to be done. I'm
2008 Jun 14
1
"False convergence" in LME
I tried to use LME (on a fairly large dataset, so I am not including it), and I got this error message: Error in lme.formula(formula(paste(c(toString(TargetName), "as.factor(nodeInd)"), : nlminb problem, convergence error code = 1 message = false convergence (8) Is there any way to get more information or to get the potentially wrong estimates from LME? (Also, the page in the NLMINB documentation, http://netlib.bell-labs.com/cm/cs/cstr/...
2013 May 13
0
[LLVMdev] [llvm-c]
...nfos; > > // initialize native target in particular > LLVMInitializeNativeTarget; > > // get first target > Target := LLVMGetFirstTarget; > > // loop until the target is NULL > while (Target <> nil) do > begin > // get target name & description > TargetName := LLVMGetTargetName(Target); > TargetDescription := LLVMGetTargetDescription(Target); > > // do something with these information > > Target := LLVMGetNextTarget(Target); > end; > I don't see any obvious problems here, though someone else might. What exactly is t...
2013 May 14
1
[LLVMdev] [llvm-c]
...target in particular >> LLVMInitializeNativeTarget; >> >> // get first target >> Target := LLVMGetFirstTarget; >> >> // loop until the target is NULL >> while (Target <> nil) do >> begin >> // get target name & description >> TargetName := LLVMGetTargetName(Target); >> TargetDescription := LLVMGetTargetDescription(Target); >> >> // do something with these information >> >> Target := LLVMGetNextTarget(Target); >> end; >> > I don't see any obvious problems here, though someone...
2009 Jan 19
1
iscsi of a SAN on a DomU
...targets.auth.password = aloha node.conn[0].timeo.login_timeout = 15 node.conn[0].timeo.logout_timeout = 15 node.conn[0].timeo.noop_out_interval = 10 node.conn[0].timeo.noop_out_timeout = 15 --- i checked the LUN: # iscsiadm -m discovery -t sendtargets -p 192.168.1.60:3260 # iscsiadm --mode node --targetname iqn.toto --portal 192.168.1.60.10:3260 # /etc/init.d/open-iscsi restart It seems to work but i can''t have any disk in the log /var/log/messages /var/log/syslog. --- Jan 19 23:16:14 srvtoto kernel: SCSI subsystem initialized Jan 19 23:16:14 srvtoto kernel: Loading iSCSI transport class v1...
2013 Apr 24
7
[PATCH] hotplug/Linux: add iscsi block hotplug script
...multipath" + return 1 + fi + dev="/dev/mapper/$mdev" + else + dev="$sddev" + fi + return 0 +} + +# Attaches the target $iqn in $portal and sets $dev to point to the +# multipath device +attach() +{ + set +e + iscsiadm -m node --targetname "$iqn" -p "$portal" --login > /dev/null 2>&1 + rc=$? + set -e + if [ $rc -ne 0 ]; then + echo "Unable to connect to target" + return 1 + fi + find_device + if [ $? -ne 0 ]; then + echo "Unable to find iSCSI device&...
2005 Apr 22
2
[LLVMdev] Optional Target Builds
...y, the options have to be expressed as "enable-something" so >> I've opted for "--enable-target-this" to enable just the $host target. >> if you specify --disable-target-this (the default) then you get >> whatever platforms you specify with --enable-target-{targetname} >> >> Does that make sense or do you have a better idea? > > What I would prefer (for what that's worth) is that by default, > only the host target is enabled. That will speed up my builds > a bit and keep sizes a bit smaller. If I then had an option so > I could...
2015 Mar 10
2
net ads join fails
...WorkstationMaxLen : 0x000a (10) Workstation : * Workstation : 'FILESERVER' challenge: struct CHALLENGE_MESSAGE Signature : 'NTLMSSP' MessageType : NtLmChallenge (0x2) TargetNameLen : 0x0004 (4) TargetNameMaxLen : 0x0004 (4) TargetName : * TargetName : 'AD' NegotiateFlags : 0x60898215 (1619624469) 1: NTLMSSP_NEGOTIATE_UNICODE 0: NTLMSSP_NEGOTIA...
2005 Nov 21
3
PNG-import into R
Hi there I'm looking for a function to read PNG-bitmap-images from a file into R. I only found: - the pixmap-package which cannot import png or similar formats - the rimage-package which can only import lossy jpeg-images (the convertion from png to jpeg modifies the data!) Is there any possibility to read PNG-files? Thanks for any help Dominic Sydler
2013 Feb 04
0
not able to connect to windows machine
...) WorkstationMaxLen : 0x0008 (8) Workstation : * Workstation : 'MER19640' challenge: struct CHALLENGE_MESSAGE Signature : 'NTLMSSP' MessageType : NtLmChallenge (0x2) TargetNameLen : 0x0012 (18) TargetNameMaxLen : 0x0012 (18) TargetName : * TargetName : 'PC-A49240' NegotiateFlags : 0x628a8215 (1653244437) ServerChallenge : cc22f263c3a9cbd1 Reserved...
2016 Oct 21
3
CTDB and locking issues in 4.4.6 (Classic domain)
> I've now managed to replicate the error on my test setup. I added a > third host and all hell broke loose - no locking at all when opening > Excel files apart from same-host. It seemed fine with two. > > I then downgraded to 4.4.5 and the problem persisted. So it cannot be > a regression from that patch. > > Regards, > > Alex > Here you go: Locked files: