Home
last modified time | relevance | path

Searched full:unique (Results 1 – 25 of 18554) sorted by relevance

12345678910>>...743

/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft6/
H A DuniqueItems.json7 "description": "unique array of integers is valid",
12 "description": "non-unique array of integers is invalid",
17 "description": "non-unique array of more than two integers is invalid",
22 "description": "numbers are unique if mathematically unequal",
37 "description": "unique array of strings is valid",
42 "description": "non-unique array of strings is invalid",
47 "description": "unique array of objects is valid",
52 "description": "non-unique array of objects is invalid",
62 "description": "unique array of nested objects is valid",
70 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft7/
H A DuniqueItems.json7 "description": "unique array of integers is valid",
12 "description": "non-unique array of integers is invalid",
17 "description": "non-unique array of more than two integers is invalid",
22 "description": "numbers are unique if mathematically unequal",
37 "description": "unique array of strings is valid",
42 "description": "non-unique array of strings is invalid",
47 "description": "unique array of objects is valid",
52 "description": "non-unique array of objects is invalid",
62 "description": "unique array of nested objects is valid",
70 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft4/
H A DuniqueItems.json7 "description": "unique array of integers is valid",
12 "description": "non-unique array of integers is invalid",
17 "description": "non-unique array of more than two integers is invalid",
22 "description": "numbers are unique if mathematically unequal",
37 "description": "unique array of strings is valid",
42 "description": "non-unique array of strings is invalid",
47 "description": "unique array of objects is valid",
52 "description": "non-unique array of objects is invalid",
62 "description": "unique array of nested objects is valid",
70 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft2019-09/
H A DuniqueItems.json10 "description": "unique array of integers is valid",
15 "description": "non-unique array of integers is invalid",
20 "description": "non-unique array of more than two integers is invalid",
25 "description": "numbers are unique if mathematically unequal",
40 "description": "unique array of strings is valid",
45 "description": "non-unique array of strings is invalid",
50 "description": "unique array of objects is valid",
55 "description": "non-unique array of objects is invalid",
65 "description": "unique array of nested objects is valid",
73 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft-next/
H A DuniqueItems.json10 "description": "unique array of integers is valid",
15 "description": "non-unique array of integers is invalid",
20 "description": "non-unique array of more than two integers is invalid",
25 "description": "numbers are unique if mathematically unequal",
40 "description": "unique array of strings is valid",
45 "description": "non-unique array of strings is invalid",
50 "description": "unique array of objects is valid",
55 "description": "non-unique array of objects is invalid",
65 "description": "unique array of nested objects is valid",
73 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft2020-12/
H A DuniqueItems.json10 "description": "unique array of integers is valid",
15 "description": "non-unique array of integers is invalid",
20 "description": "non-unique array of more than two integers is invalid",
25 "description": "numbers are unique if mathematically unequal",
40 "description": "unique array of strings is valid",
45 "description": "non-unique array of strings is invalid",
50 "description": "unique array of objects is valid",
55 "description": "non-unique array of objects is invalid",
65 "description": "unique array of nested objects is valid",
73 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft3/
H A DuniqueItems.json7 "description": "unique array of integers is valid",
12 "description": "non-unique array of integers is invalid",
17 "description": "non-unique array of more than two integers is invalid",
22 "description": "numbers are unique if mathematically unequal",
27 "description": "unique array of strings is valid",
32 "description": "non-unique array of strings is invalid",
37 "description": "unique array of objects is valid",
42 "description": "non-unique array of objects is invalid",
47 "description": "unique array of nested objects is valid",
55 "description": "non-unique array of nested objects is invalid",
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/src/ptr/
H A Dunique.rs10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`.
13 /// the referent of the pointer should not be modified without a unique path to
14 /// its owning Unique.
16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes,
21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`.
24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct
25 /// for any type which upholds Unique's aliasing requirements.
34 // Lang item used experimentally by Miri to define the semantics of `Unique`.
36 pub struct Unique<T: ?Sized> { struct
46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/src/ptr/
H A Dunique.rs10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`.
13 /// the referent of the pointer should not be modified without a unique path to
14 /// its owning Unique.
16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes,
21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`.
24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct
25 /// for any type which upholds Unique's aliasing requirements.
34 // Lang item used experimentally by Miri to define the semantics of `Unique`.
36 pub struct Unique<T: ?Sized> { struct
46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/src/ptr/
H A Dunique.rs10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`.
13 /// the referent of the pointer should not be modified without a unique path to
14 /// its owning Unique.
16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes,
21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`.
24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct
25 /// for any type which upholds Unique's aliasing requirements.
34 // Lang item used experimentally by Miri to define the semantics of `Unique`.
36 pub struct Unique<T: ?Sized> { struct
46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/src/ptr/
H A Dunique.rs10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`.
13 /// the referent of the pointer should not be modified without a unique path to
14 /// its owning Unique.
16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes,
21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`.
24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct
25 /// for any type which upholds Unique's aliasing requirements.
34 // Lang item used experimentally by Miri to define the semantics of `Unique`.
36 pub struct Unique<T: ?Sized> { struct
46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/src/ptr/
H A Dunique.rs10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`.
13 /// the referent of the pointer should not be modified without a unique path to
14 /// its owning Unique.
16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes,
21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`.
24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct
25 /// for any type which upholds Unique's aliasing requirements.
34 // Lang item used experimentally by Miri to define the semantics of `Unique`.
36 pub struct Unique<T: ?Sized> { struct
46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument
[all …]
/aosp_15_r20/external/crosvm/fuse/src/
H A Dserver.rs169 in_header.unique, in handle_message()
225 in_header.unique, in handle_message()
249 reply_ok(Some(out), None, in_header.unique, w) in lookup()
251 Err(e) => reply_error(e, in_header.unique, w), in lookup()
289 reply_ok(Some(out), None, in_header.unique, w) in getattr()
291 Err(e) => reply_error(e, in_header.unique, w), in getattr()
322 reply_ok(Some(out), None, in_header.unique, w) in setattr()
324 Err(e) => reply_error(e, in_header.unique, w), in setattr()
335 reply_ok(None::<u8>, Some(&linkname), in_header.unique, w) in readlink()
337 Err(e) => reply_error(e, in_header.unique, w), in readlink()
[all …]
/aosp_15_r20/external/pigweed/pw_log/public/pw_log/internal/
H A Dglog_adapter.h40 // Declares a unique GlogStreamingLog class definition with a destructor which
42 #define _PW_LOG_GLOG_DECLARATION_PW_LOG(pw_log_level, unique) \ argument
43 class unique : public ::pw::log::internal::GlogStreamingLog { \
45 ~unique() { \
54 // Declares a unique GlogStreamingLog class definition with a destructor which
56 #define _PW_LOG_GLOG_DECLARATION_PW_CRASH(unique) \ argument
57 class unique : public ::pw::log::internal::GlogStreamingLog { \
59 ~unique() { PW_CRASH("%s", string_builder_.c_str()); } \
63 #define _PW_LOG_GLOG_DECLARATION_DEBUG(unique) \ argument
64 _PW_LOG_GLOG_DECLARATION_PW_LOG(PW_LOG_LEVEL_DEBUG, unique)
[all …]
/aosp_15_r20/external/pytorch/test/torch_np/numpy_tests/lib/
H A Dtest_arraysetops.py26 from numpy import ediff1d, in1d, intersect1d, setdiff1d, setxor1d, union1d, unique
31 from torch._numpy import unique
40 # unique inputs
48 # non-unique inputs
70 # unique inputs
79 # non-unique inputs
88 # non1d, unique inputs
674 v = unique(a)
678 # v, j = unique(a, True, False, False)
683 v, j = unique(a, False, True, False)
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/applicationautoscaling/src/main/resources/codegen-resources/
H A Dservice-2.json318unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
350unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
377unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
400unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
439unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
486unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
529unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
784unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
841 …"documentation":"<p>The name of the scheduled action. This name must be unique among all other sch…
845unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th…
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/
H A Dcandidate_sampling_ops.py32 def uniform_candidate_sampler(true_classes, num_true, num_sampled, unique, argument
40 (if `unique=True`) or with replacement (if `unique=False`) from
53 If `unique=True`, then these are post-rejection probabilities and we
62 `unique=True`, `num_sampled` must be less than or equal to `range_max`.
63 unique: A `bool`. Determines whether all sampled classes in a batch are
64 unique.
71 sampled classes, either with possible duplicates (`unique=False`) or all
72 unique (`unique=True`). In either case, `sampled_candidates` is
83 true_classes, num_true, num_sampled, unique, range_max, seed=seed1,
95 def log_uniform_candidate_sampler(true_classes, num_true, num_sampled, unique, argument
[all …]
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/imageless_framebuffer/
H A DvktImagelessFramebufferTests.cpp58 typedef SharedPtr<Unique<VkPipeline>> SharedPtrVkPipeline;
92 inline SharedPtr<Unique<T>> makeSharedPtr(Move<T> move) in makeSharedPtr()
94 return SharedPtr<Unique<T>>(new Unique<T>(move)); in makeSharedPtr()
934 … void readOneSampleFromMultisampleImage(const VkFormat srcFormat, const Unique<VkImage> &srcImage,
936 … const Unique<VkImage> &dstImage, const Unique<VkBuffer> &dstBuffer,
973 …const VkFormat srcFormat, const Unique<VkImage> &srcImage, const uint32_t sampleID, const VkFormat… in readOneSampleFromMultisampleImage()
974 const Unique<VkImage> &dstImage, const Unique<VkBuffer> &dstBuffer, const AspectFlags aspect) in readOneSampleFromMultisampleImage()
990 const Unique<VkImageView> srcImageView( in readOneSampleFromMultisampleImage()
995 const Unique<VkImageView> dstAttachment( in readOneSampleFromMultisampleImage()
999 const Unique<VkShaderModule> vertModule( in readOneSampleFromMultisampleImage()
[all …]
/aosp_15_r20/frameworks/base/core/jni/
H A Dcom_android_internal_os_FuseAppLoop.cpp55 void OnLookup(uint64_t unique, uint64_t inode) override { in OnLookup() argument
56 CallOnCommand(FUSE_LOOKUP, unique, inode, 0, 0, nullptr); in OnLookup()
59 void OnGetAttr(uint64_t unique, uint64_t inode) override { in OnGetAttr() argument
60 CallOnCommand(FUSE_GETATTR, unique, inode, 0, 0, nullptr); in OnGetAttr()
63 void OnOpen(uint64_t unique, uint64_t inode) override { in OnOpen() argument
65 mSelf, gOnOpenMethod, unique, inode)); in OnOpen()
75 void OnFsync(uint64_t unique, uint64_t inode) override { in OnFsync() argument
76 CallOnCommand(FUSE_FSYNC, unique, inode, 0, 0, nullptr); in OnFsync()
79 void OnRelease(uint64_t unique, uint64_t inode) override { in OnRelease() argument
81 CallOnCommand(FUSE_RELEASE, unique, inode, 0, 0, nullptr); in OnRelease()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/smart_ptr/test/
Dshared_ptr_test.cpp148 BOOST_TEST(pt.unique()); in pc0_test()
169 BOOST_TEST(pi.unique()); in pointer_constructor()
178 BOOST_TEST(pi.unique()); in pointer_constructor()
187 BOOST_TEST(pv.unique()); in pointer_constructor()
196 BOOST_TEST(pv.unique()); in pointer_constructor()
210 BOOST_TEST(px.unique()); in pointer_constructor()
219 BOOST_TEST(px.unique()); in pointer_constructor()
228 BOOST_TEST(px.unique()); in pointer_constructor()
237 BOOST_TEST(pv.unique()); in pointer_constructor()
246 BOOST_TEST(pv.unique()); in pointer_constructor()
[all …]
/aosp_15_r20/external/licenseclassifier/stringclassifier/internal/sets/
H A Dintset_test.go21 func checkSameIntSet(t *testing.T, set *IntSet, unique []int) {
23 want := len(unique)
27 t.Errorf("NewIntSet(%v) want length %v, got %v", unique, want, got)
31 for _, s := range unique {
41 sort.Ints(unique)
44 want := unique[i]
70 unique := []int{0, 1, 2}
71 set := NewIntSet(unique...)
72 checkSameIntSet(t, set, unique)
75 nonUnique := append(unique, unique[0])
[all …]
/aosp_15_r20/external/licenseclassifier/internal/sets/
H A Dstringset_test.go21 func checkSameStringSet(t *testing.T, set *StringSet, unique []string) {
23 want := len(unique)
27 t.Errorf("NewStringSet(%v) want length %v, got %v", unique, want, got)
31 for _, s := range unique {
41 sort.Strings(unique)
44 want := unique[i]
61 unique := []string{"a", "b", "c"}
62 set := NewStringSet(unique...)
63 checkSameStringSet(t, set, unique)
66 nonUnique := append(unique, unique[0])
[all …]
/aosp_15_r20/external/armnn/src/armnn/layers/
H A DLstmParameters.hpp16 /// A unique pointer to represent 1D weights tensor with dimensions [num_units].
18 /// A unique pointer to represent 1D weights tensor with dimensions [num_units].
20 /// A unique pointer to represent 1D weights tensor with dimensions [num_units].
22 /// A unique pointer to represent 1D weights tensor with dimensions [num_units].
28 /// A unique pointer to represent 2D weights tensor with dimensions [input_size, num_units].
30 /// A unique pointer to represent 2D weights tensor with dimensions [input_size, num_units].
32 /// A unique pointer to represent 1D weights tensor with dimensions [num_units].
38 /// A unique pointer to represent 2D weights tensor with dimensions [output_size, num_units].
40 /// A unique pointer to represent 1D weights tensor with dimensions [output_size].
46 /// A unique pointer to represent 1D weights tensor with dimensions [num_units].
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_ftplib.py40 MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\r\n"
41 "type=pdir;perm=e;unique==keVO1+d?3; ..\r\n"
42 "type=OS.unix=slink:/foobar;perm=;unique==keVO1+4G4; foobar\r\n"
43 "type=OS.unix=chr-13/29;perm=;unique==keVO1+5G4; device\r\n"
44 "type=OS.unix=blk-11/108;perm=;unique==keVO1+6G4; block\r\n"
45 "type=file;perm=awr;unique==keVO1+8G4; writable\r\n"
46 "type=dir;perm=cpmel;unique==keVO1+7G4; promiscuous\r\n"
47 "type=dir;perm=;unique==keVO1+1t2; no-exec\r\n"
48 "type=file;perm=r;unique==keVO1+EG4; two words\r\n"
49 "type=file;perm=r;unique==keVO1+IH4; leading space\r\n"
[all …]
/aosp_15_r20/frameworks/av/drm/libdrmframework/include/
H A DDrmManagerClientImpl.h49 * Adds the client respective to given unique id.
51 * @param[in] uniqueId Unique identifier for a session
56 * Removes the client respective to given unique id.
58 * @param[in] uniqueId Unique identifier for a session
66 * @param[in] uniqueId Unique identifier for a session
77 * @param[in] uniqueId Unique identifier for a session
91 * @param[in] uniqueId Unique identifier for a session
103 * @param[in] uniqueId Unique identifier for a session
114 * @param[in] uniqueId Unique identifier for a session
125 * @param[in] uniqueId Unique identifier for a session
[all …]

12345678910>>...743