码迷,mamicode.com
首页 >  
搜索关键字:same    ( 2737个结果
跨域请求详解
一 同源策略 同源策略(Same origin policy)是一种约定,它是浏览器最核心也最基本的安全功能 如果缺少了同源策略,则浏览器的正常功能可能都会受到影响。可以说Web是构建在同源策略基础之上的,浏览器只是针对同源策略的一种实现 请求的url地址,必须与浏览器上的url地址处于同域上,也就 ...
分类:其他好文   时间:2021-01-12 10:39:26    阅读次数:0
tensorflow2.0——卷积初始化
self.conv1 = tf.keras.layers.Conv2D(filter_num, (3, 3), strides=stride, padding='same',kernel_initializer=tf.keras.initializers.he_normal(stddev=0.02) ...
分类:其他好文   时间:2020-12-21 12:11:01    阅读次数:0
leetcode 116. Populating Next Right Pointers in Each Node
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:其他好文   时间:2020-11-20 12:00:39    阅读次数:9
ensure that AopContext.currentProxy() is invoked in the same thread as the AOP invocation context
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available, and ensure that AopContext.currentProxy() is invoked ...
分类:其他好文   时间:2020-11-18 12:32:47    阅读次数:7
116. Populating Next Right Pointers in Each Node 连接右节点
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:其他好文   时间:2020-10-27 11:41:41    阅读次数:23
[Kotlin] companion object == static method
In Kotlin, there is no static methods, but we can use companion object which works the same as static methods. For example, a class: package com.rsk i ...
分类:其他好文   时间:2020-10-16 10:59:03    阅读次数:22
PAT A1019 General Palindromic Number C++/Go语言题解及注意事项
1019 General Palindromic Number (20分) A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For ex ...
分类:编程语言   时间:2020-10-06 20:27:28    阅读次数:25
Android中的flinger是什么意思?
参考:https://stackoverflow.com/questions/6926551/android-usage-of-the-flinger-term I asked the same question on the Android platform mailing list and go ...
分类:移动开发   时间:2020-09-17 23:11:41    阅读次数:54
c++ 从vector扩容看noexcept应用场景
c++11提供了关键字noexcept,用来指明某个函数无法——或不打算——抛出异常: void foo() noexcept; // a function specified as will never throw void foo2() noexcept(true); // same as fo ...
分类:编程语言   时间:2020-09-17 17:07:05    阅读次数:27
100. 相同的树 leetcode每日一题8.7
题目链接:https://leetcode-cn.com/problems/same-tree/ 思路:同时深搜或广搜两棵树,比较值即可 class Solution { public boolean isSameTree(TreeNode p, TreeNode q) { //100 5 if(p ...
分类:其他好文   时间:2020-08-07 09:43:32    阅读次数:51
2737条   上一页 1 2 3 4 ... 274 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!