Home
last modified time | relevance | path

Searched full:database (Results 1 – 25 of 3817) sorted by relevance

12345678910>>...153

/external/timezone-boundary-builder/
DDATA_LICENSE1 Open Database License (ODbL) v1.0
10 A plain language summary of the Open Database License is available.
15 ODC Open Database License (ODbL)
17 The Open Database License (ODbL) is a license agreement intended to
18 allow users to freely share, modify, and use this Database while
23 the ODbL is also an agreement in contract for users of this Database to
24 act in certain ways in return for accessing this Database.
27 audiovisual material, and sounds all in the same database, for example),
28 and so the ODbL only governs the rights over the Database, and not the
29 contents of the Database individually. Licensors should use the ODbL
[all …]
DLICENSE12 Open Database License (ODbL) v1.0
21 A plain language summary of the Open Database License is available.
26 ODC Open Database License (ODbL)
28 The Open Database License (ODbL) is a license agreement intended to
29 allow users to freely share, modify, and use this Database while
34 the ODbL is also an agreement in contract for users of this Database to
35 act in certain ways in return for accessing this Database.
38 audiovisual material, and sounds all in the same database, for example),
39 and so the ODbL only governs the rights over the Database, and not the
40 contents of the Database individually. Licensors should use the ODbL
[all …]
/external/googleapis/google/spanner/admin/database/v1/
Dspanner_database_admin.proto17 package google.spanner.admin.database.v1;
29 import "google/spanner/admin/database/v1/backup.proto";
30 import "google/spanner/admin/database/v1/common.proto";
32 option csharp_namespace = "Google.Cloud.Spanner.Admin.Database.V1";
33 option go_package = "cloud.google.com/go/spanner/admin/database/apiv1/databasepb;databasepb";
36 option java_package = "com.google.spanner.admin.database.v1";
37 option php_namespace = "Google\\Cloud\\Spanner\\Admin\\Database\\V1";
38 option ruby_package = "Google::Cloud::Spanner::Admin::Database::V1";
44 // Cloud Spanner Database Admin API
46 // The Cloud Spanner Database Admin API can be used to:
[all …]
Dspanner_admin_database_grpc_service_config.json6 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
10 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
14 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
18 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
22 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
26 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
30 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
34 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
38 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
42 "service": "google.spanner.admin.database.v1.DatabaseAdmin",
[all …]
Dbackup.proto17 package google.spanner.admin.database.v1;
24 import "google/spanner/admin/database/v1/common.proto";
26 option csharp_namespace = "Google.Cloud.Spanner.Admin.Database.V1";
27 option go_package = "cloud.google.com/go/spanner/admin/database/apiv1/databasepb;databasepb";
30 option java_package = "com.google.spanner.admin.database.v1";
31 option php_namespace = "Google\\Cloud\\Spanner\\Admin\\Database\\V1";
32 option ruby_package = "Google::Cloud::Spanner::Admin::Database::V1";
34 // A backup of a Cloud Spanner database.
54 …// Required for the [CreateBackup][google.spanner.admin.database.v1.DatabaseAdmin.CreateBackup] op…
55 // Name of the database from which this backup was
[all …]
/external/pigweed/pw_tokenizer/
Dtoken_databases.rst10 file can be used as a token database, but it only contains the strings for its
11 exact build. A token database file aggregates tokens from multiple ELF files, so
12 that a single database can decode tokenized strings from any known ELF.
18 Token database formats
20 Three token database formats are supported: CSV, binary, and directory. Tokens
24 CSV database format
26 The CSV database format has three columns: the token in hexadecimal, the removal
31 This example database contains six strings, three of which have removal dates.
42 Binary database format
44 The binary database format is comprised of a 16-byte header followed by a series
[all …]
Ddatabase.gni19 # Updates a tokenized string database in the source tree with artifacts from one
20 # or more targets. Other database files may also be used.
22 # The database file must exist. A CSV or binary database can be created with the
23 # pw/pw_tokenizer/database.py tool. An empty CSV database file can be also
27 # database: if updating a database, path to an existing database in the source
28 # tree; optional if creating a database, but may provide an output
31 # create: if specified, create a database instead of updating one; 'create'
32 # must be set to one of the supported database types: "csv" or "binary"
41 # input_databases: paths to other database files from which to add tokens
42 # deps: GN targets to build prior to generating the database; artifacts from
[all …]
Ddatabase.cmake19 # generated token database for a given ELF file using pw_tokenizer/database.py.
21 # Produces the ${NAME} token database.
28 # CREATE - Create a database. Must be set to one of the supported database
30 # DATABASE - If updating a database, path to an existing database in the
31 # source tree; optional if creating a database, but may provide an output
34 # DEPS - CMake targets to build prior to generating the database; artifacts
35 # from these targets are NOT implicitly used for database generation.
47 DATABASE
56 message(FATAL_ERROR "pw_tokenizer_database requires a `database` "
87 COMMENT "Generating the ${_database} token database"
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DSQLiteDatabaseTest.java3 import static android.database.sqlite.SQLiteDatabase.OPEN_READWRITE;
9 import android.database.Cursor;
10 import android.database.sqlite.SQLiteDatabase;
11 import android.database.sqlite.SQLiteException;
12 import android.database.sqlite.SQLiteGlobal;
28 private SQLiteDatabase database; field in SQLiteDatabaseTest
35 databasePath = ApplicationProvider.getApplicationContext().getDatabasePath("database.db"); in setUp()
38 database = openOrCreateDatabase(databasePath); in setUp()
39 database.execSQL( in setUp()
48 database.execSQL( in setUp()
[all …]
DSQLiteStatementTest.java6 import android.database.Cursor;
7 import android.database.sqlite.SQLiteDatabase;
8 import android.database.sqlite.SQLiteDoneException;
9 import android.database.sqlite.SQLiteStatement;
20 private SQLiteDatabase database; field in SQLiteStatementTest
27 database = SQLiteDatabase.openOrCreateDatabase(databasePath.getPath(), null); in setUp()
29 database.compileStatement( in setUp()
35 database.compileStatement( in setUp()
43 database.close(); in tearDown()
49 database.compileStatement("INSERT INTO `routine` (`name` ,`lastUsed` ) VALUES (?,?)"); in testExecuteInsert()
[all …]
DSQLiteOpenHelperTest.java7 import android.database.Cursor;
8 import android.database.sqlite.SQLiteDatabase;
9 import android.database.sqlite.SQLiteDatabase.CursorFactory;
10 import android.database.sqlite.SQLiteOpenHelper;
36 SQLiteDatabase database = helper.getReadableDatabase(); in testConstructorWithNullPathShouldCreateInMemoryDatabase() local
37 assertDatabaseOpened(database, helper); in testConstructorWithNullPathShouldCreateInMemoryDatabase()
38 assertInitialDB(database, helper); in testConstructorWithNullPathShouldCreateInMemoryDatabase()
44 SQLiteDatabase database = helper.getReadableDatabase(); in testInitialGetReadableDatabase() local
45 assertInitialDB(database, helper); in testInitialGetReadableDatabase()
52 SQLiteDatabase database = helper.getReadableDatabase(); in testSubsequentGetReadableDatabase() local
[all …]
/external/python/google-api-python-client/docs/dyn/
Dfirebasedatabase_v1beta.projects.locations.instances.html75 <h1><a href="firebasedatabase_v1beta.html">Firebase Realtime Database Management API</a> . <a href=…
85 …30 days. The default database cannot be deleted. IDs for deleted database instances may never be r…
88 …e">Disables a DatabaseInstance. The database can be re-enabled later using ReenableDatabaseInstanc…
94 …e returned in no particular order, but will be a consistent view of the database instances when ad…
100 <p class="firstline">Enables a DatabaseInstance. The database must have been disabled previously us…
112 …parent: string, The parent project for which to create a database instance, in the form: `projects…
116 …ealtime Database instance. Details on interacting with contents of a DatabaseInstance can be found…
117 …databaseUrl&quot;: &quot;A String&quot;, # Immutable. The globally unique hostname of the database.
118 …ied resource name of the database instance, in the form: `projects/{project-number}/locations/{loc…
120 &quot;state&quot;: &quot;A String&quot;, # The database&#x27;s lifecycle state. Read-only.
[all …]
Dsqladmin_v1beta4.databases.html81 <code><a href="#delete">delete(project, instance, database, x__xgafv=None)</a></code></p>
82 <p class="firstline">Deletes a database from a Cloud SQL instance.</p>
84 <code><a href="#get">get(project, instance, database, x__xgafv=None)</a></code></p>
85 <p class="firstline">Retrieves a resource containing information about a database inside a Cloud SQ…
88 <p class="firstline">Inserts a resource containing information about a database inside a Cloud SQL …
93 <code><a href="#patch">patch(project, instance, database, body=None, x__xgafv=None)</a></code></p>
94 <p class="firstline">Partially updates a resource containing information about a database inside a …
96 …<code><a href="#update">update(project, instance, database, body=None, x__xgafv=None)</a></code></…
97 <p class="firstline">Updates a resource containing information about a database inside a Cloud SQL …
105 <code class="details" id="delete">delete(project, instance, database, x__xgafv=None)</code>
[all …]
Dsqladmin_v1.databases.html81 <code><a href="#delete">delete(project, instance, database, x__xgafv=None)</a></code></p>
82 <p class="firstline">Deletes a database from a Cloud SQL instance.</p>
84 <code><a href="#get">get(project, instance, database, x__xgafv=None)</a></code></p>
85 <p class="firstline">Retrieves a resource containing information about a database inside a Cloud SQ…
88 <p class="firstline">Inserts a resource containing information about a database inside a Cloud SQL …
93 <code><a href="#patch">patch(project, instance, database, body=None, x__xgafv=None)</a></code></p>
94 <p class="firstline">Partially updates a resource containing information about a database inside a …
96 …<code><a href="#update">update(project, instance, database, body=None, x__xgafv=None)</a></code></…
97 <p class="firstline">Updates a resource containing information about a database inside a Cloud SQL …
105 <code class="details" id="delete">delete(project, instance, database, x__xgafv=None)</code>
[all …]
/external/autotest/frontend/
Ddb_router.py5 """Django database Router
7 Django gets configured with three database connections in frontend/settings.py.
8 - The default database
9 - This database should be used for most things.
10 - For the main, this is the global database.
11 - For shards, this this is the shard-local database.
12 - The global database
13 - For the main, this is the same database as default, which is the global
14 database.
15 - For the shards, this is the global database (the same as for the main).
[all …]
/external/googleapis/google/cloud/sql/v1/
Dcloud_sql_databases.proto37 // Deletes a database from a Cloud SQL instance.
40 delete: "/v1/projects/{project}/instances/{instance}/databases/{database}"
44 // Retrieves a resource containing information about a database inside a Cloud
46 rpc Get(SqlDatabasesGetRequest) returns (Database) {
48 get: "/v1/projects/{project}/instances/{instance}/databases/{database}"
52 // Inserts a resource containing information about a database inside a Cloud
70 // Partially updates a resource containing information about a database inside
74 patch: "/v1/projects/{project}/instances/{instance}/databases/{database}"
79 // Updates a resource containing information about a database inside a Cloud
83 put: "/v1/projects/{project}/instances/{instance}/databases/{database}"
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/database/src/test/java/com/google/android/exoplayer2/database/
DVersionTableTest.java16 package com.google.android.exoplayer2.database;
20 import android.database.sqlite.SQLiteDatabase;
37 private SQLiteDatabase database; field in VersionTableTest
42 database = databaseProvider.getWritableDatabase(); in setUp()
47 int version = VersionTable.getVersion(database, FEATURE_1, INSTANCE_1); in getVersion_unsetFeature_returnsVersionUnset()
53 VersionTable.setVersion(database, FEATURE_1, INSTANCE_1, 1); in getVersion_unsetVersion_returnsVersionUnset()
54 int version = VersionTable.getVersion(database, FEATURE_1, INSTANCE_2); in getVersion_unsetVersion_returnsVersionUnset()
60 VersionTable.setVersion(database, FEATURE_1, INSTANCE_1, 1); in getVersion_returnsSetVersion()
61 assertThat(VersionTable.getVersion(database, FEATURE_1, INSTANCE_1)).isEqualTo(1); in getVersion_returnsSetVersion()
63 VersionTable.setVersion(database, FEATURE_1, INSTANCE_1, 2); in getVersion_returnsSetVersion()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/database/src/test/java/com/google/android/exoplayer2/database/
DVersionTableTest.java16 package com.google.android.exoplayer2.database;
20 import android.database.sqlite.SQLiteDatabase;
37 private SQLiteDatabase database; field in VersionTableTest
42 database = databaseProvider.getWritableDatabase(); in setUp()
47 int version = VersionTable.getVersion(database, FEATURE_1, INSTANCE_1); in getVersion_unsetFeature_returnsVersionUnset()
53 VersionTable.setVersion(database, FEATURE_1, INSTANCE_1, 1); in getVersion_unsetVersion_returnsVersionUnset()
54 int version = VersionTable.getVersion(database, FEATURE_1, INSTANCE_2); in getVersion_unsetVersion_returnsVersionUnset()
60 VersionTable.setVersion(database, FEATURE_1, INSTANCE_1, 1); in getVersion_returnsSetVersion()
61 assertThat(VersionTable.getVersion(database, FEATURE_1, INSTANCE_1)).isEqualTo(1); in getVersion_returnsSetVersion()
63 VersionTable.setVersion(database, FEATURE_1, INSTANCE_1, 2); in getVersion_returnsSetVersion()
[all …]
/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Ddatabase.py107 def _database_from_elf(elf, domain: Pattern[str]) -> tokens.Database:
116 return tokens.Database(_read_tokenized_entries(section_data, domain))
118 return tokens.Database([])
151 def _database_from_strings(strings: list[str]) -> tokens.Database:
152 """Generates a C and C++ compatible database from untokenized strings."""
153 # Generate a C-compatible database from the fixed length hash.
154 c_db = tokens.Database.from_strings(strings, tokenize=tokens.c_hash)
156 # Generate a C++ compatible database by allowing the hash to follow the
158 cpp_db = tokens.Database.from_strings(
163 return tokens.Database.merged(c_db, cpp_db)
[all …]
/external/robolectric/integration_tests/ctesque/src/sharedTest/java/android/database/
DSQLiteDatabaseTest.java1 package android.database;
9 import android.database.sqlite.SQLiteConstraintException;
10 import android.database.sqlite.SQLiteDatabase;
11 import android.database.sqlite.SQLiteException;
31 /** Compatibility test for {@link android.database.sqlite.SQLiteDatabase} */
36 private SQLiteDatabase database; field in SQLiteDatabaseTest
41 databasePath = ApplicationProvider.getApplicationContext().getDatabasePath("database.db"); in setUp()
44 database = SQLiteDatabase.openOrCreateDatabase(databasePath, null); in setUp()
45 database.execSQL( in setUp()
57 database.close(); in tearDown()
[all …]
/external/selinux/libsepol/cil/src/
Dcil_binary.h42 * @param[in] db The cil database.
43 * @param[in] pdb The policy database.
58 * @param[in] db The cil database.
59 * @param[in] pdb The policy database.
68 * @param[in] pdb The policy database to insert the common into.
79 * @param[in] pdb The policy database to insert the class into.
89 * @param[in] pdb The policy database to insert the role into.
99 * @param[in] pdb The policy database to insert the roletype into.
100 * @param[in] db The cil database
110 * @param[in] pdb The policy database to insert the type into.
[all …]
/external/googleapis/google/firestore/admin/v1/
Ddatabase.proto33 // A Cloud Firestore Database.
34 message Database { message
36 type: "firestore.googleapis.com/Database"
37 pattern: "projects/{project}/databases/{database}"
41 // The type of the database.
45 // Mode changes are only allowed if the database is empty.
47 // The default value. This value is used if the database type is omitted.
106 // If an App Engine application exists in the same region as this database,
107 // App Engine configuration will impact this database. This includes
108 // disabling of the application & database, as well as disabling writes to
[all …]
/external/google-cloud-java/java-biglake/proto-google-cloud-biglake-v1/src/main/java/com/google/cloud/bigquery/biglake/v1/
DDatabaseName.java34 "projects/{project}/locations/{location}/catalogs/{catalog}/databases/{database}");
39 private final String database; field in DatabaseName
46 database = null; in DatabaseName()
53 database = Preconditions.checkNotNull(builder.getDatabase()); in DatabaseName()
69 return database; in getDatabase()
80 public static DatabaseName of(String project, String location, String catalog, String database) { in of() argument
85 .setDatabase(database) in of()
89 public static String format(String project, String location, String catalog, String database) { in format() argument
94 .setDatabase(database) in format()
110 matchMap.get("database")); in parse()
[all …]
/external/google-cloud-java/java-biglake/proto-google-cloud-biglake-v1alpha1/src/main/java/com/google/cloud/bigquery/biglake/v1alpha1/
DDatabaseName.java34 "projects/{project}/locations/{location}/catalogs/{catalog}/databases/{database}");
39 private final String database; field in DatabaseName
46 database = null; in DatabaseName()
53 database = Preconditions.checkNotNull(builder.getDatabase()); in DatabaseName()
69 return database; in getDatabase()
80 public static DatabaseName of(String project, String location, String catalog, String database) { in of() argument
85 .setDatabase(database) in of()
89 public static String format(String project, String location, String catalog, String database) { in format() argument
94 .setDatabase(database) in format()
110 matchMap.get("database")); in parse()
[all …]
/external/cronet/net/extras/sqlite/
Dsqlite_persistent_store_backend_base.h25 class Database; variable
31 // This class handles the initialization and closing of a SQLite database. It
36 // - methods to load the data from the database, which should call
37 // InitializeDatabase() from the background thread to ensure the database has
40 // which will be called in the course of initializing the database,
47 // pending operations to the database,
57 // Posts a task to flush pending operations to the database in the background.
61 // Commit any pending operations and close the database. This must be called
73 // non-null. If |enable_exclusive_access| is true then the sqlite3 database
86 // Initialize the database. Should be called on background thread. Call this
[all …]

12345678910>>...153