From 928934f3f045ce5c373e48f458e9b11d8bd1b808 Mon Sep 17 00:00:00 2001 From: liugang9704 <2745340733@qq.com> Date: Fri, 29 Aug 2025 11:14:57 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E5=90=8C=E6=BA=90?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/ets/service/ServiceTask.ets | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 PerformanceAnalysis/BptaDelayAnalysis/entry/src/main/ets/service/ServiceTask.ets diff --git a/PerformanceAnalysis/BptaDelayAnalysis/entry/src/main/ets/service/ServiceTask.ets b/PerformanceAnalysis/BptaDelayAnalysis/entry/src/main/ets/service/ServiceTask.ets new file mode 100644 index 00000000..4b84130e --- /dev/null +++ b/PerformanceAnalysis/BptaDelayAnalysis/entry/src/main/ets/service/ServiceTask.ets @@ -0,0 +1,22 @@ +/* +* Copyright (C) 2024 Huawei Device Co., Ltd. +* 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. +*/ + +// [Start service_task] +export function fun1() { + for (let index = 0; index < 906666; index++) { + console.debug('fun1 index:' + index); + } +} +// [End service_task] \ No newline at end of file -- Gitee