ICode9

精准搜索请尝试: 精确搜索
  • Implicitly detached2022-03-01 20:07:39

    倘若抓取到的QXDM日志报Implicitly detached错误,这是由NW决定的,UE是被动的。 //snip some OTA log Detailed Analysis: //cell infor 18:18:48.277094 LTE RRC Serving Cell Info Log PktLength: 45 Physical cell ID = 283 DL FREQ = 66786 UL FREQ = 132322 DL Bandwidth = 20

  • CF803G Periodic RMQ Problem 口胡2022-02-07 12:34:24

    Statement CF803G Periodic RMQ Problem - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) 给你一个序列 \(a\) 让你支持 11 ll rr xx 区间赋值 22 ll rr 询问区间最小值 我们觉得这个问题太水了,所以我们不会给你序列aa 而是给你序列一个长度为nn 的序列bb ,把bb 复制粘贴kk 次就可

  • 5G NR - CSI-RS学习笔记9 - CSI Reporting的时域行为2022-01-05 11:03:23

    由于近期工作超级忙,只能见缝插针地用碎片时间来学习NR相关知识和写笔记,这篇笔记前后写了差不多一个月。 工作忙碌阶段留给学习的时间和精力都捉襟见肘,而NR随便一个主题的一个小分支都可能极其复杂从而想要掌握它将会耗时甚巨,以致于时常产生放弃的想法,但想想如果放弃了,就会变成一

  • Celery周期性定时任务-periodic_task2021-09-30 16:03:43

    目录周期性定时任务基本使用crontab表达式自定义crontab使用程序停止和删除周期定时任务周期定时任务停止,直接通过task_name删除停止运行中的周期定时任务 周期性定时任务 说明:在Django中使用celery, 并结合django-celery模块(省略安装)。需要在配置文件中注册: import djcelery INST

  • #RMQ,动态开点线段树#CF803G Periodic RMQ Problem2021-06-21 11:03:09

    题目 给定\(n\)个数,将这个数列复制\(k\)次得到数列\(a\), 对\(a\)满足区间赋值操作和区间最小值询问 \(n\leq 10^5,q\leq 10^5,k\leq 10^4即|a|\leq 10^9\) 分析 先考虑线段树的区间赋值和区间最小值询问,如果没有复制那就是基本操作, 考虑一个很大的变化就是不可能将整棵线段树完全

  • Jenkins 进阶篇 - 数据备份2021-06-17 08:01:25

    随着我们的长期使用,Jenkins 系统中的内容会越来越多,特别是一些配置相关的东西,不能有任何丢失。这个时候我们就需要定期备份我们的 Jenkins 系统,避免一些误操作不小心删除了某些重要文件,Jenkins 的备份工具就是一剂后悔药。 要对 Jenkins 系统进行备份,本质上是对 Jenkins 的文件和

  • Openstack之定时任务2021-04-19 18:29:27

    periodic_task   class olso_service.periodic_task.PeriodicTasks(conf) Bases:object add_periodic_task(task) Add a periodic task to the list of periodic tasks(添加周期性任务到列表中). The task should already be decorated by @periodic_task   run_perodic_tasks

  • ubuntu禁止和启动内核更新的两种方式2021-01-13 17:51:06

    症状: 内核更新可能会由于内核与驱动不匹配,导致系统无限重启 方式一(apt命令): #查看已安装的内核 sudo dpkg --get-selections | grep linux #查看正在使用的内核 uname -r #使用apt命令禁止内核更新 sudo apt-mark hold linux-image-4.4.0-21-generic sudo apt-mark hold linux-ima

  • 使用最大纠缠态来制备MPS(with periodic boundary conditions)2021-01-03 10:32:32

    前提背景 Affleck, Kennedy, Lieb, and Tasaki(AKLT)模型: AKLT模型:是一维的延伸量子(海森堡自旋模型) 通过构造,AKLT哈密顿量的基态是带有连接每个相邻位点对的单价键的价键固体。在图形上,这可以表示为: 在这里,实心点表示自旋1/2,并处于单重态。连接自旋1/2的线是表示单线态的价键

  • DSP - RMS Value of Periodic Waveforms2020-08-09 22:00:48

    This example shows how to find the root mean square (RMS) value of a sine wave, a square wave, and a rectangular pulse train using rms. The waveforms in this example are discrete-time versions of their continuous-time counterparts. Create a sine wave with

  • 「CF803G Periodic RMQ Problem」2020-04-16 19:51:14

    题目大意 给出一个长度为 \(n\) 的序列 \(b\),序列 \(a\) 又序列 \(b\) 复制 \(k\) 次后得到,需要支持区间覆盖,区间取 \(min\). 分析 开始没有想到可以用st表,很自闭. 但是毕竟写出来了,就来分享一个不用st表的做法,这个做法可能比较复杂,如果想要实现更方便的做法可以看看\(\col

  • Celery2019-07-28 09:02:56

    1. 发布简单的任务流程(celery+redis) (1)pip3 install celery (2)任务文件tasks.py import subprocess from time import sleep from celery import Celery app = Celery('tasks', broker='redis://localhost', backend='redis://lo

  • How to cancel an ATC check periodic job2019-07-05 17:01:21

    Created by Jerry Wang on Apr 18, 2016 Requirement You need to cancel a scheduled ATC periodic background job. Solution use tcode SUT, click ATC Notification: 2. click get Variant: select the variant you want to work on: You should find the corresponding

  • Periodic Strings(周期字符串)2019-03-02 21:50:10

    题目 A character string is said to have period k if it can be formed by concatenating one or more repetitions of another string of length k. For example, the string ”abcabcabcabc” has period 3, since it is formed by 4 repetitions of the string ”abc”. I

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有