The Wayback Machine - http://web.archive.org/web/20200716124609/https://github.com/topics/java?l=python
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 847 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
puremourning
puremourning commented Jul 4, 2019

Is your feature request related to a problem? Please describe.

:help vimspector should show the usage and configuration documentation.

Describe the solution you'd like

Ideally share some documentation with the website of the readme (like ycm).

Describe alternatives you've considered
Put a url linkt to the website. just a simple overview and link. etc.

Thrameos
Thrameos commented Jul 1, 2019

A common issue that I see in forums is trying to add something to the classpath after the JVM has already be started. As we can't restart the JVM that is already in progress, it can be an issue if multiple modules are using JPype. Once a module has started the JVM, then nothing can add to the classpath leading to a fail. I am not sure if there is a good procedure for this case in terms of gett

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

Created by James Gosling

Released May 23, 1995

Website
www.oracle.com/technetwork/java/javase/overview/index.html
Wikipedia
Wikipedia
You can’t perform that action at this time.