Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ public final ListDatasetsPagedResponse listDatasets(ListDatasetsRequest request)
* while (true) {
* ListDatasetsResponse response =
* dataLabelingServiceClient.listDatasetsCallable().call(request);
* for (Dataset element : response.getResponsesList()) {
* for (Dataset element : response.getDatasetsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -1325,7 +1325,7 @@ public final ListDataItemsPagedResponse listDataItems(ListDataItemsRequest reque
* while (true) {
* ListDataItemsResponse response =
* dataLabelingServiceClient.listDataItemsCallable().call(request);
* for (DataItem element : response.getResponsesList()) {
* for (DataItem element : response.getDataItemsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -1599,7 +1599,7 @@ public final ListAnnotatedDatasetsPagedResponse listAnnotatedDatasets(
* while (true) {
* ListAnnotatedDatasetsResponse response =
* dataLabelingServiceClient.listAnnotatedDatasetsCallable().call(request);
* for (AnnotatedDataset element : response.getResponsesList()) {
* for (AnnotatedDataset element : response.getAnnotatedDatasetsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2410,7 +2410,7 @@ public final ListExamplesPagedResponse listExamples(ListExamplesRequest request)
* while (true) {
* ListExamplesResponse response =
* dataLabelingServiceClient.listExamplesCallable().call(request);
* for (Example element : response.getResponsesList()) {
* for (Example element : response.getExamplesList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2795,7 +2795,7 @@ public final ListAnnotationSpecSetsPagedResponse listAnnotationSpecSets(
* while (true) {
* ListAnnotationSpecSetsResponse response =
* dataLabelingServiceClient.listAnnotationSpecSetsCallable().call(request);
* for (AnnotationSpecSet element : response.getResponsesList()) {
* for (AnnotationSpecSet element : response.getAnnotationSpecSetsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -3296,7 +3296,7 @@ public final ListInstructionsPagedResponse listInstructions(ListInstructionsRequ
* while (true) {
* ListInstructionsResponse response =
* dataLabelingServiceClient.listInstructionsCallable().call(request);
* for (Instruction element : response.getResponsesList()) {
* for (Instruction element : response.getInstructionsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -3725,7 +3725,7 @@ public final SearchEvaluationsPagedResponse searchEvaluations(SearchEvaluationsR
* while (true) {
* SearchEvaluationsResponse response =
* dataLabelingServiceClient.searchEvaluationsCallable().call(request);
* for (Evaluation element : response.getResponsesList()) {
* for (Evaluation element : response.getEvaluationsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -3895,7 +3895,7 @@ public final SearchExampleComparisonsPagedResponse searchExampleComparisons(
* SearchExampleComparisonsResponse response =
* dataLabelingServiceClient.searchExampleComparisonsCallable().call(request);
* for (SearchExampleComparisonsResponse.ExampleComparison element :
* response.getResponsesList()) {
* response.getExampleComparisonsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -4705,7 +4705,7 @@ public final ListEvaluationJobsPagedResponse listEvaluationJobs(
* while (true) {
* ListEvaluationJobsResponse response =
* dataLabelingServiceClient.listEvaluationJobsCallable().call(request);
* for (EvaluationJob element : response.getResponsesList()) {
* for (EvaluationJob element : response.getEvaluationJobsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down