ID
stringlengths
36
36
Language
stringclasses
1 value
Repository Name
stringclasses
13 values
File Name
stringlengths
2
48
File Path in Repository
stringlengths
11
111
File Path for Unit Test
stringlengths
13
116
Code
stringlengths
0
278k
Unit Test - (Ground Truth)
stringlengths
78
663k
Code Url
stringlengths
91
198
Test Code Url
stringlengths
93
203
Commit Hash
stringclasses
13 values
d13a71f9-9641-49d4-9959-d13d8a3bdbf0
cpp
google/tensorstore
bfloat16
tensorstore/util/bfloat16.h
tensorstore/util/bfloat16_test.cc
#ifndef TENSORSTORE_UTIL_BFLOAT16_H_ #define TENSORSTORE_UTIL_BFLOAT16_H_ #include <cassert> #include <cmath> #include <cstdint> #include <cstring> #include <limits> #include <type_traits> #include "absl/base/casts.h" #include <nlohmann/json_fwd.hpp> namespace tensorstore { class BFloat16; } namespace std { template ...
#include "tensorstore/util/bfloat16.h" #include <cmath> #include <cstdint> #include <cstring> #include <limits> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/casts.h" #include "tensorstore/internal/json_gtest.h" namespace { using ::tensorstore::internal::Float32ToBfloat16RoundNearestEven; using ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/bfloat16.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/bfloat16_test.cc
4f887a6430414cd6088e1743555015b10f116d50
c08d64b7-ea07-462b-8780-bba018bd7092
cpp
google/tensorstore
extents
tensorstore/util/extents.h
tensorstore/util/extents_test.cc
#ifndef TENSORSTORE_UTIL_EXTENTS_H_ #define TENSORSTORE_UTIL_EXTENTS_H_ #include <cassert> #include <cstddef> #include <limits> #include <type_traits> #include "absl/base/optimization.h" #include "tensorstore/index.h" #include "tensorstore/internal/integer_overflow.h" #include "tensorstore/internal/type_traits.h" #incl...
#include "tensorstore/util/extents.h" #include <cstdint> #include <limits> #include <type_traits> #include <vector> #include <gtest/gtest.h> #include "tensorstore/index.h" #include "tensorstore/rank.h" #include "tensorstore/util/span.h" namespace { using ::tensorstore::dynamic_extent; using ::tensorstore::Index; using ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/extents.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/extents_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2b8f4dea-181a-4111-9c9e-1972e76f79b6
cpp
google/tensorstore
bit_span
tensorstore/util/bit_span.h
tensorstore/util/bit_span_test.cc
#ifndef TENSORSTORE_UTIL_BIT_SPAN_H_ #define TENSORSTORE_UTIL_BIT_SPAN_H_ #include <algorithm> #include <cassert> #include <cstddef> #include <type_traits> #include "absl/base/attributes.h" #include "tensorstore/util/small_bit_set.h" #include "tensorstore/util/span.h" namespace tensorstore { namespace internal_bit_span...
#include "tensorstore/util/bit_span.h" #include <algorithm> #include <array> #include <cstdint> #include <type_traits> #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { using ::tensorstore::BitIterator; using ::tensorstore::BitSpan; using ::tensorstore::BitVectorSizeInBlocks; static_assert( std::is_conv...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/bit_span.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/bit_span_test.cc
4f887a6430414cd6088e1743555015b10f116d50
e8a18a24-143d-4a50-a88f-2624383365b6
cpp
google/tensorstore
span
tensorstore/serialization/span.h
tensorstore/serialization/span_test.cc
#ifndef TENSORSTORE_SERIALIZATION_SPAN_H_ #define TENSORSTORE_SERIALIZATION_SPAN_H_ #include <cstddef> #include <type_traits> #include "absl/base/attributes.h" #include "tensorstore/serialization/fwd.h" #include "tensorstore/serialization/serialization.h" #include "tensorstore/util/span.h" namespace tensorstore { names...
#include "tensorstore/serialization/span.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/serialization/batch.h" #include "tensorstore/serialization/serialization.h" #include "tensorstore/util/result.h" #include "tensorstore/util/span.h" #include "tensorstore/util/status_testutil.h" namespace ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/serialization/span.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/serialization/span_test.cc
4f887a6430414cd6088e1743555015b10f116d50
ecdbf438-0221-4da0-a616-979e57418d7d
cpp
google/tensorstore
division
tensorstore/util/division.h
tensorstore/util/division_test.cc
#ifndef TENSORSTORE_UTIL_DIVISION_H_ #define TENSORSTORE_UTIL_DIVISION_H_ #include <cassert> #include <limits> #include <type_traits> namespace tensorstore { template <typename IntegralType> constexpr IntegralType RoundUpTo(IntegralType input, IntegralType rounding_value) { static_ass...
#include "tensorstore/util/division.h" #include <cstdint> namespace { static_assert(3 == tensorstore::FloorOfRatio(10, 3)); static_assert(-4 == tensorstore::FloorOfRatio(-10, 3)); static_assert(4 == tensorstore::CeilOfRatio(10, 3)); static_assert(-3 == tensorstore::CeilOfRatio(-10, 3)); static_assert(10 == tensorstore:...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/division.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/division_test.cc
4f887a6430414cd6088e1743555015b10f116d50
e1211064-e34b-4b2f-a04e-4c5792219b55
cpp
google/tensorstore
str_cat
tensorstore/util/str_cat.h
tensorstore/util/str_cat_test.cc
#ifndef TENSORSTORE_UTIL_STR_CAT_H_ #define TENSORSTORE_UTIL_STR_CAT_H_ #include <cstddef> #include <ostream> #include <sstream> #include <string> #include <tuple> #include <type_traits> #include <utility> #include "absl/strings/str_cat.h" #include "tensorstore/internal/type_traits.h" #include "tensorstore/util/span.h"...
#include "tensorstore/util/str_cat.h" #include <complex> #include <map> #include <optional> #include <ostream> #include <sstream> #include <string> #include <tuple> #include <utility> #include <gtest/gtest.h> #include "tensorstore/util/span.h" namespace { using ::tensorstore::internal_strcat::StringifyUsingOstream; enu...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/str_cat.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/str_cat_test.cc
4f887a6430414cd6088e1743555015b10f116d50
bc2dbb66-ecd6-4962-8879-565a8becbf6f
cpp
google/tensorstore
byte_strided_pointer
tensorstore/util/byte_strided_pointer.h
tensorstore/util/byte_strided_pointer_test.cc
#ifndef TENSORSTORE_UTIL_BYTE_STRIDED_POINTER_H_ #define TENSORSTORE_UTIL_BYTE_STRIDED_POINTER_H_ #include <cassert> #include <cstddef> #include <cstdint> #include <type_traits> #include "tensorstore/internal/integer_overflow.h" #include "tensorstore/util/element_traits.h" namespace tensorstore { template <typename T> ...
#include "tensorstore/util/byte_strided_pointer.h" #include <limits> #include <type_traits> #include <gtest/gtest.h> namespace { using ::tensorstore::ByteStridedPointer; struct Base {}; struct Derived : Base {}; static_assert(std::is_convertible_v<int*, ByteStridedPointer<int>>); static_assert(std::is_constructible_v<i...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/byte_strided_pointer.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/byte_strided_pointer_test.cc
4f887a6430414cd6088e1743555015b10f116d50
e0201d58-2450-421f-960a-aa40ebcad6aa
cpp
google/tensorstore
result_sender
tensorstore/util/execution/result_sender.h
tensorstore/util/execution/result_sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_RESULT_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_RESULT_SENDER_H_ #include <functional> #include <type_traits> #include <utility> #include "absl/status/status.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/result.h" namespace tensorstore { namespace...
#include "tensorstore/util/execution/result_sender.h" #include <functional> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/util/execution/any_receiver.h" #include "tensorstore/util/execution/any_sender.h" #include "tensorstor...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/result_sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/result_sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
915dbca6-57f2-4dc1-bd74-29bf051fe4d0
cpp
google/tensorstore
collecting_sender
tensorstore/util/execution/collecting_sender.h
tensorstore/util/execution/collecting_sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_COLLECTING_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_COLLECTING_SENDER_H_ #include <utility> #include "tensorstore/util/execution/execution.h" namespace tensorstore { namespace internal { template <typename Container, typename SingleReceiver> struct CollectingReceiver { SingleRec...
#include "tensorstore/util/execution/collecting_sender.h" #include <ostream> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/str_join.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender.h" #include "tensorstore/uti...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/collecting_sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/collecting_sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
a87ce158-3c36-4244-b5ab-8c4260ede5cd
cpp
google/tensorstore
sender_util
tensorstore/util/execution/sender_util.h
tensorstore/util/execution/sender_util_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_SENDER_UTIL_H_ #define TENSORSTORE_UTIL_EXECUTION_SENDER_UTIL_H_ #include <atomic> #include <iterator> #include <utility> #include "tensorstore/util/execution/execution.h" namespace tensorstore { template <typename FlowReceiver> struct FlowSingleReceiver { FlowReceiver receiver; t...
#include "tensorstore/util/execution/sender_util.h" #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/util/execution/any_receiver.h" #include "tensorstore/util/execution/any_sender.h" #include "tensorstore/util/execution/execution.h" #include ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/sender_util.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/sender_util_test.cc
4f887a6430414cd6088e1743555015b10f116d50
58e77cc6-ed69-45d3-b6b2-27bf9c79df8e
cpp
google/tensorstore
future_sender
tensorstore/util/execution/future_sender.h
tensorstore/util/execution/future_sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_FUTURE_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_FUTURE_SENDER_H_ #include <functional> #include <type_traits> #include <utility> #include "absl/status/status.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/future.h" namespace tensorstore { namespace...
#include "tensorstore/util/execution/future_sender.h" #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/util/execution/any_receiver.h" #include "tensorstore/util/execution/any_sender.h" #include "tensorstore/util/execution/executi...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/future_sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/future_sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2172c17c-1538-4397-a83d-016d03c34528
cpp
google/tensorstore
sender
tensorstore/util/execution/sender.h
tensorstore/util/execution/sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_SENDER_H_ #include <cstddef> #include <tuple> #include <utility> #include "tensorstore/util/execution/execution.h" namespace tensorstore { class NullReceiver { public: template <typename CancelReceiver> friend void set_starting(NullRec...
#include "tensorstore/util/execution/sender.h" #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/internal/type_traits.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender_testutil.h" #include "tensor...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
50dc4182-df60-4ae7-a9a7-df5628cbc0a3
cpp
google/tensorstore
sync_flow_sender
tensorstore/util/execution/sync_flow_sender.h
tensorstore/util/execution/sync_flow_sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_SYNC_FLOW_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_SYNC_FLOW_SENDER_H_ #include <utility> #include "absl/synchronization/mutex.h" #include "tensorstore/util/execution/execution.h" namespace tensorstore { template <typename Receiver> struct SyncFlowReceiver { SyncFlowReceiver() =...
#include "tensorstore/util/execution/sync_flow_sender.h" #include <stddef.h> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/internal/thread/thread.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender_testutil.h" nam...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/sync_flow_sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/sync_flow_sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
a2bab1db-6420-4fbc-87b6-1fc3ea4883f7
cpp
google/tensorstore
future_collecting_receiver
tensorstore/util/execution/future_collecting_receiver.h
tensorstore/util/execution/future_collecting_receiver_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_FUTURE_COLLECTING_RECEIVER_H_ #define TENSORSTORE_UTIL_EXECUTION_FUTURE_COLLECTING_RECEIVER_H_ #include <utility> #include "absl/status/status.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/future.h" namespace tensorstore { template <typename Container...
#include "tensorstore/util/execution/future_collecting_receiver.h" #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender_testutil.h" #include "tensorstore/util/execution/sender_uti...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/future_collecting_receiver.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/future_collecting_receiver_test.cc
4f887a6430414cd6088e1743555015b10f116d50
f56698df-bac0-4617-9f71-d61e1f535cee
cpp
google/tensorstore
any_sender
tensorstore/util/execution/any_sender.h
tensorstore/util/execution/any_sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_ANY_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_ANY_SENDER_H_ #include <utility> #include "absl/base/attributes.h" #include "tensorstore/internal/poly/poly.h" #include "tensorstore/util/execution/any_receiver.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/...
#include "tensorstore/util/execution/any_sender.h" #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender.h" #include "tensorstore/util/execution/sender_testutil.h" #include "t...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/any_sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/any_sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
4b03c7db-37a2-41d3-bf1b-d4b8f63cfab0
cpp
google/tensorstore
any_receiver
tensorstore/util/execution/any_receiver.h
tensorstore/util/execution/any_receiver_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_ANY_RECEIVER_H_ #define TENSORSTORE_UTIL_EXECUTION_ANY_RECEIVER_H_ #include <utility> #include "absl/base/attributes.h" #include "tensorstore/internal/poly/poly.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender.h" namespace tensorstore { ...
#include "tensorstore/util/execution/any_receiver.h" #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/execution/sender.h" #include "tensorstore/util/execution/sender_testutil.h" namespace { TEST(AnyReceiver...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/any_receiver.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/any_receiver_test.cc
4f887a6430414cd6088e1743555015b10f116d50
c4fda505-d7d6-4f22-b4e5-da8367c55fed
cpp
google/tensorstore
std_array
tensorstore/internal/json_binding/std_array.h
tensorstore/internal/json_binding/std_array_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_BINDING_STD_ARRAY_H_ #define TENSORSTORE_INTERNAL_JSON_BINDING_STD_ARRAY_H_ #include <stddef.h> #include <array> #include <iterator> #include <utility> #include <vector> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json/array.h" #include "...
#include "tensorstore/internal/json_binding/std_array.h" #include <array> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/status/status.h" #include <nlohmann/json_fwd.hpp> #include "tensorstore/internal/json_binding/gtest.h" #include "tensorstore/internal/json_binding/json_binding.h" #inclu...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/std_array.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/std_array_test.cc
4f887a6430414cd6088e1743555015b10f116d50
77850688-3555-4dde-8343-88ffd0e70fbc
cpp
google/tensorstore
std_tuple
tensorstore/internal/json_binding/std_tuple.h
tensorstore/internal/json_binding/std_tuple_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_BINDING_STD_TUPLE_H_ #define TENSORSTORE_INTERNAL_JSON_BINDING_STD_TUPLE_H_ #include <stddef.h> #include <tuple> #include <type_traits> #include <utility> #include <vector> #include "absl/meta/type_traits.h" #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensors...
#include "tensorstore/internal/json_binding/std_tuple.h" #include <string> #include <tuple> #include <utility> #include <gtest/gtest.h> #include <nlohmann/json_fwd.hpp> #include "tensorstore/internal/json_binding/gtest.h" #include "tensorstore/internal/json_binding/json_binding.h" #include "tensorstore/json_serializati...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/std_tuple.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/std_tuple_test.cc
4f887a6430414cd6088e1743555015b10f116d50
23427dcf-22eb-4675-9011-32fc7381c6eb
cpp
google/tensorstore
apply_members
tensorstore/util/apply_members/apply_members.h
tensorstore/util/apply_members/apply_members_test.cc
#ifndef TENSORSTORE_UTIL_APPLY_MEMBERS_APPLY_MEMBERS_H_ #define TENSORSTORE_UTIL_APPLY_MEMBERS_APPLY_MEMBERS_H_ #include <type_traits> #include <utility> #include "absl/base/attributes.h" namespace half_float { class half; } namespace tensorstore { class BFloat16; template <typename T, typename SFINAE = void> struct Ap...
#include "tensorstore/util/apply_members/apply_members.h" #include <array> #include <complex> #include <tuple> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/util/apply_members/std_array.h" #include "tensorstore/util/apply_members/std_complex.h" #include "tensorstore/util/app...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/apply_members/apply_members.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/apply_members/apply_members_test.cc
4f887a6430414cd6088e1743555015b10f116d50
12fc993c-78e4-40a0-8d2e-c84b4ff0b025
cpp
google/tensorstore
std_optional
tensorstore/internal/estimate_heap_usage/std_optional.h
tensorstore/internal/json_binding/std_optional_test.cc
#ifndef TENSORSTORE_INTERNAL_ESTIMATE_HEAP_USAGE_STD_OPTIONAL_H_ #define TENSORSTORE_INTERNAL_ESTIMATE_HEAP_USAGE_STD_OPTIONAL_H_ #include <optional> #include "tensorstore/internal/estimate_heap_usage/estimate_heap_usage.h" namespace tensorstore { namespace internal { template <typename T> struct HeapUsageEstimator<std...
#include "tensorstore/internal/json_binding/std_optional.h" #include <optional> #include <string> #include <type_traits> #include <utility> #include <gtest/gtest.h> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json_binding/bindable.h" #include "tensorstore/internal/json_bi...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/estimate_heap_usage/std_optional.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/std_optional_test.cc
4f887a6430414cd6088e1743555015b10f116d50
53ac2892-65fc-4c7b-870d-4c1419791a50
cpp
google/tensorstore
driver_impl
tensorstore/driver/zarr/driver_impl.h
tensorstore/driver/zarr/driver_impl_test.cc
#ifndef TENSORSTORE_DRIVER_ZARR_DRIVER_IMPL_H_ #define TENSORSTORE_DRIVER_ZARR_DRIVER_IMPL_H_ #include <stddef.h> #include <string> #include <string_view> #include "tensorstore/driver/kvs_backed_chunk_driver.h" #include "tensorstore/driver/zarr/metadata.h" #include "tensorstore/driver/zarr/spec.h" #include "tensorstore...
#include "tensorstore/driver/zarr/driver_impl.h" #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/driver/kvs_backed_chunk_driver_impl.h" #include "tensorstore/driver/zarr/metadata.h" #include "tensorstore/driver/zarr/spec.h" #include "tensorstore/...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/driver/zarr/driver_impl.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/driver/zarr/driver_impl_test.cc
4f887a6430414cd6088e1743555015b10f116d50
850b4321-06d4-460c-9d9b-7b489fe04b50
cpp
google/tensorstore
container_to_shared
tensorstore/internal/container_to_shared.h
tensorstore/internal/container_to_shared_test.cc
#ifndef TENSORSTORE_INTERNAL_STRING_TO_SHARED_H_ #define TENSORSTORE_INTERNAL_STRING_TO_SHARED_H_ #include <stddef.h> #include <memory> #include <utility> namespace tensorstore { namespace internal { template <typename Container> inline std::shared_ptr<typename Container::value_type> ContainerToSharedDataPointerWithOff...
#include "tensorstore/internal/container_to_shared.h" #include <memory> #include <string> #include <string_view> #include <utility> #include <gtest/gtest.h> namespace { using ::tensorstore::internal::ContainerToSharedDataPointerWithOffset; TEST(ContainerToSharedDataPointerWithOffsetTest, SmallBuffer) { std::string sm...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container_to_shared.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container_to_shared_test.cc
4f887a6430414cd6088e1743555015b10f116d50
94567bfa-b355-4273-8c93-21320569b490
cpp
google/tensorstore
intrusive_ptr
tensorstore/internal/intrusive_ptr.h
tensorstore/internal/intrusive_ptr_test.cc
#ifndef TENSORSTORE_INTERNAL_INTRUSIVE_PTR_H_ #define TENSORSTORE_INTERNAL_INTRUSIVE_PTR_H_ #include <atomic> #include <cassert> #include <cstddef> #include <cstdint> #include <memory> #include <type_traits> #include <utility> #include "tensorstore/internal/memory.h" #include "tensorstore/internal/type_traits.h" namesp...
#include "tensorstore/internal/intrusive_ptr.h" #include <cstdint> #include <memory> #include <utility> #include <gtest/gtest.h> #include "tensorstore/internal/memory.h" namespace { using ::tensorstore::internal::acquire_object_ref; using ::tensorstore::internal::adopt_object_ref; using ::tensorstore::internal::AtomicR...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/intrusive_ptr.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/intrusive_ptr_test.cc
4f887a6430414cd6088e1743555015b10f116d50
cd74caa6-384a-4978-adf7-847e8d12598e
cpp
google/tensorstore
multi_vector
tensorstore/internal/multi_vector.h
tensorstore/internal/multi_vector_test.cc
#ifndef TENSORSTORE_INTERNAL_MULTI_VECTOR_H_ #define TENSORSTORE_INTERNAL_MULTI_VECTOR_H_ #include <algorithm> #include <cassert> #include <cstddef> #include <cstring> #include <type_traits> #include <utility> #include "tensorstore/internal/gdb_scripting.h" #include "tensorstore/internal/meta.h" #include "tensorstore/i...
#include "tensorstore/internal/multi_vector.h" #include <cstddef> #include <type_traits> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/rank.h" #include "tensorstore/util/span.h" namespace { using ::tensorstore::dynamic_rank; using ::tensorstore::internal::MultiVectorAccess; ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/multi_vector.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/multi_vector_test.cc
4f887a6430414cd6088e1743555015b10f116d50
a9f555b1-f12d-4de3-a59e-cd6f28002d77
cpp
google/tensorstore
tagged_ptr
tensorstore/internal/tagged_ptr.h
tensorstore/internal/tagged_ptr_test.cc
#ifndef TENSORSTORE_INTERNAL_TAGGED_PTR_H_ #define TENSORSTORE_INTERNAL_TAGGED_PTR_H_ #include <cassert> #include <cstddef> #include <cstdint> #include <type_traits> #include <utility> namespace tensorstore { namespace internal { template <typename T, int TagBits> class TaggedPtr { constexpr static std::uintptr_t kTa...
#include "tensorstore/internal/tagged_ptr.h" #include <memory> #include <type_traits> #include <gtest/gtest.h> #include "tensorstore/internal/intrusive_ptr.h" #include "tensorstore/internal/memory.h" namespace { using ::tensorstore::internal::const_pointer_cast; using ::tensorstore::internal::dynamic_pointer_cast; usin...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/tagged_ptr.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/tagged_ptr_test.cc
4f887a6430414cd6088e1743555015b10f116d50
3d035e9e-877d-400c-a39b-c8334bb20cfd
cpp
google/tensorstore
void_wrapper
tensorstore/internal/void_wrapper.h
tensorstore/internal/void_wrapper_test.cc
#ifndef TENSORSTORE_INTERNAL_VOID_WRAPPER_H_ #define TENSORSTORE_INTERNAL_VOID_WRAPPER_H_ #include <type_traits> #include <utility> #include "absl/status/status.h" namespace tensorstore { namespace internal { struct Void { explicit operator bool() const { return true; } static void Unwrap(Void) {} template <typen...
#include "tensorstore/internal/void_wrapper.h" #include <type_traits> #include <gtest/gtest.h> #include "tensorstore/internal/type_traits.h" namespace { using ::tensorstore::internal::Void; static_assert(std::is_same_v<Void, Void::WrappedType<void>>); static_assert(std::is_same_v<int, Void::WrappedType<int>>); static_a...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/void_wrapper.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/void_wrapper_test.cc
4f887a6430414cd6088e1743555015b10f116d50
22370324-516e-4f49-8766-2c999df7dcb1
cpp
google/tensorstore
string_like
tensorstore/internal/string_like.h
tensorstore/internal/string_like_test.cc
#ifndef TENSORSTORE_INTERNAL_STRING_LIKE_H_ #define TENSORSTORE_INTERNAL_STRING_LIKE_H_ #include <cassert> #include <cstddef> #include <string> #include <string_view> #include "absl/base/optimization.h" #include "tensorstore/util/span.h" namespace tensorstore { namespace internal { template <typename T> constexpr inlin...
#include "tensorstore/internal/string_like.h" #include <string> #include <string_view> #include <vector> #include <gtest/gtest.h> namespace { using ::tensorstore::internal::StringLikeSpan; TEST(StringLikeSpan, Default) { StringLikeSpan x; EXPECT_EQ(0, x.size()); } TEST(StringLikeSpan, CStrings) { std::vector<cons...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/string_like.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/string_like_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2707fc17-810b-4e82-b824-5dc398f336ce
cpp
google/tensorstore
multi_vector_view
tensorstore/internal/multi_vector_view.h
tensorstore/internal/multi_vector_view_test.cc
#ifndef TENSORSTORE_INTERNAL_MULTI_VECTOR_VIEW_H_ #define TENSORSTORE_INTERNAL_MULTI_VECTOR_VIEW_H_ #include <cassert> #include <cstddef> #include "tensorstore/index.h" #include "tensorstore/internal/gdb_scripting.h" #include "tensorstore/internal/meta.h" #include "tensorstore/internal/type_traits.h" #include "tensorst...
#include "tensorstore/internal/multi_vector_view.h" #include <cstddef> #include <type_traits> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/rank.h" #include "tensorstore/util/span.h" namespace { using ::tensorstore::dynamic_rank; using ::tensorstore::internal::MultiVectorAccess; using ::tensor...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/multi_vector_view.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/multi_vector_view_test.cc
4f887a6430414cd6088e1743555015b10f116d50
df23d9ae-e864-4c4b-8284-7fedafb1249f
cpp
google/tensorstore
integer_overflow
tensorstore/internal/integer_overflow.h
tensorstore/internal/integer_overflow_test.cc
#ifndef TENSORSTORE_INTERNAL_INTEGER_OVERFLOW_H_ #define TENSORSTORE_INTERNAL_INTEGER_OVERFLOW_H_ #include <limits> #include <type_traits> #include "absl/base/attributes.h" namespace tensorstore { namespace internal { namespace wrap_on_overflow { #if ABSL_HAVE_ATTRIBUTE(no_sanitize) && defined(__clang__) #define TENSOR...
#include "tensorstore/internal/integer_overflow.h" #include <cstdint> #include <gtest/gtest.h> #include "tensorstore/index.h" namespace { using ::tensorstore::Index; using ::tensorstore::internal::AddOverflow; using ::tensorstore::internal::AddSaturate; using ::tensorstore::internal::MulOverflow; using ::tensorstore::i...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/integer_overflow.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/integer_overflow_test.cc
4f887a6430414cd6088e1743555015b10f116d50
8eece88e-b26c-48bd-9e50-14e9a4efb88c
cpp
google/tensorstore
unique_with_intrusive_allocator
tensorstore/internal/unique_with_intrusive_allocator.h
tensorstore/internal/unique_with_intrusive_allocator_test.cc
#ifndef TENSORSTORE_INTERNAL_UNIQUE_WITH_INTRUSIVE_ALLOCATOR_H_ #define TENSORSTORE_INTERNAL_UNIQUE_WITH_INTRUSIVE_ALLOCATOR_H_ #include <memory> #include <new> #include <utility> namespace tensorstore { namespace internal { template <typename T> struct IntrusiveAllocatorDeleter { void operator()(T* p) { auto all...
#include "tensorstore/internal/unique_with_intrusive_allocator.h" #include <cstddef> #include <memory> #include <vector> #include <gtest/gtest.h> #include "tensorstore/internal/arena.h" namespace { using ::tensorstore::internal::Arena; using ::tensorstore::internal::ArenaAllocator; using ::tensorstore::internal::Intrus...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/unique_with_intrusive_allocator.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/unique_with_intrusive_allocator_test.cc
4f887a6430414cd6088e1743555015b10f116d50
59593b95-a75a-4b03-b909-6c7098377862
cpp
google/tensorstore
json_registry
tensorstore/internal/json_registry.h
tensorstore/internal/json_registry_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_REGISTRY_H_ #define TENSORSTORE_INTERNAL_JSON_REGISTRY_H_ #include <memory> #include <string> #include <string_view> #include <type_traits> #include <typeindex> #include <utility> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json_binding/j...
#include "tensorstore/internal/json_registry.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/no_destructor.h" #include "absl/status/status.h" #include "tensorstore/internal/intrusive_ptr.h" #include "tensorstore/internal/json_binding/bindable.h" #include "tensorstore/internal/json_binding/json_...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_registry.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_registry_test.cc
4f887a6430414cd6088e1743555015b10f116d50
8377d019-df08-42d2-95d1-41c6f8d85eb8
cpp
google/tensorstore
global_initializer
tensorstore/internal/global_initializer.h
tensorstore/internal/global_initializer_test.cc
#ifndef TENSORSTORE_INTERNAL_GLOBAL_INITIALIZER_H_ #define TENSORSTORE_INTERNAL_GLOBAL_INITIALIZER_H_ #include "tensorstore/internal/preprocessor/cat.h" #define TENSORSTORE_GLOBAL_INITIALIZER \ namespace { \ const struct TENSORSTORE_PP_C...
#include "tensorstore/internal/global_initializer.h" #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { std::vector<int> vec; TENSORSTORE_GLOBAL_INITIALIZER { vec.push_back(1); } TENSORSTORE_GLOBAL_INITIALIZER { vec.push_back(2); } TENSORSTORE_GLOBAL_INITIALIZER { vec.push_back(3); } TEST(G...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/global_initializer.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/global_initializer_test.cc
4f887a6430414cd6088e1743555015b10f116d50
4de958a3-e1a5-4cae-a5d6-151e97e19ad6
cpp
google/tensorstore
meta
tensorstore/internal/meta.h
tensorstore/internal/meta_test.cc
#ifndef TENSORSTORE_INTERNAL_META_H_ #define TENSORSTORE_INTERNAL_META_H_ namespace tensorstore { namespace internal { template <typename T, typename... Ts> constexpr T&& GetFirstArgument(T&& t, Ts&&... ts) { return static_cast<T&&>(t); } inline int constexpr_assert_failed() noexcept { return 0; } #define TENSORSTORE...
#include "tensorstore/internal/meta.h" #include <type_traits> namespace { using ::tensorstore::internal::GetFirstArgument; static_assert( std::is_same_v<int&, decltype(GetFirstArgument(std::declval<int&>(), std::declval<float&>()))>); static_assert(std::is_same_v< ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/meta.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/meta_test.cc
4f887a6430414cd6088e1743555015b10f116d50
cee18ae8-9b62-4adf-9023-605307ccd725
cpp
google/tensorstore
type_traits
tensorstore/internal/type_traits.h
tensorstore/internal/type_traits_test.cc
#ifndef TENSORSTORE_INTERNAL_TYPE_TRAITS_H_ #define TENSORSTORE_INTERNAL_TYPE_TRAITS_H_ #include <cstddef> #include <initializer_list> #include <iosfwd> #include <type_traits> #include <utility> #if defined(__has_builtin) #if __has_builtin(__type_pack_element) #define TENSORSTORE_HAS_TYPE_PACK_ELEMENT #endif #endif #if...
#include "tensorstore/internal/type_traits.h" #include <stddef.h> #include <tuple> #include <type_traits> #include <gtest/gtest.h> namespace { using ::tensorstore::internal::CopyQualifiers; using ::tensorstore::internal::FirstType; using ::tensorstore::internal::GetLValue; using ::tensorstore::internal::IsConstConverti...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/type_traits.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/type_traits_test.cc
4f887a6430414cd6088e1743555015b10f116d50
3d8edbda-9c2e-45e4-8660-fd15f9471059
cpp
google/tensorstore
regular_grid
tensorstore/internal/regular_grid.h
tensorstore/internal/regular_grid_test.cc
#ifndef TENSORSTORE_INTERNAL_REGULAR_GRID_H_ #define TENSORSTORE_INTERNAL_REGULAR_GRID_H_ #include <cassert> #include "tensorstore/index.h" #include "tensorstore/index_interval.h" #include "tensorstore/util/division.h" #include "tensorstore/util/span.h" namespace tensorstore { namespace internal_grid_partition { struct...
#include "tensorstore/internal/regular_grid.h" #include <array> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/index.h" #include "tensorstore/index_interval.h" namespace { using ::tensorstore::DimensionIndex; using ::tensorstore::Index; using ::tensorstore::IndexInterval; using ::tensorstore::i...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/regular_grid.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/regular_grid_test.cc
4f887a6430414cd6088e1743555015b10f116d50
eab9cf0e-5b44-4116-a994-bad172501059
cpp
google/tensorstore
arena
tensorstore/internal/arena.h
tensorstore/internal/arena_test.cc
#ifndef TENSORSTORE_INTERNAL_ARENA_H_ #define TENSORSTORE_INTERNAL_ARENA_H_ #include <stddef.h> #include <memory> #include <new> #include <utility> #include "tensorstore/internal/exception_macros.h" #include "tensorstore/internal/integer_overflow.h" #include "tensorstore/util/span.h" namespace tensorstore { namespace i...
#include "tensorstore/internal/arena.h" #include <algorithm> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/util/span.h" namespace { using ::tensorstore::internal::Arena; using ::tensorstore::internal::ArenaAllocator; bool Contains(tensorstore::span<const unsigned char> buffer...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/arena.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/arena_test.cc
4f887a6430414cd6088e1743555015b10f116d50
74755980-68bd-4fe2-9dcb-b9323729bddb
cpp
google/tensorstore
source_location
tensorstore/internal/source_location.h
tensorstore/internal/source_location_test.cc
#ifndef TENSORSTORE_INTERNAL_SOURCE_LOCATION_H_ #define TENSORSTORE_INTERNAL_SOURCE_LOCATION_H_ #include <cstdint> #include <utility> #include "absl/base/config.h" namespace tensorstore { #ifndef TENSORSTORE_HAVE_SOURCE_LOCATION_CURRENT #if ABSL_HAVE_BUILTIN(__builtin_LINE) && ABSL_HAVE_BUILTIN(__builtin_FILE) #define ...
#include "tensorstore/internal/source_location.h" #include <cstdint> #include <gtest/gtest.h> namespace { using ::tensorstore::SourceLocation; uint64_t TakesSourceLocation( SourceLocation loc = tensorstore::SourceLocation::current()) { return loc.line(); } TEST(SourceLocationTest, Basic) { constexpr tensorstore...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/source_location.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/source_location_test.cc
4f887a6430414cd6088e1743555015b10f116d50
ce08a832-4904-4f05-8fe8-fe63853de4ff
cpp
google/tensorstore
elementwise_function
tensorstore/internal/elementwise_function.h
tensorstore/internal/elementwise_function_test.cc
#ifndef TENSORSTORE_UTIL_ELEMENTWISE_FUNCTION_H_ #define TENSORSTORE_UTIL_ELEMENTWISE_FUNCTION_H_ #include <array> #include <cstddef> #include <type_traits> #include <utility> #include "absl/meta/type_traits.h" #include "tensorstore/index.h" #include "tensorstore/internal/integer_overflow.h" #include "tensorstore/inter...
#include "tensorstore/internal/elementwise_function.h" #include <functional> #include <limits> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/attributes.h" #include "tensorstore/index.h" #include "tensorstore/internal/integer_overflow.h" #include "tensorstore/util/byte_strided_p...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/elementwise_function.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/elementwise_function_test.cc
4f887a6430414cd6088e1743555015b10f116d50
cb0e2bda-0e2c-4bc6-b373-3abf2587c040
cpp
google/tensorstore
image_writer
tensorstore/internal/image/image_writer.h
tensorstore/internal/image/image_writer_test.cc
#ifndef TENSORSTORE_INTERNAL_IMAGE_IMAGE_WRITER_H_ #define TENSORSTORE_INTERNAL_IMAGE_IMAGE_WRITER_H_ #include "absl/status/status.h" #include "riegeli/bytes/writer.h" #include "tensorstore/internal/image/image_info.h" #include "tensorstore/util/span.h" namespace tensorstore { namespace internal_image { class ImageWrit...
#include "tensorstore/internal/image/image_writer.h" #include <stddef.h> #include <stdint.h> #include <any> #include <cmath> #include <functional> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/cord.h" #include "absl/strings/s...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/image/image_writer.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/image/image_writer_test.cc
4f887a6430414cd6088e1743555015b10f116d50
5eceaa04-6a53-46b1-828b-67ccd30cfabc
cpp
google/tensorstore
image_reader
tensorstore/internal/image/image_reader.h
tensorstore/internal/image/image_reader_test.cc
#ifndef TENSORSTORE_INTERNAL_IMAGE_IMAGE_READER_H_ #define TENSORSTORE_INTERNAL_IMAGE_IMAGE_READER_H_ #include "absl/status/status.h" #include "riegeli/bytes/reader.h" #include "tensorstore/internal/image/image_info.h" #include "tensorstore/util/span.h" namespace tensorstore { namespace internal_image { class ImageRead...
#include "tensorstore/internal/image/image_reader.h" #include <stddef.h> #include <array> #include <cstdint> #include <memory> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/flags/flag.h" #include "absl/log/absl_log.h" #include "absl/status/status.h" #include "absl/...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/image/image_reader.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/image/image_reader_test.cc
4f887a6430414cd6088e1743555015b10f116d50
96eac068-aee0-4173-954e-e2d2797caf66
cpp
google/tensorstore
single_producer_queue
tensorstore/internal/container/single_producer_queue.h
tensorstore/internal/container/single_producer_queue_test.cc
#ifndef TENSORSTORE_INTERNAL_THREAD_SINGLE_PRODUCER_QUEUE_H_ #define TENSORSTORE_INTERNAL_THREAD_SINGLE_PRODUCER_QUEUE_H_ #include <stdint.h> #include <algorithm> #include <atomic> #include <cassert> #include <cstddef> #include <memory> #include <optional> #include <type_traits> #include "absl/base/attributes.h" #inclu...
#include "tensorstore/internal/container/single_producer_queue.h" #include <stddef.h> #include <atomic> #include <optional> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/absl_check.h" #include "tensorstore/internal/thread/thread.h" using ::tensorstore::internal_container::Single...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/single_producer_queue.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/single_producer_queue_test.cc
4f887a6430414cd6088e1743555015b10f116d50
33c10622-4577-400a-a33f-12d488fbe8c1
cpp
google/tensorstore
compressed_tuple
tensorstore/internal/container/compressed_tuple.h
tensorstore/internal/container/compressed_tuple_test.cc
#ifndef TENSORSTORE_INTERNAL_CONTAINER_COMPRESSED_TUPLE_H_ #define TENSORSTORE_INTERNAL_CONTAINER_COMPRESSED_TUPLE_H_ #include <stddef.h> #include <initializer_list> #include <tuple> #include <type_traits> #include <utility> #if defined(_MSC_VER) && !defined(__NVCC__) #define TENSORSTORE_INTERNAL_COMPRESSED_TUPLE_DECLS...
#include "tensorstore/internal/container/compressed_tuple.h" #include <any> #include <memory> #include <optional> #include <set> #include <string> #include <type_traits> #include <utility> #include <gtest/gtest.h> using tensorstore::internal_container::CompressedTuple; namespace { struct CopyableMovableInstance { exp...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/compressed_tuple.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/compressed_tuple_test.cc
4f887a6430414cd6088e1743555015b10f116d50
553bcb62-c346-40ab-86a4-569637b54c24
cpp
google/tensorstore
heterogeneous_container
tensorstore/internal/container/heterogeneous_container.h
tensorstore/internal/container/heterogeneous_container_test.cc
#ifndef TENSORSTORE_INTERNAL_CONTAINER_HETEROGENEOUS_CONTAINER_H_ #define TENSORSTORE_INTERNAL_CONTAINER_HETEROGENEOUS_CONTAINER_H_ #include <functional> #include "absl/container/flat_hash_set.h" namespace tensorstore { namespace internal { template <typename T> struct SupportsHeterogeneous : public T { using is_tran...
#include "tensorstore/internal/container/heterogeneous_container.h" #include <memory> #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { using ::tensorstore::internal::HeterogeneousHashSet; struct Entry { std::string id; }; using Set = HeterogeneousHashSet<std::shared_ptr<Entry>, std::string_view, &Ent...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/heterogeneous_container.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/heterogeneous_container_test.cc
4f887a6430414cd6088e1743555015b10f116d50
5cac40c0-8bd8-4c5d-96ca-8c138da0aa8b
cpp
google/tensorstore
intrusive_linked_list
tensorstore/internal/container/intrusive_linked_list.h
tensorstore/internal/container/intrusive_linked_list_test.cc
#ifndef TENSORSTORE_INTERNAL_CONTAINER_INTRUSIVE_LINKED_LIST_H_ #define TENSORSTORE_INTERNAL_CONTAINER_INTRUSIVE_LINKED_LIST_H_ namespace tensorstore { namespace internal { namespace intrusive_linked_list { template <typename T, T* T::*PrevMember = &T::prev, T* T::*NextMember = &T::next> struct MemberAccessor...
#include "tensorstore/internal/container/intrusive_linked_list.h" #include <gtest/gtest.h> namespace { struct Node { Node* prev; Node* next; }; using Accessor = tensorstore::internal::intrusive_linked_list::MemberAccessor<Node>; TEST(IntrusiveLinkedListTest, Initialize) { Node head; Initialize(Accessor{}, &...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/intrusive_linked_list.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/intrusive_linked_list_test.cc
4f887a6430414cd6088e1743555015b10f116d50
1455137a-edab-40f9-aa60-81625b5e6bd1
cpp
google/tensorstore
hash_set_of_any
tensorstore/internal/container/hash_set_of_any.h
tensorstore/internal/container/hash_set_of_any_test.cc
#ifndef TENSORSTORE_INTERNAL_CONTAINER_HASH_SET_OF_ANY_H_ #define TENSORSTORE_INTERNAL_CONTAINER_HASH_SET_OF_ANY_H_ #include <stddef.h> #include <cassert> #include <functional> #include <memory> #include <type_traits> #include <typeindex> #include <typeinfo> #include <utility> #include "absl/container/flat_hash_set.h" ...
#include "tensorstore/internal/container/hash_set_of_any.h" #include <gtest/gtest.h> namespace { using ::tensorstore::internal::HashSetOfAny; template <typename T> struct Entry : public HashSetOfAny::Entry { using KeyParam = T; Entry(T key) : key_(key) {} static Entry& FindOrInsert(HashSetOfAny& set, T key) { ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/hash_set_of_any.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/hash_set_of_any_test.cc
4f887a6430414cd6088e1743555015b10f116d50
6deec09b-f59f-458b-9ae1-7ae910be6816
cpp
google/tensorstore
circular_queue
tensorstore/internal/container/circular_queue.h
tensorstore/internal/container/circular_queue_test.cc
#ifndef TENSORSTORE_INTERNAL_THREAD_CIRCULAR_QUEUE_H_ #define TENSORSTORE_INTERNAL_THREAD_CIRCULAR_QUEUE_H_ #include <stddef.h> #include <algorithm> #include <cassert> #include <memory> #include <type_traits> #include "absl/base/attributes.h" #include "absl/log/absl_check.h" #include "tensorstore/internal/container/ite...
#include "tensorstore/internal/container/circular_queue.h" #include <stdint.h> #include <memory> #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { using ::tensorstore::internal_container::CircularQueue; TEST(CircularQueue, Basic) { CircularQueue<int64_t> q(2); EXPECT_TRUE(q.empty()); EXPECT_THAT(q.siz...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/circular_queue.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/circular_queue_test.cc
4f887a6430414cd6088e1743555015b10f116d50
8a82f1ac-bf7f-4b52-9cb6-b9539c798c42
cpp
google/tensorstore
block_queue
tensorstore/internal/container/block_queue.h
tensorstore/internal/container/block_queue_test.cc
#ifndef TENSORSTORE_INTERNAL_THREAD_BLOCK_QUEUE_H_ #define TENSORSTORE_INTERNAL_THREAD_BLOCK_QUEUE_H_ #include <stddef.h> #include <stdint.h> #include <algorithm> #include <cassert> #include <memory> #include <utility> #include "absl/base/attributes.h" #include "absl/log/absl_check.h" #include "tensorstore/internal/con...
#include "tensorstore/internal/container/block_queue.h" #include <stdint.h> #include <memory> #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { using ::tensorstore::internal_container::BlockQueue; TEST(BlockQueue, Basic) { BlockQueue<int64_t> q; EXPECT_TRUE(q.empty()); EXPECT_THAT(q.size(), 0); q.pu...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/block_queue.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/container/block_queue_test.cc
4f887a6430414cd6088e1743555015b10f116d50
3ebcb91f-5f3f-4f11-9ce0-c059d17b31b9
cpp
google/tensorstore
enum
tensorstore/internal/json_binding/enum.h
tensorstore/internal/json_binding/enum_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_BINDING_ENUM_H_ #define TENSORSTORE_INTERNAL_JSON_BINDING_ENUM_H_ #include <stddef.h> #include <string> #include <utility> #include <variant> #include "absl/base/optimization.h" #include "absl/status/status.h" #include "absl/strings/str_join.h" #include <nlohmann/json_fwd.hpp> #include...
#include "tensorstore/internal/json_binding/enum.h" #include <memory> #include <string_view> #include <utility> #include <variant> #include <gtest/gtest.h> #include "absl/status/status.h" #include <nlohmann/json_fwd.hpp> #include "tensorstore/internal/json/json.h" #include "tensorstore/internal/json_binding/gtest.h" #i...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/enum.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/enum_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2b7b518f-026f-4331-bdbc-8e050845acbb
cpp
google/tensorstore
json_binding
tensorstore/internal/json_binding/json_binding.h
tensorstore/internal/json_binding/json_binding_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_BINDING_JSON_H_ #define TENSORSTORE_INTERNAL_JSON_BINDING_JSON_H_ #include <functional> #include <limits> #include <map> #include <string> #include <string_view> #include <tuple> #include <type_traits> #include <utility> #include "absl/meta/type_traits.h" #include "absl/status/status.h...
#include "tensorstore/internal/json_binding/json_binding.h" #include <cstdint> #include <optional> #include <string> #include <type_traits> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/box.h" #in...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/json_binding.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/json_binding_test.cc
4f887a6430414cd6088e1743555015b10f116d50
177c49f7-cafe-4e0f-86a9-c448609d3dd8
cpp
google/tensorstore
optional_object
tensorstore/internal/json_binding/optional_object.h
tensorstore/internal/json_binding/optional_object_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_BINDING_OPTIONAL_OBJECT_H_ #define TENSORSTORE_INTERNAL_JSON_BINDING_OPTIONAL_OBJECT_H_ #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json/value_as.h" #include "tensorstore/internal/json_binding/json_binding.h" namespace tensorstore { names...
#include "tensorstore/internal/json_binding/optional_object.h" #include <gtest/gtest.h> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json_binding/gtest.h" #include "tensorstore/internal/json_binding/json_binding.h" #include "tensorstore/internal/json_gtest.h" #include "ten...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/optional_object.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/optional_object_test.cc
4f887a6430414cd6088e1743555015b10f116d50
81a99ee7-1816-4e79-bc07-d34924514471
cpp
google/tensorstore
cache_key
tensorstore/internal/cache_key/cache_key.h
tensorstore/internal/cache_key/cache_key_test.cc
#ifndef TENSORSTORE_INTERNAL_CACHE_KEY_CACHE_KEY_H_ #define TENSORSTORE_INTERNAL_CACHE_KEY_CACHE_KEY_H_ #include <string> #include <string_view> #include <type_traits> #include <typeinfo> #include "absl/base/attributes.h" #include "tensorstore/internal/cache_key/fwd.h" #include "tensorstore/util/apply_members/apply_mem...
#include "tensorstore/internal/cache_key/cache_key.h" #include <optional> #include <variant> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/time/time.h" #include "tensorstore/internal/cache_key/absl_time.h" #include "tensorstore/internal/cache_key/std_optional.h" #include "tensorstore/internal/cache_k...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/cache_key/cache_key.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/cache_key/cache_key_test.cc
4f887a6430414cd6088e1743555015b10f116d50
815416d7-7bea-456d-bc05-1a7d561ca943
cpp
google/tensorstore
file_util
tensorstore/internal/os/file_util.h
tensorstore/internal/os/file_util_test.cc
#ifndef TENSORSTORE_INTERNAL_OS_FILE_UTIL_H_ #define TENSORSTORE_INTERNAL_OS_FILE_UTIL_H_ #include <stddef.h> #include <stdint.h> #include <string> #include <string_view> #include "absl/status/status.h" #include "absl/strings/cord.h" #include "absl/time/time.h" #include "tensorstore/internal/os/unique_handle.h" #includ...
#include "tensorstore/internal/os/file_util.h" #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/cord.h" #include "absl/strings/str_cat.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "tensorstore/internal/testing/scoped_direc...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/os/file_util.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/os/file_util_test.cc
4f887a6430414cd6088e1743555015b10f116d50
49981549-6092-4e51-8692-efceb12efc11
cpp
google/tensorstore
file_lister
tensorstore/internal/os/file_lister.h
tensorstore/internal/os/file_lister_test.cc
#ifndef TENSORSTORE_INTERNAL_OS_FILE_LISTER_H_ #define TENSORSTORE_INTERNAL_OS_FILE_LISTER_H_ #include <stddef.h> #include <stdint.h> #include <string> #include <string_view> #include "absl/functional/function_ref.h" #include "absl/status/status.h" namespace tensorstore { namespace internal_os { class ListerEntry { pu...
#include "tensorstore/internal/os/file_lister.h" #include <optional> #include <string> #include <string_view> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/absl_check.h" #include "absl/log/absl_log.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "te...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/os/file_lister.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/os/file_lister_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2c1d0483-3721-4fbd-81ae-17a6f8237a77
cpp
google/tensorstore
subprocess
tensorstore/internal/os/subprocess.h
tensorstore/internal/os/subprocess_test.cc
#ifndef TENSORSTORE_INTERNAL_SUBPROCESS_H_ #define TENSORSTORE_INTERNAL_SUBPROCESS_H_ #include <memory> #include <optional> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "tensorstore/util/result.h" namespace t...
#include "tensorstore/internal/os/subprocess.h" #include <cstdio> #include <string> #include <string_view> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "absl/log/absl_log.h" #include "absl/status/status.h" #include "absl/strings/match.h" #include...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/os/subprocess.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/os/subprocess_test.cc
4f887a6430414cd6088e1743555015b10f116d50
f7259880-9f62-41fd-9467-e1f62aa32ba3
cpp
google/tensorstore
estimate_heap_usage
tensorstore/internal/estimate_heap_usage/estimate_heap_usage.h
tensorstore/internal/estimate_heap_usage/estimate_heap_usage_test.cc
#ifndef TENSORSTORE_INTERNAL_ESTIMATE_HEAP_USAGE_ESTIMATE_HEAP_USAGE_H_ #define TENSORSTORE_INTERNAL_ESTIMATE_HEAP_USAGE_ESTIMATE_HEAP_USAGE_H_ #include <stddef.h> #include <memory> #include <string> #include <type_traits> #include "absl/strings/cord.h" #include "tensorstore/util/apply_members/apply_members.h" namespac...
#include "tensorstore/internal/estimate_heap_usage/estimate_heap_usage.h" #include <optional> #include <tuple> #include <variant> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/cord.h" #include "tensorstore/internal/estimate_heap_usage/std_optional.h" #include "tensorstore/internal/estimate_he...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/estimate_heap_usage/estimate_heap_usage.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/estimate_heap_usage/estimate_heap_usage_test.cc
4f887a6430414cd6088e1743555015b10f116d50
3c74241c-37bf-4b8c-8147-6df223966067
cpp
google/tensorstore
stringify
tensorstore/internal/preprocessor/stringify.h
tensorstore/internal/preprocessor/stringify_test.cc
#ifndef TENSORSTORE_INTERNAL_PREPROCESSOR_STRINGIFY_H_ #define TENSORSTORE_INTERNAL_PREPROCESSOR_STRINGIFY_H_ #define TENSORSTORE_PP_STRINGIFY(...) TENSORSTORE_PP_STRINGIFY_IMPL(__VA_ARGS__) #define TENSORSTORE_PP_STRINGIFY_IMPL(...) #__VA_ARGS__ #endif
#include "tensorstore/internal/preprocessor/stringify.h" #include <string_view> namespace { inline constexpr bool Equal(std::string_view a, std::string_view b) { return a == b; } #define X abc #define Y abc, def static_assert(Equal(TENSORSTORE_PP_STRINGIFY(X), "abc")); static_assert(Equal(TENSORSTORE_PP_STRINGIFY(Y),...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/preprocessor/stringify.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/preprocessor/stringify_test.cc
4f887a6430414cd6088e1743555015b10f116d50
e2240d47-0a71-4308-980c-dd7f9b170555
cpp
google/tensorstore
cat
tensorstore/internal/preprocessor/cat.h
tensorstore/internal/preprocessor/cat_test.cc
#ifndef TENSORSTORE_INTERNAL_PREPROCESSOR_CAT_H_ #define TENSORSTORE_INTERNAL_PREPROCESSOR_CAT_H_ #define TENSORSTORE_PP_CAT(a, b) TENSORSTORE_INTERNAL_PP_CAT1(a, b) #define TENSORSTORE_INTERNAL_PP_CAT1(a, b) a##b #endif
#include "tensorstore/internal/preprocessor/cat.h" #include <string_view> #include "tensorstore/internal/preprocessor/stringify.h" namespace { inline constexpr bool Equal(std::string_view a, std::string_view b) { return a == b; } #define X abc #define Y def static_assert(Equal(TENSORSTORE_PP_STRINGIFY(TENSORSTORE_PP_...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/preprocessor/cat.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/preprocessor/cat_test.cc
4f887a6430414cd6088e1743555015b10f116d50
babaf6da-6250-4244-8550-c1c937e9a5b0
cpp
google/tensorstore
poly
tensorstore/internal/poly/poly.h
tensorstore/internal/poly/poly_test.cc
#ifndef TENSORSTORE_INTERNAL_POLY_POLY_H_ #define TENSORSTORE_INTERNAL_POLY_POLY_H_ #include <cstddef> #include <type_traits> #include <typeinfo> #include <utility> #include "absl/meta/type_traits.h" #include "tensorstore/internal/poly/poly_impl.h" namespace tensorstore { namespace poly { template <typename T, typena...
#include "tensorstore/internal/poly/poly.h" #include <functional> #include <memory> #include <optional> #include <string> #include <type_traits> #include <utility> #include <gtest/gtest.h> #include "absl/functional/function_ref.h" #include "tensorstore/util/result.h" namespace { using ::tensorstore::internal_poly::Call...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/poly/poly.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/poly/poly_test.cc
4f887a6430414cd6088e1743555015b10f116d50
7f8c9751-eda1-48e8-8c1c-ed96540f619b
cpp
google/tensorstore
key_range_map
tensorstore/kvstore/kvstack/key_range_map.h
tensorstore/kvstore/kvstack/key_range_map_test.cc
#ifndef TENSORSTORE_KVSTORE_KVSTACK_RANGE_MAP_H_ #define TENSORSTORE_KVSTORE_KVSTACK_RANGE_MAP_H_ #include <cassert> #include <iterator> #include <string> #include <string_view> #include <utility> #include "absl/container/btree_set.h" #include "tensorstore/kvstore/key_range.h" namespace tensorstore { namespace internal...
#include "tensorstore/kvstore/kvstack/key_range_map.h" #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/absl_log.h" #include "tensorstore/kvstore/key_range.h" using ::tensorstore::KeyRange; using ::tensorstore::internal_kvstack::KeyRangeMap; namespace tensorstore { namespace intern...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/kvstore/kvstack/key_range_map.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/kvstore/kvstack/key_range_map_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2b46fc07-d111-4925-b26a-7aae4df750d2
cpp
google/tensorstore
output_index_map
tensorstore/index_space/output_index_map.h
tensorstore/index_space/output_index_map_test.cc
#ifndef TENSORSTORE_INDEX_SPACE_OUTPUT_INDEX_MAP_H_ #define TENSORSTORE_INDEX_SPACE_OUTPUT_INDEX_MAP_H_ #include <cassert> #include "tensorstore/array.h" #include "tensorstore/index_space/internal/transform_rep.h" #include "tensorstore/index_space/output_index_method.h" #include "tensorstore/strided_layout.h" #include ...
#include "tensorstore/index_space/output_index_map.h" #include <type_traits> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/array.h" #include "tensorstore/index_space/index_transform.h" #include "tensorstore/index_space/index_transform_builder.h" #include "tensorstore/strided_layout.h" #include...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/output_index_map.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/output_index_map_test.cc
4f887a6430414cd6088e1743555015b10f116d50
ac970f59-4c27-4d55-8616-1699c02adfcc
cpp
google/tensorstore
transform_array_constraints
tensorstore/index_space/transform_array_constraints.h
tensorstore/index_space/transform_array_constraints_test.cc
#ifndef TENSORSTORE_INDEX_SPACE_TRANSFORM_ARRAY_CONSTRAINTS_H_ #define TENSORSTORE_INDEX_SPACE_TRANSFORM_ARRAY_CONSTRAINTS_H_ #include "tensorstore/util/iterate.h" namespace tensorstore { enum class MustAllocateConstraint { may_allocate = 0, must_allocate = 1 }; constexpr MustAllocateConstraint may_allocate = M...
#include "tensorstore/index_space/transform_array_constraints.h" #include <gtest/gtest.h> namespace { using ::tensorstore::ContiguousLayoutOrder; using ::tensorstore::IterationConstraints; using ::tensorstore::TransformArrayConstraints; TEST(TransformArrayConstraintsTest, Basic) { EXPECT_TRUE( TransformArrayCon...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/transform_array_constraints.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/transform_array_constraints_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2dcebcc7-6c69-44ba-9f86-9cae5f936ef9
cpp
google/tensorstore
deep_copy_transform_rep_ptr
tensorstore/index_space/internal/deep_copy_transform_rep_ptr.h
tensorstore/index_space/deep_copy_transform_rep_ptr_test.cc
#ifndef TENSORSTORE_INDEX_SPACE_INTERNAL_DEEP_COPY_TRANSFORM_REP_PTR_H_ #define TENSORSTORE_INDEX_SPACE_INTERNAL_DEEP_COPY_TRANSFORM_REP_PTR_H_ #include <utility> #include "tensorstore/index_space/internal/transform_rep.h" namespace tensorstore { namespace internal_index_space { class DeepCopyTransformRepPtr { public:...
#include "tensorstore/index_space/internal/deep_copy_transform_rep_ptr.h" #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { using ::tensorstore::internal::acquire_object_ref; using ::tensorstore::internal::adopt_object_ref; using ::tensorstore::internal_index_space::DeepCopyTransformRepPtr; using ::tensorst...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/internal/deep_copy_transform_rep_ptr.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/deep_copy_transform_rep_ptr_test.cc
4f887a6430414cd6088e1743555015b10f116d50
2ba2982c-fc25-44e0-8663-1450c5bfd129
cpp
google/arolla
my_complex_type
py/arolla/examples/my_complex/my_complex_type.cc
py/arolla/examples/my_complex/my_complex_type_test.cc
#include "py/arolla/examples/my_complex/my_complex_type.h" #include "absl/strings/str_format.h" #include "arolla/qtype/simple_qtype.h" #include "arolla/util/fingerprint.h" #include "arolla/util/repr.h" namespace arolla { void FingerprintHasherTraits<my_complex::MyComplex>::operator()( FingerprintHasher* hasher, con...
#include "py/arolla/examples/my_complex/my_complex_type.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/util/fingerprint.h" #include "arolla/util/repr.h" namespace my_complex { namespace { using ::testing::Eq; using ::testing::Ne; TEST(ComplexTest, GetQType) ...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/py/arolla/examples/my_complex/my_complex_type.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/py/arolla/examples/my_complex/my_complex_type_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
0cae6dda-bd73-4939-aa3d-96eb9675ec45
cpp
google/arolla
decision_forest
arolla/decision_forest/decision_forest.cc
arolla/decision_forest/decision_forest_test.cc
#include "arolla/decision_forest/decision_forest.h" #include <algorithm> #include <cstddef> #include <map> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/log/check.h" #include "absl/memory/memory.h" #include "absl/status/status.h" #include "...
#include "arolla/decision_forest/decision_forest.h" #include <cmath> #include <cstdint> #include <limits> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/decision_forest/split_conditions/inte...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/decision_forest.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/decision_forest_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
0389467c-ba24-47c6-a136-10cfbb920e4a
cpp
google/arolla
batched_forest_evaluator
arolla/decision_forest/batched_evaluation/batched_forest_evaluator.cc
arolla/decision_forest/batched_evaluation/batched_forest_evaluator_test.cc
#include "arolla/decision_forest/batched_evaluation/batched_forest_evaluator.h" #include <algorithm> #include <cstdint> #include <memory> #include <optional> #include <utility> #include <vector> #include "absl/base/no_destructor.h" #include "absl/log/check.h" #include "absl/memory/memory.h" #include "absl/status/status...
#include "arolla/decision_forest/batched_evaluation/batched_forest_evaluator.h" #include <cmath> #include <cstdint> #include <limits> #include <memory> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/random/distributions.h" #include "absl/random/random.h" #include "...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/batched_evaluation/batched_forest_evaluator.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/batched_evaluation/batched_forest_evaluator_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
780c0485-dad1-448e-b5ed-a3e5f8d5dfb2
cpp
google/arolla
forest_evaluator
arolla/decision_forest/pointwise_evaluation/forest_evaluator.cc
arolla/decision_forest/pointwise_evaluation/forest_evaluator_test.cc
#include "arolla/decision_forest/pointwise_evaluation/forest_evaluator.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <map> #include <memory> #include <optional> #include <utility> #include <vector> #include "absl/container/inlined_vector.h" #include "absl/status/status.h" #include "absl/status/...
#include "arolla/decision_forest/pointwise_evaluation/forest_evaluator.h" #include <cmath> #include <cstdint> #include <limits> #include <memory> #include <string> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/random/distributions.h" #include "absl/random/random.h...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/pointwise_evaluation/forest_evaluator.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/pointwise_evaluation/forest_evaluator_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
7b28c983-e40f-40d6-8d0d-bb13ca2bdef9
cpp
google/arolla
oblivious
arolla/decision_forest/pointwise_evaluation/oblivious.cc
arolla/decision_forest/pointwise_evaluation/oblivious_test.cc
#include "arolla/decision_forest/pointwise_evaluation/oblivious.h" #include <cstddef> #include <memory> #include <optional> #include <utility> #include <vector> #include "absl/log/check.h" #include "arolla/decision_forest/decision_forest.h" #include "arolla/decision_forest/split_condition.h" namespace arolla { namespac...
#include "arolla/decision_forest/pointwise_evaluation/oblivious.h" #include <limits> #include <memory> #include <optional> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "arolla/decision_forest/decision_forest.h" #include "arolla/decision_forest/split_condition.h" #include "arolla/decision_forest/split_cond...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/pointwise_evaluation/oblivious.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/pointwise_evaluation/oblivious_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
534e3bfc-a9e2-4780-8149-1ee9748e5b1d
cpp
google/arolla
test_util
arolla/decision_forest/testing/test_util.cc
arolla/decision_forest/testing/test_util_test.cc
#include "arolla/decision_forest/testing/test_util.h" #include <algorithm> #include <cmath> #include <cstdint> #include <limits> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/random/distributions.h" #include "absl/random/random.h" #incl...
#include "arolla/decision_forest/testing/test_util.h" #include <cstddef> #include <cstdint> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/log/check.h" #include "absl/random/random.h" #include "arolla/decision_forest/decision_forest.h" #include "arolla/memory/frame...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/testing/test_util.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/testing/test_util_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
e28284ae-2b25-42a4-a4a2-5aa452414aa7
cpp
google/arolla
forest_model
arolla/decision_forest/expr_operator/forest_model.cc
arolla/decision_forest/expr_operator/forest_model_test.cc
#include "arolla/decision_forest/expr_operator/forest_model.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/container/...
#include "arolla/decision_forest/expr_operator/forest_model.h" #include <cstdint> #include <limits> #include <string> #include <tuple> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/no_destructor.h" #include "absl/log/check.h" #include "absl/status/status.h" #...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/expr_operator/forest_model.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/expr_operator/forest_model_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
f478e72d-13d7-41bc-b552-c5d252f61f35
cpp
google/arolla
decision_forest_operator
arolla/decision_forest/expr_operator/decision_forest_operator.cc
arolla/decision_forest/expr_operator/decision_forest_operator_test.cc
#include "arolla/decision_forest/expr_operator/decision_forest_operator.h" #include <algorithm> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl...
#include "arolla/decision_forest/expr_operator/decision_forest_operator.h" #include <cstdint> #include <limits> #include <memory> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #i...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/expr_operator/decision_forest_operator.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/decision_forest/expr_operator/decision_forest_operator_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
f465a0e8-f7b0-4785-8631-df1b0ea858b0
cpp
google/arolla
array_encoder
arolla/serialization_codecs/array/encoders/array_encoder.cc
arolla/serialization_codecs/array/encoders/array_encoder_test.cc
#include <cstdint> #include "absl/base/no_destructor.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "arolla/array/array.h" #include "arolla/array/ed...
#include <cstdint> #include <optional> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/log/check.h" #include "absl/status/statusor.h" #include "arolla/array/array.h" #include "arolla/array/edge.h" #include "arolla/array/qtype/types.h" #include "arolla/qtype/typed_value.h" #include "arolla/serialization...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serialization_codecs/array/encoders/array_encoder.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serialization_codecs/array/encoders/array_encoder_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
4f331c16-80de-4a7d-8bc0-99e3a571617b
cpp
google/arolla
dense_array_encoder
arolla/serialization_codecs/dense_array/encoders/dense_array_encoder.cc
arolla/serialization_codecs/dense_array/encoders/dense_array_encoder_test.cc
#include <cstddef> #include <cstdint> #include <type_traits> #include <utility> #include "absl/base/no_destructor.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format...
#include <cstdint> #include <optional> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/log/check.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "arolla/dense_array/dense_array.h" #include "arolla/dense_array/qtype/types.h" #include "arolla/memory/buffer.h" #include ...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serialization_codecs/dense_array/encoders/dense_array_encoder.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serialization_codecs/dense_array/encoders/dense_array_encoder_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
d805fca5-8a9a-4455-a3fa-300e6ce5fe81
cpp
google/arolla
expr_compiler
arolla/serving/expr_compiler.cc
arolla/serving/expr_compiler_test.cc
#include "arolla/serving/expr_compiler.h" #include <optional> #include "absl/base/no_destructor.h" #include "arolla/expr/optimization/optimizer.h" namespace arolla::serving_impl { absl::NoDestructor<std::optional<expr::Optimizer>> ExprCompilerDefaultOptimizer::optimizer_; }
#include "arolla/serving/expr_compiler.h" #include <functional> #include <memory> #include <optional> #include <string> #include <tuple> #include <type_traits> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h"...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serving/expr_compiler.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serving/expr_compiler_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
9ec08230-232b-4d04-9482-3ba951dfa44e
cpp
google/arolla
inplace_expr_compiler
arolla/serving/inplace_expr_compiler.cc
arolla/serving/inplace_expr_compiler_test.cc
#include "arolla/serving/inplace_expr_compiler.h" #include <cstddef> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "arolla...
#include "arolla/serving/inplace_expr_compiler.h" #include <array> #include <cstdint> #include <functional> #include <memory> #include <optional> #include <string> #include <tuple> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serving/inplace_expr_compiler.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/serving/inplace_expr_compiler_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
9d49cf0e-1088-4c54-b0ca-15e68adff234
cpp
google/arolla
raw_buffer_factory
arolla/memory/raw_buffer_factory.cc
arolla/memory/raw_buffer_factory_test.cc
#include "arolla/memory/raw_buffer_factory.h" #include <algorithm> #include <cstddef> #include <cstdlib> #include <cstring> #include <memory> #include <tuple> #include <utility> #include "absl/base/attributes.h" #include "absl/base/dynamic_annotations.h" #include "absl/base/optimization.h" #include "absl/log/check.h" n...
#include "arolla/memory/raw_buffer_factory.h" #include <cstddef> #include <cstdint> #include <cstring> #include <utility> #include <vector> #include "benchmark/benchmark.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "google/protobuf/arena.h" namespace arolla { namespace { using ::testing::AnyOf; using :...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/raw_buffer_factory.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/raw_buffer_factory_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
5326e467-00f3-4f31-a980-31e0e3f00c84
cpp
google/arolla
optional_value
arolla/memory/optional_value.cc
arolla/memory/optional_value_test.cc
#include "arolla/memory/optional_value.h" #include <cstdint> #include "absl/strings/str_cat.h" #include "arolla/util/bytes.h" #include "arolla/util/repr.h" #include "arolla/util/text.h" namespace arolla { ReprToken ReprTraits<OptionalValue<bool>>::operator()( const OptionalValue<bool>& value) const { return ReprT...
#include "arolla/memory/optional_value.h" #include <cstdint> #include <cstring> #include <memory> #include <new> #include <optional> #include <sstream> #include <string> #include <type_traits> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/stat...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/optional_value.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/optional_value_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
0f77a7a9-b07e-42da-9f2a-f6b620f364f6
cpp
google/arolla
frame
arolla/memory/frame.cc
arolla/memory/frame_test.cc
#include "arolla/memory/frame.h" #include <algorithm> #include <cstddef> #include <cstring> #include <tuple> #include <typeindex> #include <typeinfo> #include <utility> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "arolla/util/algorithms.h" #include "arolla/util...
#include "arolla/memory/frame.h" #include <array> #include <cstddef> #include <cstdint> #include <memory> #include <sstream> #include <string> #include <type_traits> #include <utility> #include <variant> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/dynamic_annotations.h" #incl...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/frame.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/frame_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
b556b66a-2f27-4a98-b434-a184b2ab59b1
cpp
google/arolla
strings_buffer
arolla/memory/strings_buffer.cc
arolla/memory/strings_buffer_test.cc
#include "arolla/memory/strings_buffer.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <cstring> #include <limits> #include <tuple> #include <utility> #include "absl/log/check.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "arolla/memory/optional_value.h" #include ...
#include <array> #include <cstddef> #include <initializer_list> #include <optional> #include <string> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/hash/hash_testing.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "arolla/mem...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/strings_buffer.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/strings_buffer_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
0fbf4176-79d2-4fec-be4d-07982b247e44
cpp
google/arolla
optools
arolla/optools/optools.cc
arolla/qexpr/optools_test.cc
#include "arolla/optools/optools.h" #include <cstddef> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "arolla/expr/basic_expr_operator.h...
#include "arolla/qexpr/optools.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/types/...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/optools/optools.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qexpr/optools_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
802b3b11-0f4c-4890-b4d4-7fec4156a47f
cpp
google/arolla
qtype
arolla/jagged_shape/dense_array/qtype/qtype.cc
arolla/jagged_shape/dense_array/qtype/qtype_test.cc
#include "arolla/jagged_shape/dense_array/qtype/qtype.h" #include "absl/base/no_destructor.h" #include "arolla/dense_array/edge.h" #include "arolla/dense_array/qtype/types.h" #include "arolla/jagged_shape/dense_array/jagged_shape.h" #include "arolla/jagged_shape/qtype/qtype.h" #include "arolla/qtype/qtype.h" #include "...
#include "arolla/jagged_shape/dense_array/qtype/qtype.h" #include <cstdint> #include <string> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/dense_array/dense_array.h" #include "arolla/dense_array/edge.h" #include "arolla/den...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/jagged_shape/dense_array/qtype/qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/jagged_shape/dense_array/qtype/qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
d5a011d6-a644-480a-9873-2b3562db0ce6
cpp
google/arolla
slice_qtype
arolla/qtype/slice_qtype.cc
arolla/qtype/slice_qtype_test.cc
#include "arolla/qtype/slice_qtype.h" #include <memory> #include <string> #include <tuple> #include <utility> #include "absl/base/no_destructor.h" #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/strings/str_cat.h" #include "abs...
#include "arolla/qtype/slice_qtype.h" #include <cstdint> #include "gtest/gtest.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/derived_qtype.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/qtype/tuple_qtype.h" #include "arolla/util/bytes.h" namespace arolla::testing { namespace { TEST(SliceQTy...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/slice_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/slice_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
395cc3d9-d03c-4ef5-b9c9-47134def4148
cpp
google/arolla
optional_qtype
arolla/qtype/optional_qtype.cc
arolla/qtype/optional_qtype_test.cc
#include "arolla/qtype/optional_qtype.h" #include "absl/base/no_destructor.h" #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #inc...
#include "arolla/qtype/optional_qtype.h" #include <cstdint> #include <optional> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/memory/frame.h" #include "arolla/memory/memory_allocation.h" #include "arolla/mem...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/optional_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/optional_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
7337069a-bced-4adb-9f27-e26dd49f1d5e
cpp
google/arolla
typed_value
arolla/qtype/typed_value.cc
arolla/qtype/typed_value_test.cc
#include "arolla/qtype/typed_value.h" #include <cstddef> #include <memory> #include <new> #include <utility> #include "absl/base/call_once.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/type...
#include "arolla/qtype/typed_value.h" #include <cstdint> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "absl/status/statusor.h" #include "arolla/memory/frame.h" #include "ar...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/typed_value.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/typed_value_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
5f5ef3e3-bb1a-46e0-b920-a077c2c24a8f
cpp
google/arolla
weak_qtype
arolla/qtype/weak_qtype.cc
arolla/qtype/weak_qtype_test.cc
#include "arolla/qtype/weak_qtype.h" #include <utility> #include <vector> #include "absl/base/no_destructor.h" #include "absl/log/check.h" #include "absl/strings/str_cat.h" #include "arolla/memory/optional_value.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/derived_qtype.h" #include "arolla/qtype/opt...
#include "arolla/qtype/weak_qtype.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/array/qtype/types.h" #include "arolla/memory/optional_value.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/optional_qtype.h" #i...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/weak_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/weak_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
a755e12a-a649-46e9-8e77-9ef89b24815e
cpp
google/arolla
simple_qtype
arolla/qtype/simple_qtype.cc
arolla/qtype/simple_qtype_test.cc
#include "arolla/qtype/simple_qtype.h" #include <cstdint> #include <optional> #include <string> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" namespace arolla { absl::Status SimpleQType::InitNameMap() { name2index_.reserve(field_na...
#include "arolla/qtype/simple_qtype.h" #include <cstdint> #include <optional> #include <string> #include <tuple> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/no_destructor.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "arolla/qtype/bas...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/simple_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/simple_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
6ec690be-11c7-4341-96de-6b3f76ee661a
cpp
google/arolla
derived_qtype
arolla/qtype/derived_qtype.cc
arolla/qtype/derived_qtype_test.cc
#include "arolla/qtype/derived_qtype.h" #include <cstddef> #include <utility> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "arolla/qtype/qtype.h" #include "arolla/qtype/typed_ref.h" #include "arolla/qtype/typed_slot.h" #inclu...
#include "arolla/qtype/derived_qtype.h" #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/no_destructor.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/qtype.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/qtype/tuple_qtype.h" #include "arolla/qtype/typed...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/derived_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/derived_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
cfe580f4-0120-4a4a-afd0-a78f383ab876
cpp
google/arolla
any_qtype
arolla/qtype/any_qtype.cc
arolla/qtype/any_qtype_test.cc
#include "arolla/qtype/any_qtype.h" #include <typeinfo> #include "absl/status/status.h" #include "absl/strings/str_format.h" #include "arolla/qtype/simple_qtype.h" #include "arolla/util/demangle.h" namespace arolla { absl::Status Any::InvalidCast(const std::type_info& t) const { if (value_.has_value()) { return a...
#include "arolla/qtype/any_qtype.h" #include <string> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/qtype/typed_value.h" namespace arolla { namespace { using ::absl_testing::IsOkAndHolds; using ::absl_testin...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/any_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/any_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
a6871c12-fea8-48ff-a88a-4a630c10dcb0
cpp
google/arolla
shape_qtype
arolla/qtype/shape_qtype.cc
arolla/qtype/shape_qtype_test.cc
#include "arolla/qtype/shape_qtype.h" #include <string> #include "absl/base/no_destructor.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/optional_qtype.h" #include...
#include "arolla/qtype/shape_qtype.h" #include <cstdint> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status_matchers.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/optional_qtype.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/qtype/typed_value.h" #include "arolla/...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/shape_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/shape_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
15822a77-db68-4c49-8b8f-b70bcaebfe2c
cpp
google/arolla
typed_slot
arolla/qtype/typed_slot.cc
arolla/qtype/typed_slot_test.cc
#include "arolla/qtype/typed_slot.h" #include <algorithm> #include <optional> #include <string> #include <typeinfo> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/strings...
#include "arolla/qtype/typed_slot.h" #include <cstdint> #include <optional> #include <sstream> #include <string> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #incl...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/typed_slot.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/typed_slot_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
df710905-4c94-4794-b5f8-5d19921229f4
cpp
google/arolla
unspecified_qtype
arolla/qtype/unspecified_qtype.cc
arolla/qtype/unspecified_qtype_test.cc
#include "arolla/qtype/unspecified_qtype.h" #include "absl/base/no_destructor.h" #include "absl/strings/string_view.h" #include "arolla/memory/frame.h" #include "arolla/qtype/qtype.h" #include "arolla/qtype/typed_value.h" #include "arolla/util/fingerprint.h" #include "arolla/util/repr.h" namespace arolla { namespace { ...
#include "arolla/qtype/unspecified_qtype.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "arolla/qtype/qtype.h" #include "arolla/qtype/typed_value.h" #include "arolla/util/testing/repr_token_eq.h" namespace arolla { namespace { using ::arolla::testing::ReprTokenEq; TEST(UnspecifiedQTypeTest, UnspecifiedQT...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/unspecified_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/unspecified_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
4ee02b11-1f7f-48c0-be99-6a067fa5e82a
cpp
google/arolla
tuple_qtype
arolla/qtype/tuple_qtype.cc
arolla/qtype/tuple_qtype_test.cc
#include "arolla/qtype/tuple_qtype.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include <sstream> #include <string> #include <utility> #include <vector> #include "absl/base/no_destructor.h" #include "absl/base/thread_annotations.h" #include "absl/container/flat_ha...
#include "arolla/qtype/tuple_qtype.h" #include <cstddef> #include <cstdint> #include <optional> #include <string> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "absl/status/statusor.h" #include "absl/types/span.h" #i...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/tuple_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/tuple_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
74a88cec-4e14-40d9-854d-624c46d9da7a
cpp
google/arolla
regex
arolla/qtype/strings/regex.cc
arolla/qtype/strings/regex_test.cc
#include "arolla/qtype/strings/regex.h" #include <memory> #include <string> #include "absl/base/nullability.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "arolla/qtype/simple_qtype.h" #include "arolla/util/fingerprin...
#include "arolla/qtype/strings/regex.h" #include <string> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/qtype/typed_value.h" #include "arolla/util/fingerprint.h" #include "arolla/util/rep...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/strings/regex.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/strings/regex_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
fc5aac15-bf0a-45c4-8f6a-280c6aa505ab
cpp
google/arolla
common_qtype
arolla/qtype/standard_type_properties/common_qtype.cc
arolla/qtype/standard_type_properties/common_qtype_test.cc
#include "arolla/qtype/standard_type_properties/common_qtype.h" #include <algorithm> #include <array> #include <cstdint> #include "absl/algorithm/container.h" #include "absl/types/span.h" #include "arolla/qtype/array_like/array_like_qtype.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/qtype.h" #include ...
#include "arolla/qtype/standard_type_properties/common_qtype.h" #include <algorithm> #include <cstdint> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "arolla/array/qtype/types.h" #include "arolla/dense_array/qtype/types.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/option...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/standard_type_properties/common_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/standard_type_properties/common_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
135e2997-7d12-4167-bdc6-65a292190b26
cpp
google/arolla
properties
arolla/qtype/standard_type_properties/properties.cc
arolla/qtype/standard_type_properties/properties_test.cc
#include "arolla/qtype/standard_type_properties/properties.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "arolla/qtype/array_like/array_like_qtype.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/optional_qtyp...
#include "arolla/qtype/standard_type_properties/properties.h" #include <cstdint> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/array/array.h" #include "arolla/array/qtype/types.h" #include "arolla/dense_array/dense_array.h" #i...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/standard_type_properties/properties.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/standard_type_properties/properties_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
e97785da-47c3-461f-9298-9579bfd4fba6
cpp
google/arolla
frame_iter
arolla/qtype/array_like/frame_iter.cc
arolla/qtype/array_like/frame_iter_test.cc
#include "arolla/qtype/array_like/frame_iter.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "...
#include "arolla/qtype/array_like/frame_iter.h" #include <cstdint> #include <optional> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/dense_array/dense_array.h" #include "arolla/dense_array/...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/array_like/frame_iter.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/array_like/frame_iter_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
483b923a-2dce-43d2-aaf9-c1676862cd7b
cpp
google/arolla
dict_types
arolla/qtype/dict/dict_types.cc
arolla/qtype/dict/dict_types_test.cc
#include "arolla/qtype/dict/dict_types.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include "absl/base/no_destructor.h" #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/s...
#include "arolla/qtype/dict/dict_types.h" #include <cstdint> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/dense_array/qtype/types.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/qtype.h" #include "arolla/qtype/...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/dict/dict_types.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/dict/dict_types_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
13692b9c-e863-4fa0-8eed-e55cea52b26f
cpp
google/arolla
bytes
arolla/util/bytes.cc
arolla/util/bytes_test.cc
#include "arolla/util/bytes.h" #include <cstddef> #include <string> #include "absl/strings/escaping.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "arolla/util/repr.h" namespace arolla { ReprToken ReprTraits<Bytes>::operator()(const Bytes& value) const { constexpr size_t kBytesAbb...
#include "arolla/util/bytes.h" #include <string> #include <type_traits> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/strings/string_view.h" #include "arolla/util/repr.h" #include "arolla/util/testing/repr_token_eq.h" namespace arolla { namespace { using ::arolla::testing::ReprToke...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/bytes.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/bytes_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
9f1540d2-c47f-4247-95d8-8101f4e8582d
cpp
google/arolla
string
arolla/util/string.cc
arolla/util/string_test.cc
#include "arolla/util/string.h" #include <cstddef> #include <string> #include "absl/log/check.h" namespace arolla { std::string Truncate(std::string str, size_t max_length) { DCHECK_GT(max_length, 3); if (str.size() > max_length) { str.resize(max_length); str.replace(max_length - 3, 3, "..."); } return ...
#include "arolla/util/string.h" #include "gmock/gmock.h" #include "gtest/gtest.h" namespace arolla { namespace { using ::testing::Eq; TEST(StringTest, Truncate) { EXPECT_THAT(Truncate("", 7), Eq("")); EXPECT_THAT(Truncate("fifty seven", 7), Eq("fift...")); EXPECT_THAT(Truncate("fifty seven", 10), Eq("fifty s...")...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/string.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/string_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
f25e9d48-d814-44db-83e3-84a6b1b9ef2d
cpp
google/arolla
status
arolla/util/status.cc
arolla/util/status_test.cc
#include "absl/status/status.h" #include <cstdint> #include <initializer_list> #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" namespace arolla { absl::Status SizeMismatchError(std::initializer_list<int64_t> sizes) { return absl::InvalidArgumentError(absl::StrCat( "argument sizes mismatch: ...
#include "arolla/util/status.h" #include <initializer_list> #include <memory> #include <string> #include <tuple> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #incl...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/status.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/status_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
4801e1ab-188b-4751-9e34-c3067036a3bb
cpp
google/arolla
init_arolla_internal
arolla/util/init_arolla_internal.cc
arolla/util/init_arolla_internal_test.cc
#include "arolla/util/init_arolla_internal.h" #include <algorithm> #include <cstddef> #include <deque> #include <sstream> #include <stack> #include <utility> #include <variant> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "abs...
#include "arolla/util/init_arolla_internal.h" #include <algorithm> #include <array> #include <string> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/no_destructor.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/util/init_arolla.h" namespace arolla::ini...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/init_arolla_internal.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/util/init_arolla_internal_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c