Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 2000) sorted by relevance

12345678910>>...80

/test/vti/test_serving/gae/frontend/
Dpackage-lock.json3 "version": "0.0.0", string
8 "version": "0.6.8", string
18 "version": "0.6.8", string
77 "version": "0.6.8", string
89 "version": "2.9.2", string
97 "version": "0.6.8", string
109 "version": "0.6.8", string
119 "version": "6.0.6", string
127 "version": "6.2.1", string
135 "version": "6.0.8", string
[all …]
/test/vts/drivers/hal/common/include/utils/
DInterfaceSpecUtil.h4 * Licensed under the Apache License, Version 2.0 (the "License");
39 // Get HAL version (represented by two integers) string to be used to
43 // version_major: int, HAL major version, e.g. 1.10 -> 1.
44 // version_minor: int, HAL minor version, e.g. 1.10 -> 10.
45 // for_macro: bool, if true, it returns version 1.10 as V1_10
48 // string, for version 1.10, if for_macro is true, it returns V1_10,
54 // Get HAL version string to be used to build a relevant dir path.
57 // version: float, HAL version, e.g. 1.10.
58 // for_macro: bool, if true, it returns version 1.10 as V1_10.
61 // string, for version 1.10, if for_macro is true, it returns V1_10,
[all …]
/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DApiLevelUtil.java4 * Licensed under the Apache License, Version 2.0 (the "License");
28 public static final String CODENAME = "ro.build.version.codename";
30 public static boolean isBefore(ITestDevice device, int version) in isBefore() argument
32 return device.getApiLevel() < version; in isBefore()
35 public static boolean isBefore(ITestDevice device, String version) in isBefore() argument
37 return device.getApiLevel() < resolveVersionString(version); in isBefore()
40 public static boolean isAfter(ITestDevice device, int version) in isAfter() argument
42 return device.getApiLevel() > version; in isAfter()
45 public static boolean isAfter(ITestDevice device, String version) in isAfter() argument
47 return device.getApiLevel() > resolveVersionString(version); in isAfter()
[all …]
/test/vti/dashboard/
Dbuild.gradle36 id "com.github.sherter.google-java-format" version "0.7.1"
45 version = '4'
66 compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.7'
67 compile group: 'org.apache.commons', name: 'commons-math3', version:'3.6.1'
68 compile group: 'commons-codec', name: 'commons-codec', version:'1.9'
69 compile group: 'com.google.cloud', name: 'google-cloud', version: "${googleCloudVersion}"
70 compile group: 'com.google.code.gson', name: 'gson', version:'2.7'
71 compile group: 'com.googlecode.objectify', name: 'objectify', version: "${objectifyVersion}"
72 compile group: 'org.json', name: 'json', version:'20180130'
73 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
[all …]
/test/vts-testcase/vndk/golden/
Dvndk_data.py4 # Licensed under the Apache License, Version 2.0 (the "License");
73 """Loads the name of the data directory for devices with no VNDK version.
87 logging.error("Cannot load default VNDK version.")
91 def GetAbiDumpDirectory(data_file_path, version, binder_bitness, abi_name, argument
97 version: A string, the VNDK version.
104 None if there is no directory for the version and ABI.
112 version_dir = (version if version else
149 def GetAbiDumpPathsFromResources(version, binder_bitness, abi_name, abi_bitness): argument
153 version: A string, the VNDK version.
161 If there is no dump for the version and ABI, this function returns an
[all …]
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
DVtsFuzzTest.java4 * Licensed under the Apache License, Version 2.0 (the "License");
47 private static final String VTS_FUZZ_TEST_FLAG_VERSION = "--version";
69 @Option(name = "target-version", description = "The target component version.")
72 @Option(name = "target-version-major", description = "The target major component version.")
75 @Option(name = "target-version-minor", description = "The target minor component version.")
163 * Set the target version variable.
165 * @param version The version to set.
168 public void setTargetVersion(float version) { in setTargetVersion() argument
169 mTargetVersion = version; in setTargetVersion()
173 * Get the target version variable.
[all …]
/test/vts/script/
Ddiagnose.py5 # Licensed under the Apache License, Version 2.0 (the "License");
42 print '===== OS version =====\n', platform.platform()
43 print '===== Python version =====\n', sys.version
45 # Get pip version
46 runCommand('pip --version', 'Pip version')
48 # Get virtualenv version
49 runCommand('virtualenv --version', 'Virtualenv version')
/test/vts/drivers/hal/common/utils/
DInterfaceSpecUtil.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
64 true) // set flag to true, use macro version, in GetFunctionNamePrefix()
75 true) // set flag to true, use macro version, in GetFunctionNamePrefix()
85 string GetVersionString(float version, bool for_macro) { in GetVersionString() argument
90 long version_long = version * DEFAULT_FACTOR; in GetVersionString()
149 int GetVersionMajor(const string& version, bool for_macro) { in GetVersionMajor() argument
150 if (for_macro) return std::stoi(version.substr(0, version.find("_"))); in GetVersionMajor()
151 return std::stoi(version.substr(0, version.find("."))); in GetVersionMajor()
154 int GetVersionMinor(const string& version, bool for_macro) { in GetVersionMinor() argument
155 if (for_macro) return std::stoi(version.substr(version.find("_") + 1)); in GetVersionMinor()
[all …]
/test/suite_harness/build/
Dtradefed_binary.go3 // Licensed under the Apache License, Version 2.0 (the "License");
37 Version string member
58 version := tfb.Version
60 version = ctx.Config().PlatformVersionName() + tfb.Version
70 Version: version,
99 Version string member
126 `echo "version = ${version}" >> $out`,
127 }, "buildNumberFile", "arch", "name", "fullname", "version")
141 "version": tfg.properties.Version,
/test/framework/harnesses/host_controller/command_processor/
Dcommand_gsispl.py4 # Licensed under the Apache License, Version 2.0 (the 'License');
54 "--version", help="New version ID. It should be YYYY-mm-dd format")
57 help="Path to vendor provided image file to retrieve SPL version. "
62 help="The version of vendor.img that will be used (e.g., 8.1.0).")
80 if args.version:
83 args.version, "%Y-%m-%d")
84 version = "{:04d}-{:02d}-{:02d}".format(
87 logging.error("version ID should be YYYY-mm-dd format.")
122 version = "{:04d}-{:02d}-{:02d}".format(
126 logging.error("Failed to fetch SPL version from %s file.",
[all …]
Dcommand_dut.py4 # Licensed under the Apache License, Version 2.0 (the 'License');
77 "--version",
80 help="System version information of the device on which "
116 self.SetOtherVolumes(adb_proxy, 0, args.version)
121 args.version)
126 def SetOtherVolumes(self, adb_proxy, volume_level, version=None): argument
132 version: float, Android system version value. The index of
133 setStreamVolume() depends on the Android version.
136 if version and version >= 9.0:
/test/vts/utils/native/testability_checker/
DVtsTestabilityCheckerTest.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
40 using android::vintf::Version;
98 "<manifest version=\"1.0\" type=\"framework\">\n" in testDeviceManifest()
102 " <version>2.0</version>\n" in testDeviceManifest()
111 " <version>1.2</version>\n" in testDeviceManifest()
112 " <version>2.5</version>\n" in testDeviceManifest()
126 " <version>2.0</version>\n" in testDeviceManifest()
135 " <version>1.0</version>\n" in testDeviceManifest()
144 " <version>1.0</version>\n" in testDeviceManifest()
153 " <version>1.0</version>\n" in testDeviceManifest()
[all …]
DVtsTestabilityChecker.h4 * Licensed under the Apache License, Version 2.0 (the "License");
33 using android::vintf::Version;
60 // the package name, version and interface name. Arch (32 or 64) info is
66 const Version& hal_version,
71 // with the package name, version and interface name. Arch (32 or 64) info is
77 const Version& hal_version,
87 const Version& hal_version,
96 const Version& hal_version,
105 const Version& hal_version,
114 const Version& hal_version,
[all …]
/test/vts/utils/python/common/
Dvts_spec_utils.py4 # Licensed under the Apache License, Version 2.0 (the "License");
25 """Returns hal name and version given hal package name.
31 tuple, hal name and version e.g. ('vibrator', '1.0')
47 """Returns directory name corresponding to hal version."""
71 hal_version: string, version of the hal, e.g '7.4'
87 hal_version: string, version of the hal, e.g '7.4'
110 hal_version: string, version of the hal, e.g '7.4'
131 """Returns list of .vts file names for given hal name and version.
135 hal_version: string, version of the hal, e.g '7.4'
138 list of string, .vts files for given hal name and version,
[all …]
/test/vts/testcases/host/kernel_proc_file_api_test/proc_tests/
DProcQtaguidCtrlTest.py4 # Licensed under the Apache License, Version 2.0 (the "License");
71 (version, patchlevel, sublevel) = self._kernel_version(dut)
72 if version == 4 and patchlevel >= 9 or version > 4:
78 """Gets the kernel version from the device.
83 A tuple of kernel version information
84 in the format of (version, patchlevel, sublevel).
95 raise RuntimeError("Failed to detect kernel version of device. out:%s" % out)
97 version = int(match.group(1))
100 logging.info("Detected kernel version: %s", match.group(0))
101 return (version, patchlevel, sublevel)
DProcVersionTest.py4 # Licensed under the Apache License, Version 2.0 (the "License");
22 '''/proc/version displays the kernel version and build information.'''
25 return self.parse_line("{} version {} ({}@{}) ({}) {}\n", contents)
29 logging.error("Not a valid linux version!")
34 return "/proc/version"
/test/vts-testcase/hal/treble/vintf/libvts_vintf_test_common/
Dcommon.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
22 // Framework Compatibility Matrix Version (FCM Version) per API level, or
23 // multiple API levels per FCM version.
30 // // Assume devices launch with Android X must implement FCM version >= 9
33 // // FCM version >= 11
37 Level /* FCM Version */>
59 // O / O-MR1 vendor image doesn't have shipping FCM version declared and in TestTargetFcmVersion()
60 // shipping FCM version is inferred from Shipping API level, hence it always in TestTargetFcmVersion()
80 << " requires Shipping FCM Version >= " << required_fcm_version in TestTargetFcmVersion()
/test/vts/utils/python/vndk/
Dvndk_utils.py4 # Licensed under the Apache License, Version 2.0 (the "License");
47 def FormatVndkPath(pattern, bitness, version=""): argument
53 version: A string, the VNDK version.
59 VER=version)
62 def GetVndkDirectory(bitness, version): argument
67 version: A string, the VNDK version.
73 bitness, version)
/test/vts-testcase/kernel/api/proc/
DProcVersionTest.py4 # Licensed under the Apache License, Version 2.0 (the "License");
22 '''/proc/version displays the kernel version and build information.'''
25 return self.parse_line("{} version {} ({}@{}) ({}) {}\n", contents)
29 logging.error("Not a valid linux version!")
34 return "/proc/version"
/test/vts/utils/native/libprofiling/
DVtsProfilingInterface.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
62 const string& version) { in GetTraceFile() argument
63 string fullname = package + "@" + version; in GetTraceFile()
72 fd = CreateTraceFile(package, version); in GetTraceFile()
77 fd = CreateTraceFile(package, version); in GetTraceFile()
84 const string& version) { in CreateTraceFile() argument
89 property_get("ro.build.version.incremental", build_number, "unknown_build"); in CreateTraceFile()
93 string file_path = trace_file_path_prefix_ + package + "_" + version + "_" + in CreateTraceFile()
110 const char* package, const char* version, const char* interface, in AddTraceEvent() argument
112 std::string version_str = std::string(version); in AddTraceEvent()
[all …]
/test/vts-testcase/hal/script/build/
Dvts_spec_parser.py5 # Licensed under the Apache License, Version 2.0 (the 'License');
48 For every unique pair of (hal name, hal version) available under
74 hal_version: string, version of the hal, e.g '7.4'
103 hal_version: string, version of the hal, e.g '7.4'
136 # Find the first occurance of version in directory path.
140 # Name of the hal preceds hal version in the directory path.
147 """Returns list of .vts file names for given hal name and version.
150 hal_version: string, version of the hal, e.g '7.4'
153 list of string, .vts files for given hal name and version,
165 """Returns list of .vts protos for given hal name and version.
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DApiCoverageExcludedEntity.java4 * Licensed under the Apache License, Version 2.0 (the "License"); you
54 /** Major Version. e.g. 1, 2. */
57 /** Minor Version. e.g. 0. */
75 String version, in ApiCoverageExcludedEntity() argument
86 this.setVersions(version); in ApiCoverageExcludedEntity()
89 /** Setting major and minor version from version string */
90 private void setVersions(String version) { in setVersions() argument
91 String[] versionArray = version.split("[.]"); in setVersions()
/test/mlts/models/
DREADME.txt3 Licensed under the Apache License, Version 2.0 (the "License");
25 Apache License, Version 2.0
37 Apache License, Version 2.0
49 Apache License, Version 2.0
61 Apache License, Version 2.0
70 Float version of MobileNet SSD tensorflow model based on:
73 Apache License, Version 2.0
86 Apache License, Version 2.0
100 Apache License, Version 2.0
109 Apache License, Version 2.0
[all …]
/test/vts-testcase/hal/treble/platform_version/
Dvts_treble_platform_version_test.py5 # Licensed under the Apache License, Version 2.0 (the "License");
84 """Test that SDK version >= O (26)."""
86 sdkVersion = int(self.getProp("ro.build.version.sdk"))
93 """Test that VNDK version is specified.
95 If ro.vndk.version is not defined on boot, GSI sets LD_CONFIG_FILE to
96 temporary configuration file and ro.vndk.version to default value.
99 vndkVersion = self.getProp("ro.vndk.version")
101 asserts.fail("VNDK version is not defined")
DVtsTreblePlatformVersionTest.py5 # Licensed under the Apache License, Version 2.0 (the "License");
91 """Test that SDK version >= O (26)."""
93 sdkVersion = int(self.getProp("ro.build.version.sdk"))
100 """Test that VNDK version is specified.
102 If ro.vndk.version is not defined on boot, GSI sets LD_CONFIG_FILE to
103 temporary configuration file and ro.vndk.version to default value.
106 vndkVersion = self.getProp("ro.vndk.version")
108 asserts.fail("VNDK version is not defined")

12345678910>>...80