首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏软件测试testclass

    Python环境构建

    x86 只支持32位的系统; Windows x86-64 支持64位的系统; web-based 格式文件在安装的过程中需要联网; executable 格式文件可执行文件(.exe)方式安装; embeddable installer Mac OS X for OS X 10.9 and later 26954940 SIG Windows help file Windows SIG Windows x86-64 embeddable 31930528 SIG Windows x86-64 web-based installer Windows for AMD64/EM64T/x64 1319992 SIG Windows x86 embeddable Mac OS X for OS X 10.9 and later 27651276 SIG Windows help file Windows 8547689 SIG Windows x86-64 embeddable 26262280 SIG Windows x86-64 web-based installer Windows for AMD64/EM64T/x64 1327160 SIG Windows x86 embeddable

    1.1K20发布于 2019-10-21
  • 来自专栏python3

    python3的下载与安装

    Download Windows x86 web-based installer Download Windows x86 executable installer Download Windows x86 embeddable Windows x86-64 web-based installer Download Windows x86-64 executable installer Download Windows x86-64 embeddable 可以通过下面3种途径获取python: web-based installer 是需要通过联网完成安装的 executable installer 是可执行文件(*.exe)方式安装 embeddable

    4.9K20发布于 2020-01-20
  • 来自专栏全栈程序员必看

    Installation did not succeed.解决方案之一

    3.6.1正式版 Could not download kotlin-reflect.jar 这个问题 和我 凌晨发的 问题一样类似Could not download kotlin-compiler-embeddable.jar 如下第二种 第二种 下载的jar放置对应的.gradle文件夹中 Could not download kotlin-compiler-embeddable.jar(具体操作 有对应的举例,就不一一 说明了

    96020发布于 2021-10-08
  • ssh联合主键的配置

    package com.tyzy.bean.resource; import java.io.Serializable; import javax.persistence.Embeddable; @Embeddable public class Industryid implements Serializable{ private static final long serialVersionUID

    13210编辑于 2026-01-09
  • 来自专栏全栈程序员必看

    Could not download kotlin-reflect.jar 完美解决

    3.6.1正式版 Could not download kotlin-reflect.jar 这个问题 和我 凌晨发的 问题一样类似Could not download kotlin-compiler-embeddable.jar 如下第二种 第二种 下载的jar放置对应的.gradle文件夹中 Could not download kotlin-compiler-embeddable.jar(具体操作 有对应的举例,就不一一 说明了

    4.2K20发布于 2021-10-08
  • 来自专栏机器人课程与技术

    Win10系统的ROS机器人操作系统1和2新一轮更新-2021-01-

    EmPY 3.3.4 Gazebo 10.2.0 OGRE 1.12.7 OpenCV 4.3.0 OpenSSL 1.1.1g PCL 1.9.1 Poco 1.9.2 Python 3.8.3 (embeddable EmPY 3.3.4 Gazebo 10.2.0 OGRE 1.12.7 OpenCV 4.3.0 OpenSSL 1.1.1g PCL 1.9.1 Poco 1.9.2 Python 3.8.3 (embeddable

    88120发布于 2021-03-03
  • 来自专栏bug收集

    【Python系列】 0. python 环境的搭建

    首先是X86 vs. x86-64 x86 指的是32位操作系统, x86-64指的是64位操作系统 安裝器 (web-based/executable/embeddable zip file) installer 顾名思义就是: web-based: 通过网络安装的 executable: 可執行文件的 embeddable zip file: zip 压缩文件 所以 web-based 的文件大小很小, 他是在执行安裝后再通过网下载

    66730编辑于 2022-07-22
  • 来自专栏全栈程序员必看

    Python安装教程-史上最全

    对后缀的说明: ​ embeddable zip file :表示.zip格式的绿色免安装版本,可以直接嵌入(集成)到其它的应用程序中; ​ executable installer :表示.exe格式的可执行程序 Download Windows help file :Python帮助文件 Download Windows x86-64 embeddable zip file :64位可嵌入压缩包zip文件 Download installer :64位可执行.exe文件 Download Windows x86-64 web-based installer :64位基于网络安装文件 Download Windows x86 embeddable

    1.5K20编辑于 2022-09-15
  • 来自专栏WordPress果酱

    YouTube Direct:使用 YouTube 创建你自己的视频网站

    可嵌入的上传工具(Embeddable Uploader):这是一个 Widget,你可以在你站点的相关页面上嵌入,定制化它的外观,然后就可以接受用户上传视频。 可嵌入的上传工具(Embeddable Uploader) 2. 审核后台(Moderation Console):可以让你分配视频,定制上传工具,以及审核用户上传的视频。

    2.8K30编辑于 2023-04-14
  • 来自专栏Netkiller

    Springboot JPA 实现复合主键

    13721218 请注明“读者” QQ群:128659835 请注明“读者” package cn.netkiller.wallet.domain; import javax.persistence.Embeddable { return decimals; } public void setDecimals(int decimals) { this.decimals = decimals; } @Embeddable

    2.3K90发布于 2018-06-26
  • 来自专栏全栈程序员必看

    python环境安装(一)[通俗易懂]

    web-based ,executable , embeddable zipfile区别: 1、web-based installer 是需要通过联网完成安装的,就是执行安装后才透过网络下载python 3、embeddable zip file 压缩档,就是python打包成zip压缩包,嵌入式版本,可以集成到其它应用中。

    68120编辑于 2022-07-22
  • 来自专栏成长道路

    mako模板+django+分页

    models': customer_list,         'date': datetime.datetime.now(),         'apps': apps,         'is_embeddable ': request.GET.get('is_embeddable', False),         'pre':pre,         'next':next,     }) 3.分页的写法

    93100发布于 2017-12-28
  • 来自专栏全栈程序员必看

    【数据库–db4o 介绍】

    一、db4o 简介 db4o (database for objects) was an embeddable open source object database for Java and .NET Special cases can be handled through writing custom type handlers.[2] Embeddable db4o is designed to

    1.4K10编辑于 2022-09-13
  • 来自专栏阿牛的牙

    lua array

    Lua is a powerful, efficient, lightweight, embeddable scripting language.

    1.2K50编辑于 2022-09-07
  • 来自专栏后端码事

    Jetty 发布web服务

    Full-featured and standards-based Open source and commercially usable Flexible and extensible Small footprint Embeddable Full-featured and standards-based Open source and commercially usable Flexible and extensible Small footprint Embeddable

    64510发布于 2020-09-11
  • 来自专栏SpringCloud专栏

    JPA(hibernate)一对多根据多的一方某属性进行过滤查询

    ElementCollection注解的集合对象也是一个JavaBean,不是String或者Integer时,譬如User有多个Address,Set《Address》 addressSet,那么Address类需要加@Embeddable @Embeddable代表是一个嵌入式的对象,不是一个表映射对象。如果你用的是one-to-many,那么Address就需要加上@Entity,代表需要映射到数据库表。

    5.4K31发布于 2019-01-17
  • 来自专栏行业视角

    Jmix 1.4.2 发布

    支持在实体设计器创建可嵌入(Embeddable)实体。 XML 编辑时,支持直接从 XML 中将组件注入控制器。 主要 Bug 修复和改进: 修复了界面 XML 展示有时候不显示的问题。

    44710编辑于 2023-03-22
  • 来自专栏Pseudoyu

    [译] 用 Go 编写一个简单的内存键值数据库

    GitHub - arriqaaq/flashdb: FlashDB is an embeddable, in-memory key/value database in Go (with Redis like GitHub - arriqaaq/flashdb: FlashDB is an embeddable, in-memory key/value database in Go (with Redis like

    1K30编辑于 2023-04-11
  • 来自专栏码字搬砖

    calcite 入门

    Calcite 的架构有三个特点:flexible, embeddable, and extensible,就是灵活性、组件可插拔、可扩展,它的 SQL Parser 层、Optimizer 层等都可以单独使用

    72610发布于 2021-03-11
  • 来自专栏为了不折腾而去折腾的那些事

    把 WordPress 变成 BaaS 服务:API 调用指南

    rest_route=/wp/v2/types/post"}],"author":[{"embeddable":true,"href":"http://localhost:8080/index.php? rest_route=/wp/v2/users/1"}],"replies":[{"embeddable":true,"href":"http://localhost:8080/index.php? rest_route=%2Fwp%2Fv2%2Fmedia&parent=1"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href": rest_route=%2Fwp%2Fv2%2Fcategories&post=1"},{"taxonomy":"post_tag","embeddable":true,"href":"http://localhost

    97210编辑于 2024-04-22
领券