repo_id stringlengths 19 138 | file_path stringlengths 32 200 | content stringlengths 1 12.9M | __index_level_0__ int64 0 0 |
|---|---|---|---|
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/ros_comm/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package ros_comm
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
1.11.20 (2016-06-27)
--------------------
1.11.19 (2016-04-18)
--------------------
1.11.18 (2016-03-17)
--------------------
1.11.17 (2016-03-11)
--------------------
1.11.16 (20... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(rosparam)
find_package(catkin REQUIRED)
catkin_package()
catkin_python_setup()
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/package.xml | <package>
<name>rosparam</name>
<version>1.11.21</version>
<description>
rosparam contains the rosparam command-line tool for getting and
setting ROS Parameters on the <a
href="http://www.ros.org/wiki/Parameter%20Server">Parameter
Server</a> using YAML-encoded files. It also contains an
experi... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/example.yaml | string1: bar
string2: !!str 10
preformattedtext: |
This is the first line
This is the second line
Line breaks are preserved
Indentation is stripped
list1:
- head
- shoulders
- knees
- toes
list2: [1, 1, 2, 3, 5, 8]
dict1: { head: 1, shoulders: 2, knees: 3, toes: 4}
integer1: 1
integer2: 2
float1: 3.14159
fl... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/rosdoc.yaml | - builder: epydoc
config: epydoc.config
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/setup.py | #!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['rosparam'],
package_dir={'': 'src'},
scripts=['scripts/rosparam']
)
setup(**d)
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/rosparam/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-rosparam-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rosparam
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
1.11.20 (2016-06-27)
--------------------
1.11.19 (2016-04-18)
--------------------
1.11.18 (2016-03-17)
--------------------
1.11.17 (2016-03-11)
--------------------
* add suppor... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/epydoc.config | [epydoc]
name: rosparam
modules: rosparam
inheritance: included
url: http://ros.org/wiki/rosparam
frames: no
private: no
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosparam | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/scripts/rosparam | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosparam/src/rosparam/__init__.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(rospy)
find_package(catkin REQUIRED)
catkin_package()
catkin_python_setup()
# install legacy infrastructure needed by rosbuild
install(FILES rosbuild/rospy.cmake
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/rosbuild)
catkin_install_python(PROGRAMS
rosbuild/scripts/g... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/package.xml | <package>
<name>rospy</name>
<version>1.11.21</version>
<description>
rospy is a pure Python client library for ROS. The rospy client
API enables Python programmers to quickly interface with ROS <a
href="http://ros.org/wiki/Topics">Topics</a>, <a
href="http://ros.org/wiki/Services">Services</a>, a... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosdoc.yaml | - builder: epydoc
config: epydoc.config
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/setup.py | #!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['rospy', 'rospy.impl'],
package_dir={'': 'src'},
scripts=['scripts/rosconsole'],
requires=['genpy', 'numpy', 'rosgraph', 'roslib', 'rospkg']
)
se... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/rospy/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-rospy-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rospy
^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
* make get_published_topics threadsafe (`#958 <https://github.com/ros/ros_comm/issues/958>`_)
* fix wrong type in docstring for rospy.Timer (`#878 <https://github.com/ros/ros_comm/pull/878>`_)
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/epydoc.config | [epydoc]
name: rospy
modules: rospy, roslib.rostime
inheritance: included
url: http://ros.org/wiki/rospy
frames: no
private: no
external-api: roslib
external-api-file: roslib:doc/roslib/html/python/api-objects.txt
external-api-root: roslib:http://www.ros.org/doc/api/roslib/html/python/
exclude: rospy.init, rospy.simtim... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild/rospy.cmake | rosbuild_find_ros_package(rospy)
# Message-generation support.
macro(genmsg_py)
rosbuild_get_msgs(_msglist)
set(_inlist "")
set(_autogen "")
set(genmsg_py_exe ${rospy_PACKAGE_PATH}/rosbuild/scripts/genmsg_py.py)
foreach(_msg ${_msglist})
# Construct the path to the .msg file
set(_input ${PROJECT_SOU... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild/scripts/gensrv_py.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild/scripts/genmsg_py.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/rosbuild/scripts/genutil.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/test_nodes/talker.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/test_nodes/listener.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/scripts/rosconsole | #!/usr/bin/env python
from rospy import rosconsole
rosconsole.main()
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/service.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/logger_level_service_caller.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2015, Chris Mansley, Open Source Robotics Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/rostime.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/timer.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2010, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/client.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/__init__.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/core.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/rosconsole.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2015, Chris Mansley, Open Source Robotics Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/names.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/numpy_msg.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/topics.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/exceptions.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/msproxy.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/msg.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/registration.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/transport.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/udpros.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/validators.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/tcpros_pubsub.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/broadcast_manager.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2017, The Apollo Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/paramserver.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/masterslave.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/participant.py | # This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.11
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.
from sys import version_info
if version_info >= (2,6,0):
def swig_import_helper():
from os.path impo... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/tcpros_service.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/tcpros.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/simtime.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/statistics.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2013-2014 Dariush Forouher
# All rights reserved.
#
# Based on code adapted from diagnostics_updater by Blaise Gassend
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/tcpros_base.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/init.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy | apollo_public_repos/apollo-platform/ros/ros_comm/rospy/src/rospy/impl/rosout.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(roslz4)
if(NOT WIN32)
set_directory_properties(PROPERTIES COMPILE_OPTIONS "-Wall;-Wextra")
endif()
find_package(catkin REQUIRED)
find_path(lz4_INCLUDE_DIRS NAMES lz4.h)
if (NOT lz4_INCLUDE_DIRS)
message(FATAL_ERROR "lz4 includes not found")
endif()
find_library(lz4... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/package.xml | <?xml version="1.0"?>
<package>
<name>roslz4</name>
<version>1.11.21</version>
<description>
A Python and C++ implementation of the LZ4 streaming format. Large data
streams are split into blocks which are compressed using the very fast LZ4
compression algorithm.
</description>
<maintainer email=... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/setup.py | #!/usr/bin/env python
from distutils.core import setup, Extension
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['roslz4'],
package_dir={'': 'src'},
requires=[],
)
setup(**d)
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/roslz4/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-roslz4-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package roslz4
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
1.11.20 (2016-06-27)
--------------------
1.11.19 (2016-04-18)
--------------------
* use directory specific compiler flags (`#785 <https://github.com/ros/ros_comm/pull/785>`_)
1.11.18 (2... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4 | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/test/roslz4_test.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2014, Ben Charrow
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/include | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/include/roslz4/lz4s.h | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2014, Ben Charrow
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4 | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/src/_roslz4module.c | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2014, Ben Charrow
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4 | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/src/xxhash.h | /*
xxHash - Fast Hash algorithm
Header File
Copyright (C) 2012-2014, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4 | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/src/xxhash.c | /*
xxHash - Fast Hash algorithm
Copyright (C) 2012-2014, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source cod... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4 | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/src/lz4s.c | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2014, Ben Charrow
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/src | apollo_public_repos/apollo-platform/ros/ros_comm/roslz4/src/roslz4/__init__.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2014, Ben Charrow
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyrig... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(rosconsole)
if(NOT WIN32)
set_directory_properties(PROPERTIES COMPILE_OPTIONS "-Wall;-Wextra")
endif()
find_package(catkin REQUIRED COMPONENTS cpp_common rostime rosunit)
find_package(Boost COMPONENTS regex system thread)
# select rosconsole backend
set(ROSCONSOLE_BAC... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/package.xml | <package>
<name>rosconsole</name>
<version>1.11.21</version>
<description>ROS console output library.</description>
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
<license>BSD</license>
<url>http://www.ros.org/wiki/rosconsole</url>
<author>Josh Faust</author>
<buildtool_depend>... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/mainpage.dox | /**
* \mainpage
*
* \htmlinclude manifest.html
*
* \b rosconsole is a package for console output and logging. It provides a macro-based interface
* which allows both printf- and stream-style output. It also wraps log4cxx (http://logging.apache.org/log4cxx/index.html),
* which supports hierarchical loggers, ver... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/rosconsole/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-rosconsole-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rosconsole
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
* fix building on GCC-6 (`#911 <https://github.com/ros/ros_comm/pull/911>`_)
1.11.20 (2016-06-27)
--------------------
1.11.19 (2016-04-18)
--------------------
* use directory... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/test/thread_test.cpp | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/test/utest.cpp | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/test/assertion_test.cpp | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/cmake/rosconsole-extras.cmake.in | # ros_comm/tools/rosconsole/cmake/rosconsole-extras.cmake
# force automatic escaping of preprocessor definitions
cmake_policy(PUSH)
cmake_policy(SET CMP0005 NEW)
# add ROS_PACKAGE_NAME define required by the named logging macros
add_definitions(-DROS_PACKAGE_NAME=\"${PROJECT_NAME}\")
if("@ROSCONSOLE_BACKEND@" STREQU... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/config/rosconsole.config | #
# rosconsole will find this file by default at $ROS_ROOT/config/rosconsole.config
#
# You can define your own by e.g. copying this file and setting
# ROSCONSOLE_CONFIG_FILE (in your environment) to point to the new file
#
log4j.logger.ros=INFO
log4j.logger.ros.roscpp.superdebug=WARN
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include/ros/console.h | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include/ros/static_assert.h | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include/ros/console_backend.h | /*
* Copyright (c) 2013, Open Source Robotics Foundation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* no... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include/ros/assert.h | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/include/rosconsole/macros_generated.h | // !!!!!!!!!!!!!!!!!!!!!!! This is a generated file, do not edit manually
/*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistribut... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/env-hooks/10.rosconsole.bat.develspace.em | REM generated from rosconsole/env-hooks/10.rosconsole.bat.develspace.em
set ROSCONSOLE_CONFIG_FILE=@(CMAKE_CURRENT_SOURCE_DIR)/config/rosconsole.config
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/env-hooks/10.rosconsole.sh.develspace.em | # generated from rosconsole/env-hooks/10.rosconsole.sh.develspace.em
export ROSCONSOLE_CONFIG_FILE="@(CMAKE_CURRENT_SOURCE_DIR)/config/rosconsole.config"
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/examples/example.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/scripts/generate_macros.py | #!/usr/bin/python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code mus... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/scripts/generate_speed_test.py | #!/usr/bin/python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code mus... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole/rosconsole.cpp | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole/rosconsole_backend.cpp | /*
* Copyright (c) 2013, Open Source Robotics Foundation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* no... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole/impl/rosconsole_print.cpp | /*
* Copyright (c) 2013, Open Source Robotics Foundation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* no... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole/impl/rosconsole_glog.cpp | #include "ros/console.h"
#include <glog/logging.h>
namespace ros
{
namespace console
{
namespace impl
{
std::vector<std::pair<std::string, levels::Level> > rosconsole_glog_log_levels;
LogAppender* rosconsole_glog_appender = 0;
void initialize()
{
google::InitGoogleLogging("rosconsole");
}
std::string getName(voi... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole | apollo_public_repos/apollo-platform/ros/ros_comm/rosconsole/src/rosconsole/impl/rosconsole_log4cxx.cpp | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(rostest)
find_package(catkin COMPONENTS rosunit)
find_package(Boost COMPONENTS system thread)
include_directories(include ${Boost_INCLUDE_DIRS})
catkin_package(DEPENDS Boost
INCLUDE_DIRS include
CFG_EXTRAS ${PROJECT_NAME}-extras.cmake
)
catkin_python_setup()
catki... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/package.xml | <package>
<name>rostest</name>
<version>1.11.21</version>
<description>
Integration test suite based on roslaunch that is compatible with xUnit frameworks.
</description>
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
<license>BSD</license>
<url>http://ros.org/wiki/rostest</u... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/rosdoc.yaml | - builder: epydoc
config: epydoc.config
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/setup.py | #!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['rostest'],
package_dir={'': 'src'},
scripts=['scripts/rostest'],
requires=['rospkg', 'genmsg', 'genpy', 'roslib', 'rospy']
)
setup(**d)
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/rostest/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-rostest-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rostest
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
* fix test type handling (`#722 <https://github.com/ros/ros_comm/issues/722>`_)
* add_rostest_gtest does now add the created gtest-target as a dependeny to the created rostest (`#830 <htt... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/epydoc.config | [epydoc]
name: rostest
modules: rostest
inheritance: included
url: http://ros.org/wiki/rostest
frames: no
private: no
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rostest | apollo_public_repos/apollo-platform/ros/ros_comm/rostest/test/clean_master.test | <launch>
<test pkg="rostest" type="test_clean_master.py" test-name="clean_master1" />
<test pkg="rostest" type="test_clean_master.py" test-name="clean_master2" />
<test pkg="rostest" type="test_clean_master.py" test-name="clean_master3" />
</launch>
| 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.