From commits-return-114594-archive-asf-public=cust-asf.ponee.io@beam.apache.org Thu Aug 12 17:42:27 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 9F86D180608 for ; Thu, 12 Aug 2021 19:42:27 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id DBE233F8A4 for ; Thu, 12 Aug 2021 17:42:26 +0000 (UTC) Received: (qmail 75515 invoked by uid 500); 12 Aug 2021 17:42:26 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 75506 invoked by uid 99); 12 Aug 2021 17:42:26 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2021 17:42:26 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3628E81F26; Thu, 12 Aug 2021 17:42:26 +0000 (UTC) Date: Thu, 12 Aug 2021 17:42:13 +0000 To: "commits@beam.apache.org" Subject: [beam] branch master updated (066b0fb -> a14f7e8) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <162879012727.32616.9572330196020064975@gitbox.apache.org> From: pabloem@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: beam X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 066b0fb51805e172bba60d63e57ad140973e2c60 X-Git-Newrev: a14f7e81bc083d4be5402d304565ad0cf514cc61 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. pabloem pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/beam.git. from 066b0fb [BEAM-11779] Remove appliance restriction. new 7c284e3 Python Kata - Event Time Triggers new e866d77 Python Kata - Event Time Triggers - Added license to task-info.yaml new 2522867 Python Kata - Event Time Triggers - refactored the accumulation mode setting new f96bec3 Python Kata - Event Time Triggers - task description corrected to reflect the sample data generated new ceade99 Python Kata - Event Time Triggers - added streaming options new ffe375a Python Kata - Event Time Triggers - add license text in task-info.yaml new 77bace2 Python Kata - Early Triggers new 526d6b9 Python Kata - Event Time Triggers & Early Triggers - task.md - corrected documentation link new 1ce39b7 Python Kata - Window Accumulation Mode new 5d7781c Python Kata - Event Time Triggers - removed the external transform commented code new 9f24c4f Merge branch 'apache:master' into python-katas-update new cfc847d Python Kata - added license to course-info.yaml new a14f7e8 Merge pull request #15258 from Python katas update (Timers, Triggers, etc). The 32656 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../Early Triggers/generate_event.py | 58 +++++++++++++++ .../Early Triggers/Early Triggers}/task-info.yaml | 8 +- .../Triggers/Early Triggers/Early Triggers/task.md | 21 +++--- .../Triggers/Early Triggers/Early Triggers/task.py | 51 +++++++++++++ .../Early Triggers/Early Triggers/tests.py | 82 ++++++++++++++++++++ .../Triggers/Early Triggers/lesson-info.yaml | 0 .../Event Time Triggers/generate_event.py | 57 ++++++++++++++ .../Event Time Triggers}/task-info.yaml | 6 +- .../Event Time Triggers/task.md | 24 +++--- .../Event Time Triggers/task.py | 50 +++++++++++++ .../Event Time Triggers/tests.py | 87 ++++++++++++++++++++++ .../Triggers/Event Time Triggers}/lesson-info.yaml | 2 +- .../Window Accumulation Mode/generate_event.py | 58 +++++++++++++++ .../Window Accumulation Mode}/task-info.yaml | 8 +- .../Window Accumulation Mode/task.md | 25 +++---- .../Window Accumulation Mode/task.py | 51 +++++++++++++ .../Window Accumulation Mode/tests.py | 82 ++++++++++++++++++++ .../Window Accumulation Mode/lesson-info.yaml | 0 .../{kotlin => python}/Triggers/section-info.yaml | 0 learning/katas/python/course-info.yaml | 3 +- 20 files changed, 626 insertions(+), 47 deletions(-) create mode 100644 learning/katas/python/Triggers/Early Triggers/Early Triggers/generate_event.py copy learning/katas/python/{Common Transforms/Aggregation/Mean => Triggers/Early Triggers/Early Triggers}/task-info.yaml (88%) copy learning/katas/{java => python}/Triggers/Early Triggers/Early Triggers/task.md (55%) create mode 100644 learning/katas/python/Triggers/Early Triggers/Early Triggers/task.py create mode 100644 learning/katas/python/Triggers/Early Triggers/Early Triggers/tests.py copy learning/katas/{kotlin => python}/Triggers/Early Triggers/lesson-info.yaml (100%) create mode 100644 learning/katas/python/Triggers/Event Time Triggers/Event Time Triggers/generate_event.py copy learning/katas/python/{Common Transforms/Aggregation/Mean => Triggers/Event Time Triggers/Event Time Triggers}/task-info.yaml (92%) copy learning/katas/{java => python}/Triggers/Event Time Triggers/Event Time Triggers/task.md (62%) create mode 100644 learning/katas/python/Triggers/Event Time Triggers/Event Time Triggers/task.py create mode 100644 learning/katas/python/Triggers/Event Time Triggers/Event Time Triggers/tests.py copy learning/katas/{go/core_transforms/branching => python/Triggers/Event Time Triggers}/lesson-info.yaml (97%) create mode 100644 learning/katas/python/Triggers/Window Accumulation Mode/Window Accumulation Mode/generate_event.py copy learning/katas/python/{Common Transforms/Aggregation/Mean => Triggers/Window Accumulation Mode/Window Accumulation Mode}/task-info.yaml (88%) copy learning/katas/{java => python}/Triggers/Window Accumulation Mode/Window Accumulation Mode/task.md (55%) create mode 100644 learning/katas/python/Triggers/Window Accumulation Mode/Window Accumulation Mode/task.py create mode 100644 learning/katas/python/Triggers/Window Accumulation Mode/Window Accumulation Mode/tests.py copy learning/katas/{kotlin => python}/Triggers/Window Accumulation Mode/lesson-info.yaml (100%) copy learning/katas/{kotlin => python}/Triggers/section-info.yaml (100%)