Home
last modified time | relevance | path

Searched full:repository (Results 1 – 25 of 5972) sorted by relevance

12345678910>>...239

/external/googleapis/google/devtools/artifactregistry/v1/
Drepository.proto37 // Artifact policy configuration for the repository contents.
42 // A reference to the repository resource, for example:
44 string repository = 2 [(google.api.resource_reference) = { field
45 type: "artifactregistry.googleapis.com/Repository"
100 // Artifact policy configuration for repository cleanup policies.
130 // Virtual repository configuration.
133 // Repository. Upstream policies cannot be set on a standard repository.
137 // Remote repository configuration.
139 // The credentials to access the remote repository.
143 // The username to access the remote repository.
[all …]
/external/dokka/.idea/
DjarRepositories.xml4 <remote-repository>
6 <option name="name" value="Maven Central repository" />
8 </remote-repository>
9 <remote-repository>
11 <option name="name" value="JBoss Community repository" />
12 <option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
13 </remote-repository>
14 <remote-repository>
17 …<option name="url" value="https://teamcity.jetbrains.com/guestAuth/repository/download/Kotlin_dev_…
18 </remote-repository>
[all …]
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/resource/loader/
DStringResourceLoader.java45 * resources to the repository that is used by the resource loader instance.
48 * Note that 'repository.class' is not necessary;
55 …* resource.loader.string.repository.name = MyRepositoryName (optional, to avoid using the default
56 …* resource.loader.string.repository.class = org.apache.velocity.runtime.resource.loader.StringReso…
58 * Resources can be added to the repository like this:
70 * you should consider specifying a 'resource.loader.string.repository.name = foo'
71 * property in order to keep you string resources in a non-default repository.
74 * You can then retrieve your named repository like this:
81 * to have your string repository stored statically as a class member, then you
82 * should set 'resource.loader.string.repository.static = false' in your properties.
[all …]
/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/
Drepository.proto32 // A Repository for storing artifacts with a specific format.
33 message Repository { message
35 type: "artifactregistry.googleapis.com/Repository"
36 pattern: "projects/{project}/locations/{location}/repositories/{repository}"
39 // MavenRepositoryConfig is maven related repository details.
43 // VersionPolicy is the version policy for the repository.
50 // RELEASE - repository will accept only Release versions.
53 // SNAPSHOT - repository will accept only Snapshot versions.
57 // The repository with this flag will allow publishing
89 // Repository-specific configurations.
[all …]
/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/proto/google/devtools/artifactregistry/v1beta2/
Drepository.proto32 // A Repository for storing artifacts with a specific format.
33 message Repository { message
35 type: "artifactregistry.googleapis.com/Repository"
36 pattern: "projects/{project}/locations/{location}/repositories/{repository}"
39 // MavenRepositoryConfig is maven related repository details.
43 // VersionPolicy is the version policy for the repository.
50 // RELEASE - repository will accept only Release versions.
53 // SNAPSHOT - repository will accept only Snapshot versions.
57 // The repository with this flag will allow publishing
89 // Repository-specific configurations.
[all …]
/external/googleapis/google/devtools/artifactregistry/v1beta2/
Drepository.proto32 // A Repository for storing artifacts with a specific format.
33 message Repository { message
35 type: "artifactregistry.googleapis.com/Repository"
36 pattern: "projects/{project}/locations/{location}/repositories/{repository}"
39 // MavenRepositoryConfig is maven related repository details.
43 // VersionPolicy is the version policy for the repository.
50 // RELEASE - repository will accept only Release versions.
53 // SNAPSHOT - repository will accept only Snapshot versions.
57 // The repository with this flag will allow publishing
89 // Repository-specific configurations.
[all …]
/external/bazelbuild-rules_rust/crate_universe/src/utils/starlark/
Dlabel.rs17 repository: Repository,
24 pub(crate) enum Repository { enum
40 pub(crate) fn repository(&self) -> Option<&Repository> { in repository() argument
43 Label::Absolute { repository, .. } => Some(repository), in repository()
71 let (repository, is_absolute) = match (cap.get(1), cap.get(2).is_some()) { in from_str()
72 (Some(repository), is_absolute) => match *repository.as_str().as_bytes() { in from_str()
74 Some(Repository::Canonical(repository.as_str()[2..].to_owned())), in from_str()
78 Some(Repository::Explicit(repository.as_str()[1..].to_owned())), in from_str()
83 (None, true) => (Some(Repository::Local), true), in from_str()
91 match repository { in from_str()
[all …]
/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/
DRepository.java17 // source: google/devtools/artifactregistry/v1/repository.proto
25 * A Repository for storing artifacts with a specific format.
28 * Protobuf type {@code google.devtools.artifactregistry.v1.Repository}
30 public final class Repository extends com.google.protobuf.GeneratedMessageV3 class
32 // @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1.Repository)
35 // Use Repository.newBuilder() to construct.
36 private Repository(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Repository() method in Repository
40 private Repository() { in Repository() method in Repository
50 return new Repository(); in newInstance()
80 com.google.devtools.artifactregistry.v1.Repository.class, in internalGetFieldAccessorTable()
[all …]
DRepositoryName.java34 "projects/{project}/locations/{location}/repositories/{repository}");
38 private final String repository; field in RepositoryName
44 repository = null; in RepositoryName()
50 repository = Preconditions.checkNotNull(builder.getRepository()); in RepositoryName()
62 return repository; in getRepository()
73 public static RepositoryName of(String project, String location, String repository) { in of() argument
74 return newBuilder().setProject(project).setLocation(location).setRepository(repository).build(); in of()
77 public static String format(String project, String location, String repository) { in format() argument
81 .setRepository(repository) in format()
93 return of(matchMap.get("project"), matchMap.get("location"), matchMap.get("repository")); in parse()
[all …]
DRepositoryOrBuilder.java17 // source: google/devtools/artifactregistry/v1/repository.proto
23 // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1.Repository)
30 * Maven repository config contains repository level configuration
34 * <code>.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig maven_config = 9;
44 * Maven repository config contains repository level configuration
48 * <code>.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig maven_config = 9;
53 com.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig getMavenConfig(); in getMavenConfig()
58 * Maven repository config contains repository level configuration
62 * <code>.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig maven_config = 9;
65 com.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfigOrBuilder
[all …]
/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1beta2/src/main/java/com/google/devtools/artifactregistry/v1beta2/
DRepository.java17 // source: google/devtools/artifactregistry/v1beta2/repository.proto
25 * A Repository for storing artifacts with a specific format.
28 * Protobuf type {@code google.devtools.artifactregistry.v1beta2.Repository}
30 public final class Repository extends com.google.protobuf.GeneratedMessageV3 class
32 …// @@protoc_insertion_point(message_implements:google.devtools.artifactregistry.v1beta2.Repository)
35 // Use Repository.newBuilder() to construct.
36 private Repository(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Repository() method in Repository
40 private Repository() { in Repository() method in Repository
50 return new Repository(); in newInstance()
80 com.google.devtools.artifactregistry.v1beta2.Repository.class, in internalGetFieldAccessorTable()
[all …]
DRepositoryName.java34 "projects/{project}/locations/{location}/repositories/{repository}");
38 private final String repository; field in RepositoryName
44 repository = null; in RepositoryName()
50 repository = Preconditions.checkNotNull(builder.getRepository()); in RepositoryName()
62 return repository; in getRepository()
73 public static RepositoryName of(String project, String location, String repository) { in of() argument
74 return newBuilder().setProject(project).setLocation(location).setRepository(repository).build(); in of()
77 public static String format(String project, String location, String repository) { in format() argument
81 .setRepository(repository) in format()
93 return of(matchMap.get("project"), matchMap.get("location"), matchMap.get("repository")); in parse()
[all …]
DRepositoryOrBuilder.java17 // source: google/devtools/artifactregistry/v1beta2/repository.proto
23 … // @@protoc_insertion_point(interface_extends:google.devtools.artifactregistry.v1beta2.Repository)
30 * Maven repository config contains repository level configuration
35 * .google.devtools.artifactregistry.v1beta2.Repository.MavenRepositoryConfig maven_config = 9;
45 * Maven repository config contains repository level configuration
50 * .google.devtools.artifactregistry.v1beta2.Repository.MavenRepositoryConfig maven_config = 9;
55 com.google.devtools.artifactregistry.v1beta2.Repository.MavenRepositoryConfig getMavenConfig(); in getMavenConfig()
60 * Maven repository config contains repository level configuration
65 * .google.devtools.artifactregistry.v1beta2.Repository.MavenRepositoryConfig maven_config = 9;
68 com.google.devtools.artifactregistry.v1beta2.Repository.MavenRepositoryConfigOrBuilder
[all …]
/external/python/cpython3/Lib/distutils/
Dconfig.py27 repository = None variable in PyPIRCCommand
31 ('repository=', 'r',
32 "url of repository [default: %s]" % \
54 repository = self.repository or self.DEFAULT_REPOSITORY
78 for key, default in (('repository',
87 # work around people having "repository" for the "pypi"
91 repository in (self.DEFAULT_REPOSITORY, 'pypi')):
92 current['repository'] = self.DEFAULT_REPOSITORY
95 if (current['server'] == repository or
96 current['repository'] == repository):
[all …]
/external/python/setuptools/setuptools/_distutils/
Dconfig.py26 repository = None variable in PyPIRCCommand
30 ('repository=', 'r',
31 "url of repository [default: %s]" % \
53 repository = self.repository or self.DEFAULT_REPOSITORY
77 for key, default in (('repository',
86 # work around people having "repository" for the "pypi"
90 repository in (self.DEFAULT_REPOSITORY, 'pypi')):
91 current['repository'] = self.DEFAULT_REPOSITORY
94 if (current['server'] == repository or
95 current['repository'] == repository):
[all …]
/external/oss-fuzz/infra/build/functions/
Dproject_sync_test.py39 class Repository: class
40 """Mocking Github Repository."""
50 """"Get contents of repository."""
209 repo = Repository('oss-fuzz', 'dir', 'projects', [
210 Repository('test0', 'dir', 'projects/test0', [
211 Repository('Dockerfile', 'file', 'projects/test0/Dockerfile'),
212 Repository('project.yaml', 'file', 'projects/test0/project.yaml')
214 Repository('test1', 'dir', 'projects/test1', [
215 Repository('Dockerfile', 'file', 'projects/test1/Dockerfile'),
216 Repository('project.yaml', 'file', 'projects/test1/project.yaml')
[all …]
/external/google-cloud-java/java-dataform/proto-google-cloud-dataform-v1beta1/src/main/java/com/google/cloud/dataform/v1beta1/
DRepositoryName.java34 "projects/{project}/locations/{location}/repositories/{repository}");
38 private final String repository; field in RepositoryName
44 repository = null; in RepositoryName()
50 repository = Preconditions.checkNotNull(builder.getRepository()); in RepositoryName()
62 return repository; in getRepository()
73 public static RepositoryName of(String project, String location, String repository) { in of() argument
74 return newBuilder().setProject(project).setLocation(location).setRepository(repository).build(); in of()
77 public static String format(String project, String location, String repository) { in format() argument
81 .setRepository(repository) in format()
93 return of(matchMap.get("project"), matchMap.get("location"), matchMap.get("repository")); in parse()
[all …]
DRepository.java25 * Represents a Dataform Git repository.
28 * Protobuf type {@code google.cloud.dataform.v1beta1.Repository}
30 public final class Repository extends com.google.protobuf.GeneratedMessageV3 class
32 // @@protoc_insertion_point(message_implements:google.cloud.dataform.v1beta1.Repository)
35 // Use Repository.newBuilder() to construct.
36 private Repository(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Repository() method in Repository
40 private Repository() { in Repository() method in Repository
47 return new Repository(); in newInstance()
66 com.google.cloud.dataform.v1beta1.Repository.class, in internalGetFieldAccessorTable()
67 com.google.cloud.dataform.v1beta1.Repository.Builder.class); in internalGetFieldAccessorTable()
[all …]
/external/google-cloud-java/java-dataform/proto-google-cloud-dataform-v1alpha2/src/main/java/com/google/cloud/dataform/v1alpha2/
DRepositoryName.java34 "projects/{project}/locations/{location}/repositories/{repository}");
38 private final String repository; field in RepositoryName
44 repository = null; in RepositoryName()
50 repository = Preconditions.checkNotNull(builder.getRepository()); in RepositoryName()
62 return repository; in getRepository()
73 public static RepositoryName of(String project, String location, String repository) { in of() argument
74 return newBuilder().setProject(project).setLocation(location).setRepository(repository).build(); in of()
77 public static String format(String project, String location, String repository) { in format() argument
81 .setRepository(repository) in format()
93 return of(matchMap.get("project"), matchMap.get("location"), matchMap.get("repository")); in parse()
[all …]
DRepository.java25 * Represents a Dataform Git repository.
28 * Protobuf type {@code google.cloud.dataform.v1alpha2.Repository}
30 public final class Repository extends com.google.protobuf.GeneratedMessageV3 class
32 // @@protoc_insertion_point(message_implements:google.cloud.dataform.v1alpha2.Repository)
35 // Use Repository.newBuilder() to construct.
36 private Repository(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Repository() method in Repository
40 private Repository() { in Repository() method in Repository
47 return new Repository(); in newInstance()
66 com.google.cloud.dataform.v1alpha2.Repository.class, in internalGetFieldAccessorTable()
67 com.google.cloud.dataform.v1alpha2.Repository.Builder.class); in internalGetFieldAccessorTable()
[all …]
/external/aws-sdk-java-v2/docs/design/services/dynamodb/high-level-library/archive/20200103/prototype/option-2/sync/
DPrototype.java47 …* This should return every repository that will not result in {@code client.repository(...)} throw…
60 * Retrieve a {@link DocumentRepository} based on the provided repository name/id.
62 …The {@link DocumentRepository} is used to directly interact with entities in the remote repository.
63 …* See {@link #mappedRepository(Class)} for a way of interacting with the repository using Java obj…
65 * If the repository does not exist, an exception is thrown.
70 * DocumentRepository repository = client.repository("my-table");
71 * assert repository.name().equals("my-table");
73 * System.out.println("The requested repository does not exist: " + e.getMessage());
78 DocumentRepository repository(String repositoryId) throws NoSuchRepositoryException; in repository() method
81 * Retrieve a {@link DocumentRepository} based on the provided repository name/id.
[all …]
/external/cronet/build/fuchsia/test/
Dserve_repo.py5 """Implements commands for serving a TUF repository."""
20 """Stop serving a repository."""
24 cmd=['target', 'repository', 'deregister', '-r', repo_name],
27 run_ffx_command(cmd=['repository', 'remove', repo_name], check=False)
28 run_ffx_command(cmd=['repository', 'server', 'stop'], check=False)
33 """Start serving a repository to a target device.
36 repo_dir: directory the repository is served from.
37 repo_name: repository name.
38 target: Fuchsia device the repository is served to.
41 run_ffx_command(cmd=('config', 'set', 'repository.server.mode', '\"ffx\"'))
[all …]
/external/angle/build/fuchsia/test/
Dserve_repo.py5 """Implements commands for serving a TUF repository."""
20 """Stop serving a repository."""
24 cmd=['target', 'repository', 'deregister', '-r', repo_name],
27 run_ffx_command(cmd=['repository', 'remove', repo_name], check=False)
28 run_ffx_command(cmd=['repository', 'server', 'stop'], check=False)
33 """Start serving a repository to a target device.
36 repo_dir: directory the repository is served from.
37 repo_name: repository name.
38 target: Fuchsia device the repository is served to.
41 run_ffx_command(cmd=('config', 'set', 'repository.server.mode', '\"ffx\"'))
[all …]
/external/vulkan-validation-layers/
DBUILD.md3 Instructions for building this repository on Linux, Windows, Android, and
8 1. [Contributing](#contributing-to-the-repository)
9 1. [Repository Content](#repository-content)
10 1. [Repository Set-Up](#repository-set-up)
16 ## Contributing to the Repository
19 your contribution in a fork of this repository in your GitHub account and then
21 in this repository for more details.
23 ## Repository Content
25 This repository contains the source code necessary to build the Vulkan
40 ## Repository Set-Up
[all …]
/external/google-cloud-java/java-cloudbuild/proto-google-cloud-build-v2/src/main/java/com/google/cloudbuild/v2/
DBatchCreateRepositoriesResponse.java74 private java.util.List<com.google.cloudbuild.v2.Repository> repositories_;
79 * Repository resources created.
82 * <code>repeated .google.devtools.cloudbuild.v2.Repository repositories = 1;</code>
85 public java.util.List<com.google.cloudbuild.v2.Repository> getRepositoriesList() { in getRepositoriesList()
92 * Repository resources created.
95 * <code>repeated .google.devtools.cloudbuild.v2.Repository repositories = 1;</code>
106 * Repository resources created.
109 * <code>repeated .google.devtools.cloudbuild.v2.Repository repositories = 1;</code>
119 * Repository resources created.
122 * <code>repeated .google.devtools.cloudbuild.v2.Repository repositories = 1;</code>
[all …]

12345678910>>...239