[Freeipa-users] Re: FreeIPA - Need help with Expired Certificate

2024-05-28 Thread azeem via FreeIPA-users
Unfortunately, I am not able to execute 'kinit user'; I am encountering the following error: kinit: Generic error (see e-text) while getting initial credentials And yes, all the services started correctly. -- ___ FreeIPA-users mailing list --

[Freeipa-users] Re: FreeIPA - Need help with Expired Certificate

2024-05-28 Thread azeem via FreeIPA-users
Hi Rob, I restarted the IPA services. After that, when I run 'ipa config-show', I am getting the following error. ipa config-show ipa: ERROR: Kerberos error: Kerberos error: ('Unspecified GSS failure. Minor code may provide more information', 851968)/('KDC returned error string: PROCESS_TGS',

[Freeipa-users] Re: FreeIPA - Need help with Expired Certificate

2024-05-24 Thread azeem via FreeIPA-users
Hi Rob, Apologies for the late response. I have set the server time back to 2023-06-23 and when i am running the command - ipa config-show , I am getting :- ipa config-show ipa: ERROR: Kerberos error: Kerberos error: ('Unspecified GSS failure. Minor code may provide more information',

[Freeipa-users] Re: FreeIPA - Need help with Expired Certificate

2024-05-16 Thread azeem via FreeIPA-users
Thank you, Rob. As this is a production server, I will make the changes as you suggested. I will do it over the weekend and let you know. -- ___ FreeIPA-users mailing list -- freeipa-users@lists.fedorahosted.org To unsubscribe send an email to

[Freeipa-users] Re: FreeIPA - Need help with Expired Certificate

2024-05-15 Thread azeem via FreeIPA-users
Hi Rob, Thanks for you reply. FreeIPA, version: 4.2.0 - Centos 7 And yes are right. Here's the list of all the certifficates :- getcert list Number of certificates and requests being tracked: 8. Request ID '20160825909273': status: CA_UNREACHABLE ca-error: Server at

[Freeipa-users] FreeIPA - Need help with Expired Certificate

2024-05-15 Thread azeem via FreeIPA-users
Hello! I have inherited a FreeIPA server, and upon checking the certificate list with getcert list, it shows that the certificate is already expired. Does anyone know how to renew it? And coz of this issue, I am not able to enroll any any clients. Any help would be appreciated. Request ID

[Freeipa-users] FreeIPA - Need help with Expired Certificate

2024-05-15 Thread azeem via FreeIPA-users
Hello! I have inherited a FreeIPA server, and upon checking the certificate list with getcert list, it shows that the certificate is already expired. Does anyone know how to renew it? And coz of this issue, I am not able to enroll any any clients. Any help would be appreciated. Request ID

[PATCH v2] vt: Replace strlcpy with strscpy

2023-09-19 Thread Azeem Shaikh
[2], replace strlcpy() here with strscpy(). [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- v2: * Return -ENOSPC instead of -EFAULT in case of truncation. * Update commit log to clarify

Re: [PATCH] soc: fsl: qe: Replace all non-returning strlcpy with strscpy

2023-07-11 Thread Azeem Shaikh
> Sorry for the late response. But I found some old discussions with the > conclusion to be not converting old users. Has this been changed later on? > https://lwn.net/Articles/659214/ > @Kees Cook what's your advice here?

Re: [PATCH] soc: fsl: qe: Replace all non-returning strlcpy with strscpy

2023-07-09 Thread Azeem Shaikh
On Tue, May 23, 2023 at 1:20 PM Kees Cook wrote: > > On Tue, May 23, 2023 at 02:14:25AM +, Azeem Shaikh wrote: > > strlcpy() reads the entire source buffer first. > > This read may exceed the destination size limit. > > This is both inefficient and can lead to l

[PATCH] um: Remove strlcpy declaration

2023-07-03 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- arch/um/include/shared/user.h |1 - arch/um/os-Linux/umid.c |6 +++--- 2

[PATCH v3] uml: Replace strlcpy with strscpy

2023-06-13 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- v1: https://lore.kernel.org/all/20230530164004.986750-1-azeemshaik...@gmail.com/ v2: https

Re: [PATCH v2] uml: Replace strlcpy with strscpy

2023-06-06 Thread Azeem Shaikh
On Tue, Jun 6, 2023 at 4:51 PM Richard Weinberger wrote: > > - Ursprüngliche Mail - > > Von: "Azeem Shaikh" > > strlcpy() reads the entire source buffer first. > > This read may exceed the destination size limit. > > This is both inefficient a

[PATCH v2] uml: Replace strlcpy with strscpy

2023-06-06 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202305311135

Re: [PATCH] uml: Replace all non-returning strlcpy with strscpy

2023-05-31 Thread Azeem Shaikh
> > ignore this > > > strlcpy for now. > > > > Well, actually it's another case of "not even compile tested". :-( Argh, my test script wasn't cross-compiling for um. Sorry about that :( > > Well, strlcpy() isn't part of libc either, so all this would

[PATCH] uml: Replace all non-returning strlcpy with strscpy

2023-05-30 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- arch/um/os-Linux/drivers/tuntap_user.c |2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH] soc: fsl: qe: Replace all non-returning strlcpy with strscpy

2023-05-30 Thread Azeem Shaikh
Duplicate of https://lore.kernel.org/all/20230523021425.2406309-1-azeemshaik...@gmail.com/. Sorry about that. On Tue, May 30, 2023 at 12:00 PM Azeem Shaikh wrote: > > strlcpy() reads the entire source buffer first. > This read may exceed the destination size limit. > This is both

[PATCH] soc: fsl: qe: Replace all non-returning strlcpy with strscpy

2023-05-30 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/soc/fsl/qe/qe.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

[Intel-gfx] [PATCH] drm/i915: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/i915/selftests/i915_perf.c |2 +- 1 file changed, 1 insertion(+), 1

[PATCH] drm/bridge: dw-hdmi: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/bridge/synopsys/dw-hdmi.c |2 +- 1 file changed, 1 insertion(+), 1

[PATCH] dma-buf/sw_sync: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/dma-buf/sw_sync.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH] drm/i2c: tda998x: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/i2c/tda998x_drv.c |2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH] drm/display/dp_mst: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/display/drm_dp_helper.c |2 +- drivers/gpu/drm/display

[PATCH] drm/radeon: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/amd/amdgpu/atom.c|2 +- drivers/gpu/drm/radeon

[PATCH] drm/sun4i: hdmi: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/sun4i/sun4i_hdmi_i2c.c |2 +- 1 file changed, 1 insertion(+), 1

[PATCH] drm/mediatek: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c |2 +- 1 file changed, 1 insertion(+), 1

[PATCH] drm/i915: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/i915/selftests/i915_perf.c |2 +- 1 file changed, 1 insertion(+), 1

[PATCH] drm/amd/pm: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/amd/pm/legacy-dpm/legacy_dpm.c |2 +- 1 file changed, 1 insertion

[PATCH] drm/rockchip: Replace all non-returning strlcpy with strscpy

2023-05-23 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/rockchip/inno_hdmi.c |2 +- drivers/gpu/drm/rockchip/rk3066_hdmi.c

[PATCH] soc: fsl: qe: Replace all non-returning strlcpy with strscpy

2023-05-22 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/soc/fsl/qe/qe.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

Re: [Cluster-devel] [PATCH] dlm: Replace all non-returning strlcpy with strscpy

2023-05-22 Thread Azeem Shaikh
On Thu, May 11, 2023 at 12:26 PM Kees Cook wrote: > > On Wed, May 10, 2023 at 10:12:37PM +, Azeem Shaikh wrote: > > strlcpy() reads the entire source buffer first. > > This read may exceed the destination size limit. > > This is both inefficient and can lead to l

[PATCH] drm/amd/pm: Replace all non-returning strlcpy with strscpy

2023-05-22 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/amd/pm/legacy-dpm/legacy_dpm.c |2 +- 1 file changed, 1 insertion

[PATCH] drm/radeon: Replace all non-returning strlcpy with strscpy

2023-05-22 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/gpu/drm/amd/amdgpu/atom.c|2 +- drivers/gpu/drm/radeon

[PATCH] scsi: ibmvscsi: Replace all non-returning strlcpy with strscpy

2023-05-17 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- drivers/scsi/ibmvscsi/ibmvscsi.c |6 +++--- 1 file changed, 3 insertions(+), 3

[Cluster-devel] [PATCH] dlm: Replace all non-returning strlcpy with strscpy

2023-05-11 Thread Azeem Shaikh
(). No return values were used, so direct replacement is safe. [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy [2] https://github.com/KSPP/linux/issues/89 Signed-off-by: Azeem Shaikh --- fs/dlm/config.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[Bf-blender-cvs] [fd2519e0b69] master: UI: Drag & Drop to Properties Materials Panel

2022-03-03 Thread Azeem Bande-Ali
Commit: fd2519e0b6948903892c3cfc373c903337979407 Author: Azeem Bande-Ali Date: Thu Mar 3 15:28:48 2022 -0800 Branches: master https://developer.blender.org/rBfd2519e0b6948903892c3cfc373c903337979407 UI: Drag & Drop to Properties Materials Panel Support drag/drop of materials to Proper

[Bf-blender-cvs] [b8bad3549dc] master: Fix T93519: handle prefix names in autocompletes

2021-12-09 Thread Azeem Bande-Ali
Commit: b8bad3549dcef0b761708ef9cc1f814ebedb3106 Author: Azeem Bande-Ali Date: Thu Dec 9 11:09:50 2021 +0100 Branches: master https://developer.blender.org/rBb8bad3549dcef0b761708ef9cc1f814ebedb3106 Fix T93519: handle prefix names in autocompletes Autocomplete entires keep track of the length

Re: Flink jobmanager TLS connectivity to Zookeeper

2020-12-14 Thread Azeem Mufti
it's not a TLS/SSL record. Thanks, Azeem On Thu, Dec 10, 2020 at 9:36 AM Matthias Pohl wrote: > Hi Azeem, > I haven't worked with Flink's SSL support, yet. But have you taken a look > at the SSL configuration options listed under [1]? > > Best, > Matthias > > [1] > htt

Flink jobmanager TLS connectivity to Zookeeper

2020-12-08 Thread Azeem Mufti
I'm trying to figure out a way to make Flink jobmanager (in HA) connect to zookeeper over SSL/TLS. It doesn't seem like there are native properties like Kafka has that support this interaction yet. Is this true or is there some way that I can go about doing this?

Re: [OpenJDK 2D-Dev] RFR: 8254863: Delete code leftover from old fixes

2020-10-16 Thread Azeem Jiva
On Fri, 16 Oct 2020 02:31:09 GMT, Sergey Bylokhov wrote: > The fix for JDK-4893408 adds a special code to handle the "PYCC.pf" color > profile for the "kernel java": >

Re: RFR: 8254178: Remove .hgignore

2020-10-16 Thread Azeem Jiva
On Wed, 7 Oct 2020 18:19:40 GMT, Aleksey Shipilev wrote: > After migration to Git, this serves no purpose. The file is not updated, does > not seem to be used. We can easily remove > it. > There is also .hgtags, but that might have some value for verification, so > let's keep it around until

[no subject]

2020-05-17 Thread tayyaba azeem
Ecos https://bitly.com/2LBLug0 Tayyaba -- Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

Re: [ovs-dev] (no subject)

2020-03-07 Thread Mohammed Azeem
It’s my pleasure to finally get a chance to write you. I would like to be sure that your email is active please respond to me as soon as possible. Have a great day. Mohammed Azeem ___ dev mailing list d...@openvswitch.org https

RE:

2020-03-07 Thread mohammed Azeem
Hello Dear, ​ It’s my pleasure to finally get a chance to write you. I would like to be sure that your email is active please respond to me as soon as possible. Have a great day. Cheers ​ Thanks,​ ​ Mohammed Azeem.​ ___ Reproducible-builds mailing

[ECOS] Fwd:

2020-03-04 Thread tayyaba azeem
Ecos http://bitly.com/2Tkf3r3 tayyaba azeem -- Forwarded message - From: tayyaba azeem Date: Thursday, March 05, 2020 12:23:59 AM Subject: To:   http://www.bing.com/search?q==DEAAKTHSQRPPPXU=EGMHHZQDFDKDZPD -- Before posting, please read the FAQ: http

[ECOS] Fwd:

2020-03-04 Thread tayyaba azeem
Ecos      http://bitly.com/32MpoPO      tayyaba azeem -- Forwarded message - From: tayyaba azeem Date: Thursday, March 05, 2020 12:23:55 AM Subject: To: http://www.bing.com/search?q==NRUESTNQQWEEQGQ=TGSTHFDBZBCGSND

[google-appengine] Unable to delete project from Google Cloud Platform

2020-03-04 Thread Azeem Haider
I want to delete project from Google Cloud Platform but not able to do it. Here you can see what the problem I'm facing. Screen Shot -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this

[ECOS] Fwd:

2020-02-17 Thread tayyaba azeem
  Ecos https://is.gd/LTgjsZ Tayyaba -- Forwarded message - From: tayyaba azeem Date: Monday, February 17, 2020 09:57:35 PM Subject: To: https://search.yahoo.com/search?p==tth2602hscwr05fh -- Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos

[ECOS] Fwd:

2020-02-17 Thread tayyaba azeem
Ecos      https://clck.ru/MDZcL      Tayyaba -- Forwarded message - From: tayyaba azeem Date: Monday, February 17, 2020 09:57:34 PM Subject: To: https://search.yahoo.com/search?p==bsf38dqbmxw1s4g6 -- Before posting, please read the FAQ: http://ecos.sourceware.org/fom

Re: Incorrect documentation

2019-12-19 Thread Jiva, Azeem
as the group order. From: "Jiva, Azeem" Date: Tuesday, December 17, 2019 at 3:43 PM To: "security-dev@openjdk.java.net" Subject: Incorrect documentation Security experts, The official Java Security Standard Algorithm Names incorrectly documents the Signature.*withECDSAinP1

Incorrect documentation

2019-12-17 Thread Jiva, Azeem
Security experts, The official Java Security Standard Algorithm Names incorrectly documents the Signature.*withECDSAinP1363Format algorithms as SEQUENCE ::= { r INTEGER, s INTEGER } This is incorrect. The IEEE P1363 Format is defined as concatenating the r and s values (with no ASN.1

Need System Analyst at Austin, TX

2019-11-27 Thread Syed Azeem
governance issues especially for software development and engineering. Experience in Agile Application Development & Scrum methodologies. Azeem D: (773) 304-4346 Email: az...@blucapsoft.com -- You received this message because you are subscribed to the Go

Need .Net developer

2019-11-15 Thread Syed Azeem
methodologies. *Preferences:* · Experience with Health and Human services. · Experience with regulatory systems. · Experience with CLASS, CLASSmate and/or Public & Provider system at HHSC. SD. Azeem I Technical Recruiter D: (773) 304-4346 I Fax: (773) 304-

Software Engineer at Cedar Rapids, IA.

2019-11-12 Thread Syed Azeem
ated documentation with FAA/EASA SD. Azeem I Technical Recruiter D: (773) 304-4346 I Fax: (773) 304-4328 Email: az...@blucapsoft.com I www.blucapsoft.com <http://www.rsrit.com/> Blucapsoft LLC -- You received this message because you are subscribed to the Google Groups "Co

.Net Developer Location: Portsmouth NH

2019-11-07 Thread Syed Azeem
platform Good at RDBMS concepts and related skills Experience in DevOps concept Good to have knowledge on Salesforce. SD. Azeem I Technical Recruiter D: (773) 304-4346 I Fax: (773) 304-4328 Email: az...@blucapsoft.com I www.blucapsoft.com <http://www.rsrit.com/> Bluc

Java Developer Location: Austin, TX

2019-11-06 Thread Syed Azeem
and Human services 1 Experience with regulatory systems 1 Experience with CLASS, CLASSmate and/or Public & Provider system at HHSC Java certification *SD. Azeem I Technical Recruiter* *D:* (773)304-4346 *Fax:*(773) 304-4328 Email: az...@blucapsoft.com www.blucapsoft.com &

Role : Hadoop Admin Location : Atlanta GA Duration : 12+ months

2019-11-05 Thread Syed Azeem
software installation and upgrades. •3-6 years of Experience in Hadoop Monitoring tools (Cloudera Manager, and Ambari, Nagios, Ganglia. Syed Azeem Tenical Recruiter D: (773) 304-4346 Fax: (773) 304-4328 Email: az...@blucapsoft.com Gmail: sd.azeem1...@gmail.com www.blucapsoft.comBlucapsoft LLC

SSL Certificate Issue

2019-10-22 Thread Awais Azeem
I have seen your website it looks amazing but there is an only issue of SSL Certificate. Your website is not secure, a screenshot is also attached here. If you’re interested, let me know I'll help you. Happy to Help  Thanks Best Regards Awais Azeem

[google-appengine] Run App Engine standard environment with NodeJs

2019-05-10 Thread Azeem Haider
I'm going to develop nodeJS application in App Engine Standard Biggest problem I'm facing it how I run app engine standard environment locally? I already worked in app engine standard locally with java development. We run the app egnine like mvn appengine:run and able to use *datastore* and

[tesseract-ocr] Diagonal space in Urdu Nastaleeq font

2019-04-20 Thread Muhammad Azeem
Hi, I am trying to train Tesseract4 with (*ocrd-train *) Makefile except box file generation. Box file(s) are generated using below command text2image --text "/traintext.txt" --outputbase "/traintext" --fontconfig_tmpdir "/fontconfig" --fonts_dir

[ECOS] Fwd:

2019-01-29 Thread tayyaba azeem
      Ecos        http://www.balintradoczy.art/css/zoom_pagetext/paymentinfo/_header.php?evening=1c0badhc350         tayyaba azeem -- Forwarded message - From: tayyaba azeem Date: Wednesday, January 30, 2019 02:30:24 AM Subject: To:       http://www.bing.com/search?q

[google-appengine] Unable to Restricting my endpoints with API Key in java

2018-08-29 Thread Azeem Haider
I want that random internet traffic can't access it. I'm using cloud endpoints v2 for java. My problem is that anyone can access these endpoints method through API Explorer or from directly URL someone know. I want to protect my endpoints. I read documentation how to restrict Whole API or some

[google-appengine] Secure all URLs Security constraint is not working in App engine Standard java

2018-08-17 Thread Azeem Haider
I'm using App Engine standard environment. I want to make all url to access only admin. Here is my web.xml but this one is not working for me I test it on local development. .. admin admin /* admin . I checked the

[Bug 1785258] [NEW] In folder view, some of the "activities " folder disappear on reboot or during manipulation.

2018-08-03 Thread Azeem via ubuntu-bugs
Public bug reported: The icons/folders on my plasma desktop are unstable in folder view while using activities. System Information: I am using kubuntu 18.04 with plasma/frame/Qt/kernel/OS version(5.1.26, 5.47.0,5.9.5,4.15.0-29,64 bit). Steps to reproduce: (1)I have created multiple activities

[Bug 1785258] [NEW] In folder view, some of the "activities " folder disappear on reboot or during manipulation.

2018-08-03 Thread Azeem
Public bug reported: The icons/folders on my plasma desktop are unstable in folder view while using activities. System Information: I am using kubuntu 18.04 with plasma/frame/Qt/kernel/OS version(5.1.26, 5.47.0,5.9.5,4.15.0-29,64 bit). Steps to reproduce: (1)I have created multiple activities

[google-appengine] Re: Cloud endpoints are running slow in App Engine Standard Environment

2018-06-22 Thread Azeem Haider
I'm just using all basic library that is required for cloud endpoints. Is there any solution how can I reduce latency time in my case ? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] Re: Cloud endpoints are running slow in App Engine Standard Environment

2018-06-14 Thread Azeem Haider
response. Thanks for your precious time and consideration. Kind Regards, Azeem Haider -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google

[google-appengine] Re: Cloud endpoints are running slow in App Engine Standard Environment

2018-06-12 Thread Azeem Haider
I'm using Automatic Scaling. Sorry, in my first post I did not upload stack traces. Check these below Here is RPCs. And can you please what RPCs

[google-appengine] Re: Cloud endpoints are running slow in App Engine Standard Environment

2018-06-12 Thread Azeem Haider
Here is log of most used URI. 103.255.4.81 - - [11/Jun/2018:14:56:00 +0500] "GET > /_ah/api/zeem/v1/postfeed/5720147234914304/PRIVATE HTTP/1.1" 200 843 - > "Google-API-Java-Client Google-HTTP-Java-Client/1.23.0 (gzip)" > "my-test-project-186021.appspot.com" ms=NaN cpu_ms=806 cpm_usd=9.4212e-8

[google-appengine] Cloud endpoints are running slow in App Engine Standard Environment

2018-06-11 Thread Azeem Haider
I'm using App Engine Standard Environment with Google Cloud Endpoints v2 for java. Using objectify for DataStore. I just make a simple call but it takes a lot more time to get the results. There are very little users those are using my Endpoints, It's in the testing phase. EndPoint Function:

[google-appengine] Re: Not able to run Task Queue in Google Cloud Platform

2018-06-01 Thread Azeem Haider
It strange but now It's working. I think last day I setup app engine environment may be it take some time to initiate all these things, That's why the problem occur. Is there any way I can check the time When last queue run ? "Completed In Last Minute" is showing zero(0). I know if there is

[google-appengine] Re: Not able to run Task Queue in Google Cloud Platform

2018-06-01 Thread Azeem Haider
This is an unauthorized call. Rest part of the function is working but it's not adding task in queue. On Saturday, June 2, 2018 at 3:22:10 AM UTC+5, George (Cloud Platform Support) wrote: > > Hello Azeem, > > This behavior difference between the local server and the

[google-appengine] Not able to run Task Queue in Google Cloud Platform

2018-06-01 Thread Azeem Haider
I'm using google cloud endpoints and task queue in App Engine standard environment. I'm adding task queue through endpoint function. Everything is working fine when I test it on Local Server But after deploy on cloud platform, I don't know why task queue is not working. I checked task queue

[google-appengine] TypeTags error in Java JDK10

2018-05-09 Thread Azeem Haider
I'm working on cloud endpoint. Everything is working fine when I left it off. But after few month I installed everything again and try to run this project but unable to do that there is some kind of error now. I think it's due to *JDK* version and I didn't confirm. This time I'm using

[gmx-users] Core dumped in NVT

2018-05-01 Thread Syed Azeem
, Azeem -- Gromacs Users mailing list * Please search the archive at http://www.gromacs.org/Support/Mailing_Lists/GMX-Users_List before posting! * Can't post? Read http://www.gromacs.org/Support/Mailing_Lists * For (un)subscribe requests visit https://maillist.sys.kth.se/mailman/listinfo

Re: [gmx-users] Error in gmx trjcat

2018-04-18 Thread Syed Azeem
Hey Mark, Thanks for the suggestion. I'll try recompiling the package. Best, Azeem > > Mark > > On Wed, Apr 18, 2018, 05:37 Syed Azeem <syedazeemullah...@gmail.com> wrote: > >> >> Hey Mark, >> >> >> >> Still the same problem persists. >> >>

Re: [gmx-users] Error in gmx trjcat

2018-04-17 Thread Syed Azeem
so gmx check -m doesn't do anything useful any more, so > don't buy trouble by using it!) Hey, I tried concatenating those trajectory files in another machine (same version: gromacs 5.1.4). It worked well without any error. What is wrong with my own build? Best, Azeem > > Mark -- Grom

Re: [gmx-users] Error in gmx trjcat

2018-04-17 Thread Syed Azeem
s, to find out e.g. whether they are trajectories that > have matching numbers of particles, etc. > > Mark > > On Tue, Apr 17, 2018 at 1:13 PM Syed Azeem <syedazeemullah...@gmail.com> > wrote: > >> > Hi, >> > >> > What does gmx check report on the two inpu

Re: [gmx-users] Error in gmx trjcat

2018-04-17 Thread Syed Azeem
c7233b000-7ffc7233e000 r--p 00:00 0 [vvar] 7ffc7233e000-7ffc7234 r-xp 00:00 0 [vdso] ff60-ff601000 r-xp 00:00 0 [vsyscall] Aborted (core dumped) > > Mark > > On Tue, Apr 17, 2018 a

[gmx-users] Error in gmx trjcat

2018-04-17 Thread Syed Azeem
000 00:00 0 [vsyscall] Aborted (core dumped) How do I overcome the error and concatenate the files? Best, Azeem -- Gromacs Users mailing list * Please search the archive at http://www.gromacs.org/Support/Mailing_Lists/GMX-Users_List before posting! * Can't post? Read http://www.gromacs.

[Libreoffice-commits] core.git: filter/inc filter/source

2018-03-26 Thread Mohammed Abdul Azeem
filter/inc/svgreader.hxx|7 +++ filter/source/svg/svgreader.cxx | 10 +- 2 files changed, 16 insertions(+), 1 deletion(-) New commits: commit d5903802e2c40d6fccbc322c49b5f9a311551b9b Author: Mohammed Abdul Azeem <azeemmys...@gmail.com> Date: Sun Mar 25 12:50:3

[Libreoffice-commits] core.git: svx/source

2018-03-20 Thread Mohammed Abdul Azeem
svx/source/xml/xmlexport.cxx |8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) New commits: commit 2dadf90aa7bb03d895abc05ec93ca116eb9bacbd Author: Mohammed Abdul Azeem <azeemmys...@gmail.com> Date: Tue Mar 20 23:52:47 2018 +0530 tdf#116482: Fix for Crash on d

[Libreoffice-commits] core.git: include/xmloff offapi/com reportdesign/source sc/source sdext/CppunitTest_sdext_pdfimport.mk sdext/Executable_pdf2xml.mk sdext/Executable_pdfunzip.mk sdext/Library_pdfi

2018-03-14 Thread Mohammed Abdul Azeem
/meta/xmlmetai.cxx | 121 - 33 files changed, 637 insertions(+), 474 deletions(-) New commits: commit bf46b46a1d734348096936284fb8a76e977936d0 Author: Mohammed Abdul Azeem <azeemmys...@gmail.com> Date: Sun Oct 1 14:11:11 2017 +0530 Moving XSAXDocumentBu

[ansible-project] Urgent need SQL server (Los Angeles,CA) 06+Months

2018-01-31 Thread azeem sqldeveloper
Please share profile on az...@nestarit.com Direct contact number: *(216) 640-7259* Dear IT Professional, Wishes for the Day !!! Hope you are doing great. This is *Mohammed Azeem* from *NESTAR TECHNOLOGIES/ AESPATECH LLC* and we have an immediate requirement with our client where we have

$$Excel-Macros$$ Urgent need SQL server (Los Angeles,CA) 06+Months

2018-01-31 Thread azeem sqldeveloper
Please share profile on az...@nestarit.com Direct contact number: *(216) 640-7259* Dear IT Professional, Wishes for the Day !!! Hope you are doing great. This is *Mohammed Azeem* from *NESTAR TECHNOLOGIES/ AESPATECH LLC* and we have an immediate requirement with our client where we have

[android-developers] Urgent need SQL server (Los Angeles,CA) 06+Months

2018-01-31 Thread azeem sqldeveloper
Please share profile on az...@nestarit.com Direct contact number: *(216) 640-7259* Dear IT Professional, Wishes for the Day !!! Hope you are doing great. This is *Mohammed Azeem* from *NESTAR TECHNOLOGIES/ AESPATECH LLC* and we have an immediate requirement with our client where we have

Urgent need SQL server (Los Angeles,CA) 06+Months

2018-01-31 Thread azeem sqldeveloper
Please share profile on az...@nestarit.com Direct contact number: *(216) 640-7259* Dear IT Professional, Wishes for the Day !!! Hope you are doing great. This is *Mohammed Azeem* from *NESTAR TECHNOLOGIES/ AESPATECH LLC* and we have an immediate requirement with our client where we have

[Libreoffice-commits] core.git: include/xmloff oox/source sax/source xmloff/source

2018-01-04 Thread Mohammed Abdul Azeem
/xmlictxt.cxx| 41 - xmloff/source/core/xmlimp.cxx |2 + 6 files changed, 79 insertions(+), 77 deletions(-) New commits: commit bb59a80ee6000d3922fa95262f67e291fd9d8ee2 Author: Mohammed Abdul Azeem <azeemmys...@gmail.com> Date: Sun Dec 24

[google-appengine] Re: Push Queues working in App Engine Standard Local Server in Java

2017-11-27 Thread Azeem Haider
Thanks for your time. I found problem by my self. If you see file insertentity carefully there is only one method doGet() which receive only Get Requests. But sending request with task queue is Post Request by Default. Just add another method doPost() and everything is working fine. OR send

[google-appengine] Push Queues working in App Engine Standard Local Server in Java

2017-11-26 Thread Azeem Haider
I'm new in Task Queues. I added one Push queue to test it how it work. As mention in documentation I added one task in default queue. Queue queue = QueueFactory.getDefaultQueue(); queue.add(TaskOptions.Builder.withUrl("/insertentity")); Here is insert entity code. @SuppressWarnings("serial")

[google-appengine] Load Entity using Ref in Objectify

2017-11-21 Thread Azeem Haider
I'm and new in objectify and datastore. I have three kinds 1-user, 2-post, 3-feed user is parent of post and feed and feed contain Ref of post. *Feed* public class Feed { @Id Long id;@Parent Key userKey;Ref post; *Post* public class Post { @Id Long id; @Parent Key userKey; String

[jira] [Created] (ZEPPELIN-3064) Failed tests: InterpreterOutputChangeWatcherTest.test:96 expected:<1> but was:<2>

2017-11-19 Thread Shams Ul Azeem (JIRA)
Shams Ul Azeem created ZEPPELIN-3064: Summary: Failed tests: InterpreterOutputChangeWatcherTest.test:96 expected:<1> but was:<2> Key: ZEPPELIN-3064 URL: https://issues.apache.org/jira/browse/Z

[google-appengine] Unable to create App Engine Standard project in Intellij Idea.

2017-11-16 Thread Azeem Haider
I'm working on App Engine Standard and I install Intellij Idea unlimited edition. And install new Google Cloud Tool Plugin but whenever I create new project the src folder is always empty and there is no pom.xml file also. See this image.

[google-appengine] java - Limit of 1 write per sec per a Single Entity Group

2017-11-13 Thread Azeem Haider
I'm using Java. I have simple scenario here. There are Four kinds 1-user, 2-post, 3-comment, 4-like Ancestor relation is used like this. user>post>comment - --->Like User is parent of post and grand parent of comment and likes. Post is parent of

[google-appengine] java - Limit of 1 write per sec per a Single Entity Group

2017-11-13 Thread Azeem Haider
I'm using Java. I have simple scenario here. There are Four kinds 1-user, 2-post, 3-comment, 4-like Ancestor relation is used like this. user>post>comment - --->Like User is parent of post and grand parent of comment and likes. Post is parent of

[jira] [Created] (ZEPPELIN-3033) Ability to import from and export to notebooks in jupyter ipynb format.

2017-11-05 Thread Shams Ul Azeem (JIRA)
Shams Ul Azeem created ZEPPELIN-3033: Summary: Ability to import from and export to notebooks in jupyter ipynb format. Key: ZEPPELIN-3033 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3033

[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - include/xmloff xmloff/source

2017-10-23 Thread Mohammed Abdul Azeem
000fbca705166237645bccf0b1c28164b076c043 Author: Mohammed Abdul Azeem <azeemmys...@gmail.com> Date: Sat Oct 21 16:24:50 2017 +0530 tdf#110431: Fixed losing listbos entries on opening .ods file For some reason, XML_TOKEN_INVALID was taking wrong value in windows, causing t

[Libreoffice-commits] core.git: include/xmloff xmloff/source

2017-10-23 Thread Mohammed Abdul Azeem
931c84e697dc69745d1c07c40f810638f9f71eda Author: Mohammed Abdul Azeem <azeemmys...@gmail.com> Date: Sat Oct 21 16:24:50 2017 +0530 tdf#110431: Fixed losing listbos entries on opening .ods file For some reason, XML_TOKEN_INVALID was taking wrong value in windows, causing t

[gmx-users] gmx gpu error gmx: error libnvidia-ml.so.1

2017-10-04 Thread Syed Azeem
in advance Azeem -- Gromacs Users mailing list * Please search the archive at http://www.gromacs.org/Support/Mailing_Lists/GMX-Users_List before posting! * Can't post? Read http://www.gromacs.org/Support/Mailing_Lists * For (un)subscribe requests visit https://maillist.sys.kth.se/mailman

Re: [gmx-users] New files after simulation run

2017-09-25 Thread Syed Azeem
> Hi All, > > I have run an extended simulation for 90ns like this: (my previous run was > for 10ns) > > grompp -f new.mdp -c old.tpr -o new.tpr > mdrun -s new.tpr -cpi old.cpt > > I output mdrun STDOUT to an output file and it looks like this: > > ## >

  1   2   3   4   5   6   7   8   9   10   >