Skip to content
#

Java

java logo

Java was originally developed as an alternative to the C/C++ programming languages. It is now mainly used for building web, desktop, mobile, and embedded applications. Java is owned and licensed through Oracle, with free and open source implementations available from Oracle and other vendors.

Here are 826 public repositories matching this topic...

simon-mo
simon-mo commented Apr 30, 2020
  /Users/travis/build/ray-project/ray/python/ray/node.py:533: DeprecationWarning: Redis.hmset() is deprecated. Use Redis.hset() instead.
    redis_client.hmset("webui", {"url": self._webui_url})
  /Users/travis/build/ray-project/ray/python/ray/worker.py:358: DeprecationWarning: Redis.hmset() is deprecated. Use Redis.hset() instead.
    "run_on_other_drivers": str(run_on_other_drivers),
  
cleemullins
cleemullins commented Aug 21, 2019

On a weekly basis, customer report issues around the 15 second timeout. This problem manifests as Exceptions and looks like a timeout.

We need to offer a more robust guidenance around Async / Long-Running operations. This guidenance likley takes the form of:

  1. Your bot responds very quickly.
  2. Do Needed Processing()
  3. Send the result to the user as a Async / Proactive message.

There

lucasduffey
lucasduffey commented Jun 20, 2018

I assume you can do "run something" in the drozer console

# from example module @ https://github.com/mwrlabs/drozer/wiki/Writing-a-Module

module repository enable /path/to/your/repository # I got this working

module install ex.random

# failed attempts
run ex.random.GetInteger
run drozer.modules.Module.ex.random.GetInteger

dz> help drozer.modules.Module
*** No help on drozer.
StrikerRUS
StrikerRUS commented Oct 18, 2019

I'm sorry if I missed this functionality, but CLI version hasn't it for sure (I saw the related code only in generate_code_examples.py). I guess it will be very useful to eliminate copy-paste phase, especially for large models.

Of course, piping is a solution, but not for development in Jupyter Notebook, for example.

wisechengyi
wisechengyi commented Feb 4, 2020

Right now, a target name can contain space, comma, /, etc, so it would be a good idea to limit it to alphanumeric + - and _

For example:

diff --git a/BUILD b/BUILD
index 0ad0a46..c71bab2 100644
--- a/BUILD
+++ b/BUILD
@@ -52,3 +52,6 @@ files(
   name = 'pants_pex',
   source = 'pants.pex',
 )
+
+target(
+  name = '123/456')


$ ./pants list :
//:123/456

The official repository for our programming kitchen which consists of 50+ delicious programming recipes having all the interesting ingredients ranging from dynamic programming, graph theory, linked lists and much more. All the articles contain beautiful images and some gif/video at times to help clear important concepts.

  • Updated Aug 7, 2019
  • Python
You can’t perform that action at this time.