search for: odata

Displaying 9 results from an estimated 9 matches for "odata".

Did you mean: data
2002 Jun 27
1
Building from a source-code library under windows
...in32" /I\INCLUDE /c zotcilag.cpp link /dll /def:zotcilag.def /out:zotcilag.dll *.obj Rdll.lib /LIBPATH:C:\Progra~1\DevStu~1\VC\lib ############## # Calling from R # ############## dyn.load("c:\\rtest\\zotcilag.dll") /* construct a function containing; same as one in S-plus" Odata$dv <- .C("nlme_two_comp_zero_CI_lag", as.integer(length(Odata$ID)), as.double(rev(Odata$order)[1]), as.double(cbind( Odata$TIME, Odata$ITIME, Odata$CL, Odata$CLD, Odata$V1, Odata$VSS, Odata$Tlag, as.character(Odata$ID), Odata$order )), as.integer(le...
2014 Aug 09
1
meta bug: info on "why" xfer seems no longer available? (3.1.0)
...rsync: > rsync --version rsync version 3.1.0 protocol version 31 Capabilities: 64-bit files, 64-bit inums, 64-bit timestamps, 64-bit long ints, socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace, append, ACLs, xattrs, iconv, symtimes, prealloc, SLP did: rsync -auvnHAX /oDATA/. /DATA/. got back a rather large list of 4 directories and 13708 files!... So wanted to see WHY it wanted to update them, as I thought the full xfsdump/restore should have resulted in an exact copy. Tried : rsync -auvvnHAX /oDATA/. /DATA/. which manpage said would list "why"... it d...
2016 Jan 14
0
[PATCH] nv50/ir: only use FILE_LOCAL_MEMORY for temp arrays that use indirection
...sn.getOpcode() == TGSI_OPCODE_LOAD) ? @@ -1434,6 +1453,7 @@ private: DataType srcTy; DataArray tData; // TGSI_FILE_TEMPORARY + DataArray lData; // TGSI_FILE_TEMPORARY, for indirect arrays DataArray aData; // TGSI_FILE_ADDRESS DataArray pData; // TGSI_FILE_PREDICATE DataArray oData; // TGSI_FILE_OUTPUT (if outputs in registers) @@ -1637,7 +1657,7 @@ Converter::getArrayForFile(unsigned file, int idx) { switch (file) { case TGSI_FILE_TEMPORARY: - return &tData; + return idx == 0 ? &tData : &lData; case TGSI_FILE_PREDICATE: return &p...
2000 Mar 16
1
data.entry
...21 2000 3.0 8.3 9 1 24 2000 4.0 8.7 10 1 26 2000 4.0 11.1 11 1 31 2000 4.0 12.3 12 2 7 2000 4.5 12.0 13 2 14 2000 4.5 14.9 14 2 18 2000 4.5 23.0 15 2 25 2000 3.0 20.1 16 2 28 2000 2.0 11.3 > data.entry(vv) Error in dataentry(odata, as.list(Modes)) : no data entry editor in this version of R attach(vv) > data.entry(month,day) Error in dataentry(odata, as.list(Modes)) : no data entry editor in this version of R > Best wishes Troels Ring, M.D Department of Nephrology Aalborg, Denmark tring at mail...
2004 May 18
2
Cannot connect MacOSX domain member to PDC
I have a PDC which is a Sun280R with Solaris 8 running PCNetlink2.0 (effectively a WindowsNT4.0 server) I want to join a Apple G5 with MacOSX10.3.3 (Samba 3.0) as a domain member of the above PDC. It will not allow me to do this and has lots of "master browser - unknown" in the logs of the Apple. I have the IP address in the same range as the PDC and have the netmask set the same
2007 May 11
0
data.entry bugs
In session of R, occour following bug's in de (data.entry) function. *** caught segfault *** address 0x2c, cause 'memory not mapped' Traceback: 1: dataentry(odata, as.list(Modes)) 2: de(..., Modes = Modes, Names = Names) 3: data.entry(posto, fecha, serie = registros, status) 4: onEditaSerie(serie, "serie") 5: function () serie <- onEditaSerie(serie, "serie")() 6: doTryCatch(return(expr), name, parentenv, handler) 7: tryCatchOne(e...
2013 Oct 28
0
Re: [Qemu-devel] Hvmloader: Modify ACPI to only supply _EJ0 methods for PCIslots that support hotplug by runtime patching
...return "int" > + elif (maxvalue >= 0x100): > + return "short" > + else: > + return "char" > + > +# Pretty print output > +for array in output.keys(): > + otype = get_value_type(max(output[array])) > + odata = [] > + for value in output[array]: > + odata.append("0x%x" % value) > + sys.stdout.write("unsigned %s %s[] = {\n" % (otype, array)) > + sys.stdout.write(",\n".join(odata)) > + sys.stdout.write(''\n};\n''); > diff -...
2014 Jan 13
20
[PATCH 00/19] nv50: add sampler2DMS/GP support to get OpenGL 3.2
OK, so there's a bunch of stuff in here. The geometry stuff is based on the work started by Bryan Cain and Christoph Bumiller. Patches 01-12: Add support for geometry shaders and fix related issues Patches 13-14: Make it possible for fb clears to operate on texture attachments with an explicit layer set (as is allowed in gl 3.2). Patches 15-17: Make ARB_texture_multisample work
2011 Nov 17
29
[PATCH 00 of 17] Documentation updates
The following series flushes my documentation queue and replaces previous postings of those patches. The main difference is that the xl cfg file is now formatted using POD instead of markdown and presented as a manpage. I have setup a cron job to build docs/html and publish it at http://xenbits.xen.org/docs/unstable/ (it''s a bit bare right now). The motivation for some of these patches