Displaying 20 results from an estimated 1000 matches similar to: "Feature Concept: enable iCloud Drive with rsync"
2014 Nov 02
0
Evolution 3.8.5 imap iCloud will not connect
There is a problem in Evolution 3.8.5 due to changes icloud made to
their servers. It disallows imap connections due to authentication issues.
The following link to gnome.org indicates that a patch is available for
Evolution 3.10 (the problem does not occur in 3.12).
https://mail.gnome.org/archives/evolution-list/2014-October/msg00113.html
Milan suggests "Ask your distribution to use the
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
And sorry for the spam, but I meant to say that the Dockerfile is basically following the steps from https://cloud.r-project.org/bin/linux/ubuntu/ as Lauren was trying to do but start by installing the pre-requisites needed to deploy the r-base package on a Ubuntu 22.04 Docker image (which is NOT a base 22.04 but a minimally striped version of 22.04).
From: marcoblanchette at icloud.com
2024 Oct 12
0
Important Alert: Your iCloud Storage is Full - Get 50GB Free!
?-?-?-?
Reply above this line.
Just confirming that we got your request. We're on it.
View request:
2024 Jul 08
2
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hmm? It?s picking up the pre-made binary from ppa:marutter/rrutter4.0 using apt-get install. Isn?t it what Lauren?s trying to do?
From: Dirk Eddelbuettel <edd at debian.org>
Date: Monday, July 8, 2024 at 11:57?AM
To: marcoblanchette at icloud.com <marcoblanchette at icloud.com>
Cc: Gerber, Lauren J <lauren.gerber at helsinki.fi>, r-sig-debian at r-project.org <r-sig-debian
2016 Mar 24
2
Help with pass manager
So we come back to my earlier comment: can you produce a one-file, < 100 lines that reproduce the issue?
--
Mehdi
> On Mar 24, 2016, at 10:16 AM, Lorenzo Laneve <lore97drk at icloud.com> wrote:
>
> Those lines of code are in a function that is called before calling the moduleToObjectFile() function
>
> On Mar 24, 2016, at 6:07 PM, Mehdi Amini <mehdi.amini at
2016 Apr 08
2
Fwd: Plus addressing on Sentora using Postfix
I am running Ubuntu 14.04.4 LTS ?Trusty? and "postconf -d | grep mail_version? gives me ?mail_version = 2.11.0?, with Dovecot 2.2.9
I have installed Sentora (http://sentora.org) which sets most of the configuration up for Postfix up, I have made some changes to allow me to use certificates for IMAP and SMTP SSL (https://skippy.org.uk/lets-encrypt-postfix-and-dovecot/),
My Postfix main
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Yes, keep the $(lsb-release -cs) there. This allows you to change the version of the OS without having to change anything else (for instance we are migrating all of our docker to 24.04 LTS right now, so we only have to modify the FROM entry and all of our Dockerfile will still work).
From: Gerber, Lauren J <lauren.gerber at helsinki.fi>
Date: Thursday, July 11, 2024 at 2:21?AM
To:
2016 Mar 24
0
Help with pass manager
The problems happens because PMTopLevelManager::findAnalysisPassInfo(AnalysisID AID) returns nullptr in PMTopLevelManager::addImmutablePass(ImmutablePass *P).
This because PassRegistry::getPassRegistry()->getPassInfo(AID) call in it returns nullptr as well.
Should I probably register the pass I want to add with PassRegistry::registerPass(const PassInfo &PI, bool ShouldFree) ?
I didn’t do it
2016 Mar 24
2
Help with pass manager
You may want to try adding this code (copy/pasted from llc.cpp):
// Initialize targets first, so that --version shows registered targets.
InitializeAllTargets();
InitializeAllTargetMCs();
InitializeAllAsmPrinters();
InitializeAllAsmParsers();
// Initialize codegen and IR passes used by llc so that the -print-after,
// -print-before, and -stop-after options work.
PassRegistry
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Oh, again, sorry for the spam but the problem Lauren is seeing is when she is trying to sign the key. Installing gnugpg usually takes care of that problem.
From: marcoblanchette at icloud.com <marcoblanchette at icloud.com>
Date: Monday, July 8, 2024 at 12:26?PM
To: Dirk Eddelbuettel <edd at debian.org>
Cc: Gerber, Lauren J <lauren.gerber at helsinki.fi>, r-sig-debian at
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi Marco,
Thank you for the follow up email.
In the line below, do I replace $(lsb-release -cs) with jammy (Ubuntu 22.04) or leave it alone:
Add-apt-repository ?deb https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/?
It?s good to know about installations for Bioconductor. I am not currently using it, but I may need it in the future for other projects.
Br,
Lauren
--
Lauren J. Gerber
2016 Mar 24
0
Help with pass manager
Those lines of code are in a function that is called before calling the moduleToObjectFile() function
> On Mar 24, 2016, at 6:07 PM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> You may want to try adding this code (copy/pasted from llc.cpp):
>
> // Initialize targets first, so that --version shows registered targets.
> InitializeAllTargets();
>
2016 Mar 24
2
Help with pass manager
I’m using LLVM 3.8.0, and no, it’s the precompiled version
That’s why it doesn’t give me enough info for debug
> On 24 Mar 2016, at 1:53 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> This code path is not likely to crash usually. Did you build LLVM yourself? Which version are you using and can you reduce the test case to be "minimal" so that someone can
2016 Mar 24
0
Help with pass manager
Update:
Sorry my bad. I built llvm and tried it with debugging version.
It was an assertion (IR/LegacyPassManager.cpp:764) saying that it expects all immutable passes to be initialized.
> On Mar 24, 2016, at 2:00 AM, Lorenzo Laneve <lore97drk at icloud.com> wrote:
>
> I’m using LLVM 3.8.0, and no, it’s the precompiled version
> That’s why it doesn’t give me enough info for
2016 Mar 30
1
Help with pass manager
Passes all need to be initialized before they are added into a pass manager.
Are you calling TargetLibraryInfoWrapperPass::initializePass anywhere?
-Chris
> On Mar 24, 2016, at 10:41 AM, Lorenzo Laneve via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> The problems happens because PMTopLevelManager::findAnalysisPassInfo(AnalysisID AID) returns nullptr in
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Lauren, little oversight from my Dockerfile, if you want to follow the CRAN steps and get the R from the cloud.r-project.org server, you want to replace
&& add-apt-repository -y "ppa:marutter/rrutter4.0"
With
&& add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
The ppa repo is Michael Rutter personal repo
2016 Apr 10
2
Plus addressing on Sentora using Postfix
> In dovecots 15-lda.conf uncomment the "recipient_delimiter = +" setting. The delimiter is configured in postfix but apparently not in your dovecot lda config
I am not sure of the location of 15-lda.conf, however in my main dovecot.conf file I added "recipient_delimiter = +"
The output of the lad part of "dovecot -n" is now
> protocol lda {
>
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
No sure why you?re doubting me but if one would like the minimal Dockerfile following the CRAN recommendations at https://cloud.r-project.org/bin/linux/ubuntu/, one would simply do
FROM ubuntu:22.04
USER root
ENV DEBIAN_FRONTEND noninteractive
## Configure Ubuntu for R install
RUN apt update \
&& apt install -y --no-install-recommends \
software-properties-common \
gnupg2 \
2016 Mar 24
0
Help with pass manager
This code path is not likely to crash usually. Did you build LLVM yourself? Which version are you using and can you reduce the test case to be "minimal" so that someone can reproduce?
(for instance you don't need a module to create a pass manager)
--
Mehdi
> On Mar 23, 2016, at 5:50 PM, Lorenzo Laneve <lore97drk at icloud.com> wrote:
>
> Sorry, that's a pure
2016 Aug 15
2
Locked out of the CentOS Fora
The username/email combo I give the "forgot password" option does not work and I cannot re-register as it says my email is in use.
Suggestions ?
Dan White | d_e_white at icloud.com
------------------------------------------------
?Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.? (Bill Waterson: Calvin