码迷,mamicode.com
首页 >  
搜索关键字:__attribute__    ( 4018个结果
Python学习之反射
#!/usr/bin/env python #-*-coding:utf8-*- def bulk(self): print("%s is jiao ...."%self.name) class Dog(object): def __init__(self,name): self.name=name ...
分类:编程语言   时间:2020-02-20 14:51:36    阅读次数:71
IfcProduct
The IfcProduct is an abstract representation of any object that relates to a geometric or spatial context. An IfcProduct occurs at a specific location ...
分类:其他好文   时间:2020-02-20 00:14:44    阅读次数:104
单机多GPU训练报错
问题一: 在keras中使用多个GPU训练模型时,出现错误 AttributeError: '_TfDeviceCaptureOp' object has no attribute '_set_device_from_string' , 根据错误提示是'_TfDeviceCaptureOp'对象没有 ...
分类:其他好文   时间:2020-02-18 14:37:31    阅读次数:312
用 python 来操作 docx, xlsx 格式文件(二)(使用 docx 库操作 docx 格式文件
https://www.cnblogs.com/ontheway703/p/5266041.html docx 库 文章结构: 一、docx 基本用,创建 docx 文件并添加数据 二、深入理解文本格式(format),并设置所格式属性(attribute) 三、深入理解样式(styles),以及如 ...
分类:编程语言   时间:2020-02-16 19:07:39    阅读次数:92
异常处理
异常处理 异常处理的格式: 常用的异常处理类型: |异常名称 | 描述 | |: |: | |BaseException | 所有异常的基类| |SystemExit | 解释器请求退出| |KeyboardInterrupt | 用户中断执行(通常是输入^C)| |Exception |常规错误的 ...
分类:其他好文   时间:2020-02-16 15:02:08    阅读次数:72
clr via c# 程序集加载和反射集(一)
1,程序集加载 弱的程序集可以加载强签名的程序集,但是不可相反.否则引用会报错!(但是,反射是没问题的) //获取当前类的Assembly Assembly.GetEntryAssembly() //通过Load方法加载程序集 Assembly.Load //通过LoadFrom加载指定路径名的程序 ...
分类:Windows程序   时间:2020-02-15 10:17:40    阅读次数:141
SpringMvc源码阅读View之JstlView如何渲染视图(十)
类图 此处只截取了部分 接口 public interface View { String RESPONSE_STATUS_ATTRIBUTE = org.springframework.web.servlet.View.class.getName() + ".responseStatus"; St ...
分类:编程语言   时间:2020-02-13 14:51:26    阅读次数:75
Role-based Access Control vs Attribute-based Access Control: How to Choose
Access control is a fundamental element of the security infrastructure of any company. Every security officer wants to apply the principle of less pri ...
分类:数据库   时间:2020-02-12 16:37:04    阅读次数:127
pycharm 安装第三方库报错:AttributeError: 'module' object has no attribute 'main'
pycharm 安装第三方库报错:AttributeError: 'module' object has no attribute 'main' pip升级到 10.0.1 之后 老版的pycharm 使用pip安装第三方库的时候会报错,报错如上图所示: 其主要原因是 新版的 pip 更改了 部分a ...
分类:其他好文   时间:2020-02-12 11:13:01    阅读次数:98
2020/2/10学习总结
今天学习了listener的相关知识 1.简介 Listener 的作用是用于监听 web应用的创建和销毁,以及在其上attribute发生的变化。 web应用即ServletContext对象(jsp的隐式对象application) 除了对web应用的监听外,还能监听session和reques ...
分类:其他好文   时间:2020-02-11 19:24:26    阅读次数:80
4018条   上一页 1 ... 32 33 34 35 36 ... 402 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!