/aosp_15_r20/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ |
H A D | PythonPackage.java | 30 public final class PythonPackage extends com.google.protobuf.GeneratedMessageV3 class 36 private PythonPackage(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in PythonPackage() method in PythonPackage 40 private PythonPackage() { in PythonPackage() method in PythonPackage 50 return new PythonPackage(); in newInstance() 69 com.google.devtools.artifactregistry.v1.PythonPackage.class, in internalGetFieldAccessorTable() 70 com.google.devtools.artifactregistry.v1.PythonPackage.Builder.class); in internalGetFieldAccessorTable() 464 if (!(obj instanceof com.google.devtools.artifactregistry.v1.PythonPackage)) { in equals() 467 com.google.devtools.artifactregistry.v1.PythonPackage other = in equals() 468 (com.google.devtools.artifactregistry.v1.PythonPackage) obj; in equals() 514 public static com.google.devtools.artifactregistry.v1.PythonPackage parseFrom( in parseFrom() [all …]
|
H A D | ListPythonPackagesResponse.java | 74 private java.util.List<com.google.devtools.artifactregistry.v1.PythonPackage> pythonPackages_; 85 public java.util.List<com.google.devtools.artifactregistry.v1.PythonPackage> 126 public com.google.devtools.artifactregistry.v1.PythonPackage getPythonPackages(int index) { in getPythonPackages() 584 com.google.devtools.artifactregistry.v1.PythonPackage m = in mergeFrom() 586 com.google.devtools.artifactregistry.v1.PythonPackage.parser(), in mergeFrom() 621 private java.util.List<com.google.devtools.artifactregistry.v1.PythonPackage> pythonPackages_ = 627 new java.util.ArrayList<com.google.devtools.artifactregistry.v1.PythonPackage>( in ensurePythonPackagesIsMutable() 634 com.google.devtools.artifactregistry.v1.PythonPackage, 635 com.google.devtools.artifactregistry.v1.PythonPackage.Builder, 648 public java.util.List<com.google.devtools.artifactregistry.v1.PythonPackage> [all …]
|
H A D | ListPythonPackagesResponseOrBuilder.java | 35 java.util.List<com.google.devtools.artifactregistry.v1.PythonPackage> getPythonPackagesList(); in getPythonPackagesList() 45 com.google.devtools.artifactregistry.v1.PythonPackage getPythonPackages(int index); in getPythonPackages()
|
/aosp_15_r20/external/google-cloud-java/java-cloudbuild/proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/ |
H A D | Artifacts.java | 3088 public static final class PythonPackage extends com.google.protobuf.GeneratedMessageV3 class in Artifacts 3094 private PythonPackage(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in PythonPackage() method in Artifacts.PythonPackage 3098 private PythonPackage() { in PythonPackage() method in Artifacts.PythonPackage 3106 return new PythonPackage(); in newInstance() 3125 com.google.cloudbuild.v1.Artifacts.PythonPackage.class, in internalGetFieldAccessorTable() 3126 com.google.cloudbuild.v1.Artifacts.PythonPackage.Builder.class); in internalGetFieldAccessorTable() 3307 if (!(obj instanceof com.google.cloudbuild.v1.Artifacts.PythonPackage)) { in equals() 3310 com.google.cloudbuild.v1.Artifacts.PythonPackage other = in equals() 3311 (com.google.cloudbuild.v1.Artifacts.PythonPackage) obj; in equals() 3337 public static com.google.cloudbuild.v1.Artifacts.PythonPackage parseFrom( in parseFrom() [all …]
|
H A D | ArtifactsOrBuilder.java | 248 java.util.List<com.google.cloudbuild.v1.Artifacts.PythonPackage> getPythonPackagesList(); in getPythonPackagesList() 262 com.google.cloudbuild.v1.Artifacts.PythonPackage getPythonPackages(int index); in getPythonPackages()
|
/aosp_15_r20/external/pigweed/pw_build/py/pw_build/ |
H A D | python_package.py | 90 class PythonPackage: class 102 def from_dict(**kwargs) -> PythonPackage: 110 return PythonPackage(**transformed_kwargs) 292 ) -> list[PythonPackage]: 307 packages.append(PythonPackage.from_dict(**json_dict))
|
H A D | create_python_tree.py | 31 PythonPackage, 40 PythonPackage, 222 python_packages: Iterable[PythonPackage], argument 324 pkg: PythonPackage, build_base: Path, include_tests: bool = False argument 366 python_packages: Iterable[PythonPackage], argument
|
H A D | generate_python_wheel.py | 24 from pw_build.python_package import PythonPackage 28 from python_package import PythonPackage # type: ignore 65 pkg = PythonPackage(
|
/aosp_15_r20/external/pigweed/pw_build/py/ |
H A D | create_python_tree_test.py | 25 from pw_build.python_package import PythonPackage 156 pkg1 = PythonPackage.from_dict( 204 pkg2 = PythonPackage.from_dict( 401 package = PythonPackage.from_dict(**package_definition)
|
/aosp_15_r20/external/google-cloud-java/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/ |
H A D | AsyncGetPythonPackage.java | 23 import com.google.devtools.artifactregistry.v1.PythonPackage; 46 ApiFuture<PythonPackage> future = in asyncGetPythonPackage() 49 PythonPackage response = future.get(); in asyncGetPythonPackage()
|
H A D | SyncGetPythonPackagePythonpackagename.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 39 PythonPackage response = artifactRegistryClient.getPythonPackage(name); in syncGetPythonPackagePythonpackagename()
|
H A D | SyncGetPythonPackageString.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 40 PythonPackage response = artifactRegistryClient.getPythonPackage(name); in syncGetPythonPackageString()
|
H A D | SyncGetPythonPackage.java | 22 import com.google.devtools.artifactregistry.v1.PythonPackage; 45 PythonPackage response = artifactRegistryClient.getPythonPackage(request); in syncGetPythonPackage()
|
/aosp_15_r20/external/google-cloud-java/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/ |
H A D | AsyncListPythonPackages.java | 23 import com.google.devtools.artifactregistry.v1.PythonPackage; 45 ApiFuture<PythonPackage> future = in asyncListPythonPackages() 48 for (PythonPackage element : future.get().iterateAll()) { in asyncListPythonPackages()
|
H A D | SyncListPythonPackagesString.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 38 for (PythonPackage element : artifactRegistryClient.listPythonPackages(parent).iterateAll()) { in syncListPythonPackagesString()
|
H A D | SyncListPythonPackagesRepositoryname.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 38 for (PythonPackage element : artifactRegistryClient.listPythonPackages(parent).iterateAll()) { in syncListPythonPackagesRepositoryname()
|
H A D | SyncListPythonPackages.java | 22 import com.google.devtools.artifactregistry.v1.PythonPackage; 44 for (PythonPackage element : in syncListPythonPackages()
|
H A D | AsyncListPythonPackagesPaged.java | 24 import com.google.devtools.artifactregistry.v1.PythonPackage; 49 for (PythonPackage element : response.getPythonPackagesList()) { in asyncListPythonPackagesPaged()
|
/aosp_15_r20/external/google-cloud-java/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ |
H A D | ArtifactRegistryClient.java | 1239 public final PythonPackage getPythonPackage(PythonPackageName name) { in getPythonPackage() 1268 public final PythonPackage getPythonPackage(String name) { in getPythonPackage() 1300 public final PythonPackage getPythonPackage(GetPythonPackageRequest request) { in getPythonPackage() 1331 public final UnaryCallable<GetPythonPackageRequest, PythonPackage> getPythonPackageCallable() { in getPythonPackageCallable() 4685 PythonPackage, 4690 PageContext<ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage> context, in createAsync() 4709 PythonPackage, 4713 PageContext<ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage> context, in ListPythonPackagesPage() 4724 PageContext<ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage> context, in createPage() 4731 PageContext<ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage> context, in createPageAsync() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/ |
H A D | artifact.proto | 280 // PythonPackage represents a python artifact. 281 message PythonPackage { message 283 type: "artifactregistry.googleapis.com/PythonPackage" 325 child_type: "artifactregistry.googleapis.com/PythonPackage" 339 repeated PythonPackage python_packages = 1; 352 type: "artifactregistry.googleapis.com/PythonPackage"
|
/aosp_15_r20/external/googleapis/google/devtools/artifactregistry/v1/ |
H A D | artifact.proto | 280 // PythonPackage represents a python artifact. 281 message PythonPackage { message 283 type: "artifactregistry.googleapis.com/PythonPackage" 325 child_type: "artifactregistry.googleapis.com/PythonPackage" 339 repeated PythonPackage python_packages = 1; 352 type: "artifactregistry.googleapis.com/PythonPackage"
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/run_tests/artifacts/ |
D | package_targets.py | 129 class PythonPackage: class 175 PythonPackage(),
|
/aosp_15_r20/external/grpc-grpc/tools/run_tests/artifacts/ |
H A D | package_targets.py | 142 class PythonPackage: class 191 PythonPackage(),
|
/aosp_15_r20/external/google-cloud-java/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ |
H A D | ArtifactRegistryStubSettings.java | 115 import com.google.devtools.artifactregistry.v1.PythonPackage; 198 private final UnaryCallSettings<GetPythonPackageRequest, PythonPackage> getPythonPackageSettings; 376 ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage> 379 ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage>() { 408 public Iterable<PythonPackage> extractResources(ListPythonPackagesResponse payload) { 410 ? ImmutableList.<PythonPackage>of() 704 PageContext<ListPythonPackagesRequest, ListPythonPackagesResponse, PythonPackage> 859 public UnaryCallSettings<GetPythonPackageRequest, PythonPackage> getPythonPackageSettings() { in getPythonPackageSettings() 1229 private final UnaryCallSettings.Builder<GetPythonPackageRequest, PythonPackage> 1930 public UnaryCallSettings.Builder<GetPythonPackageRequest, PythonPackage>
|
/aosp_15_r20/external/google-cloud-java/java-artifact-registry/google-cloud-artifact-registry/src/test/java/com/google/devtools/artifactregistry/v1/ |
H A D | ArtifactRegistryClientHttpJsonTest.java | 685 PythonPackage responsesElement = PythonPackage.newBuilder().build(); in listPythonPackagesTest() 697 List<PythonPackage> resources = Lists.newArrayList(pagedListResponse.iterateAll()); in listPythonPackagesTest() 735 PythonPackage responsesElement = PythonPackage.newBuilder().build(); in listPythonPackagesTest2() 747 List<PythonPackage> resources = Lists.newArrayList(pagedListResponse.iterateAll()); in listPythonPackagesTest2() 785 PythonPackage expectedResponse = in getPythonPackageTest() 786 PythonPackage.newBuilder() in getPythonPackageTest() 801 PythonPackage actualResponse = client.getPythonPackage(name); in getPythonPackageTest() 838 PythonPackage expectedResponse = in getPythonPackageTest2() 839 PythonPackage.newBuilder() in getPythonPackageTest2() 854 PythonPackage actualResponse = client.getPythonPackage(name); in getPythonPackageTest2()
|