万象云档 本次搜索耗时 1.190 秒,为您找到 1647 个相关结果.
  • link标签

    851 2025-05-08 《HTML 教程》
    简介 href 属性 rel 属性 hreflang 属性 资源的预加载 <link rel="preload"> <link rel="prefetch"> <link rel="preconnect"> <link rel="dns-prefetch"> <link rel="prerender"> media 属性 其他...
  • 你所知道的微服务技术栈都有哪些?

    微服务技术栈 技术栈 微服务开发 微服务注册发现 Eureka Zookeeper Zookeeper 和 Eureka 区别 微服务配置管理 Disconf SpringCloudConfig Apollo 权限认证 Spring Security Apache Shiro 批处理 Spring Batch 定时任务 Quart...
  • HBase and MapReduce

    HBase and MapReduce 48. HBase, MapReduce, and the CLASSPATH 49. MapReduce Scan Caching 50.捆绑的 HBase MapReduce 作业 51. HBase 作为 MapReduce 作业数据源和数据接收器 52. 批量导入时直接写 HFiles 53. 行数统...
  • torch.nn

    torch.nn class torch.nn.Parameter() class torch.nn.Module add_module(name, module) apply(fn) children() cpu(device_id=None) cuda(device_id=None) double() eval() float() fo...
  • 练习 24:接口配置,ifconfig,netstat,iproute2,ss,route

    练习 24:接口配置,ifconfig ,netstat ,iproute2 ,ss ,route 这样做 你会看到什么 解释 附加题 练习 24:接口配置,ifconfig ,netstat ,iproute2 ,ss ,route 原文:Exercise 24. Networking: interface configuration,...
  • 六、对象的秘密

    六、对象的秘密 封装 方法 原型 类 类的表示法 覆盖派生的属性 映射 多态 符号 迭代器接口 读写器和静态 继承 instanceof 运算符 本章小结 习题 向量类型 分组 可迭代分组 借鉴方法 六、对象的秘密 原文:The Secret Life of Objects 译者:飞龙 协议:CC BY-...
  • Java 8 Nashorn 教程

    837 2025-05-18 《Java 8 简明教程》
    Java 8 Nashorn 教程 使用 Nashron 在Java中调用JavaScript函数 在JavaScript中调用Java方法 ScriptObjectMirror 语言扩展 类型数组 集合和范围遍历 Lambda表达式和数据流 类的继承 参数重载 Java Beans 函数字面值 属性绑定 字符串去空白 位置 导...
  • 7.1 K 近邻算法

    7.1 K 近邻算法 1.1、什么是K近邻算法 1.2、近邻的距离度量表示法 1.3、K值的选择 7.1 K 近邻算法 1.1、什么是K近邻算法 何谓K近邻算法,即K-Nearest Neighbor algorithm,简称KNN算法,单从名字来猜想,可以简单粗暴的认为是:K个最近的邻居,当K=1时,算法便成了最近邻算法,即寻找最近的那个邻居...
  • DOTweenAction

    DOTweenAction Description Properties Construction Inherits Methods Public Methods Messages 作者:布鞋 邮箱:827922094@qq.com DOTweenAction class in NodeAction/ Inherits from:...
  • 编译C程序

    参考源码 小结 C程序的编译通常分两步: 将每个.c 文件编译为.o 文件; 将所有.o 文件链接为最终的可执行文件。 我们假设如下的一个C项目,包含hello.c 、hello.h 和main.c 。 hello.c 内容如下: #include <stdio.h> int hello () { print...