Skip to content
#

Library

A library is a collection of preprogrammed templates that implement a behavior when invoked. Libraries are well-defined and are designed for reuse throughout implementation. For example, a website may have multiple webpages that implement the same navigation bar or text-field, but none of these objects have relation to one another.

Here are 1,761 public repositories matching this topic...

rezuma
rezuma commented Oct 26, 2021

Link to the issue (please include a link to the specific documentation or example):
https://github.com/kubernetes-client/python/blob/master/kubernetes/docs/V1ServicePort.md

Description of the issue (please include outputs or screenshots if possible):
The documentation of the V1ServicePort defines target_port type as object. The link on the word object links is broken so the audience c

good first issue lifecycle/stale kind/documentation help wanted
tianshou
youkaichao
youkaichao commented Jul 9, 2020
  • I have marked all applicable categories:
    • exception-raising bug
    • RL algorithm bug
    • documentation request (i.e. "X is missing from the documentation.")
    • new feature request
  • I have visited the [source website], and in particular read the [known issues]
  • I have searched through the [issue tracker] and [issue categories] for duplicates
  • [ ]
good first issue discussion
pkittenis
pkittenis commented Jan 19, 2021

Is your feature request related to a problem? Please describe.
Would like to be able to use callback function for run_command to call when a command has finished executing.

Describe the solution you'd like

def my_cb(host_out, my_arg):
    for line in host_out.stdout:
        print(line)

client.run_command('echo me', callback=my_cb, callback_extra_args=('my_arg',))

`m

avalanche
Wikipedia
Wikipedia