[PATCH v2 2/3] ntb_hw_switchtec: NT req id mapping table register entry number should be 512

2018-12-05 Thread Wesley Sheng
The number of available NT req id mapping table entries per NTB control register is 512. The driver mistakenly limits the number to 256. Fix the array size of NT req id mapping table. Fixes: c082b04c9d40 ("NTB: switchtec: Add NTB hardware register definitions") Signed-off-by: We

[PATCH v2 0/3] ntb_hw_switchtec: Added support of >=4G memory windows

2018-12-05 Thread Wesley Sheng
thorpe at https://github.com/sbates130272/linux-p2pmem on branch of ntb_multiport_fixes Regards, Wesley -- Changed since v1: - Using upper_32_bits() and lower_32_bits() marcos makes it easier to read and avoids compiler warning on 32-bit arch - Reorder the patches to make the bug fixes

[PATCH v2 1/3] ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers

2018-12-05 Thread Wesley Sheng
Signed-off-by: Paul Selles Signed-off-by: Wesley Sheng Reviewed-by: Logan Gunthorpe --- drivers/ntb/hw/mscc/ntb_hw_switchtec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ntb/hw/mscc/ntb_hw_switchtec.c b/drivers/ntb/hw/mscc/ntb_hw_switchtec.c index 5ee5f40..9916

[PATCH v2 1/3] ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers

2018-12-05 Thread Wesley Sheng
Signed-off-by: Paul Selles Signed-off-by: Wesley Sheng Reviewed-by: Logan Gunthorpe --- drivers/ntb/hw/mscc/ntb_hw_switchtec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ntb/hw/mscc/ntb_hw_switchtec.c b/drivers/ntb/hw/mscc/ntb_hw_switchtec.c index 5ee5f40..9916

[Mpi-forum] Doodle Poll for Virtual Meetings

2018-12-05 Thread Bland, Wesley via mpi-forum
Hi all, Here’s the Doodle poll to vote for the schedule of the upcoming virtual meetings. I’ll close the vote on Dec 6 at 9am Pacific US so we can make the determination after the votes tomorrow. https://doodle.com/poll/bdbt67kw8f785dxh Thanks, Wesley

[ovirt-users] Re: oVirt node LDAP auth

2018-12-05 Thread Wesley Stewart
Yeah, I run an AD environment and oVirt at home (Because why not?) Run ovirt-engine-extension-aaa-ldap-setup from the terminal. Pretty straightforward! On Wed, Dec 5, 2018 at 9:33 AM Николаев Алексей < alexeynikolaev.p...@yandex.ru> wrote: > Hi, community! > > What is best way for LDAP auth

Re: [VOTE] KIP-354 Time-based log compaction policy

2018-12-04 Thread xiongqi (wesley) wu
log.retention.ms and log.message.timestamp.difference.max.ms in KAFKA-4340. I agree that we can always use first message timestamp not the maxTimestamp of the previous log segment to make it simple. I have updated the KIP. Xiongqi (wesley) Wu On Tue, Dec 4, 2018 at 5:13 PM Colin McCabe wrote

Re: Alternatives to official Apple ADB peripherals?

2018-12-04 Thread Wesley Furr
Have you seen the ADB-USB Wombat? https://www.bigmessowires.com/usb-wombat/ Not sure how that compares to prices on ADB keyboards and mice... Wesley On Tue, December 4, 2018 11:13 am, Christian Wacker wrote: > I'm trying to revive my old Mac Classic that I've had kicking around for >

[Sikuli-driver] [Question #676405]: About sikulixapi

2018-11-27 Thread Wesley-Yu
New question #676405 on Sikuli: https://answers.launchpad.net/sikuli/+question/676405 in version 1.1.1 After installation sikulixapi only 9.13Mb, I found this page :https://raiman.github.io/SikuliX1/downloads.html sikulixapi size is 84.9M, What is the difference? -- You received this

Re: [Sikuli-driver] [Question #676388]: How to use python transfer Minimize tools and then screen shots

2018-11-27 Thread Wesley-Yu
Question #676388 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/676388 Wesley-Yu posted a new comment: Sorry just forgot this -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #676388]: How to use python transfer Minimize tools and then screen shots

2018-11-27 Thread Wesley-Yu
Question #676388 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/676388 Status: Answered => Solved Wesley-Yu confirmed that the question is solved: Thanks masuo, that solved my question. -- You received this question notification because your team Sikuli Driv

Re: [Sikuli-driver] [Question #676388]: How to use python transfer Minimize tools and then screen shots

2018-11-27 Thread Wesley-Yu
Question #676388 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/676388 Wesley-Yu posted a new comment: emm..I just want to confirm if there is a regional screenshot of this type of keyword. -- You received this question notification because your team Sikuli Drivers

[Sikuli-driver] [Question #676388]: How to use python transfer Minimize tools and then screen shots

2018-11-27 Thread Wesley-Yu
New question #676388 on Sikuli: https://answers.launchpad.net/sikuli/+question/676388 I want to use Sikuli some method such as:Screenshots,insert picture, offset,show 。Sikuliapi include these methods? -- You received this question notification because your team Sikuli Drivers is an answer

[PATCH 2/3] ntb_hw_switchtec: Added support of >=4G memory windows

2018-11-21 Thread Wesley Sheng
nge to between 4K and 2^63. Reported-by: Boris Glimcher Signed-off-by: Paul Selles Signed-off-by: Wesley Sheng --- drivers/ntb/hw/mscc/ntb_hw_switchtec.c | 9 +++-- include/linux/switchtec.h | 6 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/drivers/ntb/hw/m

[PATCH 1/3] ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers

2018-11-21 Thread Wesley Sheng
From: Paul Selles Switchtec NTB crosslink BARs are 64bit addressed but they are printed as 32bit addressed BARs. Fix debug log to increment the BAR numbers by 2 to reflect the 64bit address alignment. Signed-off-by: Paul Selles Signed-off-by: Wesley Sheng --- drivers/ntb/hw/mscc

[PATCH 0/3] ntb_hw_switchtec: Added support of >=4G memory windows

2018-11-21 Thread Wesley Sheng
thorpe at https://github.com/sbates130272/linux-p2pmem on branch of ntb_multiport_fixes Regards, Wesley Paul Selles (2): ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers ntb_hw_switchtec: Added support of >=4G memory windows Wesley Sheng (1): ntb_hw_switchtec:

[PATCH 3/3] ntb_hw_switchtec: NT req id mapping table register entry number should be 512

2018-11-21 Thread Wesley Sheng
The number of available NT req id mapping table entries per NTB control register is 512. The driver mistakenly limits the number to 256. Fix the array size of NT req id mapping table. Signed-off-by: Wesley Sheng --- include/linux/switchtec.h | 4 ++-- 1 file changed, 2 insertions(+), 2

[PATCH 2/3] ntb_hw_switchtec: Added support of >=4G memory windows

2018-11-21 Thread Wesley Sheng
nge to between 4K and 2^63. Reported-by: Boris Glimcher Signed-off-by: Paul Selles Signed-off-by: Wesley Sheng --- drivers/ntb/hw/mscc/ntb_hw_switchtec.c | 9 +++-- include/linux/switchtec.h | 6 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/drivers/ntb/hw/m

[PATCH 1/3] ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers

2018-11-21 Thread Wesley Sheng
From: Paul Selles Switchtec NTB crosslink BARs are 64bit addressed but they are printed as 32bit addressed BARs. Fix debug log to increment the BAR numbers by 2 to reflect the 64bit address alignment. Signed-off-by: Paul Selles Signed-off-by: Wesley Sheng --- drivers/ntb/hw/mscc

[PATCH 0/3] ntb_hw_switchtec: Added support of >=4G memory windows

2018-11-21 Thread Wesley Sheng
thorpe at https://github.com/sbates130272/linux-p2pmem on branch of ntb_multiport_fixes Regards, Wesley Paul Selles (2): ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers ntb_hw_switchtec: Added support of >=4G memory windows Wesley Sheng (1): ntb_hw_switchtec:

[PATCH 3/3] ntb_hw_switchtec: NT req id mapping table register entry number should be 512

2018-11-21 Thread Wesley Sheng
The number of available NT req id mapping table entries per NTB control register is 512. The driver mistakenly limits the number to 256. Fix the array size of NT req id mapping table. Signed-off-by: Wesley Sheng --- include/linux/switchtec.h | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [CMake] Duplicate builds with target_sources

2018-11-20 Thread Wesley Smith
should be private, if you want > the sources to be part of mylib_thing use interface. In general don't > use PUBLIC with target_sources. > On Tue, Nov 20, 2018 at 9:19 AM Wesley Smith > wrote: > > > > I have a library target defined as > > > > > > add_libra

[CMake] Duplicate builds with target_sources

2018-11-20 Thread Wesley Smith
I have a library target defined as add_library(mylib_core core_source1.cpp core_source2.cpp core_source3.cpp ) if(UNIX) target_sources(mylib_core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/core_source4.cpp ${CMAKE_CURRENT_SOURCE_DIR}/core_source5.cpp ) endif() Then

[UPDATE] crystal-0.27.0

2018-11-19 Thread Wesley Moxam
Bumps the version of the crystal compiler to v0.27.0 crystal-0.27.0.diff Description: Binary data

[ovirt-users] Re: Can't install windows guest

2018-11-18 Thread Wesley Stewart
Couple things... 1.). You created a drive correct? Just wanted to make sure you did add a drive. 2.) Once you get to that window in the windows setup to choose your install drive you need to go to your oVirt console and select "Change Disk" and change it to the virtio iso that contains drivers.

Adwords API usage data

2018-11-15 Thread Wesley Parker
Hello, does Google have any data on API usage vs performance, I would be really interested in data that shows a comparison of market share by advertisers using the API vs non API users. Or average market share gained when advertisers use the API. -- --

[ovirt-users] Re: Ovirt VNC Server

2018-11-15 Thread Wesley Stewart
Wesley Stewart wrote: > So your VM has IP address 172.1.1.1 and it is running a VNC server? I do > not believe this is an oVirt issue, it sounds like a VNC issue. > > On the VM hosting the VNC server, try checking Netstat to make sure that > VNC is listening. > > netstat -tul

[ovirt-users] Re: Ovirt VNC Server

2018-11-15 Thread Wesley Stewart
So your VM has IP address 172.1.1.1 and it is running a VNC server? I do not believe this is an oVirt issue, it sounds like a VNC issue. On the VM hosting the VNC server, try checking Netstat to make sure that VNC is listening. netstat -tulpn Once you get the port number, make sure your

Re: [openstack-dev] [tripleo] Proposing Enrique Llorente Pastora as a core reviewer for TripleO

2018-11-15 Thread Wesley Hayutin
On Thu, Nov 15, 2018 at 8:52 AM Sagi Shnaidman wrote: > Hi, > I'd like to propose Quique (@quiquell) as a core reviewer for TripleO. > Quique is actively involved in improvements and development of TripleO and > TripleO CI. He also helps in other projects including but not limited to >

[PATCH 4/5] switchtec: Improve MRPC efficiency by leveraging write combining

2018-11-14 Thread Wesley Sheng
seeing reads to this register are processed by low latency hardware. Signed-off-by: Kelvin Cao Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 41 +++-- 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/drivers/pci/switch/switchtec.c

[PATCH 5/5] switchtec: MRPC DMA mode implementation

2018-11-14 Thread Wesley Sheng
by two readl/writel on systems that do not support it. Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 108 + include/linux/switchtec.h | 16 ++ 2 files changed, 114 insertions(+), 10 deletions(-) diff --git a/drivers/pci/switch

[PATCH 3/5] switchtec: A temporary variable should be used for the flags of switchtec_ioctl_event_ctl

2018-11-14 Thread Wesley Sheng
: 52eabba5bcdb ("switchtec: Add IOCTLs to the Switchtec driver") Signed-off-by: Joey Zhang Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/pci/switch/switchtec.c b/drivers/pci/switch/switchtec.c index 480107e..a908

[PATCH 5/5] switchtec: MRPC DMA mode implementation

2018-11-14 Thread Wesley Sheng
by two readl/writel on systems that do not support it. Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 108 + include/linux/switchtec.h | 16 ++ 2 files changed, 114 insertions(+), 10 deletions(-) diff --git a/drivers/pci/switch

[PATCH 3/5] switchtec: A temporary variable should be used for the flags of switchtec_ioctl_event_ctl

2018-11-14 Thread Wesley Sheng
: 52eabba5bcdb ("switchtec: Add IOCTLs to the Switchtec driver") Signed-off-by: Joey Zhang Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/pci/switch/switchtec.c b/drivers/pci/switch/switchtec.c index 480107e..a908

[PATCH 4/5] switchtec: Improve MRPC efficiency by leveraging write combining

2018-11-14 Thread Wesley Sheng
seeing reads to this register are processed by low latency hardware. Signed-off-by: Kelvin Cao Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 41 +++-- 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/drivers/pci/switch/switchtec.c

[PATCH 0/5] Switchtec MRPC DMA mode support

2018-11-14 Thread Wesley Sheng
the efficiency of filling MRPC Input buffer by enabling write combining on MRPC region of BAR * Software workaround for delay responded Memory READ TLPs that access the BAR * And several bug fixes Regards, Wesley Boris Glimcher (1): switchtec: Set DMA coherent mask in Switchtec driver Joey

[PATCH 2/5] switchtec: Set DMA coherent mask in Switchtec driver

2018-11-14 Thread Wesley Sheng
From: Boris Glimcher Switchtec hardware supports 64-bit DMA, set the correct DMA mask. This allows the CMA to allocate larger buffers for memory windows. Signed-off-by: Boris Glimcher Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 4 1 file changed, 4 insertions

[PATCH 0/5] Switchtec MRPC DMA mode support

2018-11-14 Thread Wesley Sheng
the efficiency of filling MRPC Input buffer by enabling write combining on MRPC region of BAR * Software workaround for delay responded Memory READ TLPs that access the BAR * And several bug fixes Regards, Wesley Boris Glimcher (1): switchtec: Set DMA coherent mask in Switchtec driver Joey

[PATCH 2/5] switchtec: Set DMA coherent mask in Switchtec driver

2018-11-14 Thread Wesley Sheng
From: Boris Glimcher Switchtec hardware supports 64-bit DMA, set the correct DMA mask. This allows the CMA to allocate larger buffers for memory windows. Signed-off-by: Boris Glimcher Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 4 1 file changed, 4 insertions

[PATCH 1/5] switchtec: Remove immediate status check after submit a MRPC command

2018-11-14 Thread Wesley Sheng
and a proper fix of this should be done in firmware. Fixes: 080b47def5e5 ("MicroSemi Switchtec management interface driver") Signed-off-by: Kelvin Cao Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/pci/switch/swi

[PATCH 1/5] switchtec: Remove immediate status check after submit a MRPC command

2018-11-14 Thread Wesley Sheng
and a proper fix of this should be done in firmware. Fixes: 080b47def5e5 ("MicroSemi Switchtec management interface driver") Signed-off-by: Kelvin Cao Signed-off-by: Wesley Sheng --- drivers/pci/switch/switchtec.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/pci/switch/swi

[jira] [Updated] (AIRFLOW-3330) Update the Airflow users list

2018-11-12 Thread Wesley (JIRA)
[ https://issues.apache.org/jira/browse/AIRFLOW-3330?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Wesley updated AIRFLOW-3330: Description: PR: https://github.com/apache/incubator-airflow/pull/4176 > Update the Airflow users l

[jira] [Created] (AIRFLOW-3330) Update the Airflow users list

2018-11-12 Thread Wesley (JIRA)
Wesley created AIRFLOW-3330: --- Summary: Update the Airflow users list Key: AIRFLOW-3330 URL: https://issues.apache.org/jira/browse/AIRFLOW-3330 Project: Apache Airflow Issue Type: Wish

Re: YARA rule to search for a file with a certain name

2018-11-12 Thread Wesley Shields
Filename is not something YARA knows about, nor should it IMO. The filename is a property of the filesystem upon which the file resides, and has no bearing on the content of the file. If you want to use filename in your rule you have to pass it in as an external variable. Check out

[cayugabirds-l] Cayuga Bird Club Loon Watch

2018-11-08 Thread Wesley W. Blauvelt
Please join me and the Cayuga Bird Club at our annual “Loon Watch” this Saturday, November 10th at 6:20 AM. The event will be held at Taughannock Falls State Park near the entrance of Taughannock Falls Creek into Cayuga Lake. Winds are forecast to be blustery and from the WSW Saturday morning.

Re: './configure --dotnet' doesn't work - 'import dotnet' returns error

2018-11-07 Thread Wesley Shields
It should be —enable-dotnet — WXS On Wed, Nov 7, 2018 at 2:09 PM wrote: > > Newbie question - The instructions to get .net rules appear to be > straight-forward, but it doesn't appear to be working. > > > I've followed the install and configure instructions: > > ./bootstrap.sh > ./configure

[openstack-dev] [tripleo] Ansible getting bumped up from 2.4 -> 2.6.6

2018-11-05 Thread Wesley Hayutin
Greetings, Please be aware of the following patch [1]. This updates ansible in queens, rocky, and stein. This was just pointed out to me, and I didn't see it coming so I thought I'd email the group. That is all, thanks [1] https://review.rdoproject.org/r/#/c/14960 -- Wes Hayutin Associate

[Mpi-forum] Misc Vote @ December MPI Forum

2018-11-05 Thread Wesley Bland via mpi-forum
Hi all, On behalf of Jeff Squyres, I’m shepherding https://github.com/mpi-forum/mpi-issues/issues/51 (Deprecate MPI_SIZEOF in MPI-4.0) and it will be up for the second vote at the December meeting. Thanks,

Re: [openstack-dev] [tripleo] gate issues please do not approve/recheck

2018-11-01 Thread Wesley Hayutin
Thanks Alex! On Thu, Nov 1, 2018 at 10:27 AM Alex Schultz wrote: > Ok since the podman revert patche has been successfully merged and > we've landed most of the non-voting scenario patches, it should be OK > to restore/recheck. It would be a good idea to prioritized things to > land and if

[openstack-dev] [tripleo] shutting down 3rd party TripleO CI for measurements

2018-10-31 Thread Wesley Hayutin
Greetings, The TripleO-CI team would like to consider shutting down all the third party check jobs running against TripleO projects in order to measure results with and without load on the cloud for some amount of time. I suspect we would want to shut things down for roughly 24-48 hours. If

Re: [openstack-dev] [tripleo] reducing our upstream CI footprint

2018-10-31 Thread Wesley Hayutin
On Wed, Oct 31, 2018 at 11:21 AM Alex Schultz wrote: > Hey everyone, > > Based on previous emails around this[0][1], I have proposed a possible > reducing in our usage by switching the scenario001--011 jobs to > non-voting and removing them from the gate[2]. This will reduce the > likelihood of

Re: [Mpi-forum] Reminder: MPI Virtual Meeting THIS Wednesday Oct. 17.

2018-10-24 Thread Wesley Bland via mpi-forum
I prefer the Halloween horror. :) > On Oct 24, 2018, at 11:24 AM, Anthony Skjellum via mpi-forum > wrote: > > Dear Forum Members: > > We would like to schedule a meeting about "new language bindings" as an > action item from our virtual last meeting (just ended). > > This covers this topic

Re: AdGroupCriterionService returns different results using the same selector

2018-10-18 Thread wesley
e I missed that. I do still find it a bit strange that this just started being a problem recently, but again, thanks! On Wednesday, October 17, 2018 at 9:39:59 PM UTC+2, Teja Makani wrote: > > Hello Wesley, > > I ran the PRODUCT_PARTITION_REPORT > <https://developers.google.com/

AdGroupCriterionService returns different results using the same selector

2018-10-17 Thread wesley
To whom it may concern: As of October 16, 2018 at around 18.00, we've been experiencing some issues when using the python API. I have spent today looking into the issue, but I found something strange. I made a small example so that I could share the problem with you. I have the following

Re: [RFC 1/4] pwm: sifive: Add DT documentation for SiFive PWM Controller.

2018-10-15 Thread Wesley Terpstra
On Mon, Oct 15, 2018 at 3:57 PM Atish Patra wrote: > >> +SiFive PWM controller > >> + > >> +Unlike most other PWM controllers, the SiFive PWM controller currently > >> only > >> +supports one period for all channels in the PWM. This is set globally in > >> DTS. > >> +The period also has

Re: [RFC 1/4] pwm: sifive: Add DT documentation for SiFive PWM Controller.

2018-10-15 Thread Wesley Terpstra
On Mon, Oct 15, 2018 at 3:57 PM Atish Patra wrote: > >> +SiFive PWM controller > >> + > >> +Unlike most other PWM controllers, the SiFive PWM controller currently > >> only > >> +supports one period for all channels in the PWM. This is set globally in > >> DTS. > >> +The period also has

Re: [openstack-dev] [tripleo][ci][upgrade] New jobs for tripleo Upgrade in the CI.

2018-10-12 Thread Wesley Hayutin
On Fri, Oct 12, 2018 at 5:10 AM Sofer Athlan-Guyot wrote: > Hi, > > Testing and maintaining a green status for upgrade jobs within the 3h > time limit has proven to be a very difficult job to say the least. > Indeed > > The net result has been: we don't have anything even touching the >

Re: [openstack-dev] [tripleo][puppet] clearing the gate and landing patches to help CI

2018-10-04 Thread Wesley Hayutin
On Thu, Oct 4, 2018 at 8:29 AM Alex Schultz wrote: > And master is blocked again. We need > https://review.openstack.org/#/c/607952/ > > Thanks, > -Alex > I just got infra to put that patch on the top of the queue. We also need https://review.openstack.org/#/c/607904/ reviewed ASAP Thanks >

Re: [openstack-dev] [all] Zuul job backlog

2018-10-03 Thread Wesley Hayutin
On Fri, Sep 28, 2018 at 3:02 PM Matt Riedemann wrote: > On 9/28/2018 3:12 PM, Clark Boylan wrote: > > I was asked to write a followup to this as the long Zuul queues have > persisted through this week. Largely because the situation from last week > hasn't changed much. We were down the upgraded

Re: [San Diego, CA Permaculture] EJP: Order 555053

2018-09-27 Thread Wesley Roe
misfire by DIEGO not meant for US WES > On Sep 27, 2018, at 1:21 PM, Yvette Cahero wrote: > > Hi, what is this??, I live in México, left Cancún 5 yrs ago, don't even have > a debit card anymore?? > > El sept. 26, 2018 14:10, "A. Footer" escribió: > > > - Forwarded Message - > From:

[Mpi-forum] September 2018 (Barcelona) Meeting Presentations

2018-09-23 Thread Wesley Bland via mpi-forum
Hi folks, If you presented slides at the forum meeting last week, can you please send them to me to be posted on the website? Thanks, Wesley ___ mpi-forum mailing list mpi-forum@lists.mpi-forum.org https://lists.mpi-forum.org/mailman/listinfo/mpi

[6lo] Iotdir early review of draft-ietf-6lo-deadline-time-02

2018-09-18 Thread Wesley Eddy
Reviewer: Wesley Eddy Review result: Ready with Issues The draft is easily readable and can be understood and should be simple to implement by someone working in the area. I only have one technical issue that I think should definitely need to be resolved, and a few small editorial comments

[Gmsh] How can I mesh a CAD model and set physical surfaces automatically?

2018-09-17 Thread Wesley Ranger
Hello everyone: I am currently working on a system which is aimed at automatically generating meshes for specific CAD models. The CAD model has different boundary conditions on different surfaces, so I have to create several physical groups for the model. The problem is, I cannot find a

Re: What time do they usually come back up?

2018-09-10 Thread Wesley Kinslow
It is different each time - this time seems like an unusually long maintenance period though. I'm sure it'll be back up sometime before lunch though (hopefully). -wedgeex On Monday, September 10, 2018 at 7:54:22 AM UTC-5, mail.l...@gmail.com wrote: > > What time do they usually come back up?

Re: BatchJobService not returning downloadUrl

2018-09-06 Thread wesley
as no `downloadUrl` >>> batch job id: 759856332 >>> >>> On Thursday, June 21, 2018 at 9:03:11 AM UTC+2, wes...@channable.com >>> wrote: >>>> >>>> Hi all, >>>> >>>> Was just checking back in to see if there was any new

Re: [openstack-dev] [E] [tripleo] quickstart for humans

2018-09-05 Thread Wesley Hayutin
On Wed, Sep 5, 2018 at 5:08 PM Wesley Hayutin wrote: > On Wed, Sep 5, 2018 at 3:55 PM Gordon, Kent < > kent.gor...@verizonwireless.com> wrote: > >> >> >> > -Original Message- >> > From: Honza Pokorny [mailto:ho...@redhat.com]

Re: [openstack-dev] [E] [tripleo] quickstart for humans

2018-09-05 Thread Wesley Hayutin
On Wed, Sep 5, 2018 at 3:55 PM Gordon, Kent wrote: > > > > -Original Message- > > From: Honza Pokorny [mailto:ho...@redhat.com] > > Sent: Thursday, August 30, 2018 9:28 AM > > To: OpenStack Development Mailing List (not for usage questions) > > > > Subject: [E] [openstack-dev] [tripleo]

Re: [openstack-dev] [tripleo] quickstart for humans

2018-09-05 Thread Wesley Hayutin
On Fri, Aug 31, 2018 at 7:12 AM Steven Hardy wrote: > On Thu, Aug 30, 2018 at 3:28 PM, Honza Pokorny wrote: > > Hello! > > > > Over the last few months, it seems that tripleo-quickstart has evolved > > into a CI tool. It's primarily used by computers, and not humans. > > tripleo-quickstart is

Jira (PUP-9105) puppet node CLI assumes server name

2018-09-05 Thread Wesley Moore (JIRA)
Title: Message Title Wesley Moore created

[San Diego, CA Permaculture] Permaculture Teachers Notes/Book& PDF Download

2018-09-04 Thread wesley roe Santa Barbara Permaculture Network
Thanks for being on the permaculture path. Its an honor to share news from our part of the wood. If you want to unsubscribe its at the bottom of the message. View this email in your browser

[Mpi-forum] Schedule Vote for Issue #51

2018-09-03 Thread Wesley Bland via mpi-forum
Hi all, As reminder, I read issue 51 (Deprecate MPI_SIZEOF in MPI-4.0) at the Austin meeting and it is scheduled for a vote at the Barcelona meeting. https://github.com/mpi-forum/mpi-issues/issues/51

Re: Feature request: hooks directory

2018-09-03 Thread Wesley Schwengle
Hello Christian, 2018-09-03 6:00 GMT+02:00 Christian Couder : > Hi Wesley, > > On Sun, Sep 2, 2018 at 11:38 PM, Wesley Schwengle wrote: >> Hi all, >> >> I've made some progress with the hook.d implementation. It isn't >> finished, as it is my first C project I'm

Re: Feature request: hooks directory

2018-09-02 Thread Wesley Schwengle
: * run_hook_le * run_hook_ve What do the postfixes le and ve mean? Cheers, Wesley format-patch: >From 129d8aff8257b22210beadc155cdbcae99b0fc4b Mon Sep 17 00:00:00 2001 From: Wesley Schwengle Date: Sun, 2 Sep 2018 02:40:04 +0200 Subject: [PATCH] WIP: Add hook.d support in git Add a gene

Re: Feature request: hooks directory

2018-08-31 Thread Wesley Schwengle
file or multiple files, the attack stays the same? I think I'm asking if this would be a show stopper for the feature. Cheers, Wesley -- Wesley Schwengle, Developer Mintlab B.V., https://www.zaaksysteem.nl E: wes...@mintlab.nl T: +31 20 737 00 05

Feature request: hooks directory

2018-08-30 Thread Wesley Schwengle
in. This allows us to provide post commit hooks and allows the user to add additional hooks him/herself. We could implement this in our own code base. But we were wondering if this approach could be shared with the git community and if this behavior is wanted in git itself. Cheers, Wesley -- Wesley

Re: [casper] Raspberry pi 3 b+ support for SNAP board

2018-08-29 Thread Wesley New
and check if it mounts correctly and the boot partition is there. Wesley New South African SKA Project +2721 506 7300 www.ska.ac.za On Wed, Aug 29, 2018 at 12:21 PM, Nivek Ghazi wrote: > Hey Casper people, > > So, I recently got a raspberry pi 3 b+ and looking to get it working > w

Re: [openstack-dev] [TripleO][kolla-ansible][DevStack][Tempest][openstack-ansible] Collaborate towards creating a unified ansible tempest role in openstack-ansible project

2018-08-28 Thread Wesley Hayutin
On Mon, Aug 27, 2018 at 12:43 PM Mohammed Naser wrote: > Hi Chandan, > > This is great, I added some more OSA-side comments, I'd love for us to > find sometime to sit down to discuss this at the PTG. > > Thanks, > Mohammed > > On Mon, Aug 27, 2018 at 12:39 PM, Jesse Pretorius > wrote: > >>On

Re: [ofiwg] sharing code between libfabric and fabtests

2018-08-27 Thread Wesley Bland
think of other projects that keep the test bucket separate, but I think it’s usually for license reasons rather than cleanliness. Thanks, Wesley > On Aug 25, 2018, at 7:28 AM, Jeff Squyres (jsquyres) > wrote: > > My $0.02: don't use git submodule. It's more complicated th

[ovirt-users] Re: One Windows VM is not responding

2018-08-26 Thread Wesley Stewart
Possibly a dumb question, but are you running the last oVirt agent guest tools? On Sun, Aug 26, 2018, 12:47 PM Jonathan Baecker wrote: > Hello Everybody! > > We have here 13 VMs running under ovirt 4.2.4. Two of them are Windows > Server 2016. On one runs a AD, DNS and one application. > > On

[cayugabirds-l] Newcastle Disease in cormorants in the Great Lakes (and Cayuga Lake too?)

2018-08-25 Thread Wesley M. Hochachka
, and if dead whether there was a diagnosis of the cause of death? Wesley -- Cayugabirds-L List Info: http://www.NortheastBirding.com/CayugabirdsWELCOME http://www.NortheastBirding.com/CayugabirdsRULES http://www.NortheastBirding.com/CayugabirdsSubscribeConfigurationLeave.htm ARCHIVES: 1

Re: [openstack-dev] [tripleo] The Weekly Owl - 29th Edition

2018-08-24 Thread Wesley Hayutin
On Fri, Aug 24, 2018 at 2:40 PM Emilien Macchi wrote: > Welcome to the twenty-ninthest edition of a weekly update in TripleO world! > The goal is to provide a short reading (less than 5 minutes) to > learnwhat's new this week. > Any contributions and feedback are welcome. > Link to the previous

Re: Source of surface mount electrolytic caps

2018-08-24 Thread Wesley Furr
a polarity, so not even a need to figure out which way they should go. I know other folks have used tantalum capacitors, which should be equally easy to solder, but do have a polarity. If you need a more exact part #, I can dig up what I have purchased in the past. Wesley On Fri, August 24, 2018

Re: How to target only Android OperatingSystemVersion python

2018-08-23 Thread wesley
oving not the same > thing? Could I just remove OperaringSystemVersion criteria for all versions > of iOS? > > Thanks, > > On Thursday, August 23, 2018 at 12:50:46 PM UTC-7, Bharani Cherukuri > (AdWords API Team) wrote: >> >> Hello Wesley, >> >> Y

Re: How to target only Android OperatingSystemVersion python

2018-08-23 Thread wesley
versions of iOS? Thanks, On Thursday, August 23, 2018 at 12:50:46 PM UTC-7, Bharani Cherukuri (AdWords API Team) wrote: > > Hello Wesley, > > You will be able to only target the OperatingSystemVersion using the > CampaignCriterionService > <https://developers.google.com/adwor

How to target only Android OperatingSystemVersion python

2018-08-23 Thread wesley
Hello, How can I exclude all versions of iOS in my campaign without explicitly removing every criterionID for an iOS version. My operation looks something like this: { 'xsi_type': 'CampaignCriterionOperation', 'operator': 'REMOVE',

[ovirt-users] Re: Anyone have any luck with Bacchus?

2018-08-22 Thread Wesley Stewart
I'm an idiot, it was selinux setsebool -P httpd_can_network_connect true On Wed, Aug 22, 2018, 10:19 PM Wesley Stewart wrote: > I am trying to get Bacchus installed: > https://github.com/openbacchus/bacchus > > It seems he has upgraded to installing via an ansible playbook

[ovirt-users] Anyone have any luck with Bacchus?

2018-08-22 Thread Wesley Stewart
I am trying to get Bacchus installed: https://github.com/openbacchus/bacchus It seems he has upgraded to installing via an ansible playbook. I can get this to run all the way through, hopefully NGINX either ends up responding with a "Gateway error" or it will give me the default nginx landing

hallo Schönheit

2018-08-20 Thread Wesley
Viele Grüße von mir. Wie geht es dir? Ich bin über Ihre Informationen im Internet gestolpert und das hat mein Interesse geweckt. Ich bin ein einsamer Mann und bin eines solchen Lebens müde. Ich möchte eine angenehme Frau finden, die mich liebt und schätzt. Ich bin Wesley mit Namen bin aus den

hallo Schönheit

2018-08-20 Thread Wesley
Viele Grüße von mir. Wie geht es dir? Ich bin über Ihre Informationen im Internet gestolpert und das hat mein Interesse geweckt. Ich bin ein einsamer Mann und bin eines solchen Lebens müde. Ich möchte eine angenehme Frau finden, die mich liebt und schätzt. Ich bin Wesley mit Namen bin aus den

Cześć słodka!!!

2018-08-20 Thread Wesley
Jak się dzisiaj czujesz, mam nadzieję, że wszystko jest w porządku, cieszę się, że mogę się z tobą spotkać. W każdym razie jestem Wesley ze Stanów Zjednoczonych Ameryki, przebywa obecnie w Syrii na misję pokojową. Chcę cię lepiej poznać, jeśli mogę być odważny. Uważam się za łatwego człowieka

Cześć słodka!!!

2018-08-20 Thread Wesley
Jak się dzisiaj czujesz, mam nadzieję, że wszystko jest w porządku, cieszę się, że mogę się z tobą spotkać. W każdym razie jestem Wesley ze Stanów Zjednoczonych Ameryki, przebywa obecnie w Syrii na misję pokojową. Chcę cię lepiej poznać, jeśli mogę być odważny. Uważam się za łatwego człowieka

RE: Question on building custom old Mac

2018-08-19 Thread Wesley Furr
as vintage, but it won't look much that way anyhow in a homebrew case... Should be able to pick up a 15 or 17" LCD at a thrift store pretty cheap these days... Wesley _ From: vintage-macs@googlegroups.com [mailto:vintage-macs@googlegroups.com] On Behalf Of John-Robert La Porta Sent: S

[San Diego, CA Permaculture] TODAY!/Let's Fix This Earth!/ John D. Liu/ 4 - 6:30pm at the Watershed Resource Center

2018-08-19 Thread wesley roe Santa Barbara Permaculture Network
What an extraordinary opportunity, a chance to speak (online) with John D. Liu! We love John D. Liu’s ever evolving work, including the Ecosystem Restoration Camps that are unfolding, as they are steeped in permaculture. Carbon sequestration potential on massive scale. And best of all, these

Cześć słodka!!!

2018-08-19 Thread Wesley
Jak się dzisiaj czujesz, mam nadzieję, że wszystko jest w porządku, cieszę się, że mogę się z tobą spotkać. W każdym razie jestem Wesley ze Stanów Zjednoczonych Ameryki, przebywa obecnie w Syrii na misję pokojową. Chcę cię lepiej poznać, jeśli mogę być odważny. Uważam się za łatwego człowieka

Jak się masz piękna

2018-08-19 Thread Wesley
Wiele pozdrowień ode mnie. Jak się masz? Natknąłem się na twoje informacje w Internecie i to wzbudziło moje zainteresowanie. Jestem samotnym mężczyzną, ale jestem już zmęczony takim życiem, chcę znaleźć miłą kobietę, która by mnie pokochała i doceniła. Jestem Wesley po imieniu jestem z USA

Cześć słodka!!!

2018-08-19 Thread Wesley
Jak się dzisiaj czujesz, mam nadzieję, że wszystko jest w porządku, cieszę się, że mogę się z tobą spotkać. W każdym razie jestem Wesley ze Stanów Zjednoczonych Ameryki, przebywa obecnie w Syrii na misję pokojową. Chcę cię lepiej poznać, jeśli mogę być odważny. Uważam się za łatwego człowieka

Re: [openstack-dev] [tripleo] CI is blocked

2018-08-16 Thread Wesley Hayutin
On Wed, Aug 15, 2018 at 10:13 PM Wesley Hayutin wrote: > On Wed, Aug 15, 2018 at 7:13 PM Alex Schultz wrote: > >> Please do not approve or recheck anything until further notice. We've >> got a few issues that have basically broken all the jobs. >> >> https://b

Re: [openstack-dev] [tripleo] CI is blocked

2018-08-15 Thread Wesley Hayutin
On Wed, Aug 15, 2018 at 7:13 PM Alex Schultz wrote: > Please do not approve or recheck anything until further notice. We've > got a few issues that have basically broken all the jobs. > > https://bugs.launchpad.net/tripleo/+bug/1786764 > https://bugs.launchpad.net/tripleo/+bug/1787226 >

[ovirt-users] Passing through Quadro cards to guest

2018-08-13 Thread Wesley Stewart
Has anyone experimented with this? I have had really good success with AMD cards, but consumer end graphics cards fail to load due to NVIDIA blocking them. I happened to have an NVIDIA Quadro P2000 lying around and I thought I would give it a shot. I really like these cards as they only require

hallo Schönheit

2018-08-12 Thread Wesley
Es ist mir eine Freude, Sie kennenzulernen. Mein Name ist Wesley, ich komme aus dem Vereinigten Staaten von Amerika. Ich bin ledig und nie verheiratet. Ich werde mich gerne mit Ihnen bekannt machen, ich entschuldige mich für Ihre Privatsphäre. Ich hoffe, Sie werden freundlich sein genug, um mir

<    10   11   12   13   14   15   16   17   18   19   >