Home
last modified time | relevance | path

Searched +full:scope +full:- +full:manager (Results 1 – 25 of 1184) sorted by relevance

12345678910>>...48

/aosp_15_r20/external/aws-sdk-java-v2/services/fms/src/main/resources/codegen-resources/
H A Dservice-2.json4 "apiVersion":"2018-01-01",
13 "uid":"fms-2018-01-01"
30Manager default administrator account. The Firewall Manager default administrator account can mana…
46 …the Firewall Manager policy administrator as a tenant administrator of a third-party firewall serv…
63 "documentation":"<p>Associate resources to a Firewall Manager resource set.</p>"
79 "documentation":"<p>Disassociates resources from a Firewall Manager resource set.</p>"
93 "documentation":"<p>Permanently deletes an Firewall Manager applications list.</p>"
107 … Firewall Manager association with the IAM role and the Amazon Simple Notification Service (SNS) t…
123 "documentation":"<p>Permanently deletes an Firewall Manager policy. </p>"
137 "documentation":"<p>Permanently deletes an Firewall Manager protocols list.</p>"
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/12/libcore/ojluni/src/main/java/java/security/
DIdentity.java20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
33 * <p>This class represents identities: real-world objects such as people,
40 * specified to have a particular scope, then the name and public
41 * key of the Identity are unique within that scope.
90 * The scope of the identity.
94 IdentityScope scope; field in Identity
111 * Constructs an identity with the specified name and scope.
114 * @param scope the scope of the identity.
117 * with the same name in the scope.
119 public Identity(String name, IdentityScope scope) throws in Identity() argument
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/security/
DIdentity.java20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
33 * <p>This class represents identities: real-world objects such as people,
40 * specified to have a particular scope, then the name and public
41 * key of the Identity are unique within that scope.
90 * The scope of the identity.
94 IdentityScope scope; field in Identity
111 * Constructs an identity with the specified name and scope.
114 * @param scope the scope of the identity.
117 * with the same name in the scope.
119 public Identity(String name, IdentityScope scope) throws in Identity() argument
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/security/
H A DIdentity.java20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
33 * <p>This class represents identities: real-world objects such as people,
40 * specified to have a particular scope, then the name and public
41 * key of the Identity are unique within that scope.
90 * The scope of the identity.
94 IdentityScope scope; field in Identity
111 * Constructs an identity with the specified name and scope.
114 * @param scope the scope of the identity.
117 * with the same name in the scope.
119 public Identity(String name, IdentityScope scope) throws in Identity() argument
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/customization/src/com/android/systemui/shared/clocks/
H A DClockRegistry.kt7 * http://www.apache.org/licenses/LICENSE-2.0 in <lambda>()
69 onNew: (TVal) -> Unit, in <lambda>()
82 val scope: CoroutineScope, constant in com.android.systemui.shared.clocks.ClockRegistry
116 scope.launch(bgDispatcher) { querySettings() } in onChange()
123 manager: PluginLifecycleManager<ClockProviderPlugin> in onPluginAttached()
125 manager.setLogFunc({ tag, msg -> in onPluginAttached()
133 val knownClocks = KNOWN_PLUGINS.get(manager.getPackage()) in onPluginAttached()
136 str1 = manager.getPackage() in onPluginAttached()
142 str1 = manager.getPackage() in onPluginAttached()
151 availableClocks.concurrentGetOrPut(id, ClockInfo(metadata, null, manager)) { in onPluginAttached()
[all …]
/aosp_15_r20/external/google-cloud-java/java-certificate-manager/google-cloud-certificate-manager/
H A Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-certificate-manager</artifactId>
6 <version>0.20.0</version><!-- {x-version-update:google-cloud-certificate-manager:current} -->
8 <name>Google Certificate Manager</name>
9 …<description>Certificate Manager lets you acquire and manage TLS (SSL) certificates for use with C…
12 <artifactId>google-cloud-certificate-manager-parent</artifactId>
13 <version>0.20.0</version><!-- {x-version-update:google-cloud-certificate-manager:current} -->
16 <site.installationModule>google-cloud-certificate-manager</site.installationModule>
21 <artifactId>grpc-api</artifactId>
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/grappler/costs/
H A Dvirtual_scheduler_test.cc7 http://www.apache.org/licenses/LICENSE-2.0
63 node->set_name(name); in NodeSetUp()
64 node->set_op(op_name); in NodeSetUp()
65 node->set_device(device_name); in NodeSetUp()
78 FIFOManager manager = FIFOManager(); in TEST_F() local
79 manager.AddNode(&node1_); in TEST_F()
80 EXPECT_EQ(manager.GetCurrNode()->name(), "Node1"); in TEST_F()
85 FIFOManager manager = FIFOManager(); in TEST_F() local
86 manager.AddNode(&node1_); in TEST_F()
89 manager.RemoveCurrNode(); in TEST_F()
[all …]
/aosp_15_r20/packages/apps/Camera2/src/com/android/camera/settings/
DSettingObserver.java8 * http://www.apache.org/licenses/LICENSE-2.0
29 * Wraps a {@link SettingsManager} setting with thread-safe interfaces for
59 private SettingObserver(SettingsManager manager, String scope, String key, Class<T> tClass) { in SettingObserver() argument
60 mSettingsManager = manager; in SettingObserver()
61 mScope = scope; in SettingObserver()
66 public static SettingObserver<Integer> ofInteger(SettingsManager manager, in ofInteger() argument
67 String scope, String key) { in ofInteger() argument
68 return new SettingObserver<>(manager, scope, key, in ofInteger()
72 public static SettingObserver<String> ofString(SettingsManager manager, in ofString() argument
73 String scope, String key) { in ofString() argument
[all …]
/aosp_15_r20/external/google-cloud-java/java-asset/grpc-google-cloud-asset-v1p1beta1/src/main/java/com/google/cloud/asset/v1p1beta1/
H A DAssetServiceGrpc.java8 * https://www.apache.org/licenses/LICENSE-2.0
148 * Creates a new blocking-style stub that supports unary and streaming output calls on the service
162 /** Creates a new ListenableFuture-style stub that supports unary calls on the service */
188 * Searches all the resources within a given accessible Resource Manager scope
190 * administrators the ability to search all the resources within a scope, even
192 * have `cloud.assets.SearchAllResources` permission on the requested scope,
208 * Searches all the IAM policies within a given accessible Resource Manager
209 * scope (project/folder/organization). This RPC gives callers especially
210 * administrators the ability to search all the IAM policies within a scope,
213 * requested scope, otherwise the request will be rejected.
[all …]
/aosp_15_r20/external/google-cloud-java/java-asset/google-cloud-asset/src/main/java/com/google/cloud/asset/v1p1beta1/
H A DAssetServiceClient.java8 * https://www.apache.org/licenses/LICENSE-2.0
36 // AUTO-GENERATED DOCUMENTATION AND CLASS.
46 * // - It may require correct/in-range values for request initialization.
47 * // - It may require specifying regional endpoints when creating the service client as shown in
50 * String scope = "scope109264468";
54 * assetServiceClient.searchAllResources(scope, query, assetTypes).iterateAll()) {
61 * as threads. In the example above, try-with-resources is used, which automatically calls close().
91 * // - It may require correct/in-range values for request initialization.
92 * // - It may require specifying regional endpoints when creating the service client as shown in
106 * // - It may require correct/in-range values for request initialization.
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/
H A Dops.py7 # http://www.apache.org/licenses/LICENSE-2.0
16 # pylint: disable=g-bad-name
37 # pylint: disable=invalid-import-order,g-bad-import-order,unused-import
40 # pylint: enable=invalid-import-order,g-bad-import-order,unused-import
90 # Temporary global switches determining if we should enable the work-in-progress
111 # pylint: disable=protected-access
113 # pylint: enable=protected-access
118 return tensor._id # pylint: disable=protected-access
122 """Store user-specified device and provide computation of merged device."""
143 lineno = -1
[all …]
/aosp_15_r20/external/google-cloud-java/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/
H A DBatchGetEffectiveIamPoliciesRequest.java8 * https://www.apache.org/licenses/LICENSE-2.0
82 * Required. Only IAM policies on or below the scope will be returned.
85 * "projects/my-project-id"), or a project number (such as "projects/12345").
87 …* ](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_…
89 …* ](https://cloud.google.com/resource-manager/docs/creating-managing-folders#viewing_or_listing_fo…
93 …* string scope = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { …
96 * @return The scope.
114 * Required. Only IAM policies on or below the scope will be returned.
117 * "projects/my-project-id"), or a project number (such as "projects/12345").
119 …* ](https://cloud.google.com/resource-manager/docs/creating-managing-organization#retrieving_your_…
[all …]
H A DAnalyzeOrgPoliciesResponse.java8 * https://www.apache.org/licenses/LICENSE-2.0
85 …* rules](https://cloud.google.com/resource-manager/docs/organization-policy/understanding-hierarch…
101 …* rules](https://cloud.google.com/resource-manager/docs/organization-policy/understanding-hierarch…
117 …* rules](https://cloud.google.com/resource-manager/docs/organization-policy/understanding-hierarch…
130 * to the scope specified in the request.
144 * to the scope specified in the request.
158 * to the scope specified in the request.
172 * to the scope specified in the request.
187 * to the scope specified in the request.
255 …* rules](https://cloud.google.com/resource-manager/docs/organization-policy/understanding-hierarch…
[all …]
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/
H A DSearchCatalogRequest.java8 * https://www.apache.org/licenses/LICENSE-2.0
75 …otoc_insertion_point(interface_extends:google.cloud.datacatalog.v1beta1.SearchCatalogRequest.Scope)
84 * https://cloud.google.com/resource-manager/docs/creating-managing-organization.
98 * https://cloud.google.com/resource-manager/docs/creating-managing-organization.
112 * https://cloud.google.com/resource-manager/docs/creating-managing-organization.
127 * https://cloud.google.com/resource-manager/docs/creating-managing-organization.
202 * https://cloud.google.com/public-datasets/. By default, GCP public
219 * Protobuf type {@code google.cloud.datacatalog.v1beta1.SearchCatalogRequest.Scope}
221 public static final class Scope extends com.google.protobuf.GeneratedMessageV3 class in SearchCatalogRequest
223 …toc_insertion_point(message_implements:google.cloud.datacatalog.v1beta1.SearchCatalogRequest.Scope)
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/distribute/
H A Dvars_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
50 # TODO(b/197981388): re-enable MWMS test
72 # TODO(b/197981388): re-enable MWMS test
96 updates = [("assign", 1.), ("assign_add", 1.), ("assign_sub", -1.)]
112 with distribution.scope():
126 with distribution.scope():
130 -2., aggregation=variables_lib.VariableAggregation.MEAN)
157 with distribution.scope():
172 " sponge/80ba41f8-4220-4516-98ce-bbad48f9f11a.")
174 with distribution.scope():
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/7/libcore/ojluni/src/main/java/java/nio/channels/
DDatagramChannel.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
38 * A selectable channel for datagram-oriented sockets.
42 * pre-existing datagram socket. A newly-created datagram channel is open but not
64 * <th scope="col">Option Name</th>
65 * <th scope="col">Description</th>
70 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </th>
74 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </th>
78 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </th>
79 * <td> Re-use address </td>
82 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_BROADCAST SO_BROADCAST} </th>
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/nio/channels/
DDatagramChannel.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
38 * A selectable channel for datagram-oriented sockets.
42 * pre-existing datagram socket. A newly-created datagram channel is open but not
64 * <th scope="col">Option Name</th>
65 * <th scope="col">Description</th>
70 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </th>
74 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </th>
78 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </th>
79 * <td> Re-use address </td>
82 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_BROADCAST SO_BROADCAST} </th>
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/nio/channels/
H A DDatagramChannel.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
38 * A selectable channel for datagram-oriented sockets.
42 * pre-existing datagram socket. A newly-created datagram channel is open but not
64 * <th scope="col">Option Name</th>
65 * <th scope="col">Description</th>
70 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </th>
74 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </th>
78 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </th>
79 * <td> Re-use address </td>
82 * <th scope="row"> {@link java.net.StandardSocketOptions#SO_BROADCAST SO_BROADCAST} </th>
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/offline/
H A DDownloadManager.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></sc…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"><…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../jquery/jquery-ui.js"></script>
[all …]
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Ddebug_info_manager_test.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
23 #include "spirv-tools/libspirv.hpp"
85 DebugInfoManager manager(context.get()); local
87 EXPECT_EQ(manager.GetDebugInlinedAt(150), nullptr);
88 EXPECT_EQ(manager.GetDebugInlinedAt(31), nullptr);
89 EXPECT_EQ(manager.GetDebugInlinedAt(22), nullptr);
91 auto* inst = manager.GetDebugInlinedAt(100);
92 EXPECT_EQ(inst->GetSingleWordOperand(kDebugInlinedAtOperandLineIndex), 7);
93 EXPECT_EQ(inst->GetSingleWordOperand(kDebugInlinedAtOperandScopeIndex), 22);
138 DebugScope scope(22U, 0U); local
[all …]
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/opt/
Ddebug_info_manager_test.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
23 #include "spirv-tools/libspirv.hpp"
85 DebugInfoManager manager(context.get()); local
87 EXPECT_EQ(manager.GetDebugInlinedAt(150), nullptr);
88 EXPECT_EQ(manager.GetDebugInlinedAt(31), nullptr);
89 EXPECT_EQ(manager.GetDebugInlinedAt(22), nullptr);
91 auto* inst = manager.GetDebugInlinedAt(100);
92 EXPECT_EQ(inst->GetSingleWordOperand(kDebugInlinedAtOperandLineIndex), 7);
93 EXPECT_EQ(inst->GetSingleWordOperand(kDebugInlinedAtOperandScopeIndex), 22);
138 DebugScope scope(22U, 0U); local
[all …]
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1/src/main/java/com/google/cloud/datacatalog/v1/
H A DSearchCatalogRequest.java8 * https://www.apache.org/licenses/LICENSE-2.0
75 … @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.SearchCatalogRequest.Scope)
85 * (/resource-manager/docs/creating-managing-organization).
100 * (/resource-manager/docs/creating-managing-organization).
115 * (/resource-manager/docs/creating-managing-organization).
131 * (/resource-manager/docs/creating-managing-organization).
206 * See [Google Cloud Public Datasets](/public-datasets) for more
223 * regions](https://cloud.google.com/data-catalog/docs/concepts/regions#supported_regions).
243 * regions](https://cloud.google.com/data-catalog/docs/concepts/regions#supported_regions).
263 * regions](https://cloud.google.com/data-catalog/docs/concepts/regions#supported_regions).
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/
H A Drecord_function.cpp28 std::atomic<int64_t> defaultNodeId(-1);
53 auto out = it->callback_; in extractCallback()
59 // == Callback manager ========================================================
74 // a mutex. The local callback manager snapshots the global callbacks and
96 // counter for each scope that a given callback supports and then decrement the
130 CacheEntry(std::mt19937* generator, RecordScope scope);
144 // `-1` indicates that a callback is not sampled.
145 int tries_left_{-1};
176 StepCallbacks getActiveCallbacks(const RecordScope scope);
177 std::optional<StepCallbacks> getActiveCallbacksUnlessEmpty(const RecordScope scope);
[all …]
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/opt/
H A Ddebug_info_manager_test.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
23 #include "spirv-tools/libspirv.hpp"
85 DebugInfoManager manager(context.get()); local
87 EXPECT_EQ(manager.GetDebugInlinedAt(150), nullptr);
88 EXPECT_EQ(manager.GetDebugInlinedAt(31), nullptr);
89 EXPECT_EQ(manager.GetDebugInlinedAt(22), nullptr);
91 auto* inst = manager.GetDebugInlinedAt(100);
92 EXPECT_EQ(inst->GetSingleWordOperand(kDebugInlinedAtOperandLineIndex), 7);
93 EXPECT_EQ(inst->GetSingleWordOperand(kDebugInlinedAtOperandScopeIndex), 22);
138 DebugScope scope(22U, 0U); local
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/offline/
H A DDownloadManager.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></sc…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"><…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../jquery/jquery-ui.js"></script>
[all …]

12345678910>>...48