首页 > 移动平台
ORA-07445 [evaopn3()+135] [SIGSEGV] [ADDR:0x4] [PC:0x96A535B] [Address not mapp ed to object]
环境 Linux: x86_64 DB: Oracle 单机 11.2.0.4 开发反映执行如下查询时报异常:无法从套接字获取更多数据。 select count(0) from table_xxx where col1='123' and col2 in (select abc from test ...
分类:移动平台   时间:2021-08-20 15:19:02    收藏:0  评论:0  赞:0  阅读:24
YOLO-FastestV2:更快,更轻!移动端高达300 FPS!参数量仅250k
https://mp.weixin.qq.com/s/ECQ_J_GWpLFCFAO7Emb0xw https://zhuanlan.zhihu.com/p/400474142 YOLO-FastestV2项目链接: https://github.com/dog-qiuqiu/Yolo-Fastes ...
分类:移动平台   时间:2021-08-20 15:18:39    收藏:0  评论:0  赞:0  阅读:22
.NET Core5 MVC/WebAPI - HTTP Error 500.30 - ASP.NET Core app failed to start
程序中不报错,VisualStudio正常运行,但就是500 日志 每次打开时都会在事件查看器中发现两条新异常日志 第一个:Application '/LM/W3SVC/2/ROOT' with physical root 项目路径failed to load coreclr. Exception ...
分类:移动平台   时间:2021-08-20 15:17:31    收藏:0  评论:0  赞:0  阅读:41
uni-app 之列表项(uni-list-item不显示边框)
默认情况下,列表项( uni-list-item )样式是固定的,每项之间包含边框。如图(以微信小程序为例)。 可能因为实际开发的需求,希望列表是无边框的。这时候,需要为uni-list-item添加 border 属性。代码如下: 1 <uni-list> 2 <uni-list-item v-f ...
分类:移动平台   时间:2021-08-20 15:12:51    收藏:0  评论:0  赞:0  阅读:353
pandas中apply()函数的使用
Pandas中apply()使用 https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.apply.html pandas.Series.apply Series.apply( func , convert_ ...
分类:移动平台   时间:2021-08-20 11:45:54    收藏:0  评论:0  赞:0  阅读:32
tk.mapper逆向工程依赖
在写逆向工程依赖时,不要乱修改版本,会报错!!! 下面是一个可以使用的版本依赖,记录一下 <build> <plugins> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-p ...
分类:移动平台   时间:2021-08-19 22:18:45    收藏:0  评论:0  赞:0  阅读:28
封装Axios请求
http.js import axios from "axios"; import { Message } from "element-ui"; // 请求拦截 axios.interceptors.request.use( (config) => { if (!config.headers) { ...
分类:移动平台   时间:2021-08-19 22:06:49    收藏:0  评论:0  赞:0  阅读:29
axios---get和post用法详解
参考网址:https://www.npmjs.com/package/axios 1.axios发送get请求 const axios = require('axios'); 1.1.参数写在路径后面 // Make a request for a user with a given ID axio ...
分类:移动平台   时间:2021-08-19 17:31:42    收藏:0  评论:0  赞:0  阅读:52
Appium简介
Appium 介绍 Appium 是一个自动化开源工具,支持 iOS 、 Android 和 Windows 桌面平台上的原生、移动 Web 和混合应用的自动化 。**「原生应用」指那些用 iOS、 Android 或者 Windows SDKs 编写的应用。「移动 Web 应用」是用移动端浏览器访 ...
分类:移动平台   时间:2021-08-19 14:56:29    收藏:0  评论:0  赞:0  阅读:14
axios发送post请求
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>axios</title> </head> <body> <div id="app"></div> <script type= "text/javascript ...
分类:移动平台   时间:2021-08-19 14:40:38    收藏:0  评论:0  赞:0  阅读:24
Android WorkManager使用入门
WorkManager使用入门 WorkManager提供了任务调度功能,我们可以对工作进行标记或命名。 我们用一个示例来演示如何使用WorkManager。本文使用Kotlin。 入门示例 gradle引入依赖 将以下依赖项添加到应用模块的build.gradle文件中 dependencies ...
分类:移动平台   时间:2021-08-19 14:40:06    收藏:0  评论:0  赞:0  阅读:10
unity调用苹果端方法
unity端 [DllImport("__Internal")] private static extern string Get_UUID_By_KeyChain(); 苹果端 extern "C" { //const char * Get_UUID_By_KeyChain() // { // U ...
分类:移动平台   时间:2021-08-19 14:25:21    收藏:0  评论:0  赞:0  阅读:5
基于axios 封装的大文件分片上传
// 上传文件 // import Vue from 'vue' import { uploadStart, uploadData, completed, qsbuploadStart, qsbuploadData, qsbcompleted, } from '@/api/upLoad' expor ...
分类:移动平台   时间:2021-08-19 10:09:33    收藏:0  评论:0  赞:0  阅读:62
iOS NSArray NSMutableArray 基础 创建、添加、删除、替换
一、数组的简单介绍 1.数组是一个对象,是任意类型对象地址的集合,OC的数组可以存储不同类型的对象 2.OC的数组只能存储对象,不能存放 简单的数据类型(int, float, NSInteger…)除非通过一些手段把简单数据类型变成对象。在C语言中的数组可以保存任意类型的数据。 3.存储的内存是连 ...
分类:移动平台   时间:2021-08-19 10:07:21    收藏:0  评论:0  赞:0  阅读:12
Android——Animation(补间动画)
介绍 translate:位移动画,从组件自身的x,y位置位移到相对的x,y位置 <translate xmlns:android="http://schemas.android.com/apk/res/android" android:duration="240" android:fromYDel ...
分类:移动平台   时间:2021-08-19 10:06:36    收藏:0  评论:0  赞:0  阅读:25
移动端---像素单位vm
不同的设备完美视口的大小是不一样的 iphone6 -- 375 iphone6plus -- 414 由于不同设备视口和像素比不同,所以同样的375个像素在不同的设备下意义是不一样, 比如在iphone6中 375就是全屏,而到了plus中375就会缺一块 所以在移动端开发时,就不能再使用px来进 ...
分类:移动平台   时间:2021-08-19 10:03:44    收藏:0  评论:0  赞:0  阅读:17
Android View各类获取坐标的方式
Android View获取坐标的方式: 1. 获取View相对于父View的坐标:View view.getLeft()、view.getTop()、view.getRight()、view.getBottom() 2.获取点击事件的点击位置相对于其点击控件的坐标,以及相对于屏幕的坐标。 moti ...
分类:移动平台   时间:2021-08-19 08:51:36    收藏:0  评论:0  赞:0  阅读:8
Linux服务器部署appium自动化环境
appium服务基本基于npm安装,所以必须要安装nodejs,node版本要10以上,试过8.14的版本,appium-doctor无法使用。 这里不细讲怎么安装nodejs了。 (1)npm安装appium 给npm授予访问权限: npm config -g set unsafe-perm 安装 ...
分类:移动平台   时间:2021-08-18 15:45:48    收藏:0  评论:0  赞:0  阅读:21
Android 9.0 BufferSlot注解
源码位置 /frameworks/native/libs/gui/include/gui/BufferSlot.h 源码 struct BufferSlot { BufferSlot() : mGraphicBuffer(nullptr), mEglDisplay(EGL_NO_DISPLAY), ...
分类:移动平台   时间:2021-08-18 15:41:48    收藏:0  评论:0  赞:0  阅读:23
AppCompatTextView 设置maxWidt、singleLine、ellipsize,自动显示省略号
<androidx.appcompat.widget.AppCompatTextView android:id="@+id/user_nickname" tools:text="聊过的人昵称聊过的人昵称" android:maxWidth="200dp" android:singleLine="tr ...
分类:移动平台   时间:2021-08-18 15:35:49    收藏:0  评论:0  赞:0  阅读:26
162412条   上一页 1 ... 22 23 24 25 26 ... 8121 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!