最新发布第16页
How to serialize parameterized tests with Swift Testing 如何使用 Swift Testing 序列化参数化测试-Stewed Noodles 资源

How to serialize parameterized tests with Swift Testing 如何使用 Swift Testing 序列化参数化测试

Swift Testing's parameterized tests allow us to send multiple values into a single test, and they'll be run in parallel for maximum performance. If you don't want this – if you wa...
MySQL 修改 user 表后无法登录-Stewed Noodles 资源

MySQL 修改 user 表后无法登录

修改my.cnf文件 打开my.cnf文件 vim /etc/my.cnf 把 sql-mode 的STRICT_TRANS_TABLES去掉 修改sql-mode 停止MySQL服务 输入以下的命令,停止MySQL服务。 systemctl stop mysqld.service 停止MyS...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri4个月前
0230
Day 4 - 随机化与列表-Stewed Noodles 资源

Day 4 – 随机化与列表

随机化 Python 提供random模块以实现随机化。详情可参考 https://docs.python.org/zh-cn/3.13/library/random.html # 导入 random 模块 import random # 1 到 10 的随机整数 rand_num = random....
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0220
What is a synchronous function? 什么是同步函数?-Stewed Noodles 资源

What is a synchronous function? 什么是同步函数?

By default, all Swift functions are synchronous, but what does that mean? A synchronous function is one that executes all its work in a simple, straight line on a single threa...
How to loop over an AsyncSequence using for await 如何使用 for await 遍历 AsyncSequence-Stewed Noodles 资源

How to loop over an AsyncSequence using for await 如何使用 for await 遍历 AsyncSequence

You can loop over an AsyncSequence using Swift’s regular loop types, for, while, and repeat, but whenever you read a value from the async sequence you mus...
Release checklist  版本清单-Stewed Noodles 资源

Release checklist 版本清单

Sure, all your tests pass, but how can you make sure your app functions properly? Most large projects have a solution called a release checklist, and here I want to share mine wit...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri1年前
220
Word 隐藏所有回车换行符-Stewed Noodles 资源

Word 隐藏所有回车换行符

Windows 系统下,按 Ctrl + Shift + 8 可以快速显示或隐藏所有格式标记,包括回车符(¶)。 macOS 系统下,视图 -> 显示段落标 中,取消勾选。
Intent-Stewed Noodles 资源

Intent

Intent 是一个基本组件,它促进了应用程序不同组件之间以及不同应用程序之间的通信。Intent 用于请求同一应用内或由其它应用执行的操作,它们用于各种目的,例如启动Activity、启动服务、广播消...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri3个月前
0220
Android 组件-Stewed Noodles 资源

Android 组件

基本介绍 Android 有四种主要的组件。 Android 的四大组件 Activity 具有用户界面的单个屏幕。 用户交互的入口。 Services 在后台运行,用户执行无用户界面的长时间操作/任务。 Broadcast Recei...
Android 模拟器访问外网-Stewed Noodles 资源

Android 模拟器访问外网

在 Android Studio 中开发应用,需要访问 google 相关服务。 模拟器访问Google 连接 AndroidWifi 在 Android 的模拟器的设置中,连接 WiFi,模拟器中 Wifi 的名称可能不一样。 连接 Wifi 设置网...