ICode9

精准搜索请尝试: 精确搜索
  • 9、Python 数据类型详细篇:集合2022-06-17 02:01:05

    简介 定义 集合是一个无序、不重复的序列,集合中所有的元素放在 {} 中间,并用逗号分开,例如: {1, 2, 3},一个包含 3 个整数的列表 {‘a’, ‘b’, ‘c’},一个包含 3 个字符串的列表 集合与列表的区别 列表中的元素允许重复,集合中的元素不允许重复,示例如下: >>> x = {1, 1, 2, 3} >>> x

  • 5、Python 数据类型详细篇:列表2022-06-15 21:00:40

    在我们的实际开发过程中,列表是一个经常会用到的数据结构,它以占用空间小,浪费内存空间少这一特性而被广泛应用。 什么是列表 列表是一个有序的序列,列表中所有的元素放在 [] 中间,并用逗号分开,例如: [1, 2, 3],一个包含 3 个整数的列表 [‘a’, ‘b’, ‘c’],一个包含 3 个字符串的列表

  • java web自动化01-环境搭建2021-10-06 16:31:29

    使用maven 建一个maven项目     pom文件添加java selenium包 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

  • Map从入门到性能分析(案例篇-imooc)2021-08-01 11:03:56

    课程: https://www.imooc.com/video/21569 Map初识 Map接口及其实现类 Map接口通用方法 V put(K key, V value) # 存入一个key-value项 V get(K key) # 根据key值返回value值 V remove(Object key) # 根据key值删除Map中的一个key-value项 boolean containsKey(Object key) #

  • 2021-07-13python学习笔记2021-07-13 13:05:06

    python学习笔记@TOC C:\Users\Lenovo\Desktop\PythonProject\imooc>cd C:\Users\Lenovo\Desktop\PythonProject\imooc>python manage.py runserver 127.0.0.1:8000 之后访问http://127.0.0.1:8000/即可

  • CSS - imooc2021-07-10 20:34:31

    第2周 CSS3基础语法与盒模型 第1节 CSS3基础入门 层叠式样式表,用来给HTML标签添加样式的语言 前端三层: HTML 和 CSS 结合 -> 通过选择器 <style> h2{ /*选择器*/ color:red; } p{ color:blue; } </style> 给指定的几个结构添加属性:在结构里加class CSS本质:CSS

  • 第一课 Go容器化微服务系统实战-基本介绍和使用2021-07-06 00:02:39

    第一课 Go容器化微服务系统实战-基本介绍和使用 tags: GO慕课网 categories: GO微服务go-micro 文章目录 第一课 Go容器化微服务系统实战-基本介绍和使用第一节 GO微服务1.1 微服务介绍1.2 微服务与DDD1.3 微服务的设计原则 第二节 go-micro基础:gRPC和ProtoBuf2.1 RPC和gR

  • 商品详情接口-商品详情VO 22021-06-26 13:31:21

    三、Api模块 路径:com/imooc/controller/ItemController.java package com.imooc.controller; import com.imooc.enums.YesOrNo; import com.imooc.pojo.*; import com.imooc.pojo.vo.CategoryVO; import com.imooc.pojo.vo.ItemInfoVO; import com.imooc.pojo.vo.NewItems

  • 【node.js】nrm的使用2021-06-26 12:34:01

    Commands NRM: npm registry managerInstall: Windows: npm install -g nrm Mac: sudo npm install -g nrm 查看可选源: nrm -ls 测试源响应时间: nrm test npm nrm test taobao 切换源: nrm use taobao 当前镜像 nrm current 增加定制源: nrm add imooc http://192.1

  • Nginx相关知识点(三)2021-06-20 16:04:18

    路径配置 server{ listen 90; server_name localhost; location / { root /home/food-shop; index index.html; } #别名配置 location /static{ alias /home/imooc; } location /imooc { root /home }

  • Kubernetes 小白学习笔记(32)--kubernetes云原生应用开发-sidecar注入和istio服务治理演示2021-06-17 12:57:28

      不做修改                             内容来自: https://coding.imooc.com/class/284.html

  • Kubernetes 小白学习笔记(31)--kubernetes云原生应用开发-istio架构和安装2021-06-17 12:57:15

                          内容来自: https://coding.imooc.com/class/284.html

  • Kubernetes 小白学习笔记(30)--kubernetes云原生应用开发-service mesh介绍2021-06-17 12:57:03

                                          内容来自: https://coding.imooc.com/class/284.html

  • Kubernetes 小白学习笔记(29)--kubernetes云原生应用开发-基于Elasticsearch技术栈搭建Kubernetes的集群Logging设施2021-06-17 12:56:50

                          在master节点新建代理                         内容来自: https://coding.imooc.com/class/284.html    

  • Kubernetes 小白学习笔记(28)--kubernetes云原生应用开发-高可用私有镜像仓库搭建2021-06-17 12:56:16

        网络高可用、计算高可用、存储高可用            现在来到harbor node2节点上 如果启动失败                                       内容来自: https://coding.imooc

  • Kubernetes 小白学习笔记(26)--kubernetes的运维-查看事件和容器日志2021-06-17 12:55:57

           dns日志                                   内容来自: https://coding.imooc.com/class/284.html

  • 封装,包2021-05-14 10:01:34

    封装: •将类的某些信息隐藏在类内部,不允许外部程序直接访问 •通过该类提供的方法来实现对隐藏信息的操作和访问 •隐藏对象的信息 •留出访问的接口 特点: 1、只能通过规定的方法访问数据 2、隐藏类的实例细节,方便修改和实现 包: 作用: 1、管理Java文件 2、解决同名文件冲突 语法: p

  • Swagger2配置2021-04-14 23:31:19

    package com.imooc.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builders.PathSelectors; imp

  • imooc-面试系列-182021-03-15 23:01:18

    18-1 章节介绍 18-2 何为变量提升? 18-3手写深度比较 isEqual 18-4 题目讲解-3:你是否真的会用数组 map 18-5 题目讲解-4:再学闭包 18-6 面试讲解-5:回顾 DOM 操作和优化 18-7 面试讲解-6:jsonp 本质是 ajax 吗 18-8 面试讲解-7:是否用过 Object.create() 18-9 面试讲解-8:常见

  • Spring 学习笔记 (二)2021-03-13 23:35:16

    学习: 视频:https://www.imooc.com/learn/196 (全部:https://www.imooc.com/search/?type=course&words=spring) 教程: https://www.w3cschool.cn/wkspring/dcu91icn.html 实战:https://zhuanlan.zhihu.com/p/150513285 代码:https://github.com/SpringForAll

  • 商品详情接口-商品详情VO2021-03-05 20:36:07

    一、数据库结构 create table `foodie-shop-dev`.items ( id varchar(64) not null comment '商品主键id' primary key, item_name varchar(32) not null comment '商品名称 商品名称', cat_id int not null comment &#

  • 自定义查询语句 mapper实现 参数类型 @Param("paramsMap")2021-03-05 18:34:54

    功能:查询每个一级分类的最新6条商品数据一、数据库表结构 create table `foodie-shop-dev`.category ( id int auto_increment comment '主键' primary key, name varchar(32) not null comment '分类名称', type int not null c

  • 整合Swagger2文档API 和 整合log4j打印日志2021-03-04 18:35:15

    一、整合Swagger2文档API    1、pom.xml引入依赖 <!-- swagger2配置--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.4.0</vers

  • imooc习题笔记2021-01-27 09:02:15

    Android习题笔记 一、Activity 一、Activity onCreate 方法中可以用 setOnContentView() 方法来设置当前 activity 显示的布局项目2项目3

  • Spring Cloud微服务实战 打造企业级优惠券系统 4-2 搭建Eureka Server模块2021-01-06 07:32:47

    0    课程地址 https://coding.imooc.com/lesson/380.html#mid=28548   1    主要内容 1.1  idea搭建父木块 file--》new--》project--》Maven--》Next--》 groupid 输入:com.imooc.coupon ArtifactId 输入:imooc-coupon Version 输入:1.0-SNAPSHOT next--》 projectna

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有