| /external/bazel-skylib/docs/ |
| D | versions_doc.md | 3 Skylib module containing functions for checking Bazel versions. 5 <a id="#versions.get"></a> 7 ## versions.get 10 versions.get() 17 <a id="#versions.parse"></a> 19 ## versions.parse 22 versions.parse(<a href="#versions.parse-bazel_version">bazel_version</a>) 35 | <a id="versions.parse-bazel_version"></a>bazel_version | the Bazel version string | none | 42 <a id="#versions.check"></a> 44 ## versions.check [all …]
|
| /external/rust/crates/grpcio-sys/grpc/src/core/tsi/alts/handshaker/ |
| D | transport_security_common_api.cc | 26 grpc_gcp_rpc_protocol_versions* versions, uint32_t max_major, in grpc_gcp_rpc_protocol_versions_set_max() argument 28 if (versions == nullptr) { in grpc_gcp_rpc_protocol_versions_set_max() 30 "versions is nullptr in " in grpc_gcp_rpc_protocol_versions_set_max() 34 versions->max_rpc_version.major = max_major; in grpc_gcp_rpc_protocol_versions_set_max() 35 versions->max_rpc_version.minor = max_minor; in grpc_gcp_rpc_protocol_versions_set_max() 40 grpc_gcp_rpc_protocol_versions* versions, uint32_t min_major, in grpc_gcp_rpc_protocol_versions_set_min() argument 42 if (versions == nullptr) { in grpc_gcp_rpc_protocol_versions_set_min() 44 "versions is nullptr in " in grpc_gcp_rpc_protocol_versions_set_min() 48 versions->min_rpc_version.major = min_major; in grpc_gcp_rpc_protocol_versions_set_min() 49 versions->min_rpc_version.minor = min_minor; in grpc_gcp_rpc_protocol_versions_set_min() [all …]
|
| D | transport_security_common_api.h | 45 * versions. 47 * - versions: an rpc protocol version instance. 54 grpc_gcp_rpc_protocol_versions* versions, uint32_t max_major, 59 * versions. 61 * - versions: an rpc protocol version instance. 68 grpc_gcp_rpc_protocol_versions* versions, uint32_t min_major, 73 * versions in grpc slice. 75 * - versions: an rpc protocol versions instance. 81 const grpc_gcp_rpc_protocol_versions* versions, grpc_slice* slice); 85 * versions in grpc slice. [all …]
|
| /external/grpc-grpc/src/core/tsi/alts/handshaker/ |
| D | transport_security_common_api.cc | 24 grpc_gcp_rpc_protocol_versions* versions, uint32_t max_major, in grpc_gcp_rpc_protocol_versions_set_max() argument 26 if (versions == nullptr) { in grpc_gcp_rpc_protocol_versions_set_max() 28 "versions is nullptr in " in grpc_gcp_rpc_protocol_versions_set_max() 32 versions->has_max_rpc_version = true; in grpc_gcp_rpc_protocol_versions_set_max() 33 versions->max_rpc_version.has_major = true; in grpc_gcp_rpc_protocol_versions_set_max() 34 versions->max_rpc_version.has_minor = true; in grpc_gcp_rpc_protocol_versions_set_max() 35 versions->max_rpc_version.major = max_major; in grpc_gcp_rpc_protocol_versions_set_max() 36 versions->max_rpc_version.minor = max_minor; in grpc_gcp_rpc_protocol_versions_set_max() 41 grpc_gcp_rpc_protocol_versions* versions, uint32_t min_major, in grpc_gcp_rpc_protocol_versions_set_min() argument 43 if (versions == nullptr) { in grpc_gcp_rpc_protocol_versions_set_min() [all …]
|
| D | transport_security_common_api.h | 41 * versions. 43 * - versions: an rpc protocol version instance. 50 grpc_gcp_rpc_protocol_versions* versions, uint32_t max_major, 55 * versions. 57 * - versions: an rpc protocol version instance. 64 grpc_gcp_rpc_protocol_versions* versions, uint32_t min_major, 68 * This method computes serialized byte length of rpc protocol versions. 70 * - versions: an rpc protocol versions instance. 75 const grpc_gcp_rpc_protocol_versions* versions); 78 * This method serializes rpc protocol versions and writes the result to [all …]
|
| /external/bazel-skylib/tests/ |
| D | versions_tests.bzl | 15 """Unit tests for versions.bzl.""" 18 load("//lib:versions.bzl", "versions") 21 """Unit tests for versions.parse""" 24 asserts.equals(env, (0, 10, 0), versions.parse("0.10.0rc1 abcd123")) 25 asserts.equals(env, (0, 4, 0), versions.parse("0.4.0 abcd123")) 26 asserts.equals(env, (0, 4, 0), versions.parse("0.4.0")) 27 asserts.equals(env, (0, 4, 0), versions.parse("0.4.0rc")) 32 """Unit tests for versions.is_at_least and is_at_most""" 35 asserts.false(env, versions.is_at_least("0.11.0 123abcd", "0.10.0rc1 abcd123")) 36 asserts.true(env, versions.is_at_least("0.9.0", "0.10.0rc2")) [all …]
|
| /external/cronet/net/third_party/quiche/src/quiche/quic/core/ |
| D | quic_versions.cc | 40 "Supported versions out of sync"); in SetVersionFlag() 83 // Low flow-control limits are used for all IETF versions. in AllowsLowFlowControlLimits() 122 // The anti-amplification limit is used for all IETF versions. in SupportsAntiAmplificationLimit() 204 const ParsedQuicVersionVector& versions) { in operator <<() argument 205 os << ParsedQuicVersionVectorToString(versions); in operator <<() 227 "Supported versions out of sync"); in CreateQuicVersionLabel() 251 const ParsedQuicVersionVector& versions) { in CreateQuicVersionLabelVector() argument 253 out.reserve(versions.size()); in CreateQuicVersionLabelVector() 254 for (const auto& version : versions) { in CreateQuicVersionLabelVector() 261 ParsedQuicVersionVector versions; in AllSupportedVersionsWithQuicCrypto() local [all …]
|
| D | quic_versions.h | 5 // Definitions and utility functions related to handling of QUIC versions. 7 // QUIC versions are encoded over the wire as an opaque 32bit field. The wire 9 // alias to uint32_t). Conceptual versions are represented in memory as 12 // We currently support two kinds of QUIC versions, GoogleQUIC and IETF QUIC. 14 // All GoogleQUIC versions use a wire encoding that matches the following regex 20 // All IETF QUIC versions use the wire encoding described in: 38 // The list of existing QUIC transport versions. Note that QUIC versions are 40 // QUIC transport version and handshake protocol. For transport versions of the 42 // guaranteed to match the name. Older deprecated transport versions are 106 // or v41 are present in subsequent versions. [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | dialogflow_v2.projects.locations.agent.versions.html | 75 ….html">agent</a> . <a href="dialogflow_v2.projects.locations.agent.versions.html">versions</a></h1> 91 <p class="firstline">Returns the list of all versions of the specified agent.</p> 113 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 116 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 129 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 132 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 143 …on to delete. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 161 … the version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 170 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 173 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… [all …]
|
| D | dialogflow_v2.projects.agent.versions.html | 75 …ects.agent.html">agent</a> . <a href="dialogflow_v2.projects.agent.versions.html">versions</a></h1> 91 <p class="firstline">Returns the list of all versions of the specified agent.</p> 113 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 116 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 129 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 132 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 143 …on to delete. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 161 … the version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 170 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 173 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… [all …]
|
| D | dialogflow_v2beta1.projects.agent.versions.html | 75 …agent.html">agent</a> . <a href="dialogflow_v2beta1.projects.agent.versions.html">versions</a></h1> 91 <p class="firstline">Returns the list of all versions of the specified agent.</p> 113 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 116 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 129 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 132 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 143 …on to delete. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 161 … the version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 170 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 173 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… [all …]
|
| D | dialogflow_v2beta1.projects.locations.agent.versions.html | 75 …">agent</a> . <a href="dialogflow_v2beta1.projects.locations.agent.versions.html">versions</a></h1> 91 <p class="firstline">Returns the list of all versions of the specified agent.</p> 113 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 116 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 129 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 132 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 143 …on to delete. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 161 … the version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… 170 …versions of your agent and publish them to separate environments. When you edit an agent, you are … 173 …gent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versi… [all …]
|
| /external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/ |
| D | translate_utils.cc | 23 void PopulateTfVersions(mlir::ModuleOp module, const VersionDef& versions) { in PopulateTfVersions() argument 26 b.getNamedAttr("producer", b.getI32IntegerAttr(versions.producer())); in PopulateTfVersions() 28 "min_consumer", b.getI32IntegerAttr(versions.min_consumer())); in PopulateTfVersions() 32 versions.bad_consumers().data(), in PopulateTfVersions() 33 versions.bad_consumers().data() + versions.bad_consumers().size()))); in PopulateTfVersions() 34 module->setAttr("tf.versions", in PopulateTfVersions() 40 VersionDef* versions) { in ExtractTfVersions() argument 41 versions->Clear(); in ExtractTfVersions() 43 module->getAttrOfType<mlir::DictionaryAttr>("tf.versions"); in ExtractTfVersions() 49 versions->set_producer(producer.getInt()); in ExtractTfVersions() [all …]
|
| /external/nullaway/gradle/ |
| D | dependencies.gradle | 33 def versions = [ 48 autoValue : "com.google.auto.value:auto-value:${versions.autoValue}", 49 autoValueAnnot : "com.google.auto.value:auto-value-annotations:${versions.autoValue}", 50 autoService : "com.google.auto.service:auto-service:${versions.autoService}", 51 autoServiceAnnot : "com.google.auto.service:auto-service-annotations:${versions.autoService}", 57 asm : "org.ow2.asm:asm:${versions.asm}", 58 asmTree : "org.ow2.asm:asm-tree:${versions.asm}", 59 … errorProneCheckApi : "com.google.errorprone:error_prone_check_api:${versions.errorProneApi}", 60 errorProneCore : "com.google.errorprone:error_prone_core:${versions.errorProne}", 61 errorProneCoreForApi : "com.google.errorprone:error_prone_core:${versions.errorProneApi}", [all …]
|
| /external/tensorflow/tensorflow/python/framework/ |
| D | versions_test.py | 15 """Tests for exposed tensorflow versions.""" 17 from tensorflow.python.framework import versions 24 self.assertEqual(type(versions.__version__), str) 25 self.assertEqual(type(versions.VERSION), str) 27 self.assertRegex(versions.__version__, r'^\d+\.\d+\.(\d+(\-\w+)?|head)$') 28 self.assertRegex(versions.VERSION, r'^\d+\.\d+\.(\d+(\-\w+)?|head)$') 31 version = versions.GRAPH_DEF_VERSION 32 min_consumer = versions.GRAPH_DEF_VERSION_MIN_CONSUMER 33 min_producer = versions.GRAPH_DEF_VERSION_MIN_PRODUCER 41 self.assertEqual(type(versions.__git_version__), str) [all …]
|
| /external/libchrome/mojo/public/tools/bindings/pylib/mojom_tests/generate/ |
| D | pack_unittest.py | 84 versions = pack.GetVersionInfo(ps) 85 self.assertEquals(1, len(versions)) 86 self.assertEquals(0, versions[0].version) 87 self.assertEquals(0, versions[0].num_fields) 88 self.assertEquals(8, versions[0].num_bytes) 104 versions = pack.GetVersionInfo(ps) 105 self.assertEquals(3, len(versions)) 107 self.assertEquals(0, versions[0].version) 108 self.assertEquals(1, versions[0].num_fields) 109 self.assertEquals(16, versions[0].num_bytes) [all …]
|
| /external/crosvm/media/ffmpeg/ |
| D | bindgen.sh | 11 VERSIONS="media/ffmpeg/VERSIONS" 26 echo "# These version numbers are updated by the bindgen.sh script" >$VERSIONS 27 echo "avcodec: `pkg-config --modversion libavcodec`" >>$VERSIONS 28 echo "avutil: `pkg-config --modversion libavutil`" >>$VERSIONS 29 echo "swscale: `pkg-config --modversion libswscale`" >>$VERSIONS 31 if ! git --no-pager diff --exit-code $VERSIONS; then 32 echo "Libraries versions updated in the $VERSIONS file." 33 echo "Please check the minimum required versions in build.rs and make sure that"
|
| /external/okio/ |
| D | build.gradle | 8 ext.versions = [ 33 'gradlePlugin': "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}", 50 'gradlePlugin': "me.champeau.gradle:jmh-gradle-plugin:${versions.jmhPlugin}", 51 'core': "org.openjdk.jmh:jmh-core:${versions.jmh}", 52 'generator': "org.openjdk.jmh:jmh-generator-annprocess:${versions.jmh}", 55 'gradlePlugin': "ru.vyarus:gradle-animalsniffer-plugin:${versions.animalSnifferPlugin}", 56 'annotations': "org.codehaus.mojo:animal-sniffer-annotations:${versions.animalSniffer}", 59 'dokka': "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}", 60 'shadow': "com.github.jengelman.gradle.plugins:shadow:${versions.shadowPlugin}", 61 'spotless': "com.diffplug.spotless:spotless-plugin-gradle:${versions.spotless}", [all …]
|
| /external/python/cpython3/Lib/ctypes/macholib/ |
| D | framework.py | 13 (?:Versions/(?P<version>[^/]+)/)? 22 Location/Name.framework/Versions/SomeVersion/Name_Suffix 23 Location/Name.framework/Versions/SomeVersion/Name 30 name='Name.framework/Versions/SomeVersion/Name_Suffix', 59 assert framework_info('P/F.framework/Versions') is None 60 assert framework_info('P/F.framework/Versions/A') is None 61 …assert framework_info('P/F.framework/Versions/A/F') == d('P', 'F.framework/Versions/A/F', 'F', 'A') 62 …assert framework_info('P/F.framework/Versions/A/F_debug') == d('P', 'F.framework/Versions/A/F_debu…
|
| /external/python/cpython2/Lib/ctypes/macholib/ |
| D | framework.py | 13 (?:Versions/(?P<version>[^/]+)/)? 22 Location/Name.framework/Versions/SomeVersion/Name_Suffix 23 Location/Name.framework/Versions/SomeVersion/Name 30 name='Name.framework/Versions/SomeVersion/Name_Suffix', 59 assert framework_info('P/F.framework/Versions') is None 60 assert framework_info('P/F.framework/Versions/A') is None 61 …assert framework_info('P/F.framework/Versions/A/F') == d('P', 'F.framework/Versions/A/F', 'F', 'A') 62 …assert framework_info('P/F.framework/Versions/A/F_debug') == d('P', 'F.framework/Versions/A/F_debu…
|
| /external/tensorflow/tensorflow/lite/tools/ |
| D | gen_op_registration.cc | 47 auto& versions = iter_and_bool.first->second; in ReadOpsFromModel() local 48 versions.first = std::min(versions.first, version); in ReadOpsFromModel() 49 versions.second = std::max(versions.second, version); in ReadOpsFromModel() 53 auto& versions = iter_and_bool.first->second; in ReadOpsFromModel() local 54 versions.first = std::min(versions.first, version); in ReadOpsFromModel() 55 versions.second = std::max(versions.second, version); in ReadOpsFromModel()
|
| /external/wycheproof/ |
| D | BUILD | 22 # Generates BouncyCastleAllTests_1_xx target for all available versions, 28 # To test other versions, e.g., v1.52: 31 # To test all known versions (warning, will take a long time): 52 # Generates SpongyCastleAllTests_1_xx target for all available versions, 58 # To test other versions, e.g., v1.52.0.0: 61 # To test all known versions (warning, will take a long time): 75 # Generates BouncyCastleTest_1_xx target for all available versions, 81 # To test other versions, e.g., v1.52: 84 # To test all known versions: 104 # Generates SpongyCastleTest_1_xx target for all available versions, [all …]
|
| /external/ComputeLibrary/docs/user_guide/ |
| D | errata.dox | 33 …-5324) Issue identified with direct and depthwise convolutions for certain Arm® Mali™ DDK versions. 34 - Versions Affected: < v22.08 36 - Arm® Mali™ DDK Versions : >= r23p0 && <= r38p0 43 - Versions Affected: >= v21.08 50 - Versions Affected: v21.05 56 - Versions Affected: v21.02 64 - Versions Affected: >= v20.11 && < v21.08 73 - Versions Affected: >= v20.11 && < v21.05 79 - Versions Affected: >= v20.08 84 - Versions Affected: >= v19.11 [all …]
|
| /external/tensorflow/tensorflow/core/framework/ |
| D | versions.cc | 16 #include "tensorflow/core/framework/versions.h" 17 #include "tensorflow/core/framework/versions.pb.h" 23 Status CheckVersions(const VersionDef& versions, int consumer, int min_producer, in CheckVersions() argument 31 // Check versions in CheckVersions() 32 if (versions.producer() < min_producer) { in CheckVersions() 34 upper_name, " producer version ", versions.producer(), in CheckVersions() 38 if (versions.min_consumer() > consumer) { in CheckVersions() 40 upper_name, " min consumer version ", versions.min_consumer(), in CheckVersions() 44 for (const int bad_consumer : versions.bad_consumers()) { in CheckVersions()
|
| /external/robolectric/ |
| D | dependencies.gradle | 2 apiCompatVersion = libs.versions.robolectric.compat.get() 5 axtCoreVersion = libs.versions.androidx.test.core.get() 6 axtJunitVersion = libs.versions.androidx.test.ext.junit.get() 7 axtMonitorVersion = libs.versions.androidx.test.monitor.get() 8 axtRunnerVersion = libs.versions.androidx.test.runner.get() 9 axtTruthVersion = libs.versions.androidx.test.ext.truth.get() 10 espressoVersion = libs.versions.androidx.test.espresso.get()
|