From 4aa935becd8af9c112ecef37fb1e9045a4abef90 Mon Sep 17 00:00:00 2001 From: radcheb Date: Fri, 16 Oct 2020 16:27:26 +0200 Subject: [PATCH] fix(frontend): fix parsing large workflow graph. Fixes #4179 (#4180) * frontend: add large pipeline example to mocked data * add util function decodeCompressedNodes * decode compressedNodes in workflow if node is empty and compressedNodes exit * fix decodeCompressedNodes * prettify code * Frontend:test Utils decodeCompressedNodes * test RunDetails page render compressed grah * add util function decodeCompressedNodes * Frontend:test Utils decodeCompressedNodes * test RunDetails page render compressed grah * reformat code * update jest snapshot to add compressed node case * fix tests * reformat code * update RunDetails snapshot * remove dupplicate test code * RunDetails: remove compressedNodes after decoding it * reformat decodeCompressedNodes + add failure case test * decodeCompressedNodes returns undefined on error * RunDetails decodeCompressedNodes test: snapshot same as single node graph * do not wait for decodeCompressedNodes + debug print workflow * fix Run load + refresh snapshot * format code * Fix one-node compressed workflow graph + update snapshot * reformat code * rename large pipeline name * fix decompressNodes to work in browser * fix test * fix tests * remove some of the console.log * clean code * address comments * address comments: wait for zlib instead of mocking decodeCompressedNodes * address comments: decodeCompressedNodes reject in case of error + catch error on run load * address comments --- frontend/mock-backend/fixed-data.ts | 27 + frontend/mock-backend/large-graph-runtime.ts | 12660 +++++++++++++++++ frontend/src/lib/Utils.test.ts | 21 + frontend/src/lib/Utils.tsx | 18 + frontend/src/pages/RunDetails.test.tsx | 45 +- frontend/src/pages/RunDetails.tsx | 21 +- 6 files changed, 12788 insertions(+), 4 deletions(-) create mode 100644 frontend/mock-backend/large-graph-runtime.ts diff --git a/frontend/mock-backend/fixed-data.ts b/frontend/mock-backend/fixed-data.ts index 604f3d013f1b..0ecbc07773ab 100644 --- a/frontend/mock-backend/fixed-data.ts +++ b/frontend/mock-backend/fixed-data.ts @@ -22,6 +22,7 @@ import jsonRun from './json-runtime'; import coinflipRun from './mock-coinflip-runtime'; import errorRun from './mock-error-runtime'; import xgboostRun from './mock-xgboost-runtime'; +import largeGraph from './large-graph-runtime'; import retryRun from './mock-retry-runtime'; function padStartTwoZeroes(str: string): string { @@ -641,6 +642,32 @@ const runs: ApiRunDetail[] = [ status: 'Succeeded', }, }, + { + pipeline_runtime: { + workflow_manifest: JSON.stringify(largeGraph), + }, + run: { + created_at: new Date('2020-07-08T10:03:37.000Z'), + description: 'large pipelien with a lot of nodes.', + finished_at: new Date('2020-07-08T10:39:43.000Z'), + id: '808ecf03-ee3b-48c6-9fa1-5f14ad11a3f8', + name: 'Very large graph', + pipeline_spec: { + workflow_manifest: JSON.stringify(largeGraph), + }, + resource_references: [ + { + key: { + id: 'a4d4f8c6-ce9c-4200-a92e-c48ec759b733', + type: ApiResourceType.EXPERIMENT, + }, + relationship: ApiRelationship.OWNER, + }, + ], + scheduled_at: new Date('1970-01-01T00:00:00.000Z'), + status: 'Succeeded', + }, + }, { pipeline_runtime: { workflow_manifest: JSON.stringify(retryRun), diff --git a/frontend/mock-backend/large-graph-runtime.ts b/frontend/mock-backend/large-graph-runtime.ts new file mode 100644 index 000000000000..61e06255d621 --- /dev/null +++ b/frontend/mock-backend/large-graph-runtime.ts @@ -0,0 +1,12660 @@ +// Copyright 2018 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// tslint:disable:object-literal-sort-keys +export default { + metadata: { + name: 'huge-pipeline-q5cwl', + generateName: 'huge-pipeline-', + namespace: 'kubeflow', + selfLink: '/apis/argoproj.io/v1alpha1/namespaces/kubeflow/workflows/huge-pipeline-q5cwl', + uid: '4a1883ea-c102-11ea-b8f2-0ab0445c4d24', + resourceVersion: '57295965', + generation: 1460, + creationTimestamp: '2020-07-08T10:03:36Z', + labels: { + 'pipeline/runid': '808ecf03-ee3b-48c6-9fa1-5f14ad11a3f8', + 'pipelines.kubeflow.org/kfp_sdk_version': '0.5.1', + 'workflows.argoproj.io/completed': 'true', + 'workflows.argoproj.io/phase': 'Succeeded', + }, + annotations: { + 'pipelines.kubeflow.org/kfp_sdk_version': '0.5.1', + 'pipelines.kubeflow.org/pipeline_compilation_time': '2020-07-08T10:03:30.910623', + 'pipelines.kubeflow.org/pipeline_spec': '{"name": "huge pipeline"}', + 'pipelines.kubeflow.org/run_name': 'test_pipeline 2020-07-08 10-03-30', + }, + }, + spec: { + templates: [ + { + name: 'huge-pipeline', + inputs: {}, + outputs: {}, + metadata: {}, + dag: { + tasks: [ + { name: 'some-func', template: 'some-func', arguments: {} }, + { + name: 'some-func-10', + template: 'some-func-10', + arguments: {}, + dependencies: ['some-func-9'], + }, + { + name: 'some-func-100', + template: 'some-func-100', + arguments: {}, + dependencies: ['some-func-99'], + }, + { + name: 'some-func-101', + template: 'some-func-101', + arguments: {}, + dependencies: ['some-func-100'], + }, + { + name: 'some-func-102', + template: 'some-func-102', + arguments: {}, + dependencies: ['some-func-101'], + }, + { + name: 'some-func-103', + template: 'some-func-103', + arguments: {}, + dependencies: ['some-func-102'], + }, + { + name: 'some-func-104', + template: 'some-func-104', + arguments: {}, + dependencies: ['some-func-103'], + }, + { + name: 'some-func-105', + template: 'some-func-105', + arguments: {}, + dependencies: ['some-func-104'], + }, + { + name: 'some-func-106', + template: 'some-func-106', + arguments: {}, + dependencies: ['some-func-105'], + }, + { + name: 'some-func-107', + template: 'some-func-107', + arguments: {}, + dependencies: ['some-func-106'], + }, + { + name: 'some-func-108', + template: 'some-func-108', + arguments: {}, + dependencies: ['some-func-107'], + }, + { + name: 'some-func-109', + template: 'some-func-109', + arguments: {}, + dependencies: ['some-func-108'], + }, + { + name: 'some-func-11', + template: 'some-func-11', + arguments: {}, + dependencies: ['some-func-10'], + }, + { + name: 'some-func-110', + template: 'some-func-110', + arguments: {}, + dependencies: ['some-func-109'], + }, + { + name: 'some-func-111', + template: 'some-func-111', + arguments: {}, + dependencies: ['some-func-110'], + }, + { + name: 'some-func-112', + template: 'some-func-112', + arguments: {}, + dependencies: ['some-func-111'], + }, + { + name: 'some-func-113', + template: 'some-func-113', + arguments: {}, + dependencies: ['some-func-112'], + }, + { + name: 'some-func-114', + template: 'some-func-114', + arguments: {}, + dependencies: ['some-func-113'], + }, + { + name: 'some-func-115', + template: 'some-func-115', + arguments: {}, + dependencies: ['some-func-114'], + }, + { + name: 'some-func-116', + template: 'some-func-116', + arguments: {}, + dependencies: ['some-func-115'], + }, + { + name: 'some-func-117', + template: 'some-func-117', + arguments: {}, + dependencies: ['some-func-116'], + }, + { + name: 'some-func-118', + template: 'some-func-118', + arguments: {}, + dependencies: ['some-func-117'], + }, + { + name: 'some-func-119', + template: 'some-func-119', + arguments: {}, + dependencies: ['some-func-118'], + }, + { + name: 'some-func-12', + template: 'some-func-12', + arguments: {}, + dependencies: ['some-func-11'], + }, + { + name: 'some-func-120', + template: 'some-func-120', + arguments: {}, + dependencies: ['some-func-119'], + }, + { + name: 'some-func-121', + template: 'some-func-121', + arguments: {}, + dependencies: ['some-func-120'], + }, + { + name: 'some-func-122', + template: 'some-func-122', + arguments: {}, + dependencies: ['some-func-121'], + }, + { + name: 'some-func-123', + template: 'some-func-123', + arguments: {}, + dependencies: ['some-func-122'], + }, + { + name: 'some-func-124', + template: 'some-func-124', + arguments: {}, + dependencies: ['some-func-123'], + }, + { + name: 'some-func-125', + template: 'some-func-125', + arguments: {}, + dependencies: ['some-func-124'], + }, + { + name: 'some-func-126', + template: 'some-func-126', + arguments: {}, + dependencies: ['some-func-125'], + }, + { + name: 'some-func-127', + template: 'some-func-127', + arguments: {}, + dependencies: ['some-func-126'], + }, + { + name: 'some-func-128', + template: 'some-func-128', + arguments: {}, + dependencies: ['some-func-127'], + }, + { + name: 'some-func-129', + template: 'some-func-129', + arguments: {}, + dependencies: ['some-func-128'], + }, + { + name: 'some-func-13', + template: 'some-func-13', + arguments: {}, + dependencies: ['some-func-12'], + }, + { + name: 'some-func-130', + template: 'some-func-130', + arguments: {}, + dependencies: ['some-func-129'], + }, + { + name: 'some-func-131', + template: 'some-func-131', + arguments: {}, + dependencies: ['some-func-130'], + }, + { + name: 'some-func-132', + template: 'some-func-132', + arguments: {}, + dependencies: ['some-func-131'], + }, + { + name: 'some-func-133', + template: 'some-func-133', + arguments: {}, + dependencies: ['some-func-132'], + }, + { + name: 'some-func-134', + template: 'some-func-134', + arguments: {}, + dependencies: ['some-func-133'], + }, + { + name: 'some-func-135', + template: 'some-func-135', + arguments: {}, + dependencies: ['some-func-134'], + }, + { + name: 'some-func-136', + template: 'some-func-136', + arguments: {}, + dependencies: ['some-func-135'], + }, + { + name: 'some-func-137', + template: 'some-func-137', + arguments: {}, + dependencies: ['some-func-136'], + }, + { + name: 'some-func-138', + template: 'some-func-138', + arguments: {}, + dependencies: ['some-func-137'], + }, + { + name: 'some-func-139', + template: 'some-func-139', + arguments: {}, + dependencies: ['some-func-138'], + }, + { + name: 'some-func-14', + template: 'some-func-14', + arguments: {}, + dependencies: ['some-func-13'], + }, + { + name: 'some-func-140', + template: 'some-func-140', + arguments: {}, + dependencies: ['some-func-139'], + }, + { + name: 'some-func-141', + template: 'some-func-141', + arguments: {}, + dependencies: ['some-func-140'], + }, + { + name: 'some-func-142', + template: 'some-func-142', + arguments: {}, + dependencies: ['some-func-141'], + }, + { + name: 'some-func-143', + template: 'some-func-143', + arguments: {}, + dependencies: ['some-func-142'], + }, + { + name: 'some-func-144', + template: 'some-func-144', + arguments: {}, + dependencies: ['some-func-143'], + }, + { + name: 'some-func-145', + template: 'some-func-145', + arguments: {}, + dependencies: ['some-func-144'], + }, + { + name: 'some-func-146', + template: 'some-func-146', + arguments: {}, + dependencies: ['some-func-145'], + }, + { + name: 'some-func-147', + template: 'some-func-147', + arguments: {}, + dependencies: ['some-func-146'], + }, + { + name: 'some-func-148', + template: 'some-func-148', + arguments: {}, + dependencies: ['some-func-147'], + }, + { + name: 'some-func-149', + template: 'some-func-149', + arguments: {}, + dependencies: ['some-func-148'], + }, + { + name: 'some-func-15', + template: 'some-func-15', + arguments: {}, + dependencies: ['some-func-14'], + }, + { + name: 'some-func-150', + template: 'some-func-150', + arguments: {}, + dependencies: ['some-func-149'], + }, + { + name: 'some-func-151', + template: 'some-func-151', + arguments: {}, + dependencies: ['some-func-150'], + }, + { + name: 'some-func-152', + template: 'some-func-152', + arguments: {}, + dependencies: ['some-func-151'], + }, + { + name: 'some-func-153', + template: 'some-func-153', + arguments: {}, + dependencies: ['some-func-152'], + }, + { + name: 'some-func-154', + template: 'some-func-154', + arguments: {}, + dependencies: ['some-func-153'], + }, + { + name: 'some-func-155', + template: 'some-func-155', + arguments: {}, + dependencies: ['some-func-154'], + }, + { + name: 'some-func-156', + template: 'some-func-156', + arguments: {}, + dependencies: ['some-func-155'], + }, + { + name: 'some-func-157', + template: 'some-func-157', + arguments: {}, + dependencies: ['some-func-156'], + }, + { + name: 'some-func-158', + template: 'some-func-158', + arguments: {}, + dependencies: ['some-func-157'], + }, + { + name: 'some-func-159', + template: 'some-func-159', + arguments: {}, + dependencies: ['some-func-158'], + }, + { + name: 'some-func-16', + template: 'some-func-16', + arguments: {}, + dependencies: ['some-func-15'], + }, + { + name: 'some-func-160', + template: 'some-func-160', + arguments: {}, + dependencies: ['some-func-159'], + }, + { + name: 'some-func-161', + template: 'some-func-161', + arguments: {}, + dependencies: ['some-func-160'], + }, + { + name: 'some-func-162', + template: 'some-func-162', + arguments: {}, + dependencies: ['some-func-161'], + }, + { + name: 'some-func-163', + template: 'some-func-163', + arguments: {}, + dependencies: ['some-func-162'], + }, + { + name: 'some-func-164', + template: 'some-func-164', + arguments: {}, + dependencies: ['some-func-163'], + }, + { + name: 'some-func-165', + template: 'some-func-165', + arguments: {}, + dependencies: ['some-func-164'], + }, + { + name: 'some-func-166', + template: 'some-func-166', + arguments: {}, + dependencies: ['some-func-165'], + }, + { + name: 'some-func-167', + template: 'some-func-167', + arguments: {}, + dependencies: ['some-func-166'], + }, + { + name: 'some-func-168', + template: 'some-func-168', + arguments: {}, + dependencies: ['some-func-167'], + }, + { + name: 'some-func-169', + template: 'some-func-169', + arguments: {}, + dependencies: ['some-func-168'], + }, + { + name: 'some-func-17', + template: 'some-func-17', + arguments: {}, + dependencies: ['some-func-16'], + }, + { + name: 'some-func-170', + template: 'some-func-170', + arguments: {}, + dependencies: ['some-func-169'], + }, + { + name: 'some-func-171', + template: 'some-func-171', + arguments: {}, + dependencies: ['some-func-170'], + }, + { + name: 'some-func-172', + template: 'some-func-172', + arguments: {}, + dependencies: ['some-func-171'], + }, + { + name: 'some-func-173', + template: 'some-func-173', + arguments: {}, + dependencies: ['some-func-172'], + }, + { + name: 'some-func-174', + template: 'some-func-174', + arguments: {}, + dependencies: ['some-func-173'], + }, + { + name: 'some-func-175', + template: 'some-func-175', + arguments: {}, + dependencies: ['some-func-174'], + }, + { + name: 'some-func-176', + template: 'some-func-176', + arguments: {}, + dependencies: ['some-func-175'], + }, + { + name: 'some-func-177', + template: 'some-func-177', + arguments: {}, + dependencies: ['some-func-176'], + }, + { + name: 'some-func-178', + template: 'some-func-178', + arguments: {}, + dependencies: ['some-func-177'], + }, + { + name: 'some-func-179', + template: 'some-func-179', + arguments: {}, + dependencies: ['some-func-178'], + }, + { + name: 'some-func-18', + template: 'some-func-18', + arguments: {}, + dependencies: ['some-func-17'], + }, + { + name: 'some-func-180', + template: 'some-func-180', + arguments: {}, + dependencies: ['some-func-179'], + }, + { + name: 'some-func-181', + template: 'some-func-181', + arguments: {}, + dependencies: ['some-func-180'], + }, + { + name: 'some-func-182', + template: 'some-func-182', + arguments: {}, + dependencies: ['some-func-181'], + }, + { + name: 'some-func-183', + template: 'some-func-183', + arguments: {}, + dependencies: ['some-func-182'], + }, + { + name: 'some-func-184', + template: 'some-func-184', + arguments: {}, + dependencies: ['some-func-183'], + }, + { + name: 'some-func-185', + template: 'some-func-185', + arguments: {}, + dependencies: ['some-func-184'], + }, + { + name: 'some-func-186', + template: 'some-func-186', + arguments: {}, + dependencies: ['some-func-185'], + }, + { + name: 'some-func-187', + template: 'some-func-187', + arguments: {}, + dependencies: ['some-func-186'], + }, + { + name: 'some-func-188', + template: 'some-func-188', + arguments: {}, + dependencies: ['some-func-187'], + }, + { + name: 'some-func-189', + template: 'some-func-189', + arguments: {}, + dependencies: ['some-func-188'], + }, + { + name: 'some-func-19', + template: 'some-func-19', + arguments: {}, + dependencies: ['some-func-18'], + }, + { + name: 'some-func-190', + template: 'some-func-190', + arguments: {}, + dependencies: ['some-func-189'], + }, + { + name: 'some-func-191', + template: 'some-func-191', + arguments: {}, + dependencies: ['some-func-190'], + }, + { + name: 'some-func-192', + template: 'some-func-192', + arguments: {}, + dependencies: ['some-func-191'], + }, + { + name: 'some-func-193', + template: 'some-func-193', + arguments: {}, + dependencies: ['some-func-192'], + }, + { + name: 'some-func-194', + template: 'some-func-194', + arguments: {}, + dependencies: ['some-func-193'], + }, + { + name: 'some-func-195', + template: 'some-func-195', + arguments: {}, + dependencies: ['some-func-194'], + }, + { + name: 'some-func-196', + template: 'some-func-196', + arguments: {}, + dependencies: ['some-func-195'], + }, + { + name: 'some-func-197', + template: 'some-func-197', + arguments: {}, + dependencies: ['some-func-196'], + }, + { + name: 'some-func-198', + template: 'some-func-198', + arguments: {}, + dependencies: ['some-func-197'], + }, + { + name: 'some-func-199', + template: 'some-func-199', + arguments: {}, + dependencies: ['some-func-198'], + }, + { + name: 'some-func-2', + template: 'some-func-2', + arguments: {}, + dependencies: ['some-func'], + }, + { + name: 'some-func-20', + template: 'some-func-20', + arguments: {}, + dependencies: ['some-func-19'], + }, + { + name: 'some-func-200', + template: 'some-func-200', + arguments: {}, + dependencies: ['some-func-199'], + }, + { + name: 'some-func-201', + template: 'some-func-201', + arguments: {}, + dependencies: ['some-func-200'], + }, + { + name: 'some-func-202', + template: 'some-func-202', + arguments: {}, + dependencies: ['some-func-201'], + }, + { + name: 'some-func-203', + template: 'some-func-203', + arguments: {}, + dependencies: ['some-func-202'], + }, + { + name: 'some-func-204', + template: 'some-func-204', + arguments: {}, + dependencies: ['some-func-203'], + }, + { + name: 'some-func-205', + template: 'some-func-205', + arguments: {}, + dependencies: ['some-func-204'], + }, + { + name: 'some-func-206', + template: 'some-func-206', + arguments: {}, + dependencies: ['some-func-205'], + }, + { + name: 'some-func-207', + template: 'some-func-207', + arguments: {}, + dependencies: ['some-func-206'], + }, + { + name: 'some-func-208', + template: 'some-func-208', + arguments: {}, + dependencies: ['some-func-207'], + }, + { + name: 'some-func-209', + template: 'some-func-209', + arguments: {}, + dependencies: ['some-func-208'], + }, + { + name: 'some-func-21', + template: 'some-func-21', + arguments: {}, + dependencies: ['some-func-20'], + }, + { + name: 'some-func-210', + template: 'some-func-210', + arguments: {}, + dependencies: ['some-func-209'], + }, + { + name: 'some-func-211', + template: 'some-func-211', + arguments: {}, + dependencies: ['some-func-210'], + }, + { + name: 'some-func-212', + template: 'some-func-212', + arguments: {}, + dependencies: ['some-func-211'], + }, + { + name: 'some-func-213', + template: 'some-func-213', + arguments: {}, + dependencies: ['some-func-212'], + }, + { + name: 'some-func-214', + template: 'some-func-214', + arguments: {}, + dependencies: ['some-func-213'], + }, + { + name: 'some-func-215', + template: 'some-func-215', + arguments: {}, + dependencies: ['some-func-214'], + }, + { + name: 'some-func-216', + template: 'some-func-216', + arguments: {}, + dependencies: ['some-func-215'], + }, + { + name: 'some-func-217', + template: 'some-func-217', + arguments: {}, + dependencies: ['some-func-216'], + }, + { + name: 'some-func-218', + template: 'some-func-218', + arguments: {}, + dependencies: ['some-func-217'], + }, + { + name: 'some-func-219', + template: 'some-func-219', + arguments: {}, + dependencies: ['some-func-218'], + }, + { + name: 'some-func-22', + template: 'some-func-22', + arguments: {}, + dependencies: ['some-func-21'], + }, + { + name: 'some-func-220', + template: 'some-func-220', + arguments: {}, + dependencies: ['some-func-219'], + }, + { + name: 'some-func-221', + template: 'some-func-221', + arguments: {}, + dependencies: ['some-func-220'], + }, + { + name: 'some-func-222', + template: 'some-func-222', + arguments: {}, + dependencies: ['some-func-221'], + }, + { + name: 'some-func-223', + template: 'some-func-223', + arguments: {}, + dependencies: ['some-func-222'], + }, + { + name: 'some-func-224', + template: 'some-func-224', + arguments: {}, + dependencies: ['some-func-223'], + }, + { + name: 'some-func-225', + template: 'some-func-225', + arguments: {}, + dependencies: ['some-func-224'], + }, + { + name: 'some-func-226', + template: 'some-func-226', + arguments: {}, + dependencies: ['some-func-225'], + }, + { + name: 'some-func-227', + template: 'some-func-227', + arguments: {}, + dependencies: ['some-func-226'], + }, + { + name: 'some-func-228', + template: 'some-func-228', + arguments: {}, + dependencies: ['some-func-227'], + }, + { + name: 'some-func-229', + template: 'some-func-229', + arguments: {}, + dependencies: ['some-func-228'], + }, + { + name: 'some-func-23', + template: 'some-func-23', + arguments: {}, + dependencies: ['some-func-22'], + }, + { + name: 'some-func-230', + template: 'some-func-230', + arguments: {}, + dependencies: ['some-func-229'], + }, + { + name: 'some-func-231', + template: 'some-func-231', + arguments: {}, + dependencies: ['some-func-230'], + }, + { + name: 'some-func-232', + template: 'some-func-232', + arguments: {}, + dependencies: ['some-func-231'], + }, + { + name: 'some-func-233', + template: 'some-func-233', + arguments: {}, + dependencies: ['some-func-232'], + }, + { + name: 'some-func-234', + template: 'some-func-234', + arguments: {}, + dependencies: ['some-func-233'], + }, + { + name: 'some-func-235', + template: 'some-func-235', + arguments: {}, + dependencies: ['some-func-234'], + }, + { + name: 'some-func-236', + template: 'some-func-236', + arguments: {}, + dependencies: ['some-func-235'], + }, + { + name: 'some-func-237', + template: 'some-func-237', + arguments: {}, + dependencies: ['some-func-236'], + }, + { + name: 'some-func-238', + template: 'some-func-238', + arguments: {}, + dependencies: ['some-func-237'], + }, + { + name: 'some-func-239', + template: 'some-func-239', + arguments: {}, + dependencies: ['some-func-238'], + }, + { + name: 'some-func-24', + template: 'some-func-24', + arguments: {}, + dependencies: ['some-func-23'], + }, + { + name: 'some-func-240', + template: 'some-func-240', + arguments: {}, + dependencies: ['some-func-239'], + }, + { + name: 'some-func-241', + template: 'some-func-241', + arguments: {}, + dependencies: ['some-func-240'], + }, + { + name: 'some-func-242', + template: 'some-func-242', + arguments: {}, + dependencies: ['some-func-241'], + }, + { + name: 'some-func-243', + template: 'some-func-243', + arguments: {}, + dependencies: ['some-func-242'], + }, + { + name: 'some-func-244', + template: 'some-func-244', + arguments: {}, + dependencies: ['some-func-243'], + }, + { + name: 'some-func-245', + template: 'some-func-245', + arguments: {}, + dependencies: ['some-func-244'], + }, + { + name: 'some-func-246', + template: 'some-func-246', + arguments: {}, + dependencies: ['some-func-245'], + }, + { + name: 'some-func-247', + template: 'some-func-247', + arguments: {}, + dependencies: ['some-func-246'], + }, + { + name: 'some-func-248', + template: 'some-func-248', + arguments: {}, + dependencies: ['some-func-247'], + }, + { + name: 'some-func-249', + template: 'some-func-249', + arguments: {}, + dependencies: ['some-func-248'], + }, + { + name: 'some-func-25', + template: 'some-func-25', + arguments: {}, + dependencies: ['some-func-24'], + }, + { + name: 'some-func-250', + template: 'some-func-250', + arguments: {}, + dependencies: ['some-func-249'], + }, + { + name: 'some-func-251', + template: 'some-func-251', + arguments: {}, + dependencies: ['some-func-250'], + }, + { + name: 'some-func-252', + template: 'some-func-252', + arguments: {}, + dependencies: ['some-func-251'], + }, + { + name: 'some-func-253', + template: 'some-func-253', + arguments: {}, + dependencies: ['some-func-252'], + }, + { + name: 'some-func-254', + template: 'some-func-254', + arguments: {}, + dependencies: ['some-func-253'], + }, + { + name: 'some-func-255', + template: 'some-func-255', + arguments: {}, + dependencies: ['some-func-254'], + }, + { + name: 'some-func-256', + template: 'some-func-256', + arguments: {}, + dependencies: ['some-func-255'], + }, + { + name: 'some-func-257', + template: 'some-func-257', + arguments: {}, + dependencies: ['some-func-256'], + }, + { + name: 'some-func-258', + template: 'some-func-258', + arguments: {}, + dependencies: ['some-func-257'], + }, + { + name: 'some-func-259', + template: 'some-func-259', + arguments: {}, + dependencies: ['some-func-258'], + }, + { + name: 'some-func-26', + template: 'some-func-26', + arguments: {}, + dependencies: ['some-func-25'], + }, + { + name: 'some-func-260', + template: 'some-func-260', + arguments: {}, + dependencies: ['some-func-259'], + }, + { + name: 'some-func-261', + template: 'some-func-261', + arguments: {}, + dependencies: ['some-func-260'], + }, + { + name: 'some-func-262', + template: 'some-func-262', + arguments: {}, + dependencies: ['some-func-261'], + }, + { + name: 'some-func-263', + template: 'some-func-263', + arguments: {}, + dependencies: ['some-func-262'], + }, + { + name: 'some-func-264', + template: 'some-func-264', + arguments: {}, + dependencies: ['some-func-263'], + }, + { + name: 'some-func-265', + template: 'some-func-265', + arguments: {}, + dependencies: ['some-func-264'], + }, + { + name: 'some-func-266', + template: 'some-func-266', + arguments: {}, + dependencies: ['some-func-265'], + }, + { + name: 'some-func-267', + template: 'some-func-267', + arguments: {}, + dependencies: ['some-func-266'], + }, + { + name: 'some-func-268', + template: 'some-func-268', + arguments: {}, + dependencies: ['some-func-267'], + }, + { + name: 'some-func-269', + template: 'some-func-269', + arguments: {}, + dependencies: ['some-func-268'], + }, + { + name: 'some-func-27', + template: 'some-func-27', + arguments: {}, + dependencies: ['some-func-26'], + }, + { + name: 'some-func-270', + template: 'some-func-270', + arguments: {}, + dependencies: ['some-func-269'], + }, + { + name: 'some-func-271', + template: 'some-func-271', + arguments: {}, + dependencies: ['some-func-270'], + }, + { + name: 'some-func-272', + template: 'some-func-272', + arguments: {}, + dependencies: ['some-func-271'], + }, + { + name: 'some-func-273', + template: 'some-func-273', + arguments: {}, + dependencies: ['some-func-272'], + }, + { + name: 'some-func-274', + template: 'some-func-274', + arguments: {}, + dependencies: ['some-func-273'], + }, + { + name: 'some-func-275', + template: 'some-func-275', + arguments: {}, + dependencies: ['some-func-274'], + }, + { + name: 'some-func-276', + template: 'some-func-276', + arguments: {}, + dependencies: ['some-func-275'], + }, + { + name: 'some-func-277', + template: 'some-func-277', + arguments: {}, + dependencies: ['some-func-276'], + }, + { + name: 'some-func-278', + template: 'some-func-278', + arguments: {}, + dependencies: ['some-func-277'], + }, + { + name: 'some-func-279', + template: 'some-func-279', + arguments: {}, + dependencies: ['some-func-278'], + }, + { + name: 'some-func-28', + template: 'some-func-28', + arguments: {}, + dependencies: ['some-func-27'], + }, + { + name: 'some-func-280', + template: 'some-func-280', + arguments: {}, + dependencies: ['some-func-279'], + }, + { + name: 'some-func-281', + template: 'some-func-281', + arguments: {}, + dependencies: ['some-func-280'], + }, + { + name: 'some-func-282', + template: 'some-func-282', + arguments: {}, + dependencies: ['some-func-281'], + }, + { + name: 'some-func-283', + template: 'some-func-283', + arguments: {}, + dependencies: ['some-func-282'], + }, + { + name: 'some-func-284', + template: 'some-func-284', + arguments: {}, + dependencies: ['some-func-283'], + }, + { + name: 'some-func-285', + template: 'some-func-285', + arguments: {}, + dependencies: ['some-func-284'], + }, + { + name: 'some-func-286', + template: 'some-func-286', + arguments: {}, + dependencies: ['some-func-285'], + }, + { + name: 'some-func-287', + template: 'some-func-287', + arguments: {}, + dependencies: ['some-func-286'], + }, + { + name: 'some-func-288', + template: 'some-func-288', + arguments: {}, + dependencies: ['some-func-287'], + }, + { + name: 'some-func-289', + template: 'some-func-289', + arguments: {}, + dependencies: ['some-func-288'], + }, + { + name: 'some-func-29', + template: 'some-func-29', + arguments: {}, + dependencies: ['some-func-28'], + }, + { + name: 'some-func-290', + template: 'some-func-290', + arguments: {}, + dependencies: ['some-func-289'], + }, + { + name: 'some-func-291', + template: 'some-func-291', + arguments: {}, + dependencies: ['some-func-290'], + }, + { + name: 'some-func-292', + template: 'some-func-292', + arguments: {}, + dependencies: ['some-func-291'], + }, + { + name: 'some-func-293', + template: 'some-func-293', + arguments: {}, + dependencies: ['some-func-292'], + }, + { + name: 'some-func-294', + template: 'some-func-294', + arguments: {}, + dependencies: ['some-func-293'], + }, + { + name: 'some-func-295', + template: 'some-func-295', + arguments: {}, + dependencies: ['some-func-294'], + }, + { + name: 'some-func-296', + template: 'some-func-296', + arguments: {}, + dependencies: ['some-func-295'], + }, + { + name: 'some-func-297', + template: 'some-func-297', + arguments: {}, + dependencies: ['some-func-296'], + }, + { + name: 'some-func-298', + template: 'some-func-298', + arguments: {}, + dependencies: ['some-func-297'], + }, + { + name: 'some-func-299', + template: 'some-func-299', + arguments: {}, + dependencies: ['some-func-298'], + }, + { + name: 'some-func-3', + template: 'some-func-3', + arguments: {}, + dependencies: ['some-func-2'], + }, + { + name: 'some-func-30', + template: 'some-func-30', + arguments: {}, + dependencies: ['some-func-29'], + }, + { + name: 'some-func-300', + template: 'some-func-300', + arguments: {}, + dependencies: ['some-func-299'], + }, + { + name: 'some-func-301', + template: 'some-func-301', + arguments: {}, + dependencies: ['some-func-300'], + }, + { + name: 'some-func-302', + template: 'some-func-302', + arguments: {}, + dependencies: ['some-func-301'], + }, + { + name: 'some-func-303', + template: 'some-func-303', + arguments: {}, + dependencies: ['some-func-302'], + }, + { + name: 'some-func-304', + template: 'some-func-304', + arguments: {}, + dependencies: ['some-func-303'], + }, + { + name: 'some-func-305', + template: 'some-func-305', + arguments: {}, + dependencies: ['some-func-304'], + }, + { + name: 'some-func-306', + template: 'some-func-306', + arguments: {}, + dependencies: ['some-func-305'], + }, + { + name: 'some-func-307', + template: 'some-func-307', + arguments: {}, + dependencies: ['some-func-306'], + }, + { + name: 'some-func-308', + template: 'some-func-308', + arguments: {}, + dependencies: ['some-func-307'], + }, + { + name: 'some-func-309', + template: 'some-func-309', + arguments: {}, + dependencies: ['some-func-308'], + }, + { + name: 'some-func-31', + template: 'some-func-31', + arguments: {}, + dependencies: ['some-func-30'], + }, + { + name: 'some-func-310', + template: 'some-func-310', + arguments: {}, + dependencies: ['some-func-309'], + }, + { + name: 'some-func-311', + template: 'some-func-311', + arguments: {}, + dependencies: ['some-func-310'], + }, + { + name: 'some-func-312', + template: 'some-func-312', + arguments: {}, + dependencies: ['some-func-311'], + }, + { + name: 'some-func-313', + template: 'some-func-313', + arguments: {}, + dependencies: ['some-func-312'], + }, + { + name: 'some-func-314', + template: 'some-func-314', + arguments: {}, + dependencies: ['some-func-313'], + }, + { + name: 'some-func-315', + template: 'some-func-315', + arguments: {}, + dependencies: ['some-func-314'], + }, + { + name: 'some-func-316', + template: 'some-func-316', + arguments: {}, + dependencies: ['some-func-315'], + }, + { + name: 'some-func-317', + template: 'some-func-317', + arguments: {}, + dependencies: ['some-func-316'], + }, + { + name: 'some-func-318', + template: 'some-func-318', + arguments: {}, + dependencies: ['some-func-317'], + }, + { + name: 'some-func-319', + template: 'some-func-319', + arguments: {}, + dependencies: ['some-func-318'], + }, + { + name: 'some-func-32', + template: 'some-func-32', + arguments: {}, + dependencies: ['some-func-31'], + }, + { + name: 'some-func-320', + template: 'some-func-320', + arguments: {}, + dependencies: ['some-func-319'], + }, + { + name: 'some-func-321', + template: 'some-func-321', + arguments: {}, + dependencies: ['some-func-320'], + }, + { + name: 'some-func-322', + template: 'some-func-322', + arguments: {}, + dependencies: ['some-func-321'], + }, + { + name: 'some-func-323', + template: 'some-func-323', + arguments: {}, + dependencies: ['some-func-322'], + }, + { + name: 'some-func-324', + template: 'some-func-324', + arguments: {}, + dependencies: ['some-func-323'], + }, + { + name: 'some-func-325', + template: 'some-func-325', + arguments: {}, + dependencies: ['some-func-324'], + }, + { + name: 'some-func-326', + template: 'some-func-326', + arguments: {}, + dependencies: ['some-func-325'], + }, + { + name: 'some-func-327', + template: 'some-func-327', + arguments: {}, + dependencies: ['some-func-326'], + }, + { + name: 'some-func-328', + template: 'some-func-328', + arguments: {}, + dependencies: ['some-func-327'], + }, + { + name: 'some-func-329', + template: 'some-func-329', + arguments: {}, + dependencies: ['some-func-328'], + }, + { + name: 'some-func-33', + template: 'some-func-33', + arguments: {}, + dependencies: ['some-func-32'], + }, + { + name: 'some-func-330', + template: 'some-func-330', + arguments: {}, + dependencies: ['some-func-329'], + }, + { + name: 'some-func-331', + template: 'some-func-331', + arguments: {}, + dependencies: ['some-func-330'], + }, + { + name: 'some-func-332', + template: 'some-func-332', + arguments: {}, + dependencies: ['some-func-331'], + }, + { + name: 'some-func-333', + template: 'some-func-333', + arguments: {}, + dependencies: ['some-func-332'], + }, + { + name: 'some-func-334', + template: 'some-func-334', + arguments: {}, + dependencies: ['some-func-333'], + }, + { + name: 'some-func-335', + template: 'some-func-335', + arguments: {}, + dependencies: ['some-func-334'], + }, + { + name: 'some-func-336', + template: 'some-func-336', + arguments: {}, + dependencies: ['some-func-335'], + }, + { + name: 'some-func-337', + template: 'some-func-337', + arguments: {}, + dependencies: ['some-func-336'], + }, + { + name: 'some-func-338', + template: 'some-func-338', + arguments: {}, + dependencies: ['some-func-337'], + }, + { + name: 'some-func-339', + template: 'some-func-339', + arguments: {}, + dependencies: ['some-func-338'], + }, + { + name: 'some-func-34', + template: 'some-func-34', + arguments: {}, + dependencies: ['some-func-33'], + }, + { + name: 'some-func-340', + template: 'some-func-340', + arguments: {}, + dependencies: ['some-func-339'], + }, + { + name: 'some-func-341', + template: 'some-func-341', + arguments: {}, + dependencies: ['some-func-340'], + }, + { + name: 'some-func-342', + template: 'some-func-342', + arguments: {}, + dependencies: ['some-func-341'], + }, + { + name: 'some-func-343', + template: 'some-func-343', + arguments: {}, + dependencies: ['some-func-342'], + }, + { + name: 'some-func-344', + template: 'some-func-344', + arguments: {}, + dependencies: ['some-func-343'], + }, + { + name: 'some-func-345', + template: 'some-func-345', + arguments: {}, + dependencies: ['some-func-344'], + }, + { + name: 'some-func-346', + template: 'some-func-346', + arguments: {}, + dependencies: ['some-func-345'], + }, + { + name: 'some-func-347', + template: 'some-func-347', + arguments: {}, + dependencies: ['some-func-346'], + }, + { + name: 'some-func-348', + template: 'some-func-348', + arguments: {}, + dependencies: ['some-func-347'], + }, + { + name: 'some-func-349', + template: 'some-func-349', + arguments: {}, + dependencies: ['some-func-348'], + }, + { + name: 'some-func-35', + template: 'some-func-35', + arguments: {}, + dependencies: ['some-func-34'], + }, + { + name: 'some-func-350', + template: 'some-func-350', + arguments: {}, + dependencies: ['some-func-349'], + }, + { + name: 'some-func-351', + template: 'some-func-351', + arguments: {}, + dependencies: ['some-func-350'], + }, + { + name: 'some-func-352', + template: 'some-func-352', + arguments: {}, + dependencies: ['some-func-351'], + }, + { + name: 'some-func-353', + template: 'some-func-353', + arguments: {}, + dependencies: ['some-func-352'], + }, + { + name: 'some-func-354', + template: 'some-func-354', + arguments: {}, + dependencies: ['some-func-353'], + }, + { + name: 'some-func-355', + template: 'some-func-355', + arguments: {}, + dependencies: ['some-func-354'], + }, + { + name: 'some-func-356', + template: 'some-func-356', + arguments: {}, + dependencies: ['some-func-355'], + }, + { + name: 'some-func-357', + template: 'some-func-357', + arguments: {}, + dependencies: ['some-func-356'], + }, + { + name: 'some-func-358', + template: 'some-func-358', + arguments: {}, + dependencies: ['some-func-357'], + }, + { + name: 'some-func-359', + template: 'some-func-359', + arguments: {}, + dependencies: ['some-func-358'], + }, + { + name: 'some-func-36', + template: 'some-func-36', + arguments: {}, + dependencies: ['some-func-35'], + }, + { + name: 'some-func-360', + template: 'some-func-360', + arguments: {}, + dependencies: ['some-func-359'], + }, + { + name: 'some-func-361', + template: 'some-func-361', + arguments: {}, + dependencies: ['some-func-360'], + }, + { + name: 'some-func-362', + template: 'some-func-362', + arguments: {}, + dependencies: ['some-func-361'], + }, + { + name: 'some-func-363', + template: 'some-func-363', + arguments: {}, + dependencies: ['some-func-362'], + }, + { + name: 'some-func-364', + template: 'some-func-364', + arguments: {}, + dependencies: ['some-func-363'], + }, + { + name: 'some-func-365', + template: 'some-func-365', + arguments: {}, + dependencies: ['some-func-364'], + }, + { + name: 'some-func-366', + template: 'some-func-366', + arguments: {}, + dependencies: ['some-func-365'], + }, + { + name: 'some-func-367', + template: 'some-func-367', + arguments: {}, + dependencies: ['some-func-366'], + }, + { + name: 'some-func-368', + template: 'some-func-368', + arguments: {}, + dependencies: ['some-func-367'], + }, + { + name: 'some-func-369', + template: 'some-func-369', + arguments: {}, + dependencies: ['some-func-368'], + }, + { + name: 'some-func-37', + template: 'some-func-37', + arguments: {}, + dependencies: ['some-func-36'], + }, + { + name: 'some-func-370', + template: 'some-func-370', + arguments: {}, + dependencies: ['some-func-369'], + }, + { + name: 'some-func-371', + template: 'some-func-371', + arguments: {}, + dependencies: ['some-func-370'], + }, + { + name: 'some-func-372', + template: 'some-func-372', + arguments: {}, + dependencies: ['some-func-371'], + }, + { + name: 'some-func-373', + template: 'some-func-373', + arguments: {}, + dependencies: ['some-func-372'], + }, + { + name: 'some-func-374', + template: 'some-func-374', + arguments: {}, + dependencies: ['some-func-373'], + }, + { + name: 'some-func-375', + template: 'some-func-375', + arguments: {}, + dependencies: ['some-func-374'], + }, + { + name: 'some-func-376', + template: 'some-func-376', + arguments: {}, + dependencies: ['some-func-375'], + }, + { + name: 'some-func-377', + template: 'some-func-377', + arguments: {}, + dependencies: ['some-func-376'], + }, + { + name: 'some-func-378', + template: 'some-func-378', + arguments: {}, + dependencies: ['some-func-377'], + }, + { + name: 'some-func-379', + template: 'some-func-379', + arguments: {}, + dependencies: ['some-func-378'], + }, + { + name: 'some-func-38', + template: 'some-func-38', + arguments: {}, + dependencies: ['some-func-37'], + }, + { + name: 'some-func-380', + template: 'some-func-380', + arguments: {}, + dependencies: ['some-func-379'], + }, + { + name: 'some-func-381', + template: 'some-func-381', + arguments: {}, + dependencies: ['some-func-380'], + }, + { + name: 'some-func-382', + template: 'some-func-382', + arguments: {}, + dependencies: ['some-func-381'], + }, + { + name: 'some-func-383', + template: 'some-func-383', + arguments: {}, + dependencies: ['some-func-382'], + }, + { + name: 'some-func-384', + template: 'some-func-384', + arguments: {}, + dependencies: ['some-func-383'], + }, + { + name: 'some-func-385', + template: 'some-func-385', + arguments: {}, + dependencies: ['some-func-384'], + }, + { + name: 'some-func-386', + template: 'some-func-386', + arguments: {}, + dependencies: ['some-func-385'], + }, + { + name: 'some-func-387', + template: 'some-func-387', + arguments: {}, + dependencies: ['some-func-386'], + }, + { + name: 'some-func-388', + template: 'some-func-388', + arguments: {}, + dependencies: ['some-func-387'], + }, + { + name: 'some-func-389', + template: 'some-func-389', + arguments: {}, + dependencies: ['some-func-388'], + }, + { + name: 'some-func-39', + template: 'some-func-39', + arguments: {}, + dependencies: ['some-func-38'], + }, + { + name: 'some-func-390', + template: 'some-func-390', + arguments: {}, + dependencies: ['some-func-389'], + }, + { + name: 'some-func-391', + template: 'some-func-391', + arguments: {}, + dependencies: ['some-func-390'], + }, + { + name: 'some-func-392', + template: 'some-func-392', + arguments: {}, + dependencies: ['some-func-391'], + }, + { + name: 'some-func-393', + template: 'some-func-393', + arguments: {}, + dependencies: ['some-func-392'], + }, + { + name: 'some-func-394', + template: 'some-func-394', + arguments: {}, + dependencies: ['some-func-393'], + }, + { + name: 'some-func-395', + template: 'some-func-395', + arguments: {}, + dependencies: ['some-func-394'], + }, + { + name: 'some-func-396', + template: 'some-func-396', + arguments: {}, + dependencies: ['some-func-395'], + }, + { + name: 'some-func-397', + template: 'some-func-397', + arguments: {}, + dependencies: ['some-func-396'], + }, + { + name: 'some-func-398', + template: 'some-func-398', + arguments: {}, + dependencies: ['some-func-397'], + }, + { + name: 'some-func-399', + template: 'some-func-399', + arguments: {}, + dependencies: ['some-func-398'], + }, + { + name: 'some-func-4', + template: 'some-func-4', + arguments: {}, + dependencies: ['some-func-3'], + }, + { + name: 'some-func-40', + template: 'some-func-40', + arguments: {}, + dependencies: ['some-func-39'], + }, + { + name: 'some-func-400', + template: 'some-func-400', + arguments: {}, + dependencies: ['some-func-399'], + }, + { + name: 'some-func-41', + template: 'some-func-41', + arguments: {}, + dependencies: ['some-func-40'], + }, + { + name: 'some-func-42', + template: 'some-func-42', + arguments: {}, + dependencies: ['some-func-41'], + }, + { + name: 'some-func-43', + template: 'some-func-43', + arguments: {}, + dependencies: ['some-func-42'], + }, + { + name: 'some-func-44', + template: 'some-func-44', + arguments: {}, + dependencies: ['some-func-43'], + }, + { + name: 'some-func-45', + template: 'some-func-45', + arguments: {}, + dependencies: ['some-func-44'], + }, + { + name: 'some-func-46', + template: 'some-func-46', + arguments: {}, + dependencies: ['some-func-45'], + }, + { + name: 'some-func-47', + template: 'some-func-47', + arguments: {}, + dependencies: ['some-func-46'], + }, + { + name: 'some-func-48', + template: 'some-func-48', + arguments: {}, + dependencies: ['some-func-47'], + }, + { + name: 'some-func-49', + template: 'some-func-49', + arguments: {}, + dependencies: ['some-func-48'], + }, + { + name: 'some-func-5', + template: 'some-func-5', + arguments: {}, + dependencies: ['some-func-4'], + }, + { + name: 'some-func-50', + template: 'some-func-50', + arguments: {}, + dependencies: ['some-func-49'], + }, + { + name: 'some-func-51', + template: 'some-func-51', + arguments: {}, + dependencies: ['some-func-50'], + }, + { + name: 'some-func-52', + template: 'some-func-52', + arguments: {}, + dependencies: ['some-func-51'], + }, + { + name: 'some-func-53', + template: 'some-func-53', + arguments: {}, + dependencies: ['some-func-52'], + }, + { + name: 'some-func-54', + template: 'some-func-54', + arguments: {}, + dependencies: ['some-func-53'], + }, + { + name: 'some-func-55', + template: 'some-func-55', + arguments: {}, + dependencies: ['some-func-54'], + }, + { + name: 'some-func-56', + template: 'some-func-56', + arguments: {}, + dependencies: ['some-func-55'], + }, + { + name: 'some-func-57', + template: 'some-func-57', + arguments: {}, + dependencies: ['some-func-56'], + }, + { + name: 'some-func-58', + template: 'some-func-58', + arguments: {}, + dependencies: ['some-func-57'], + }, + { + name: 'some-func-59', + template: 'some-func-59', + arguments: {}, + dependencies: ['some-func-58'], + }, + { + name: 'some-func-6', + template: 'some-func-6', + arguments: {}, + dependencies: ['some-func-5'], + }, + { + name: 'some-func-60', + template: 'some-func-60', + arguments: {}, + dependencies: ['some-func-59'], + }, + { + name: 'some-func-61', + template: 'some-func-61', + arguments: {}, + dependencies: ['some-func-60'], + }, + { + name: 'some-func-62', + template: 'some-func-62', + arguments: {}, + dependencies: ['some-func-61'], + }, + { + name: 'some-func-63', + template: 'some-func-63', + arguments: {}, + dependencies: ['some-func-62'], + }, + { + name: 'some-func-64', + template: 'some-func-64', + arguments: {}, + dependencies: ['some-func-63'], + }, + { + name: 'some-func-65', + template: 'some-func-65', + arguments: {}, + dependencies: ['some-func-64'], + }, + { + name: 'some-func-66', + template: 'some-func-66', + arguments: {}, + dependencies: ['some-func-65'], + }, + { + name: 'some-func-67', + template: 'some-func-67', + arguments: {}, + dependencies: ['some-func-66'], + }, + { + name: 'some-func-68', + template: 'some-func-68', + arguments: {}, + dependencies: ['some-func-67'], + }, + { + name: 'some-func-69', + template: 'some-func-69', + arguments: {}, + dependencies: ['some-func-68'], + }, + { + name: 'some-func-7', + template: 'some-func-7', + arguments: {}, + dependencies: ['some-func-6'], + }, + { + name: 'some-func-70', + template: 'some-func-70', + arguments: {}, + dependencies: ['some-func-69'], + }, + { + name: 'some-func-71', + template: 'some-func-71', + arguments: {}, + dependencies: ['some-func-70'], + }, + { + name: 'some-func-72', + template: 'some-func-72', + arguments: {}, + dependencies: ['some-func-71'], + }, + { + name: 'some-func-73', + template: 'some-func-73', + arguments: {}, + dependencies: ['some-func-72'], + }, + { + name: 'some-func-74', + template: 'some-func-74', + arguments: {}, + dependencies: ['some-func-73'], + }, + { + name: 'some-func-75', + template: 'some-func-75', + arguments: {}, + dependencies: ['some-func-74'], + }, + { + name: 'some-func-76', + template: 'some-func-76', + arguments: {}, + dependencies: ['some-func-75'], + }, + { + name: 'some-func-77', + template: 'some-func-77', + arguments: {}, + dependencies: ['some-func-76'], + }, + { + name: 'some-func-78', + template: 'some-func-78', + arguments: {}, + dependencies: ['some-func-77'], + }, + { + name: 'some-func-79', + template: 'some-func-79', + arguments: {}, + dependencies: ['some-func-78'], + }, + { + name: 'some-func-8', + template: 'some-func-8', + arguments: {}, + dependencies: ['some-func-7'], + }, + { + name: 'some-func-80', + template: 'some-func-80', + arguments: {}, + dependencies: ['some-func-79'], + }, + { + name: 'some-func-81', + template: 'some-func-81', + arguments: {}, + dependencies: ['some-func-80'], + }, + { + name: 'some-func-82', + template: 'some-func-82', + arguments: {}, + dependencies: ['some-func-81'], + }, + { + name: 'some-func-83', + template: 'some-func-83', + arguments: {}, + dependencies: ['some-func-82'], + }, + { + name: 'some-func-84', + template: 'some-func-84', + arguments: {}, + dependencies: ['some-func-83'], + }, + { + name: 'some-func-85', + template: 'some-func-85', + arguments: {}, + dependencies: ['some-func-84'], + }, + { + name: 'some-func-86', + template: 'some-func-86', + arguments: {}, + dependencies: ['some-func-85'], + }, + { + name: 'some-func-87', + template: 'some-func-87', + arguments: {}, + dependencies: ['some-func-86'], + }, + { + name: 'some-func-88', + template: 'some-func-88', + arguments: {}, + dependencies: ['some-func-87'], + }, + { + name: 'some-func-89', + template: 'some-func-89', + arguments: {}, + dependencies: ['some-func-88'], + }, + { + name: 'some-func-9', + template: 'some-func-9', + arguments: {}, + dependencies: ['some-func-8'], + }, + { + name: 'some-func-90', + template: 'some-func-90', + arguments: {}, + dependencies: ['some-func-89'], + }, + { + name: 'some-func-91', + template: 'some-func-91', + arguments: {}, + dependencies: ['some-func-90'], + }, + { + name: 'some-func-92', + template: 'some-func-92', + arguments: {}, + dependencies: ['some-func-91'], + }, + { + name: 'some-func-93', + template: 'some-func-93', + arguments: {}, + dependencies: ['some-func-92'], + }, + { + name: 'some-func-94', + template: 'some-func-94', + arguments: {}, + dependencies: ['some-func-93'], + }, + { + name: 'some-func-95', + template: 'some-func-95', + arguments: {}, + dependencies: ['some-func-94'], + }, + { + name: 'some-func-96', + template: 'some-func-96', + arguments: {}, + dependencies: ['some-func-95'], + }, + { + name: 'some-func-97', + template: 'some-func-97', + arguments: {}, + dependencies: ['some-func-96'], + }, + { + name: 'some-func-98', + template: 'some-func-98', + arguments: {}, + dependencies: ['some-func-97'], + }, + { + name: 'some-func-99', + template: 'some-func-99', + arguments: {}, + dependencies: ['some-func-98'], + }, + ], + }, + }, + { + name: 'some-func', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '0', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-10', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-10-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '9', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-100', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-100-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '99', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-101', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-101-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '100', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-102', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-102-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '101', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-103', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-103-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '102', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-104', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-104-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '103', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-105', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-105-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '104', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-106', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-106-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '105', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-107', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-107-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '106', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-108', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-108-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '107', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-109', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-109-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '108', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-11', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-11-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '10', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-110', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-110-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '109', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-111', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-111-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '110', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-112', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-112-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '111', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-113', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-113-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '112', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-114', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-114-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '113', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-115', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-115-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '114', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-116', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-116-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '115', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-117', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-117-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '116', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-118', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-118-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '117', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-119', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-119-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '118', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-12', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-12-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '11', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-120', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-120-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '119', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-121', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-121-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '120', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-122', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-122-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '121', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-123', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-123-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '122', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-124', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-124-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '123', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-125', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-125-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '124', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-126', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-126-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '125', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-127', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-127-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '126', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-128', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-128-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '127', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-129', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-129-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '128', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-13', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-13-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '12', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-130', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-130-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '129', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-131', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-131-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '130', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-132', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-132-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '131', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-133', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-133-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '132', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-134', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-134-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '133', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-135', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-135-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '134', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-136', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-136-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '135', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-137', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-137-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '136', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-138', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-138-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '137', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-139', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-139-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '138', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-14', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-14-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '13', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-140', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-140-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '139', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-141', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-141-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '140', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-142', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-142-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '141', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-143', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-143-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '142', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-144', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-144-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '143', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-145', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-145-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '144', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-146', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-146-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '145', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-147', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-147-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '146', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-148', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-148-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '147', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-149', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-149-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '148', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-15', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-15-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '14', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-150', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-150-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '149', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-151', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-151-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '150', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-152', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-152-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '151', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-153', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-153-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '152', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-154', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-154-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '153', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-155', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-155-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '154', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-156', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-156-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '155', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-157', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-157-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '156', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-158', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-158-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '157', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-159', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-159-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '158', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-16', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-16-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '15', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-160', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-160-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '159', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-161', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-161-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '160', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-162', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-162-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '161', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-163', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-163-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '162', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-164', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-164-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '163', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-165', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-165-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '164', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-166', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-166-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '165', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-167', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-167-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '166', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-168', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-168-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '167', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-169', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-169-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '168', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-17', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-17-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '16', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-170', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-170-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '169', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-171', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-171-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '170', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-172', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-172-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '171', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-173', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-173-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '172', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-174', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-174-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '173', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-175', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-175-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '174', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-176', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-176-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '175', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-177', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-177-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '176', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-178', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-178-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '177', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-179', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-179-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '178', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-18', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-18-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '17', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-180', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-180-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '179', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-181', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-181-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '180', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-182', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-182-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '181', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-183', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-183-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '182', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-184', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-184-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '183', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-185', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-185-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '184', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-186', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-186-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '185', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-187', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-187-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '186', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-188', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-188-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '187', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-189', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-189-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '188', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-19', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-19-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '18', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-190', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-190-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '189', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-191', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-191-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '190', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-192', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-192-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '191', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-193', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-193-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '192', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-194', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-194-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '193', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-195', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-195-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '194', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-196', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-196-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '195', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-197', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-197-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '196', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-198', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-198-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '197', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-199', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-199-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '198', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-2', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-2-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '1', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-20', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-20-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '19', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-200', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-200-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '199', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-201', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-201-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '200', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-202', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-202-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '201', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-203', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-203-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '202', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-204', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-204-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '203', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-205', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-205-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '204', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-206', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-206-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '205', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-207', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-207-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '206', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-208', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-208-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '207', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-209', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-209-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '208', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-21', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-21-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '20', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-210', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-210-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '209', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-211', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-211-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '210', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-212', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-212-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '211', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-213', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-213-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '212', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-214', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-214-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '213', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-215', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-215-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '214', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-216', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-216-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '215', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-217', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-217-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '216', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-218', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-218-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '217', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-219', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-219-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '218', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-22', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-22-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '21', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-220', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-220-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '219', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-221', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-221-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '220', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-222', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-222-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '221', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-223', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-223-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '222', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-224', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-224-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '223', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-225', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-225-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '224', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-226', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-226-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '225', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-227', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-227-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '226', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-228', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-228-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '227', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-229', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-229-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '228', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-23', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-23-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '22', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-230', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-230-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '229', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-231', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-231-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '230', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-232', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-232-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '231', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-233', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-233-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '232', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-234', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-234-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '233', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-235', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-235-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '234', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-236', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-236-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '235', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-237', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-237-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '236', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-238', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-238-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '237', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-239', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-239-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '238', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-24', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-24-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '23', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-240', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-240-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '239', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-241', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-241-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '240', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-242', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-242-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '241', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-243', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-243-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '242', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-244', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-244-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '243', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-245', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-245-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '244', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-246', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-246-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '245', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-247', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-247-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '246', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-248', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-248-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '247', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-249', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-249-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '248', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-25', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-25-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '24', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-250', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-250-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '249', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-251', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-251-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '250', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-252', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-252-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '251', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-253', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-253-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '252', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-254', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-254-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '253', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-255', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-255-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '254', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-256', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-256-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '255', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-257', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-257-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '256', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-258', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-258-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '257', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-259', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-259-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '258', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-26', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-26-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '25', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-260', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-260-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '259', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-261', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-261-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '260', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-262', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-262-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '261', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-263', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-263-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '262', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-264', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-264-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '263', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-265', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-265-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '264', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-266', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-266-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '265', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-267', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-267-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '266', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-268', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-268-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '267', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-269', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-269-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '268', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-27', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-27-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '26', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-270', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-270-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '269', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-271', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-271-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '270', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-272', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-272-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '271', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-273', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-273-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '272', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-274', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-274-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '273', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-275', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-275-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '274', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-276', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-276-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '275', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-277', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-277-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '276', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-278', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-278-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '277', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-279', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-279-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '278', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-28', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-28-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '27', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-280', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-280-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '279', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-281', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-281-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '280', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-282', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-282-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '281', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-283', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-283-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '282', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-284', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-284-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '283', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-285', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-285-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '284', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-286', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-286-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '285', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-287', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-287-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '286', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-288', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-288-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '287', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-289', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-289-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '288', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-29', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-29-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '28', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-290', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-290-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '289', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-291', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-291-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '290', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-292', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-292-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '291', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-293', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-293-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '292', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-294', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-294-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '293', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-295', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-295-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '294', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-296', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-296-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '295', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-297', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-297-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '296', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-298', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-298-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '297', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-299', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-299-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '298', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-3', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-3-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '2', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-30', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-30-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '29', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-300', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-300-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '299', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-301', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-301-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '300', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-302', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-302-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '301', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-303', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-303-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '302', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-304', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-304-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '303', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-305', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-305-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '304', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-306', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-306-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '305', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-307', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-307-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '306', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-308', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-308-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '307', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-309', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-309-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '308', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-31', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-31-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '30', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-310', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-310-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '309', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-311', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-311-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '310', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-312', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-312-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '311', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-313', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-313-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '312', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-314', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-314-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '313', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-315', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-315-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '314', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-316', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-316-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '315', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-317', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-317-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '316', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-318', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-318-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '317', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-319', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-319-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '318', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-32', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-32-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '31', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-320', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-320-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '319', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-321', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-321-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '320', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-322', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-322-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '321', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-323', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-323-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '322', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-324', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-324-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '323', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-325', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-325-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '324', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-326', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-326-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '325', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-327', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-327-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '326', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-328', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-328-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '327', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-329', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-329-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '328', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-33', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-33-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '32', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-330', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-330-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '329', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-331', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-331-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '330', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-332', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-332-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '331', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-333', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-333-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '332', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-334', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-334-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '333', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-335', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-335-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '334', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-336', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-336-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '335', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-337', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-337-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '336', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-338', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-338-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '337', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-339', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-339-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '338', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-34', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-34-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '33', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-340', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-340-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '339', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-341', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-341-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '340', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-342', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-342-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '341', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-343', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-343-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '342', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-344', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-344-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '343', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-345', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-345-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '344', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-346', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-346-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '345', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-347', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-347-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '346', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-348', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-348-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '347', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-349', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-349-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '348', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-35', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-35-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '34', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-350', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-350-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '349', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-351', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-351-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '350', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-352', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-352-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '351', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-353', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-353-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '352', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-354', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-354-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '353', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-355', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-355-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '354', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-356', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-356-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '355', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-357', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-357-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '356', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-358', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-358-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '357', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-359', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-359-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '358', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-36', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-36-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '35', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-360', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-360-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '359', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-361', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-361-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '360', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-362', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-362-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '361', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-363', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-363-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '362', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-364', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-364-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '363', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-365', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-365-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '364', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-366', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-366-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '365', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-367', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-367-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '366', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-368', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-368-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '367', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-369', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-369-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '368', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-37', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-37-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '36', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-370', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-370-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '369', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-371', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-371-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '370', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-372', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-372-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '371', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-373', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-373-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '372', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-374', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-374-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '373', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-375', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-375-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '374', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-376', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-376-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '375', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-377', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-377-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '376', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-378', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-378-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '377', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-379', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-379-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '378', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-38', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-38-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '37', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-380', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-380-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '379', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-381', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-381-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '380', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-382', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-382-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '381', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-383', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-383-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '382', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-384', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-384-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '383', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-385', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-385-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '384', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-386', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-386-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '385', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-387', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-387-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '386', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-388', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-388-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '387', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-389', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-389-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '388', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-39', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-39-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '38', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-390', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-390-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '389', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-391', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-391-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '390', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-392', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-392-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '391', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-393', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-393-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '392', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-394', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-394-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '393', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-395', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-395-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '394', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-396', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-396-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '395', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-397', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-397-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '396', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-398', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-398-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '397', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-399', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-399-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '398', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-4', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-4-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '3', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-40', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-40-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '39', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-400', + inputs: {}, + outputs: { + artifacts: [{ name: 'some-func-400-output', path: '/tmp/outputs/Output/data' }], + }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '399', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-41', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-41-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '40', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-42', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-42-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '41', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-43', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-43-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '42', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-44', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-44-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '43', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-45', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-45-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '44', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-46', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-46-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '45', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-47', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-47-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '46', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-48', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-48-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '47', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-49', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-49-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '48', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-5', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-5-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '4', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-50', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-50-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '49', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-51', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-51-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '50', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-52', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-52-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '51', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-53', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-53-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '52', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-54', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-54-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '53', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-55', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-55-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '54', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-56', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-56-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '55', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-57', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-57-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '56', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-58', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-58-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '57', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-59', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-59-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '58', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-6', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-6-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '5', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-60', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-60-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '59', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-61', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-61-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '60', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-62', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-62-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '61', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-63', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-63-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '62', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-64', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-64-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '63', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-65', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-65-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '64', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-66', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-66-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '65', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-67', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-67-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '66', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-68', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-68-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '67', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-69', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-69-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '68', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-7', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-7-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '6', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-70', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-70-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '69', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-71', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-71-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '70', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-72', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-72-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '71', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-73', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-73-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '72', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-74', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-74-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '73', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-75', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-75-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '74', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-76', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-76-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '75', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-77', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-77-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '76', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-78', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-78-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '77', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-79', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-79-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '78', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-8', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-8-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '7', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-80', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-80-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '79', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-81', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-81-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '80', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-82', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-82-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '81', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-83', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-83-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '82', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-84', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-84-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '83', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-85', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-85-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '84', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-86', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-86-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '85', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-87', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-87-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '86', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-88', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-88-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '87', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-89', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-89-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '88', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-9', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-9-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '8', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-90', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-90-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '89', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-91', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-91-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '90', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-92', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-92-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '91', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-93', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-93-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '92', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-94', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-94-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '93', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-95', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-95-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '94', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-96', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-96-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '95', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-97', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-97-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '96', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-98', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-98-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '97', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + { + name: 'some-func-99', + inputs: {}, + outputs: { artifacts: [{ name: 'some-func-99-output', path: '/tmp/outputs/Output/data' }] }, + metadata: { + annotations: { + 'pipelines.kubeflow.org/component_spec': + '{"inputs": [{"name": "i", "type": "Integer"}], "name": "Some func", "outputs": [{"name": "Output", "type": "String"}]}', + }, + labels: { 'pipelines.kubeflow.org/pipeline-sdk-type': 'kfp' }, + }, + container: { + name: '', + image: 'library/python:3.6', + command: [ + 'python3', + '-u', + '-c', + 'def some_func(i ) :\n msg = f"""{i}\n This is a huge function, with a lot of code.\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, \n when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n It has survived not only five centuries, but also the leap into electronic typesetting, \n remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets \n containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker \n including versions of Lorem Ipsum.\n """\n return msg\n\ndef _serialize_str(str_value: str) -> str:\n if not isinstance(str_value, str):\n raise TypeError(\'Value "{}" has type "{}" instead of str.\'.format(str(str_value), str(type(str_value))))\n return str_value\n\nimport argparse\n_parser = argparse.ArgumentParser(prog=\'Some func\', description=\'\')\n_parser.add_argument("--i", dest="i", type=int, required=True, default=argparse.SUPPRESS)\n_parser.add_argument("----output-paths", dest="_output_paths", type=str, nargs=1)\n_parsed_args = vars(_parser.parse_args())\n_output_files = _parsed_args.pop("_output_paths", [])\n\n_outputs = some_func(**_parsed_args)\n\n_outputs = [_outputs]\n\n_output_serializers = [\n _serialize_str,\n\n]\n\nimport os\nfor idx, output_file in enumerate(_output_files):\n try:\n os.makedirs(os.path.dirname(output_file))\n except OSError:\n pass\n with open(output_file, \'w\') as f:\n f.write(_output_serializers[idx](_outputs[idx]))\n', + ], + args: ['--i', '98', '----output-paths', '/tmp/outputs/Output/data'], + resources: {}, + }, + }, + ], + entrypoint: 'huge-pipeline', + arguments: {}, + serviceAccountName: 'pipeline-runner', + }, + status: { + phase: 'Succeeded', + startedAt: '2020-07-08T10:03:37Z', + finishedAt: '2020-07-08T10:39:43Z', + compressedNodes: + 'H4sIAAAAAAAA/+z9Tc9mt5HnCX+XXEsmI4KvZ9dAAw8ezKBngJ7VNGqRLaVtoWxJ45Smxl3wdx8c3SQPu8QrGHHB3AyJKsCWTuSNzH/Gz0EG4+XfP/351z99+fbnH37+8pcffvzy7f/lv/u3v3y6/v3TD99/uobfvvn04+e/fnn58fsfvv78l89//y+czS9///n++J//0//v/ocvf/35L59/+TL6FZ+++fTznz9/vf/9f/31u+++fPn+y/efvvn09ZfPf/vly/f/6ZdP1ye0aL+18Vub/g+wl6WL0v/56ZtPf/zhxx++/nloQ/lydNt89+cf/vL93778+On6b6Pf6LdEnrJPAeHTv3zz6adff/nvP/364/f/5afvv3x99UvQo8s5xeA+/cs/vhmagLUeHEQHnMy9Gaf4H77+9Ncv3/7x1x+/+5as+53+//FrUf5//+n73yv/H21Hyv+mwOe//f3//59f/uW+/sshe7k8+8uxl//tL+enX3/5+ddfvt4aff7bLz/88fN39z/8t3+vWvxPv9tvP6zv3/TnX/786fpkfvnrz6b8CPO//faf5vvPv3y+f390/8wvP37/808//Hj/Br7SHz7/9fP/+OnHz//29Q/f/fTX+4/563f/+uX+9vPXb//11//+5Y9/+enfvv3y//z85W8//PXLj798/fbrL5//9MOPf/r0zacffvz65btf//bl0/XHz3/5+uWbT5+/++7L16//y5e//9cv3/3t/iH//ulfv/z90/Xp0z+++fT1t3/34uPHf2t/WjPQd/TvOlcxI1X+8Muf/senf/zjmybdXz//8OO3f/npT18/ffPp89+++/MP//eX//X+p+uXv/365f/jAt1/9j/85ac/ffrHP25AZ/8TkFOi4ACRxRnTbTbFuZhJcSbkcP7tqxDn32z/+TjThTDDmS50SpwJD84frmJGqhycO4GUOINFtCE47xmemwnPczMT80wsz6TgmVbx7AU8Zy3PtDvP1VXMSJXDcyeQNjxHiEQ+JwZnSsk5G90E52YmxtmyOFsFznYRzoBznMFrcba741xdxYxUOTh3AqnDs/cBIWRieHbe+pQIJzw3MyHP6DPD88dXGc8ftv90njHMb88YLo86ntHn3XmurmJGqhyeO4GUPJN1YD1YZxmeG/I8z81MHJ+Bjc+giM+wKj5HwXHbauMz7M5zdRUzUuXw3Amkjs8tifWa5wCJgvOz7HYzE8fnxMbnpIjPaVV8pnl8dkEbn9PuPFdXMSNVDs+dQGqe2yn5Jc8QMLiMwfI8P2ZSnpHlGRU84xqe3WXtjGd3WWV6G3F3npurmJEqh+dOIC3PELPDkGJmeI4ZY45pkg97zMTxmTtvf3yVxucl520Ml52lt2+bpI3Pu5+3m6uYkSqH504gLc+IOQAGByzPBfkZz8VMHJ/ZfBgq8mG4Jh/mLhsE8Vn5XIW4ez6suYoZqXJ47gTS8kw5hkQWOZ5zsD46O8mHPWbi+My9V318lcbnJe9V6C8vyG9bdX579/eq5ipmpMrhuRPojfN2OSW/5BkBE3mLk/eqx0zMM1dO8vFVyvOSchIM5W2Z5xm08dnvXk7SXMWMVDk8dwKpz9uBIET2/owQnYdk04znaibkGRJ3f/74KuP5w/afzjPkkrtmeIZ8eeV7FaTd78/NVcxIlcNzJ5Ce5xiTC4Ep93yu2DzPzUwcn7ny7Y+v0vi8pHz7jr3T/Ha4QNmNgX738u3mKmakyuG5E0jNczslczxHn+OsHeMxE+fDuO6qj6/SfNiS7iqky015pvJGrcmH7d5d1VzFjFQ5PHcCqXl2wVMkrh0DiSjb6XvVYyY9b7PxGRTxGdbEZ4jz+HzbKN+f4cTn6ipmpMrhuRNIzbO3EJKzTP02kkPMDuOM52omvj9z+e2Pr9L785L89n1/nrVL3jbKfgxIu+e3m6uYkSqH504g/Xm7ZrFe8+wCZTutD3vMxPdnz96fveL+7Bfdn3FWv43hImU+DL3fnefqKmakyuG5E0jNcw4RCSCyPJcj+YznYia+P7M8o4JnXMMzXc4J7s9Re38+PBdXMSNVDs+dQG+8VxG4HLn3ZxdCcs7P43Mxk/JMbH0YKerDaE19mL/s7Lx922jrt2n3+rDmKmakyuG5E0jbL4kOQwzBc+ftdsXmeW5m4nwYV08CinoSWFNPAnHeLwlR3S8Jp56kuooZqXJ47gRS13uSsz44bj4JerA2Wjd7r2pm4nwYy3NS8JzW8JwvP63ftqUHS5MPOzwXVzEjVQ7PnUBqni0Q5czmt1sJGc9zMxPnw9j3Z694f/Zr3p/DfBzgbaM9b/vt35+rq5iRKofnTqA33p9LVprjuVyxZzwXM3E+LLD5sKDIh4VV+bBpPwbp5w1hODx/uIoZqXJ47gRS85yszei5+WEYyAW0YR6fi5k4H8bOMyDFPANaNc9gft52pQdLkw/bfZ5BcxUzUuXw3An0RnwuWWmG55BdmPdXNTNxPoytJ1H0S8KafkkI835JiOp+Sdi+X7K5ihmpcnjuBNLHZ4pI7DyDp2VjwnM1E+fD2HrPpKj3TGvqPXM5S0/6q9T1YdvXe1ZXMSNVDs+dQPp6z5qVfs1zzNl5l2f9ks1MnA+LbD4sKvJhcVE+jAT1YU5dHxZ357m6ihmpcnjuBFLPA2xTOV/z3K7YPM/NTJwPY3lGBc+4hme6vKA+zGvnh+H2PFdXMSNVDs+dQOr5JG0qJ8czUg5pFp+bmTgfxvJMCp5pDc+uzCqY5MPU9WGH5+IqZqTK4bkT6I16z5KVZniuV+wJz9VMnA9j55Mo5nvCmvmeEEst5yQfpozPsP18z+YqZqTK4bkTSM1z61pmeHY+IE77n5uZOB/G9WN8fJXmw9b0Y1jBfE+rnu8Jaft+jOoqZqTK4bkT6I16z5Q9sPnt1oLF89zMxPkwtp7EK+pJ/Jp6knCRoD6MlPlt9NvXk1RXMSNVDs+dQOr43LLSHM8pWoTZ+3MzE+fD2Hm9qJjXi2vm9dIFs1X7SBeq68O2f3+urmJGqhyeO4HU8RkouJiIjc/RQiQ7jc/VTJwPY+MzKeIzrYnPTtD/7PT9z3Tic3EVM1Ll8NwJ9Ea9Z8lKv+SZrPUWpvNJHjNxPozjGRTnbVhz3oZ40Wwf3W2jrSfZ/rzdXMWMVDk8dwLp43PEmNj5208L1oTnaibOh3H9VR9fpfmwNf1VVjDPwKrnGUDavb+quYoZqXJ47gTSx+ealX7NczuS8zw3M/H9md1Hh4p9dLhmHx2VXsjJ/Vk9b2j396rmKmakyuG5E0if37YOPduPQUAxu4yTeQaPmfj+zM4PI8X8MFrzXuUumubD3OW0+TDa/b2quYoZqXJ47gTSzwOsWSyG53okn/BczcT3Z64+DBT127Cmfvu+GwvmDX3M9NXcn3evD2uuYkaqHJ47gbQ8OwsQAjsPkCABRD/rl3zMxPdnluek4Dmtqfe0gvO2VZ+3IR2ei6uYkSqH504g9Xk7JOctsfmwdiTneW5m4vszu78KFfurcM3+KrpQMJ+E1O/Pu/dLNlcxI1UOz51Aap5dREts/TaR9fH+6VOei5n4/szODyPF/DBak9928/eq2yZo78/b57erq5iRKofnTqA36klKFovhuY4AnfBczcT3Z/a9SjEPENbMA4R4oeD9GZU8w/bzAJurmJEqh+dOIDXP3iZy7H6Mp8R7xnMxE9+f2XqSpKgnSWvqw+wFs/kk9/1ZO28obV9PUl3FjFQ5PHcC6eNzzWK95rkdyXmem5n4/szN3/74Kr0/L5m/fd+NBe/PpJ5nsPv87eYqZqTK4bkTSP1e1bY2czyTtxAm/ZKPmfj+zPJMCp5pDc9OsI/OlR4szf358FxcxYxUOTx3Ar1RT1KyWK95bkdynudmJr4/s/3Piv2SsGa/5H03ntWTQFTzDNvvl2yuYkaqHJ47gfT7MWoXBcMzhIhx2o/RzMT3Z24f3cdX6f15zT46W3ot+Puz9rwNafd9dM1VzEiVw3MnkHYfXYIYCV3meA4OMMY068doZuLzNvv+TIr3Z1rz/uwE+27chdp5BrT9+3N1FTNS5fDcCfTG+3O59TI815KTCc/VTByfuf0YH1+l8XnNfgwrqCex5Y1aE59334/RXMWMVDk8dwLp36vqKfk1z8lm652d1Xs2M3F8ZvurSNFfRWv6q9wF0/O2u0C972b7/qrqKmakyuG5E0hf71lPya95zjEksjh7f25mYp7ZeUOkmDdEa+YNuQsE83pBGZ+Rdp831FzFjFQ5PHcCqXluUfUlz0/LBsvzYybOb7Pnba84b/sl522IpRdy0l+lrg/b/bzdXMWMVDk8dwKp+6sgZufY/ZKPCc9zMxPzzOa3vSK/7Zfkt29WBf2SXrvP3e+e326uYkaqHJ47gbQ8R0sW4n1Kfs1ziDnRdH7YYyblObLxOSric1wTn/NFs/P2baPNh8Xt43N1FTNS5fDcCaSOz8nFYNn5YY8Jz3MzE/PMxueoiM9xTXzOpXdqwrN2nn7cPj5XVzEjVQ7PnUD6/RgOMTtk+jE8eZsp0mTe0GMm5pntr4qK/qq4pr8qz/Nht406Pu/eX9VcxYxUOTx3Aml59h5SBPJMvedjwvPczMQ8s/WeUVHvGdfUe+b5e9Vto60Pi7vXezZXMSNVDs+dQGqeQwousfOGvEcLaTqf5DGT8hzY83ZQnLfDmvN2ms/Tv220PIfdz9vNVcxIlcNzJ5CW52ARrUNg3qse5Hmem5k4PrP9z1HR/xzXzNPPFwrO26idvx13739urmJGqhyeO4HU8Tl5h4F9r/IhxRym/c+PmTg+s/ntoMhvhzX57VRyXZP4rJ1nEHbPbzdXMSNVDs+dQPr7cz0lv+a5Ic/z3MzE8Zmd7xkV8z3jmnm9eT7f87ZR3593n+/ZXMWMVDk8dwKp36vaqzHHs48U0mR+2GMmjs8sz0HBc1jDcxLsr0rqeYAQDs/FVcxIlcNzJ9Ab+bBySn7J83PFZnl+zMTxmavf/vgqjc9L6rchldovnmevfq/avX67uYoZqXJ47gRS58Mg5QTsvthgkTxM98U+ZuL4zObDgiIfFtbkw9J83tAdn7X1nmH3fFhzFTNS5fDcCfRGPqyckl/z3JDneW5m4vjM9Ut+fJXG5yX9knfsFbxXee1+jLh7v2RzFTNS5fDcCaSOz+Sjz2w+LEAGTNN9dI+ZOD6z9SRBUU8S1tSTpPl8kttG+14Vdq8naa5iRqocnjuB3nh/Lqfk1zw35Hmem5k4PnPzhj6+SuPzknlDkC8reH+26vvz7vOGmquYkSqH504gNc8ePUU+H0Y+2zDdd/OYieMzW78dFPXbYU39drpg2o+R1PNJIOxev91cxYxUOTx3AunzYfWU/JrnhjzPczMTx2du/vbHV2l8XjJ/+469gvptq35/3n3+dnMVM1Ll8NwJpM6Hta4ojueQ3HSe/mMmjs8sz0HBc1jDcxL0VyV9f1U4PBdXMSNVDs+dQG/kw8op+TXPIbsA03m9j5mYZ/b+HBT357Dm/pwE8Tnp43PY/v5cXcWMVDk8dwK9cX8uUfU1zykg5el8z8dMzDP7XhUU71VhzXtVvLygfludDwvbv1dVVzEjVQ7PnUBqnltUfcnzM5KI5fkxE/PM1ocFRX1YWFMfFkvt12R+mPb9OexeH9ZcxYxUOTx3Aql5blH1Fc/o0eWc4uT+3JkJeXaW4/njq4znD9t/Os+UL5rVh1G+nLI+zNnNeX5cxYxUOTx3Av1PPL8klDAR5sBXiHRm0ona3Dxt+TTtFWxams8muG2UsXbzm/DjIub3mhwuO3mUcRa9ywGsT6/zWp0JT3EzE1LMZanlOeolGeqb0NmGSEvqjorN89OPi5jfa3Io7uRRUxwCpYT2dTYLvQ8WYoBZLG5m0ljMNVOgvJcCl7RSWH+5WWr6ttGuYt+8k+JxEzMQ5aDc6aNGOWLMHokLyI12HuVmJr34ctde+aV3UUCetlDcNspj9eYFXY+LmN9rciju5FFTnAiCT/g6Hd2BzlPczKQBmZs+gPLhA7hk9oD1817l20bZO4Gbjx543MQMRDkod/poUY7ZZuswcZnoRjuPcjMTosz1Qcm7oJb0QFk375m4bZQ35M07oB4XMb/X5FDcyaMOyDlnR86xFGcfMfnZsbqZSQMyd65G+cEa15ys/UXTk7W/SHtD3v5oXd3EDEQ5KHf6aFEONpC3LnJn60Y7j3IzE6LM5brkqa41mS43L8K8bZQcb5/oqi5ifq/JobiTR00xhIhgw+sBQB3oLMWPmTQgc+dqlB+scc3J2s+n51p/Oe025t2P1s1NzECUg3Knj/ps3d6MOJRdjj7wszY7M+kbMreqguSbKmjJogobBFnrcHllTKbN91Q8bmIGohyUO320KCefyKbsXo/x6gI3j3IzE6LMpa3lWes1SWs3b1i8bZQhefecdXMR83tNDsWdPOqzNZHLKaTXw7swIAEmmyc35MdMerZmazMVxZlrqjP9hYJyEO0ke9y9PLO5iRmIclDu9NGjnLP1EbhrMhJGD4mfk9uZSc/W3JoZkm+ZoSVLZmy43PSaHC6vXDJDm++YedzEDEQ5KHf6vJG3Lpfb1yi3wM2j3MyEKHMky0Few7G7YHpHdhcoK7u2x7i6iPm9JofiTh41xd5iDJhfD97rYvaE4momPVtzHRMob5nANT0Tvkyknzwka/PWuzdNNDcxA1EOyp0++iLNWsnxGuVGO49yMxOizKWt5VnrNUlrN9/GetsoOd4+Z11dxPxek0NxJ4+SYmcTkcfExWMfQiKi2am6mUnjMTcnAOVjAnDJlADrLxDkurRTcHH3IQHNTcxAlENyp4/6aB3JBZsdh3Iz4VFuZlKUuZFcKJ/IhUsGclk/Xzhx22ibJjafx/W4iRmIclDu9FGj3N6NGJSdzxTT7AWqmUmP1uzZWnG4XnK6BiyvS9wsLrwIlKfr7Y/X1U3MQJSDcqePEmUKLiUkF15vjsGQgSI4O0t4NTMpylzeOssT13lJ5vpGeTpWDy9UrlHO26euq5uYgSgH5U4f/QG7xtKXKEdwGdNsKXpnJi7U5C7LH1+lpZprhuqledk1pctp35Pz7vfl5ipmpMrhuRNI3ZpMEG3glrphRGdTzHky9ucxk84K4UKzk4dmt+ZROQqm8EX1FD63e2hubmIGohyUO33UKDubgg/AjP15aOdRbmbi0Mwlvz6+SkPzkvTXHXZnmezbRt1GsXv+q7mKGalyeO4E0vOcXCJun9uNfITkcfIs9ZhJeWZxVtC8JpcdLpjmsoO6l4K2Z7m6iRmIclDu9NEPAALrgSJ3ym7Re4ZyMZOesrlctpPnst2aSpEomOUV1VNy3e657OYmZiDKQbnTR4ty9hkQomdRroF7gnI1E5+yuc6oj6/SU/aS3ihKl58F5ttG+chMeffmqOYqZqTK4bkTSB2ag8cA3FZGjD66HIAmFSOPmZRnNp+tSGevKf4Kl52tQL9tlMVftH0yu7qJGYhyUO70eSMBVq65r1FutPMoNzNxaGZXUWTFMoq8pLXiDruChU9WufCJ8u69Fc1VzEiVw3MnkJrnhJYyt2D1/uH3Sd7NEmDNTNy4zPKcFDynVTxbnB+1P+b5aXqXD8/FVcxIlcNzJ5B6MlDC5CFzUzdjdBgp+lntSDOT8szirKB5Td9juHAG822jLAOj7VmubmIGohyUO33UKKMLNvBvzdGjz25aNtLMpBWdHMqKg/aaczZAmcXHV3RabXH2Qbm4iRmIclDu9FGjnDFaTMi0TD0HcR7lZia+NXNz7T++Sm/NSybb3zfi6Sk7lzyZ5ta8+2j75ipmpMrhuRNI/9acEoSYuFN2QkgB/Syh3czEt2b2gSopHqjSmgeqePlZTvu20ea00/YPVNVVzEiVw3Mn0BsPVCV3xfDsLNh5FqyZSXn2bHz2ivjs18RnP++fum2URdrkT3wurmJGqhyeO4HU521rY0p3VH3Nc9sXx/PczKQjCriOC5R3XOCajgs/D863jXbayPYdF9VNzECUg3Knjx7lGBJky0zWfSo/JyhXM2loZk/aioP2miHZ4QJB7Yh2cBBtf8yubmIGohyUO33Up+z2osShDDm5OI3K1Uxaoc0uTVdsTV+z3DHOj9i3jbYPcvsTdnUTMxDloNzp80ZUzjHYzEZltBRh2mzRzKRvU1xUVtRnrynPBiiz7Lm3KSiHcMXb1InKxU3MQJSDcqePPirXx2EG5ZrunqBczcRvU9yKx4+v0repJUseKZfaa/5tCtTTRnbf8thcxYxUOTx3AqlDM3ifnbPc9KCccqAUZxVgzUz8NsX2NCdFU3NaM6JA0ApJ+lZIStu3NVdXMSNVDs+dQG9UaJcX4pc8P+lulufHTPw2xcZnr4jPfk189hdO47O/SBuf/e7xubmKGalyeO4E0sfn6IO/oyrDc815T3iuZtK3KW5OAcrnFOCqNcxWMHLEasdn7z6noLmJGYhyUO70UYfm1o3MoZwwTQf7PWbi0MxGZkVgXoQyTRPa4SJ1zchB+cNNzECUg3Knzxsb1SFA8kxF55PznqFczKRvUxzKTo6yW4NynE/Ct1F9xHYH5eImZiDKQbnT542+qegpAlPMmWwCJEjTqFzNhCh77oDt5Qdsv+aAnS43rRhJZV+zHGV/DtjFTcxAlINyp492qUX0AVLIzHCCZFMCF2nSNvWYSV+ZuUy2YtbumlG7AGUo9uSVWTlpZPtJu81NzECUQ3Knj75jqpZ5vEa5PVzxKDcz8StzYF+Zg+KVOSx6ZZ6ugLxt1IOzw+44V1cxI1UOz51A6kM2IUW0yBSAJfDRgcuTsuzHTPzKzM70S4qhfmnNjpooGIQf9YPw0+5j/ZqrmJEqh+dOoDc6mkutB8Nzfbia8FzNxKlsNj57RXz2a+Kzv2jKs79Iy7M/8bm4ihmpcnjuBNLHZ3f/X2ZGaD/zhXiem5mUZ7ahWdHPvKbXIgjy2UG92ZV277VobmIGohyUO33e6LUob8McyiXlPUO5mEmfprjI7OSB2S2JyzYKXpnjRcpeC7d9WK5uYgaiHJQ7fdQoO/AExM0BS+iytcnOo3Ixkz5NcXMJvHwugV8zlyBdbrqjJl1OWZjtd59L0NzEDEQ5KHf66KNyfRtmUPY+I/lJ29RjJn2b4vJfihXNazY0A1xuVsZ52yinZm+/oLm5iRmIclDu9HkD5fI4/Brllu7mUW5m4repyL5NRcXbVFz0NoXTdVP5QvW6qbg7ztVVzEiVw3MnkP6UncFldppfIvSQAWYFYM1M/DbF8pwUPKc1PCfBNL+kn+aXDs/FVcxIlcNzJ5B6HaTLOaBz3K25pbsnPFcz8dsUy7NX8OzX8OwvEnRAOm189ofn4ipmpMrhuRNIzXPy5NAG7q2ZnMvW51ktWDMTv02xPDsFz24Nz05QO+L0tSPu8FxcxYxUOTx3AmmrtG0K4F3iNq8nB5QcTsu0m5mUZxZnBc1LYLahZKz5t2anXW2xPcvVTcxAlINyp482NAckjB4Sj3J5w5qhXMykb80cyorAvCYu21jqu/i3ZqcsGzlhubqJGYhyUO70UVd0orMp8mUjDkJMDudRuZhJ35o5lBV35jVXZpvm5Zy3jfKIfW7M1U3MQJSDcqfPGx3NpdiDQRkp5DwbnP2YSd+aOZQVz1NrXqcAS1cUvwkStZsgD8rFTcxAlINyp4/6gJ2BIjhuncXzfDVBuZqJ35q5ErCPr9K35iVFYJTL+mX+rZmUXc2Ut68Cq65iRqocnjuB1KE5+IyRn87pMuYQaVbR2czEb81s31RS9E2lNX1TqWyfmbw1a6dzpu0LtKurmJEqh+dOoDf6mkvFx2uevXWYfZj1QTYzKc/AxmdQxGdYE5/xstO3Kbys9m0Kto/P1VXMSJXDcyeQPj5HtJFPaHsAhHktWDMT146wcwq8Yk6BXzOnwM8H7t426tqR7Uu1q6uYkSqH506gN3hOOd2nZI5nDAlhVqvdzMS1I+x5W9EOSWv6IcnNm6huG+12i9MQWV3FjFQ5PHcCvTGnoFRwMTzX0bwTnquZlGcWZwXNa5qbg+DBOagfnOmwXNzEDEQ5KHf6vNHcXIq3OJTJpuymV+dqJq0d4U7aTn7QdkvO2TYKFltE9TnbnWN2cRMzEOWg3OmjRjl6m4IP7K05OR+sm0flYiatHeGismIW2JpRYDbNF07ZVMaSKGpHTlQubmIGohyUO33eiMqleItBOYOLfrrYoplJa0c4lBVjd9dM3QW8YFacfdtoNzUflIubmIEoB+VOHz3KtXjrNcrtOZpHuZmJa0e4zRYfX6W1I0t2W1AuK2gmtSPKqSOUt19uUV3FjFQ5PHcCaXn26HJOMXChOQQbHflZhXYzE9eOsPvjkmKBXFqz2TXNo/Nto22dStvvnaquYkaqHJ47gd6YO1IquBie63P0hOdqJq4dYeMzKOIzrInPeMH0baqeyDW1Iyc+F1cxI1UOz51ASp6DxRjJRh7n8ho9w7mYiUtHuPVTH1+lpSNLFlCRv+y0VNtfVrlKjvz2G6iqq5iRKgfnTiB1eE4uxHAfkhmek3U+0az1opmJS0fY47ZiySut2fJKTrDiwulXXJw1r9VVzEiVw3MnkH5lcy3ges1ze8fieW5m0vdmLjw7eXR2S4KzjfPgbGM5jyvem7ePzdVNzECUg3KnjxrlDCk4fph29EgUwqzBuZlJ35u5yOzlgdmv2b4uGNdp9eM6/fZhubqJGYhyUO700UflWvDBoZzR43RbTTOTvjdzKGc5ynkJyoDlOjx5b1Z2Q+aDcnETMxDloNzpo0e5Fny8Rjndx/AcZ1VgzUz8PsUukUuKLXJpyRo5SpedbWCndIG2PDttv0euuooZqXJ47gTS907VV2KG55ojm/BczcQJbWQT2qhIaOOihDZM60e8/r3Z4/Y8F1cxI1UOz51A6jnaFpynO6pyPCck52b1YM1MnNDml7xqtryuic9uXqhNTl2oTe7E5+IqZqTK4bkTSB+f67PSa55booznuZlJE9pceHby6OyWBGcb58H5tlEWd7rtY3N1EzMQ5aDc6aMPzb/9QnZiZ0YLgGnWddHMpAltLjJ7eWD2a9av15rNSUJb+Tbltw/L1U3MQJSDcqfPG72Q5UWJQzlaTNOR+M1MmtDmUM5ylPMSlAEvK2igstoGqoNycRMzEOWg3OnzBsrlReklys+dmkX5MRMnwIhNgJEiAUarEmCzeSPk1aO0ydPmODdXMSNVDs+dQOoVF8lZsOyi12wh3DaTiSOPmTgBxvLsFDy7NTy7spSZT4CpF726w3NxFTNS5fDcCfRGhXZJQzM814v1hOdqJk2AcTgraF4Ds43z4GyjOjgflqubmIEoB+VOH3VozgA5OW5WQbYpppTtpAzsMZMmwDiUFQftNedsW4tC+AQYKIeBnWN2dRMzEOWg3OmjL86uGejXKEOimMKsrfkxE5+y2bIRxcMUrXmZIie4NTv9rXn7p6nmKmakyuG5E+iNspFy1+V49uhjmjRbPGbidc3siouoWHER16y4iBdN+5rjRdq+5rj7iovmKmakyuG5E0jNM3myxK6Uy+h9CB4mD1SPmfSozYVnRVHnmppOm+b7am4b7aLX7WNzdRMzEOWg3OnzRtlIueu+RpkIkpuOKHjMxB0X7AShpJgglNZMEEoXTRPa6SJtQjvtPkGouYoZqXJ47gRSZ8HAZUwhcUdt8uAD2UlF52MmvjqzI4QUQwpozZSC++o87bhw6qJO2n5MQXMVM1Ll8NwJpI7PLYHF8VxO4zOei5n46szG56iIz3FNfI6C7VNRv30qnvhcXMWMVDk8dwKpU9vgowOXOZ4dknNAswKSZia9OnPhWTHgb818PxsvL9hzYbV7LraPzdVNzECUg3Knjzo0t9wVg3LOAafNkI+Z+OrMZrWTIqud1mS104XTV6p0kXpYwfZZ7eoqZqTK4bkTSJ/Vrgms1zx7yEQZZ7VgzUx8dWYXNyv2ydGahXLkBIvYnX767vYb5ZqrmJEqh+dOoDdeqUoCi+E5A0L0syqSZiY9anM4K9awr9nCfh+1Z3nt20b7SnVYLm5iBqIclDt91Ci3u+5rlJML3nqcvVI1M/GeCzY0gyI0w5rQDKV3mQvNUIZ6avZcbI9zdRUzUuXw3Amk5JmsBYcJiLs6J08O521UzUzcFslenb3i6uzXXJ395QSLLpx60cX2V+fqKmakyuG5E0jPMwJk7pWqQ57juTMTx2f21RkUr86w5tUZLpxenaFUmmji8+aZ7cdVzEiVw3MnkJpnSGh99K/P2x3yE56rmTg+s6/OXvHq7Ne8OvvLC+Z2em0Vid/81flxFTNS5fDcCaTlGTx5nz0zIv/+4T7YHPkGjM5MynNgeQ4KnsManoPgvB305+1weC6uYkaqHJ47gdTx2WN0IdLrudpdCOd5bmbi8zbbIAmKBklY0yAJgsVyoF8sB5s3YTyuYkaqHJ47gdQ8k8uJKHL3Z8iQwWW+arszE1d5sjxHBc9xDc9xPvTvttF2YcTDc3EVM1Ll8NwJpOfZ55ABXg/jvX84UfKZr9ruzMTnbTa/HRT57bAmvx0EVdvhctp8WNg8v/24ihmpcnjuBHojv11uva95biGc57mZic/b7Ng/UIz9gzVj/6AMJ+DP2065ZY5g8/lCj6uYkSqH504g/f0ZYrA5vy4N60L4hOdqJj5vszxHBc9xDc9xvjWSonprJMXDc3EVM1Ll8NwJpM5vQ04+cmO2yTqwHqzj68M6MyHPGLj6sI+vMp4/bP/pPGMob1EMz7eNMh+GYfP6sMdVzEiVw3MnkD4+x4Qp+Nf1YV0I53luZuLzNrtnDhR75mDNnjm4nCC/7dT57c23YDyuYkaqHJ47gdQ8h+QpBTYf1p60JjxXM/F5m63fjor67bimfjtcfjael4K+niRuH5+rq5iRKofnTiA9z9mjI8/Vk7QQPuG5monP21y958dX6Xl7Sb0nxsvO6sNuGyXPGLav96yuYkaqHJ47gdQ8RxdswMjVe7YQzvPczMTnbc+et73ivO1XnbcF+W2vzm/73XmurmJGqhyeO4HUPCdPEJCtDwuZYsRpfVgzE48yYOs9naLe062p93SXn9Z7ujKMSDPKYPt6z+oqZqTK4bkTSD01zAMgAHDvVe1IPuO5mInvz2x/VVT0V8U1/VXh8lFQH6bc70xx+/N2dRUzUuXw3Amk76+qVZoczyGCc/P4XMzE9WHseTsoztthzXk7CNZIBv0ayXDO28VVzEiVw3MnkPr9Ga21jiyX325XbJ7nZibOh3H12x9fpfmwJfXbWGuz+XwYKOMzhu3rt6urmJEqh+dOIHV8zkCJEjOll2z0PqOF2ftzM5PybFmerYJnu4Znwfsz6t+f0R6ei6uYkSqH504gPc9IIQfi4nNLmfE8NzNxfjuw+e2gyG+HRfltP+2vgnLH1uS3w+48V1cxI1UOz51A6vO2RZspse/PKYB3adqP0czE+W22v8op+qvcmv4qd/lpf5UrzGvy29v3V1VXMSNVDs+dQG/Uk5RXJo5nsjCfT9LMxPltNj5HRXyOa+JzFMwPi2Xcvia/feJzcRUzUuXw3Amkj89kY/b59YLY+4c7l22Yx+diJs5vs/XbQVG/HdbUbwfBAvegX+Aetq/frq5iRqocnjuB3ojP5ZXpNc8tZcbz3MzE+W2uX/LjqzS/vaRfEuMFs/rt20Zd77l9v2R1FTNS5fDcCaSPzwkCeLaeJIMnm/PsvN3MpDyz/c+o6H/GNf3PmObzhm4bZT4MT/9zdRUzUuXw3Amk5RltytERcvntlgKf8FzNxO9VLM9WwbNdwzPM82G3jXLeENrDc3EVM1Ll8NwJpI7PMaCPkVlF16XAWZ4fM/F7VWTfq6LivSqueq+a9mOgelEsQdyc5+YqZqTK4bkTSF+/bR1mH5j785Mym/BczcT5bZbnqOA5ruE5XiTY4k7qLe6H5+IqZqTK4bkTSL2PDpJHHxMzDxAsIYaQJvVhj5k4v83yHBQ8hzU8B8H87aCfvx0Oz8VVzEiVw3Mn0Bv9GGXKLsNzTZlNeK5m4vw2916FivcqXPNehfGCWb8kxrKDUpPf3v29qrmKGalyeO4E0vdjuEwZuHpPsOm3gpXpebuaifPbbP22Yp4+rpmnj3Wz8yS/rXx/xu3n6TdXMSNVDs+dQG/0Y5RXJobnDC6in9RvP2bi/DY739Mq5nvaNfM96+5IPr9NQZvf3n1+WHMVM1Ll8NwJpI/PPqNLkanffkb68jw3M3E+jK0Pi4r6sLimPixeINh3A+p9N9uft6urmJEqh+dOIDXPFAK5hMy83qdFmue5mYnzYWz9dlDUb4c19dvhwul7VdDnt8Pu9dvNVcxIlcNzJ9Ab9dslK83wXK/YE56rmTgfxs0nQcV8ElwznwTjhYL5nqiu99x9PklzFTNS5fDcCaTm2UGEED0zDxDQ2xSQZuftZibOh7HzehXzw3DN/DCM8/7n20Z7f95+flhzFTNS5fDcCfRG/XbJSnM8lyv2jOdiJs6HsTxbBc92Dc91t/NkPolyXi/aw3NxFTNS5fDcCaSfv12nBDE8Bxshh8n8sMdMyjM7fxsV87dxzfxtxFKbzfGM6vkkuP387eYqZqTK4bkT6I36bWdd4voxnpQZz3MzE+e32fmeUTHfM66Z71lrRSbzDNT1ntvzXF3FjFQ5PHcC6efp16kiHM8xQcbZ+3MzE+e32fnbin03tGbfDYX5vpvbRru/avt9N81VzEiVw3MnkDo+pwjgYuLuzy1lxvPczMT5be69ChXvVbjmvQpjma3N58NIWx923quqq5iRKofnTiA1zz657IitJ3GQAiU3O283M3F+m60PU+yXxDX7JTFeTsCzV9d7bl8fVl3FjFQ5PHcCvVEfVl6ZGJ7Rgs1uGp+rmZRnx8Znp4jPbk189pebzjPwl1Pen9Gd+FxcxYxUOTx3Ar0Rn2NKPrDxGaNFN5s39JiJ36tYnq2CZ7uGZ7zstL8K9fsx7OG5uIoZqXJ47gTS85xdssC+PztMLvs0mQf4mInfq9h+SVD0S8Kafkksuy8m71Xa8zZsX79dXcWMVDk8dwLpz9v11fg1z568z97N6kmamTi/zd2fP75K89tL7s/kBfslg7pfksL29+fqKmakyuG5E+iNfozyysTwXFNmE56rmTi/zc0nQcV8ElwznwTrLKFJfltb73nmk1RXMSNVDs+dQPp6Eo8R+P5nn4IDN60Pa2bi/DbLs2J+GK6ZH4bpwun9OZUeLE1++/BcXMWMVDk8dwKp5/XGYNN9g2Z5LimzGc/FTJzfZnl2Cp7dGp795ab1nr68aWny24fn4ipmpMrhuRNIyzPFkHIMwL1XtZTZhOdqJs5vszxbBc92Dc94wbRfEvX7MezhubiKGalyeO4EUsdnRxQSWq4fw+eA8TaZ8VzMxPltlmfF/G1cM38b6bLT+Ez6/Rhn/nZ1FTNS5fDcCaSOz85BAgtcP0a0RBHC7P25mYnz29x+DFLsr6I1+6soCOYNhTIDVJPf3n0/RnMVM1Ll8NwJ9EY/RtkKyfBcU2YTnquZOL/N7X/++CrNby/Z/4xR0P8c9f3PYff9z81VzEiVw3MnkDq/ndG6zM8ziN5BttN6kmYmzm+z9WGK/c+4Zv8zprILdpLf1u6v2n7/c3MVM1Ll8NwJ9Ea9Z3ll4nj2IUCax+diJs5vs/VhTlEf5tbUh/n5PED0F2njs9u+Pqy6ihmpcnjuBHojPpMj/r2qrayb8FzNxPltlmer4Nmu4RnKbLDJfknt+7M9PBdXMSNVDs+dQHqeyZInx83rbSNMZjwXM3F+mz1vg+K8Dav6Meb7MajMPNDkt895u7iKGalyeO4EeqMfo7wyvea5jTzgeW5m4vw2t+/m46s0v71k3w2Fywrmb4OSZwrb77uprmJGqhyeO4H09Z71lek1zy1lxvPczMT57czmt7Miv51XzTMQ1G87df123p3n6ipmpMrhuRPojfnbZaoIxzPkEKf1JM1MnN9m53sq5gHimnmAmErtF5/fBuW+WDzzAKurmJEqh+dOoDf6McorE8dzSZnNeC5m4vw2y7NT8OzW8OwF/VX+InX99uG5uIoZqXJ47gTSx+c6JYjhuabMJjxXM3F+m+XZKni2q+Zv2+n7M6rne6I9PBdXMSNVDs+dQG/wXKYEcTxDQjedH9bMxPltdj8GKPZjwJr9GFjelnmeScszbD+vt7qKGalyeO4EeqMfw4Mn7v0ZbcrR0ey96jET35/Z92fFvlhcsy8W0zy/fd+fte9V2++Lba5iRqocnjuB3qgnKVkshucMeJ/LZzxXM/H9mXuv+vgqvT8vea9CX3Jd/P0ZtfPD3O7vVc1VzEiVw3MnkDo+o085W2Ly22hzDtbO5hk8ZuLzNjt/GxTzt2HN/G28UDAPUD1PH3afH9ZcxYxUOTx3Ar1RH1Zuva95bsjzPDczcXzm+iU/vkrj85J+yTv2CvLbqM5v794v2VzFjFQ5PHcCvfFeVbooGJ5DpBhm/RiPmTg+szyDgmdYwzMK6klQX08Ch+fiKmakyuG5E+iN/HaZmv2aZ4chhuAn8wAfM3F8Zs/bTnHedmvO277MHuHjs3qevtv+vF1dxYxUOTx3Aqnvzz477zCyPNeRRBOeq5n4/ZmdZ2AV8wzsmnkGeMGUZyw7ZTXvz7vPM2iuYkaqHJ47gdQ8BwvOs/ufnyetGc/FTHzeZvPboMhvw5r8Ngrmk+Dl1Pmw7fPb1VXMSJXDcyeQPr9db70Mzy64BDSpJ3nMpDwnNj4nRXxOa+JzFuyLzfr8djrxubiKGalyeO4E0sdncOijZ/bRoc9k43Q+yWMmridh+6uior8qrumvSoL4nPTxOe7eX9VcxYxUOTx3Aunnb6cUsk1cPUm7Ys94LmbifBhb7+kU9Z5uTb2nF8zf9ur5nuh2r/dsrmJGqhyeO4HU8blVdb3muV2xeZ6bmTgfxsZnq4jPdk18xgsF9duo7sfYPj5XVzEjVQ7PnUBv8Fyquhie65F8wnM1E9+fWZ6Tgue0hucs6JfM+n106fBcXMWMVDk8dwJpeXYxhwQpc/nttuKK57mZie/PbD4sKvJhcU0+LAn6q5K+vypunw+rrmJGqhyeO4HeeH8uWayXPBNGZ4ny5P35MRO/V7HxGRTxGdbEZxLcn0l/f4bd43NzFTNS5fDcCaTkGTCHFC0Cy3MKiQgn71WPmZTnzPKcFTznJTyTLXdjbh6gLT0bCp7z4bm4ihmpcnjuBFLynClZAgzMcfvZcMXj3MzE4Zk9boPiuA1rjtt0WcG4XlCXk+x+3G6uYkaqHJw7gdTPVe2QzPDsCSi5Sfn2YyZOh7HlYUlRHpbWlIely0/TYamM3Nekw3YvD2uuYkaqHJ47gdQ8B7QZHLeOjpx3wWY3SW8/ZuLjNhufsyI+5yXx+T5KW8Fxm7TH7ROfi6uYkSqH504gfXyul16G50DJWzcZT/KYCXkG4tqrPr7KeP6w/afzDP6C2frn20bZ/gy0e3tVcxUzUuXw3Amkj88EAYNnxpOQp+xTwMlz1WMm4/k1y1KOVzBsaV7iaUm9InZzfqtrmP+oyGG3E0fJLnrCRJgDd1dux2+e3WYmviuzowuSYnRBWjO6IF1e0Hphta2RaffRBc1VzEiVw3MnkLp0xPkcs+dW2zzhesJzNROfrblS7Y+v0rP1klJtEIz+A/3oP6DdS7Wbq5iRKofnTiB960XOzmJkVj1TDCnHALO7cjMTt16wuS+nyH25NW9T/nKCVc9evep5+9xXdRUzUuXw3Amk5jlTiB6Ruyu3bqsJz9VMfN5mRwslxWihtGa0UCp34klrpLa0M22f+6quYkaqHJ47gfQ8++BCtFztSAvhE56rmfi8zb01f3yVnreXvDXfZ2lBLls7yhNo+7fm6ipmpMrhuRNIz3OIEFPm3ppbCOd5bmbi8zZb2ukUpZ1uTam2F9SOeH3tiNu+tLO6ihmpcnjuBNKWakMO1kdnmdbIJ4RPeK5m4vM2O7ogKUYXpDWjC9LlpvntdHn1aKHt82HVVcxIlcNzJ5A6PreKTI7nmCnZWT6smYlrwdhVklmxSjIvWSVJ9rKz+HzbaONz3n2VZHMVM1Ll8NwJpH+vCoAhePa8XY/kE56rmfj+zL0/f3yV3p+XvD+Dv2hW2wl1HbTm/rz9+3N1FTNS5fDcCaTmGchl74GrJ8khBZfzZPTfYyblGVmeUcEzruHZlTEjHM/ucsp6EsDDc3EVM1Ll8NwJpOXZgyObiBu17QAdummr82Mmvj8H9v4cFPfnsGi0EMx4vm2y9v4cNue5uYoZqXJ47gRSx2fMaCE7Jh/mAH0EB5P89mMmvj+zq56zYtVzXrPqOV9+Vk9y35+19SR591XPzVXMSJXDcyfQG+/PJYvF8FyP5BOeq5n4/szx/PFVen9ewvN9N56NIrltlKNIgA7PxVXMSJXDcyeQOj6TxUhA7HmbgsMAk16qx0x8f2brSVBRT4Jr6klcWXPB35/Jae/Pu9eTNFcxI1UOz51Ab9STlCzWa57RBnJ+Fp6rlZDmwMEc5CyHJSjbXI7RXItkvqyy1DNsT3LxEjPQ5HD8yKNOg6XkwEYuKreL9QTjaibOgkU2CxYVWbC4akHVLCrfNuqq7bg9y8VVzEiVQ3MnkHogb1sTx/FMLluaVG0/ZuIsGMtzVvCcl/BMdj6B5LZRVm1jPjwXVzEjVQ7PnUBvVIWVuV6veW4Xa57nZibOgnFVYR9fpVmwJVVh4MuLMp8F03ZVAe1eFdZcxYxUOTx3AumrwqL1NnouPpN1aJEmVZ6PmTgLxk4xQMUUA1wzxcDNB2zfNtqsNu5etd1cxYxUOTx3Ar1RFVZy0QzP4KzPYXbebmZSnh0bn50iPrs18TkIstpBn9V2Jz4XVzEjVQ7PnUBqnhNESomtCmuDiHiem5k4H8ZWkSRFFUlaVUUy7cK4bbT357T9q3N1FTNS5fDcCaTmOWD0ERIXn1ujxoTnaibOh7FVnllR5ZmXVHmSnW/AIFuWWGnyYdtXeVZXMSNVDs+dQG9UeZasNMNzvWJPeK5m4nwYx/PHV2k+bAnP4Oddz+Avr+3CoMNzcRUzUuXw3Amkj8+UMFHk8tsuQo7Jzaq2m5k4H8ZOzEfFxHxcMzHfzd+fbxt1VdjuU8Oaq5iRKofnTqA3qjxLVprjmZzLbh6fi5mUZ2DjMyjiM6yJzzTvwgCn7sIAOPG5uIoZqXJ47gTSx2cHiD6w8TlBIp+m9+dqJs5vs10YTtGF4dZ0YQTBe1W4UNklCe7kw4qrmJEqh+dOIH18rq9Mr3luKTOe52Ymzm+zU4aSYspQWvJehfmy06nb+QLtxrm0/XtVdRUzUuXw3Amkf3+uswc4nrN1GGdtGM1MnN9mpwBmxRTAvGYKYL7crN7ztlEvbN++nqS6ihmpcnjuBNJPJSGkCMSdt1vKbMJzNRPnt7n67Y+v0vz2kvpt8GVi5yS/rc2H0fb129VVzEiVw3MnkL6exAbr+S7JQDl6N60Pa2bi/DbLMyp4xjU8u8sLtlZZ7RRAPDwXVzEjVQ7PnUD6dklwkJLl6klaymzCczUT57dZnkHBM6zi2U63Yjh1fRjA4bm4ihmpcnjuBNLyHBIiQQDuvSq4HADt9P5czcT5bZZnp+DZreE5XG5W73nbKKdugzs8F1cxI1UOz51Aap5d9uAtcPXbMYcEKc/6JZuZOB/GbqHLii10ec0Wujzf3o5Zvb0d8/b1JNVVzEiVw3Mn0Bv12yUr/ZrndsXmeW5m4nwYtyX246s0H7ZkSyz4ywumAHr1FMDdt8Q2VzEjVQ7PnUBqnnOkRHy/ZLLRk53WkzQzcT6MrQ9DRX0YrqkPc/MtdLeN9ryN29eHVVcxI1UOz51Ab9Rvl6w0x3O2FtI8PhczcT6MrQ8DRX0YrKkPo/K2zPFM6i10ANvXh1VXMSNVDs+dQG/E5xAjn99uLdITnquZOB/GxmeniM9uTXwOF037q4J+y4078bm4ihmpcnjuBHqjfrtkpV/znIPz2cOsH6OZifNh3Naqj6/SfNiSrVWYBVufs37rc959a1VzFTNS5fDcCfRGvWfZTcPwXK/YE56rmTgfxm1x//gqzYct2eIO4bLTeYBBX09Cu29xb65iRqocnjuB9PWeHrOzbH9Vvu/mcfr+3MzE+TB2fhgq5ofhmvlhTjDPwOnnGeD2/RjVVcxIlcNzJ9Ab9Z4lK83xXK7YM56LmTgfxvIMCp5hDc8kyG/T5dX1YYfn4ipmpMrhuRPojXm9ZQoBx3NCl/I8PhczKc+WPW9bxXnbrjlvU9kAy/OM2vO2Peft4ipmpMrhuRNIfd52yYINnnuvyslDcNP5JM1MnN9m5287xfxtt2b+drhAMK8X1PN6t++XrK5iRqocnjuB3uA5uUzce9XTUsny/JiJ89vcIrqPr9L89pJVdJgvJ5hn4NX1nrvvomuuYkaqHJ47gfTvz/WVieHZkU00e39+zMT5MLaeBBX1JLimnsSV2mw+H6bed4O715M0VzEjVQ7PnUBv1JOUrDTHs/Pe4WTfzWMmzoexW59BsfUZ1mx9pnk/BtDl1PVhJz4XVzEjVQ7PnUDq8zYBElli3p89uGDRwzw+FzNxPoztx7CKfgy7ph+D5vslbxttftvu3o/RXMWMVDk8dwK9EZ9LVprhuT5RT3iuZuJ8GDt/2ynmb7s187fDZYOgnkQ933P3fsnmKmakyuG5E0jPc81Kv+a5hXCe52YmPm9z9Z4fX6Xn7SX1nvdZWvD+7NTvz7vXezZXMSNVDs+dQG/Uk5SuKIZntBHCrL/qMRPHZ5Znp+DZreE5CPZjBP1+DHd4Lq5iRqocnjuB9PUkdQr+a57bEzXPczMTx2f2vA2K8zasOW+TYJ4+6fc/w/bn7eoqZqTK4bkTSJ0PCy6mhJHnuTxRz3guZuL4zOa3nSK/7dbkt8MFgvszqO/P2+e3q6uYkSqH504gfX67npJf8xxccDCdZ/CYid+f2XpPVNR74pp6Tz/fjwFevS8WcPd6z+YqZqTK4bkTSMvzb6O7vXXMfM8nhM94Lmbi8zZb7wmKek9YU+9JF037Jeki7bwh2L3es7mKGalyeO4E0vdL1iqQ1zwna9HRLDxXK3H3M9v8rOh9XoGydRfNQrN16tGeJ7NdvMQMNDkcP/IoMXbRO+djYKb0PoP2JxhXM/Epm60iQUUVCa6a6mkFUz3VU/Rx+yqS6ipmpMqhuRPojSxYuesyPCcHNs6KwqqVkObAReUgj8phTVTOBVMuKucLlAMMwonKH15iBpocjh95tFHZYcQMkTlbB0LrfHKTt6nHTFzbyd6VreKubNfclVEw+w/1tdp297tycxUzUuXQ3An0xm4biila5pQdCCNFms0ueMzEb1NsLtspctlu1awwP63VDvpZJG73XHZzFTNS5fDcCaTkGTCE7IJF5pQdXEpILkxy2Y+ZOD6ztSNWUTti19SO4EXT3kjU57Lt7rUjzVXMSJXDcyeQOj63UzLDc11nNeG5monjM5sFc4osmFuTBQuC2flBPbsA3O5ZsOYqZqTK4bkT6A2eyyn5Nc/BBws2zc7bzUwcn9nnKat4n7JrarVxPosEUM+z3T0X1lzFjFQ5PHcCaXmO4DNRdsxs3md9LM9zMxPXjrDxGRTxGdbEZyeoBXMXaGf/wfbxubqKGalyeO4EUsfnnK3NiMzsgidlNuO5mInjM1urbRW12nZNrTYKeiNR3xtpd6/Vbq5iRqocnjuB1Dy3UzLDM3kAT7P3qmYm5Tmz8Tkr4nNeEp8RytxdbvYfXKjNh+UTn4urmJEqh+dOIPV521pMGTzTS/WEcJ7nZiY+b7PvVaB4r4I171XugmlVmLtA3Ru5/XtVdRUzUuXw3An0xux8yDE57rydM/hAOJm1/ZiJz9vsLgyr2IVh1+zCwPK2zPdeWHU9ye67MJqrmJEqh+dOIHV8dtmlDImZtf2EcJbnx0x83mbjc1bE57wkPt9n6dl7FUJ5o9act3ePz81VzEiVw3MnkJZnsBlcRM/MCntS4DzPzUwcn9lZ21Yxa9uumbWNgl1VqN4NC3b3WdvNVcxIlcNzJ9Ab+e1ySmZ4jjaEGCfvz4+ZOD6zu9uzYnd7XrK7HaHMJeDjM2hn5+fdd7c3VzEjVQ7PnUDq8zZRco4yU78dCSOAD5Nm58dMHJ8jG5+jIj7HRbMLrGB2vnoWiY2781xdxYxUOTx3Ar0xu6BMvGd4rshPeK5m4vjM8pwVPOclPN+xd5YPu+/Y2nxYPjwXVzEjVQ7PnUD6/qr6avyaZxeTtX4yxKBZiWcYsCMMFBMMVs0imT1V3Tbap6rdK0mql5iBJofjRx51WK6TgBiKa+J7gnE1E5+y2VuzVdya7ZJb833KFkzMt+os2Pa35uoqZqTKobkTSH9rrnfd1zx7GxAtTF6dHzPxKZvNamdFVjsvyWojXFaQBVPznLfPaldXMSNVDs+dQGqeQ6ScAzFdGNEHSCFPcS5W0tlCXMtzkHc8hyUNzzaVZinulJ0ur0xoh937nauXmIEmh+NHHi3GGSkHAo7iBjqPcTMTR2W2FiwrasHyklqwO+IKcl+gzn3tXgvWXMWMVDk0dwLpeyPrC/FrnpODGNHP3qaamZhnNv2VFfmvvCQBhvbys71Ut412L1XePgNWXcWMVDk8dwJpeU7WZu9SZGo7HxOW58dMzDM7uyArZhfkJbMLblZne2xuG+0em7z77ILmKmakyuG5E0gdn1vu6jXPECOhy5PZBY+ZmGd2VlhWzArLS67OaMucTp5np47Pu9+dm6uYkSqH504gdXwm58GCZXqpHhOe52Ym5pmdzZsVs3nzktm8N6uC+OzU8Xn32bzNVcxIlcNzJ5A6Prdb70ueM3gfQ5yE52Yl7nRmG50Vfc6rakdmofm20Ybm3UmuXmIGmhyOH3n0LZGlcus1xTXvzVNcraRvUxzFQU5xWENxml+YbxtlQA7bU1y8xAw0ORQ/8qgHFaAN5DyTy87oHTk7GSPUrIQUR+5hKsrfpeKaEQX2gumI/PtkraM47v4qVb3EDDQ5FD/y6LfXpBiQ2SnnbCLymPgL8mMlruJkizgVNZyLTtQoqMZGbTX25rmu5iVmoMmh+JFHXSdS77OvKc4QKU/2uz5W0hM1V4od5JXYYUkhts2l9YnfJIfaaq/N67Cbl5iBJofiRx5tLEafPXjmXuxsJgSL/KCgx0p6ouYKsKO8/jquGSpiBUOzrbppOW5efd28xAw0ORQ/8uhrNst99iXF6AEwT+7Fj5X0RM02Kyt6lZe0Klt/WTuLxb40TilO1Jt3KjcvMQNNDsWPPEqKvUPvAzomFrdoPaG4WElP1BzFQU5xWENxvlCwm5mURdfhUPzhJWagyaH4kUdLsc2JcnCvc9QOg83ptuAprlbSEzVHcZRTHNeMAbJzisFepM1Rb09x8RIz0ORQ/MijpDiADR6dZ3LUDlK2fnYvblbSEzU7aEAxZ2BNdsuVPkU+R+21Oerds1vVS8xAk0PxI48+u1Xus68pxogZJrVbj5X0RM1lt4I8uxWWZLdsLi2K/IkalLVbYffsVvUSM9DkUPzIo6XYZ29DTK8rqp8X5QnFxUp6ouZicZTH4rhm5I+dvzTdNsqXprh9LC5eYgaaHIofedSxuN5nX1NMFonCLBZXKyHFiVsAl+T739Ka9awwr/oAUNdRp823vzUvMQNNDsWPPPpYnKzNkYnFPoWQYJbdalbSezE7GkQxGWRJBaZ186Xp971YO+R68wrM5iVmoMmh+JFHXYFZs1KvKa5nbp7iaiW9F3MUBznFYQ3F+YJpN0S+QNsNsT3FxUvMQJND8SOPluJWOclQHDylxM/be6yk92KupynKe5rimp6mPB/qc9soT9Rx856m5iVmoMmh+JFH/16cU4hc1Uc7c08oLlbSezG3qDHJ9zSmNWuUYT6b/rZRxuK0+ZbG5iVmoMmh+JFHSTEm9D4j+ddjM130zvk4S1I3K+nFmJ1krRhkveapyV1O8GDstA/Guz81VS8xA00Oxo886vRWTUu9pjg4Am/5MQGPlfRIzbUmRnlrYlzTmpgFFGf13J64e2ti9RIz0ORQ/MijT1KXC+1LijOhzYCT1sRmJaWYm48Z5eMx45LpmDek0x0xVr1TIm4+HLN5iRlocih+5NGnt0pL4SuKn1JrjuLHSpqk5h6Mg/zBOCx5MLb5ohnFt42S4rD5g3HzEjPQ5FD8yKNNb2EIELlhH08CbEJxsZLGYm72fJSPno9rVi/mywvaIay2HWLzwfPNS8xAk0PxI482FreT8EuK0ceYwuRE/ViJR9qyE20VA20XNRjPC6n9BdoG482T1M1LzECTQ/EjjzZJHXwIiYhez+x5wjWPcbWSHqk5jIMc47AG41x2HE/SW8rqrbA9xsVLzECTg/EjjzYYt+TyS4rbJAGW4mYlDcbcxRjkF2NYczH2l50mqf1ltU9Nu1+Mq5eYgSaH4kce9cW4HoVfUhwjOkcwOVI3K2ndB/fUlORPTWnJUxPUdS78xdhFZd3H5k9NzUvMQJND8SOPluLsLEKm19VbPvmcvfOTJHWzElJMyBVhfnyVcfxh+08HmbAUSjMgE16oPFQTbl6H2TzFjEQ5KD/6aEd+UCBM3OJjnylFl2iCcrOSZqq5y3GUX47jmkJMO78cQ93TpshU7345rl5iBpocih95tAG5HYdfU1xDNk9xtZIeq7l4nOThOC2JxmDnDYpg1Q2KafdgXL3EDDQ5FD/y6MdvxZy9f52oDhZjJBv5RPVjJT5Wc7fjj6/SY/WS+/F9rJ5luW4bZZaLcPMLcvMUMxLloPzoow3I7Wb7EuU2a49FuVlJj9VctjrKs9VxzdyPG1PBPExtMebm2ermJWagyaH4kUed56qXWobiErInFBcr6bGaK+NK8jKutKSM6z4yC0qqvZLitHkZV/MSM9DkUPzIoz1WY/QxQng9vSfA/XND5icGPFbiYzXXGfHxVXqsXtIbQThfZ3zbKEEm3Lw5onmKGYlyUH700aIcckrELW56YGdRblbSgMyRnOQgp1U9Tn6a54LLavNcu2NcvcQMNDkUP/JoKXaOvIvp9YDq51WKpbhZiQMyd67++CoNyEtO1oTzuZi3jTrPtfvRunqKGYlyUH70Uaes65n4JcoNdhblZiUNyNwAkCQfAJLWbFKEy07rueCy2nquzQeANC8xA00OxY886mM1AKGzr5uOgyewfrbV+LESB2RuNObHV2lAXjIck3BemHnbKEEm3Hw6ZvMUMxLloPzoo0Q5WnKUuLURD+wsys1KGpA5kpMc5LSEY4ALZktRbxtlz2LaHePqJWagyaH4kUcbkGPMYC0yD08tE8ZTXK3EAZk7V398lQbkJSdrwnlh5h2Q1QXWux+tq6eYkSgH5UcfLcrtTPwS5QY7i3KzkgZkbo9Tku9xSmv2OEHZtDYJyNpJt5vvcWpeYgaaHIofebQUZxdSDO71QJ+Qwh3uJzsVHytxQOYWHH98lQbkJSuOCefLUW8bJciEm+84bp5iRqIclB99tDdkCjk7bsLeAzuLcrOSBmSO5CQHOa1ZVQ6CxYpwofaGvDvG1UvMQJND8SOPeplTXYj4iuInE8ZR/FiJAzJ3rv74Kg3IS07W9+1X0ILslSATbn60bp5iRqIclB99tGfrdiZ+iTJahOAs/4b8WIlR5nqQP75KUV7ShUxUnog5lKlktjUob96G3DzFjEQ5KD/6KFEGSyk5Z+PrepDn+M2y3KzELHONTx9fpSwvaX26WZ7WWlMpG9GwvHnvU/MUMxLlsPzoo70nt3D6EuUULeGsbeKxkqJs2bBsFWHZrgnLgtz1baMtCrG7h+XqKWYkykH50Uc7AjcnF7z1+PqInSwlsLOK68dKzDIblq0iLNs1YRkuO70twwXa92S7eVhunmJGohyWH320YbmF05copxhymt2WHysxymw3o1V0M9o13Yx2vq+NrHpfG9nN26Cap5iRKAflRx/1bdl6cMBtQc7WuRhmt+XHSswy2whlFY1Qdk0jlC1Ljicsq8Py5o1QzVPMSJTD8qOPkuUnnDIoB6TZ9sXHSooysSdsUpywaVXia14gQpfX9jTS5ifs5ilmJMpB+dFHiXJGcNayURkBPc1WMD5W4qjMTre2iunWds10a3vRNPFlL1InvjYfqNk8xYxEOSg/+mhRbgdjBuUC+wTlYiWOymwOmxQ5bFqTw3ZlzSKHsiurkzVRefMcdvMUMxLloPzoo85he8hEGV+XYGdKlmC2xu2xEodldjquVUzHtWum497/LwjLWpbt5tNxm6eYkSiH5Ucf/Qm7nIwZlCEmCnw3xWMlDsts8SYpijdpTfEmlZ0S/GVZncOmzYs3m6eYkSgH5UcfLcreZe9zfD1vIHuXbEqJrxJ5rMRRmW2MsorGKLumMQrmmxlvG23ey27eUdE8xYxEOSg/+mhT2K24g0G5wD5BuViJozKLMilQpjUo0+WnB2zSt1TQQfnDU8xIlIPyo48+71VekV6iHMGn4C1f7/VYiaMye8C2igO2XXPABkEZNujLsO3uB+zqKWYkykH50Ud/wC4HYwblSOQzX+/1WImjMjsKiBSjgGjNKCASpL1In/aizUcBNU8xI1EOyo8+WpRT8gAIzGtUShTctEakWYmjMjtm0yrGbNo1YzatoEbE6mtE7Obz+ZqnmJEoB+VHHy3K7WDMoFxgn6BcrMRRmUWZFCjTGpTpIkG5F6nLvQ7KH55iRqIclB99tCi3R6R/+cc//t8AAAD//8YE1/DE8gUA', + }, +}; diff --git a/frontend/src/lib/Utils.test.ts b/frontend/src/lib/Utils.test.ts index 8da86efbe0e6..9a5e10aab759 100644 --- a/frontend/src/lib/Utils.test.ts +++ b/frontend/src/lib/Utils.test.ts @@ -16,6 +16,7 @@ import { NodePhase } from './StatusUtils'; import { + decodeCompressedNodes, enabledDisplayString, formatDateString, generateMinioArtifactUrl, @@ -262,4 +263,24 @@ describe('Utils', () => { ); }); }); + + describe('decodeCompressedNodes', () => { + it('decompress encoded gzipped json', async () => { + let compressedNodes = + 'H4sIAAAAAAACE6tWystPSS1WslKIrlbKS8xNBbLAQoZKOgpKmSlArmFtbC0A+U7xAicAAAA='; + expect(decodeCompressedNodes(compressedNodes)).resolves.toEqual({ + nodes: [{ name: 'node1', id: 1 }], + }); + + compressedNodes = 'H4sIAAAAAAACE6tWystPSTVUslKoVspMAVJQfm0tAEBEv1kaAAAA'; + expect(decodeCompressedNodes(compressedNodes)).resolves.toEqual({ node1: { id: 'node1' } }); + }); + + it('raise exception if failed to decompress data', async () => { + let compressedNodes = 'I4sIAAAAAAACE6tWystPSS1WslKIrlxNBbLAQoZKOgpKmSlArmFtbC0A+U7xAicAAAA='; + await expect(decodeCompressedNodes(compressedNodes)).rejects.toEqual( + 'failed to gunzip data Error: incorrect header check', + ); + }); + }); }); diff --git a/frontend/src/lib/Utils.tsx b/frontend/src/lib/Utils.tsx index 451b55ae0eb1..26c3e48afb2a 100644 --- a/frontend/src/lib/Utils.tsx +++ b/frontend/src/lib/Utils.tsx @@ -15,6 +15,7 @@ */ import * as React from 'react'; +import * as zlib from 'zlib'; import { ApiRun } from '../apis/run'; import { ApiTrigger } from '../apis/job'; import { Workflow } from '../../third_party/argo-ui/argo_template'; @@ -358,3 +359,20 @@ export function buildQuery(queriesMap: { [key: string]: string | number | undefi } return `?${queryContent}`; } + +export async function decodeCompressedNodes(compressedNodes: string): Promise { + return new Promise((resolve, reject) => { + const compressedBuffer = Buffer.from(compressedNodes, 'base64'); + zlib.gunzip(compressedBuffer, (error, result: Buffer) => { + if (error) { + const gz_error_msg = `failed to gunzip data ${error}`; + logger.error(gz_error_msg); + reject(gz_error_msg); + } else { + const nodesStr = result.toString('utf8'); + const nodes = JSON.parse(nodesStr); + resolve(nodes); + } + }); + }); +} diff --git a/frontend/src/pages/RunDetails.test.tsx b/frontend/src/pages/RunDetails.test.tsx index 98ec5c198229..d1956b53e689 100644 --- a/frontend/src/pages/RunDetails.test.tsx +++ b/frontend/src/pages/RunDetails.test.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - import { Api, GetArtifactTypesResponse } from '@kubeflow/frontend'; import { render } from '@testing-library/react'; import * as dagre from 'dagre'; @@ -654,6 +653,50 @@ describe('RunDetails', () => { `); }); + it('shows a one-node compressed workflow graph', async () => { + testRun.pipeline_runtime!.workflow_manifest = JSON.stringify({ + ...WORKFLOW_TEMPLATE, + status: { compressedNodes: 'H4sIAAAAAAACE6tWystPSTVUslKoVspMAVJQfm0tAEBEv1kaAAAA' }, + }); + + const { getByTestId } = render(); + + await getRunSpy; + await TestUtils.flushPromises(); + + jest.useRealTimers(); + await new Promise(resolve => setTimeout(resolve, 500)); + jest.useFakeTimers(); + + expect(getByTestId('graph')).toMatchInlineSnapshot(` +
+        Node node1
+        Node node1-running-placeholder
+        Edge node1 to node1-running-placeholder
+      
+ `); + }); + + it('shows a empty workflow graph if compressedNodes corrupt', async () => { + testRun.pipeline_runtime!.workflow_manifest = JSON.stringify({ + ...WORKFLOW_TEMPLATE, + status: { compressedNodes: 'Y29ycnVwdF9kYXRh' }, + }); + + const { queryAllByTestId } = render(); + + await getRunSpy; + await TestUtils.flushPromises(); + + jest.useRealTimers(); + await new Promise(resolve => setTimeout(resolve, 500)); + jest.useFakeTimers(); + + expect(queryAllByTestId('graph')).toEqual([]); + }); + it('opens side panel when graph node is clicked', async () => { testRun.pipeline_runtime!.workflow_manifest = JSON.stringify({ status: { nodes: { node1: { id: 'node1' } } }, diff --git a/frontend/src/pages/RunDetails.tsx b/frontend/src/pages/RunDetails.tsx index 74b01379562c..0343ba530a99 100644 --- a/frontend/src/pages/RunDetails.tsx +++ b/frontend/src/pages/RunDetails.tsx @@ -71,6 +71,7 @@ import { getRunDurationFromWorkflow, logger, serviceErrorToString, + decodeCompressedNodes, } from '../lib/Utils'; import WorkflowParser from '../lib/WorkflowParser'; import { ExecutionDetailsContent } from './ExecutionDetails'; @@ -669,9 +670,23 @@ class RunDetails extends Page { runFinished = true; } - const workflow = JSON.parse( - runDetail.pipeline_runtime!.workflow_manifest || '{}', - ) as Workflow; + const jsonWorkflow = JSON.parse(runDetail.pipeline_runtime!.workflow_manifest || '{}'); + + if ( + jsonWorkflow.status && + !jsonWorkflow.status.nodes && + jsonWorkflow.status.compressedNodes + ) { + try { + jsonWorkflow.status.nodes = await decodeCompressedNodes( + jsonWorkflow.status.compressedNodes, + ); + delete jsonWorkflow.status.compressedNodes; + } catch (err) { + console.error(`Failed to decode compressedNodes: ${err}`); + } + } + const workflow = jsonWorkflow as Workflow; // Show workflow errors const workflowError = WorkflowParser.getWorkflowError(workflow);