/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/java/com/google/devtools/artifactregistry/v1/ |
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 …]
|
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 …]
|
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()
|
/external/pigweed/pw_build/py/ |
D | create_python_tree_test.py | 25 from pw_build.python_package import PythonPackage 161 pkg1 = PythonPackage.from_dict( 209 pkg2 = PythonPackage.from_dict( 406 package = PythonPackage.from_dict(**package_definition) 467 package1 = PythonPackage.from_dict(**pkg1) 468 package2 = PythonPackage.from_dict(**pkg2)
|
/external/google-cloud-java/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/getpythonpackage/ |
D | AsyncGetPythonPackage.java | 23 import com.google.devtools.artifactregistry.v1.PythonPackage; 46 ApiFuture<PythonPackage> future = in asyncGetPythonPackage() 49 PythonPackage response = future.get(); in asyncGetPythonPackage()
|
D | SyncGetPythonPackagePythonpackagename.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 39 PythonPackage response = artifactRegistryClient.getPythonPackage(name); in syncGetPythonPackagePythonpackagename()
|
D | SyncGetPythonPackageString.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 40 PythonPackage response = artifactRegistryClient.getPythonPackage(name); in syncGetPythonPackageString()
|
D | SyncGetPythonPackage.java | 22 import com.google.devtools.artifactregistry.v1.PythonPackage; 45 PythonPackage response = artifactRegistryClient.getPythonPackage(request); in syncGetPythonPackage()
|
/external/google-cloud-java/java-artifact-registry/samples/snippets/generated/com/google/devtools/artifactregistry/v1/artifactregistry/listpythonpackages/ |
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()
|
D | SyncListPythonPackagesRepositoryname.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 38 for (PythonPackage element : artifactRegistryClient.listPythonPackages(parent).iterateAll()) { in syncListPythonPackagesRepositoryname()
|
D | SyncListPythonPackagesString.java | 21 import com.google.devtools.artifactregistry.v1.PythonPackage; 38 for (PythonPackage element : artifactRegistryClient.listPythonPackages(parent).iterateAll()) { in syncListPythonPackagesString()
|
D | SyncListPythonPackages.java | 22 import com.google.devtools.artifactregistry.v1.PythonPackage; 44 for (PythonPackage element : in syncListPythonPackages()
|
D | AsyncListPythonPackagesPaged.java | 24 import com.google.devtools.artifactregistry.v1.PythonPackage; 49 for (PythonPackage element : response.getPythonPackagesList()) { in asyncListPythonPackagesPaged()
|
/external/pigweed/pw_build/py/pw_build/ |
D | generate_python_wheel.py | 24 from pw_build.python_package import PythonPackage 28 from python_package import PythonPackage # type: ignore 65 pkg = PythonPackage(
|
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))
|
D | create_python_tree.py | 31 PythonPackage, 43 PythonPackage, 228 python_packages: Iterable[PythonPackage], argument 330 pkg: PythonPackage, build_base: Path, include_tests: bool = False argument 372 python_packages: Iterable[PythonPackage], argument
|
/external/google-cloud-java/java-cloudbuild/proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/ |
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 …]
|
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()
|
/external/grpc-grpc/tools/run_tests/artifacts/ |
D | package_targets.py | 142 class PythonPackage: class 191 PythonPackage(),
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/run_tests/artifacts/ |
D | package_targets.py | 129 class PythonPackage: class 175 PythonPackage(),
|
/external/chromiumos-config/go/src/go.chromium.org/chromiumos/config/go/api/test/harness/tauto/v1/ |
D | tauto.pb.go | 95 …PythonPackage string `protobuf:"bytes,1,opt,name=python_package,json=pythonPackage,proto3" json:"p… member 137 return x.PythonPackage
|
/external/googleapis/google/devtools/artifactregistry/v1/ |
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"
|
/external/google-cloud-java/java-artifact-registry/proto-google-cloud-artifact-registry-v1/src/main/proto/google/devtools/artifactregistry/v1/ |
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"
|
/external/google-cloud-java/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ |
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 …]
|
/external/google-cloud-java/java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ |
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>
|