Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
3ee0f366
Commit
3ee0f366
authored
Sep 02, 2017
by
gejun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch svn r35207
parent
0630ae1e
Hide whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
386 additions
and
49 deletions
+386
-49
bvar.h
src/bvar/bvar.h
+13
-1
collector.cpp
src/bvar/collector.cpp
+15
-4
collector.h
src/bvar/collector.h
+15
-4
default_variables.cpp
src/bvar/default_variables.cpp
+14
-1
agent_group.h
src/bvar/detail/agent_group.h
+14
-2
call_op_returning_void.h
src/bvar/detail/call_op_returning_void.h
+14
-2
combiner.h
src/bvar/detail/combiner.h
+14
-2
is_atomical.h
src/bvar/detail/is_atomical.h
+14
-0
percentile.cpp
src/bvar/detail/percentile.cpp
+13
-1
percentile.h
src/bvar/detail/percentile.h
+13
-1
sampler.cpp
src/bvar/detail/sampler.cpp
+14
-1
sampler.h
src/bvar/detail/sampler.h
+14
-1
series.h
src/bvar/detail/series.h
+14
-1
gflag.cpp
src/bvar/gflag.cpp
+14
-1
gflag.h
src/bvar/gflag.h
+14
-1
latency_recorder.cpp
src/bvar/latency_recorder.cpp
+14
-1
latency_recorder.h
src/bvar/latency_recorder.h
+14
-1
passive_status.h
src/bvar/passive_status.h
+14
-1
recorder.h
src/bvar/recorder.h
+14
-1
reducer.h
src/bvar/reducer.h
+14
-1
scoped_timer.h
src/bvar/scoped_timer.h
+15
-4
status.h
src/bvar/status.h
+14
-1
lock_timer.h
src/bvar/utils/lock_timer.h
+13
-1
variable.cpp
src/bvar/variable.cpp
+14
-1
variable.h
src/bvar/variable.h
+14
-1
vector.h
src/bvar/vector.h
+14
-1
window.h
src/bvar/window.h
+14
-1
bvar_agent_group_unittest.cpp
test/bvar_agent_group_unittest.cpp
+1
-2
bvar_file_dumper_unittest.cpp
test/bvar_file_dumper_unittest.cpp
+1
-1
bvar_lock_timer_unittest.cpp
test/bvar_lock_timer_unittest.cpp
+1
-1
bvar_percentile_unittest.cpp
test/bvar_percentile_unittest.cpp
+1
-1
bvar_recorder_unittest.cpp
test/bvar_recorder_unittest.cpp
+1
-1
bvar_reducer_unittest.cpp
test/bvar_reducer_unittest.cpp
+1
-2
bvar_sampler_unittest.cpp
test/bvar_sampler_unittest.cpp
+1
-1
bvar_status_unittest.cpp
test/bvar_status_unittest.cpp
+1
-1
bvar_variable_unittest.cpp
test/bvar_variable_unittest.cpp
+1
-1
No files found.
src/bvar/bvar.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2014/12/29 14:54:11
// Date: 2014/12/29 14:54:11
...
...
src/bvar/collector.cpp
View file @
3ee0f366
// Baidu RPC - A framework to host and access services throughout Baidu.
// Copyright (c) 2015 baidu-rpc authors.
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// Author: The baidu-rpc authors (pbrpc@baidu.com)
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Date: Mon Dec 14 19:12:30 CST 2015
// Date: Mon Dec 14 19:12:30 CST 2015
#include <map>
#include <map>
...
...
src/bvar/collector.h
View file @
3ee0f366
// Baidu RPC - A framework to host and access services throughout Baidu.
// Copyright (c) 2015 baidu-rpc authors.
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// Author: The baidu-rpc authors (pbrpc@baidu.com)
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Date: Mon Dec 14 19:12:30 CST 2015
// Date: Mon Dec 14 19:12:30 CST 2015
#ifndef PUBLIC_BVAR_BVAR_COLLECTOR_H
#ifndef PUBLIC_BVAR_BVAR_COLLECTOR_H
...
...
src/bvar/default_variables.cpp
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Thu Jul 30 17:44:54 CST 2015
// Date: Thu Jul 30 17:44:54 CST 2015
...
...
src/bvar/detail/agent_group.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
// File agent_group.h
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/09/24 19:34:24
// Date 2014/09/24 19:34:24
...
...
src/bvar/detail/call_op_returning_void.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
// File combiner.h
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/09/22 11:57:43
// Date 2014/09/22 11:57:43
...
...
src/bvar/detail/combiner.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
// File combiner.h
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/09/22 11:57:43
// Date 2014/09/22 11:57:43
...
...
src/bvar/detail/is_atomical.h
View file @
3ee0f366
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef BVAR_DETAIL_IS_ATOMICAL_H
#ifndef BVAR_DETAIL_IS_ATOMICAL_H
#define BVAR_DETAIL_IS_ATOMICAL_H
#define BVAR_DETAIL_IS_ATOMICAL_H
...
...
src/bvar/detail/percentile.cpp
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/09/15 15:14:32
// Date: 2015/09/15 15:14:32
...
...
src/bvar/detail/percentile.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/09/15 10:44:17
// Date: 2015/09/15 10:44:17
...
...
src/bvar/detail/sampler.cpp
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Tue Jul 28 18:14:40 CST 2015
// Date: Tue Jul 28 18:14:40 CST 2015
...
...
src/bvar/detail/sampler.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Tue Jul 28 18:15:57 CST 2015
// Date: Tue Jul 28 18:15:57 CST 2015
...
...
src/bvar/detail/series.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Tue Jul 28 18:15:57 CST 2015
// Date: Tue Jul 28 18:15:57 CST 2015
...
...
src/bvar/gflag.cpp
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Sun Aug 9 12:26:03 CST 2015
// Date: Sun Aug 9 12:26:03 CST 2015
...
...
src/bvar/gflag.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Sun Aug 9 12:26:03 CST 2015
// Date: Sun Aug 9 12:26:03 CST 2015
...
...
src/bvar/latency_recorder.cpp
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: 2014/09/22 11:57:43
// Date: 2014/09/22 11:57:43
...
...
src/bvar/latency_recorder.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: 2014/09/22 11:57:43
// Date: 2014/09/22 11:57:43
...
...
src/bvar/passive_status.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date 2014/09/22 11:57:43
// Date 2014/09/22 11:57:43
...
...
src/bvar/recorder.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: chenzhangyi01@baidu.com gejun@baidu.com
// Author: chenzhangyi01@baidu.com gejun@baidu.com
// Date 2014/09/25 17:50:21
// Date 2014/09/25 17:50:21
...
...
src/bvar/reducer.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: chenzhangyi01@baidu.com, gejun@baidu.com
// Author: chenzhangyi01@baidu.com, gejun@baidu.com
// Date 2014/09/24 16:01:08
// Date 2014/09/24 16:01:08
...
...
src/bvar/scoped_timer.h
View file @
3ee0f366
// Baidu RPC - A framework to host and access services throughout Baidu.
// Copyright (c) 2017 baidu-rpc authors.
// Copyright (c) 2017 Baidu.com, Inc. All Rights Reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// Author: The baidu-rpc authors (pbrpc@baidu.com)
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Date: Fri Jul 14 11:29:21 CST 2017
// Date: Fri Jul 14 11:29:21 CST 2017
#ifndef BVAR_SCOPED_TIMER_H
#ifndef BVAR_SCOPED_TIMER_H
...
...
src/bvar/status.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/09/22 11:57:43
// Date 2014/09/22 11:57:43
...
...
src/bvar/utils/lock_timer.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/03/06 17:13:17
// Date: 2015/03/06 17:13:17
...
...
src/bvar/variable.cpp
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: 2014/09/22 19:04:47
// Date: 2014/09/22 19:04:47
...
...
src/bvar/variable.h
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: 2014/09/22 11:57:43
// Date: 2014/09/22 11:57:43
...
...
src/bvar/vector.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Sun Sep 20 12:25:11 CST 2015
// Date: Sun Sep 20 12:25:11 CST 2015
...
...
src/bvar/window.h
View file @
3ee0f366
// Copyright (c) 2015 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2015 baidu-rpc authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Wed Jul 29 23:25:43 CST 2015
// Date: Wed Jul 29 23:25:43 CST 2015
...
...
test/bvar_agent_group_unittest.cpp
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors
// File test_agent_group.cpp
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/09/26 12:43:49
// Date 2014/09/26 12:43:49
...
...
test/bvar_file_dumper_unittest.cpp
View file @
3ee0f366
// Copyright (c) 201
5 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 201
4 baidu-rpc authors
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/08/27 17:12:38
// Date: 2015/08/27 17:12:38
...
...
test/bvar_lock_timer_unittest.cpp
View file @
3ee0f366
// Copyright (c) 201
5 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 201
4 baidu-rpc authors
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/03/06 18:34:03
// Date: 2015/03/06 18:34:03
...
...
test/bvar_percentile_unittest.cpp
View file @
3ee0f366
// Copyright (c) 201
5 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 201
4 baidu-rpc authors
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Author: Zhangyi Chen (chenzhangyi01@baidu.com)
// Date: 2015/09/15 15:42:55
// Date: 2015/09/15 15:42:55
...
...
test/bvar_recorder_unittest.cpp
View file @
3ee0f366
// Copyright (c) 2014
Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014
baidu-rpc authors
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/10/13 19:47:59
// Date 2014/10/13 19:47:59
...
...
test/bvar_reducer_unittest.cpp
View file @
3ee0f366
// Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014 baidu-rpc authors
// File test_reducer.cpp
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/10/16 17:55:39
// Date 2014/10/16 17:55:39
...
...
test/bvar_sampler_unittest.cpp
View file @
3ee0f366
// Copyright (c) 201
5 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 201
4 baidu-rpc authors
#include <limits> //std::numeric_limits
#include <limits> //std::numeric_limits
#include "bvar/detail/sampler.h"
#include "bvar/detail/sampler.h"
...
...
test/bvar_status_unittest.cpp
View file @
3ee0f366
// Copyright (c) 2014
Baidu.com, Inc. All Rights Reserved
// Copyright (c) 2014
baidu-rpc authors
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/10/13 19:47:59
// Date 2014/10/13 19:47:59
...
...
test/bvar_variable_unittest.cpp
View file @
3ee0f366
// Copyright (c) 201
5 Baidu.com, Inc. All Rights Reserved
// Copyright (c) 201
4 baidu-rpc authors
// Author: Ge,Jun (gejun@baidu.com)
// Author: Ge,Jun (gejun@baidu.com)
// Date: Fri Jul 24 17:19:40 CST 2015
// Date: Fri Jul 24 17:19:40 CST 2015
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment