Skip to content
#

parallelization

Here are 144 public repositories matching this topic...

Guilherme-B
Guilherme-B commented Mar 3, 2020

As far as I can tell, the guide present in the Orphan Nodes / Chains is incorrect, or at least, not compliant with the current lib version.

Consider the following base:

def gen():
    yield 'asda'
    yield 'another1'
    
def upper(x):
    return x.upper()

def show(x):
    print(x)

Chain

HenrikBengtsson
HenrikBengtsson commented Apr 29, 2020

Add 'Best Practices For Package Developers using Futures' vignette with instructions on, for instance,

  1. How to test code, e.g. run tests with plan(sequential) and plan(multisession) and don't assume that plan(multicore) is available.

  2. Make sure to shut down PSOCK clusters at the end of examples and package tests, i.e. call plan(sequential) at the end (e.g. #327)

  3. Avoid setti

nickzuber
nickzuber commented Jun 14, 2017

I noticed in _generate_path_from_repo_url we remove the colons from the netloc, however we don't try to remove colons anywhere else like from path, which makes something like

urlparse('git@git.dev.box.net:Productivity/ClusterRunnerHealthCheck.git')
# ParseResult(scheme='', netloc='', path='git@git.dev.box.net:Productivity/ClusterRunnerHealthCheck.git', params='', query='', fragment=
grasbergerm
grasbergerm commented Aug 1, 2019

Right now, the service level calls are using HttpURLConnection. HttpURLConnection provides a blank slate to make a request with few default values. Session values are not preserved by default, so this means manually setting an x-auth-token or JSESSIONID when authenticating and making a request to another endpoint behind authentication.
There are many libraries for Java that will preserve a sessio

Improve this page

Add a description, image, and links to the parallelization topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the parallelization topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.