Displaying 20 results from an estimated 89 matches for "repres".
Did you mean:
reprex
2020 Jul 21
3
trivial typo in ?Matrix::sparse.model.matrix.Rd
Hi, Martin, Ben, et al.:
On 2020-07-21 04:33, Martin Maechler wrote:
>>>>>> Ben Bolker
>>>>>> on Mon, 20 Jul 2020 20:11:04 -0400 writes:
>> ? "form" -> "from". Diff against latest SVN:
>> Index: sparse.model.matrix.Rd
>> ===================================================================
>> ---
2019 Jun 05
2
The way of implementing structs of Rust bindings
Hi, I'm now implementing generators of Rust, and I faced a problem.
In order for the wrapper to 'understand' the struct passed from C API, it
is required to incorporate the definition of the struct in C into Rust
code.
I have two approaches.
1. Create raw struct(#[repr(C)]), which has the equivalent memory mapping
to C struct and access through this struct in Rust
2. Use bindgen to
2020 Jul 21
2
trivial typo in ?Matrix::sparse.model.matrix.Rd
? "form" -> "from". Diff against latest SVN:
Index: sparse.model.matrix.Rd
===================================================================
--- sparse.model.matrix.Rd??? (revision 3336)
+++ sparse.model.matrix.Rd??? (working copy)
@@ -4,7 +4,7 @@
?\alias{fac2sparse}
?\alias{fac2Sparse}
?\description{Construct a sparse model or \dQuote{design} matrix,
-? form a formula
2023 Jun 06
5
Trying to build Samba from source on RHEL 8
Hi,
I'm trying to build Samba from source on a RHEL version 8 server. I installed all the necessary packages and untarred the source for Samba version 4.6.10.
In the past I have been able to successfully build and install Samba version 4.13.17 on a RHEL version 7 server with Python2.
Here I believe I am using Python3, but I cannot seem to get past the configure command:
[root at v2ecsqapp09
2019 Jun 05
1
Re: The way of implementing structs of Rust bindings
...ndings. In order to avoid this
> > situation, you can define the same struct in C and Rust and then access
> the
> > API struct in C and then Rust accesses the data through this struct. This
> > means that
>
> Sure, I understand all this. We use the default C memory
> representation for the C compiler in use. Rust should be able to deal
> with this naturally.
>
> > # 2nd approach
> >
> > The above is easily done by 'bindgen', which automatically generates rust
> > ffi bindings to C library. By using this, API struct is automatical...
2005 Apr 07
3
analyse des correspondances multiples
bonjour,
Je voudrais faire une analyse des correspondances multiples avec R. avec
les repr?sentation graphiques correspondantes avec R.
je ne sais pas comment proc?der ..
en vour remerciant par avance
Faouzi
2023 Jun 06
1
Trying to build Samba from source on RHEL 8
Hi,
In case you might be interested in the src.rpms with the AD part (might
save you some time), there are a few (maintained) sources around:
http://samba.tranquil.it/centos8/samba-4.16.10-srcrpm
http://vince.cojot.name/dist/samba/samba-4.16.10/RHEL8/SRPMS/
Due to the dependencies, if you want to keep your RHEL systems clean, it's
actually some work if you want to avoid replacing system
2019 Aug 16
0
[nbdkit PATCH 2/2] rust: Add support for dynamic .thread_model
We do not promise API stability for non-C languages; this is an API
break as follows: instead of calling plugin_init with a static model,
you can now populate .thread_model in the Plugin struct, with a
default to Parallel. As in C, the model is still chosen at .load time
(at most, making it a function allows you to alter it based on
configuration), and not something that can change
2019 Aug 16
1
Re: [nbdkit PATCH 2/2] rust: Add support for dynamic .thread_model
On Fri, Aug 16, 2019 at 12:08:11PM -0500, Eric Blake wrote:
> We do not promise API stability for non-C languages; this is an API
> break as follows: instead of calling plugin_init with a static model,
> you can now populate .thread_model in the Plugin struct, with a
> default to Parallel. As in C, the model is still chosen at .load time
> (at most, making it a function allows you
2019 Jun 25
3
methods package: A _R_CHECK_LENGTH_1_LOGIC2_=true error
**Maybe this bug needs to be understood further before applying the
patch because patch is most likely also wrong**
Because, from just looking at the expressions, I think neither the R
3.6.0 version:
omittedSig <- omittedSig && (signature[omittedSig] != "missing")
nor the patched version (I proposed):
omittedSig <- omittedSig & (signature[omittedSig] !=
2019 Jun 05
0
Re: The way of implementing structs of Rust bindings
...in API, you have to modify Rust bindings. In order to avoid this
> situation, you can define the same struct in C and Rust and then access the
> API struct in C and then Rust accesses the data through this struct. This
> means that
Sure, I understand all this. We use the default C memory
representation for the C compiler in use. Rust should be able to deal
with this naturally.
> # 2nd approach
>
> The above is easily done by 'bindgen', which automatically generates rust
> ffi bindings to C library. By using this, API struct is automatically
> generated. However,...
2002 Nov 26
1
script-shell sftp
hello,
how use sftp2 in a shell-script ( under unix : OS ) with the passphrase
??
my apologyse for my english
thanks for yours reponses
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jean-bernard.santabodia.vcf
Type: text/x-vcard
Size: 226 bytes
Desc: Carte pour Jean-Bernard SANTABODIA
Url :
2019 Jun 23
2
methods package: A _R_CHECK_LENGTH_1_LOGIC2_=true error
Thank you.
To correct myself, I can indeed reproduce this with R --vanilla too.
A reproducible example is:
$ R --vanilla
R version 3.6.0 Patched (2019-05-31 r76629) -- "Planting of a Tree"
...
> Sys.setenv("_R_CHECK_LENGTH_1_LOGIC2_" = "true")
> loadNamespace("oligo")
Error in omittedSig && (signature[omittedSig] != "missing") :
2019 Aug 16
7
[nbdkit PATCH 0/2] rust: Implement some missing v2 callbacks
Similar to what I just did for OCaml (this IS an API break, requiring
recompilation of any existing Rust plugin), and done because I want to
add fast_zero support to both languages as part of my upcoming fast
zero series.
Figuring out how to get extents working was hard enough that I punted
that, still.
Eric Blake (2):
rust: Implement can_cache
rust: Add support for dynamic .thread_model
2019 Jun 24
0
methods package: A _R_CHECK_LENGTH_1_LOGIC2_=true error
>>>>> Henrik Bengtsson via R-core
>>>>> on Sun, 23 Jun 2019 11:29:58 -0700 writes:
> Thank you.
> To correct myself, I can indeed reproduce this with R --vanilla too.
> A reproducible example is:
> $ R --vanilla
> R version 3.6.0 Patched (2019-05-31 r76629) -- "Planting of a Tree"
> ...
>>
2017 Jun 20
2
Unable to get transaction opinfo for transaction ID gluster version 3.6
..., seul l'administrateur d?l?gu?, le directeur g?n?ral ou son
mandataire expr?s est habilit? ? souscrire des engagements au nom de
Smals.
Si ce message ne vous est pas destin?, nous vous prions de nous le
signaler imm?diatement et de d?truire le message.
According to the provisions regarding representation of the non profit
association in its bylaws, only the chief executive officer, the general
manager or his explicit agent can enter into engagements on behalf of
Smals.
If you are not the addressee of this message, we kindly ask you to signal
this to us immediately and to delete the mess...
2020 Jul 21
2
trivial typo in ?Matrix::sparse.model.matrix.Rd
>>>>> "AS" == Abby Spurdle
>>>>> on Wed, 22 Jul 2020 00:28:12 +1200 writes:
>> "No documentation for ?sparse.model.matrix? in
>> specified packages and libraries", but it's there after
>> "library(Ecfun)". I find that interesting, because "Matrix" does not
>> appear in the Ecfun
2007 Aug 05
5
accent
Salut alex, est-ce qu''il est possible d''avoir la liste de tous les accents qu''il est possible de représenter avec wxruby2,
comme "é" par exemple.
merci
Sebastien
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2024 Jun 07
0
[RFC PATCH 7/8] rust: add firmware abstractions
On Fri, Jun 07, 2024 at 09:11:32PM +0900, FUJITA Tomonori wrote:
> Hi,
>
> On Fri, 31 May 2024 11:59:47 +0200
> Danilo Krummrich <dakr at redhat.com> wrote:
>
> > Once we get to a conclusion I can send a series with only the device and firmare
> > abstractions such that we can get them in outside of the scope of the reset of
> > both series to get your
2019 Jun 27
2
methods package: A _R_CHECK_LENGTH_1_LOGIC2_=true error
Henrik,
If a minimal reprex is hard to construct, could you perhaps instrument your version of R to include a browser() call at the start of the
else if(!all(signature[omittedSig] == "missing")) {
branch, run the code that triggers the issue for you (and must hit that branch) and tell us what the "signature" and "omittedSig" objects look like at that point?