首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏刷题笔记

    Community Bonding

    Community Bonding ? During Community Bonding, tutor jean-frederic Clere and I had six emails? is the repository I created this afternoon for technology sharing in the school’s in-house developer community.Springboot I was the technical director of Java development in the school’s developer community intelligent river I’m also trying to run our community on GitHub and keep a record of every learning experience we share.I

    61620发布于 2020-06-23
  • 来自专栏salesforce学习

    create Customer Community User Partner Community User

    Customer Community User1.Create a new account and name it ‘Customer Account’.图片2.Create a contact related If you want to log in as a community user from Salesforce platform, go to the created contact and click on ‘Log in to Community as User ‘ button and select your community.图片Partner Community User1.Create If you want to log in as a community user from Salesforce platform, go to the created contact and click on ‘Log in to Community as User ‘ button and select your community.图片

    56910编辑于 2023-05-11
  • 来自专栏PingCAP的专栏

    In Community We Trust

    前些天在与友人喝咖啡的时候,正好聊到关于 PingCAP 和 TiDB 的一些历史以及对于开源软件公司核心竞争力的理解,回顾这几年的创业生涯和 TiDB 社区的生长壮大,就像是一场巨大且正在进行中的社会学实验,原本零散的一些想法随着一条主线变得逐渐清晰,就想着写成文章总结一下关于社区对于开源软件以及开源公司到底意味着什么。

    64930发布于 2021-04-28
  • 来自专栏张善友的专栏

    MSBuild Community Tasks Project

    相关的开源项目(BSD协议),对于使用MSBuild一定对这个项目感兴趣:      项目网站:http://msbuildtasks.tigris.org/     下载最新的版本 MSBuild.Community.Tasks.msi - MSBuild Community Tasks Setup MSBuild.Community.Tasks.v1.1.0.145.zip - MSBuild Community Tasks v1.1.0.145

    87980发布于 2018-01-31
  • 来自专栏Windows Community

    New UWP Community Toolkit

    概述 UWP Community Toolkit 是一个 UWP App 自定义控件、应用服务和帮助方法的集合,能够很大程度的简化和指引开发者的开发工作,相信广大 UWPer 并不陌生。 开发者可以通过 VS Package Management 来安装 UWP Community Toolkit NuGet 包,输入“Microsoft.Toolkit”会列出一个集合,下面是摘自官方的 ,可以在 Stack Overflow 的 uwp-community-toolkit 专区提问,如有新的功能需求,可以在 Microsoft Forums Uservoice  提出; 如果大家想先了解一下  UWP Community Toolkit 的功能演示,也可以直接在 Microsoft Store 下载 UWP Toolkit Sample App 使用体验: ? 大家可以在 GitHub 主页上查看 V2.2.0 的发布日志:UWP Community Toolkit V2.2.0 Release note.

    2.1K110发布于 2018-04-28
  • 来自专栏Windows Community

    Extensions in UWP Community Toolkit - ViewExtensions

    概述 UWP Community Toolkit Extensions 中有一个为 View 提供的扩展 - View Extensions,本篇我们结合代码详细讲解 View Extensions 的实现 总结 到这里我们就把 UWP Community Toolkit Extensions 中的 View Extensions 的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个扩展有所帮助

    1.2K60发布于 2018-04-28
  • 来自专栏Windows Community

    Windows Community Toolkit 3.0 - UniformGrid

    下面是 Windows Community Toolkit Sample App 的示例截图和 code/doc 地址: ? Windows Community Toolkit Doc - UniformGrid Windows Community Toolkit Source Code - UniformGrid Namespace Background="Pink"><TextBlock Text="11"/></Border> </controls:UniformGrid> </Page> 总结 到这里我们就把 Windows Community

    1.1K20发布于 2018-08-23
  • 来自专栏python3

    BGP community属性3

    三 配置团体属性,让2.2.2.0网络只被R2学习到 这里最合适的community属性应该是:no_advertise 因为它不会向任何EBGP IBGP邻居公布路由。 匹配该路由 r1(config)#route-map WY permit 10 r1(config-route-map)#match ip add 1 r1(config-route-map)#set community 四 配置团体属性,让22.22.22.0网络只被R2,R3学习到 因为R2,R3处于联邦内同一个子AS,意思是该路由不能传递出这个子AS,所以可以用community属性:LOCAL_AS r1(config r2(config)#router bgp 64512 r2(config-router)#neighbor 23.0.0.3 send-community 在R2上配置让R3继承该属性 r4#sh ip no-export r1(config)#route-map WY permit 20 为了让R4能继承到该属性,必须在R1,R2,R3都配置send-community以便让该属性进行传递。

    1.4K20发布于 2020-01-10
  • 来自专栏Windows Community

    Windows Community Toolkit 3.0 - CameraPreview

    概述 Windows Community Toolkit 3.0 于 2018 年 6 月 2 日 Release,同时正式更名为 Windows Community Toolkit,原名为 UWP Community Note 也可以看出来:https://github.com/Microsoft/WindowsCommunityToolkit/releases 我们从今年 3 月份开始陆续针对 Windows Community Windows Community Toolkit Doc - CameraPreview Windows Community Toolkit Source Code - CameraPreview await softwareBitmapSource.SetBitmapAsync(targetSoftwareBitmap); } } 总结 到这里我们就把 Windows Community

    88810发布于 2018-08-03
  • 来自专栏Windows Community

    New UWP Community Toolkit - Carousel

    概述 New UWP Community Toolkit  V2.2.0 的版本发布日志中提到了 Carousel 的调整,本篇我们结合代码详细讲解  Carousel 的实现。 总结 到这里我们就把 UWP Community Toolkit 中的 Carousel 控件的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个控件有所帮助,让你的图片列表控件更加炫酷灵动

    1.8K60发布于 2018-04-28
  • 来自专栏Windows Community

    Extensions in UWP Community Toolkit - SurfaceDialTextbox

    概述 UWP Community Toolkit Extensions 中有一个为TextBox 提供的 SurfaceDial 扩展 - SurfaceDialTextbox,本篇我们结合代码详细讲解 总结 到这里我们就把 UWP Community Toolkit Extensions 中的 SurfaceDialTextbox 的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个扩展有所帮助

    1.3K80发布于 2018-04-28
  • 来自专栏Windows Community

    Extensions in UWP Community Toolkit - WebViewExtensions

    概述 UWP Community Toolkit Extensions 中有一个为 WebView 提供的扩展 - WebViewExtensions,本篇我们结合代码详细讲解 WebView Extensions 总结 到这里我们就把 UWP Community Toolkit Extensions 中的 WebViewExtensions 的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个扩展有所帮助

    1K90发布于 2018-04-28
  • 来自专栏Windows Community

    New UWP Community Toolkit - DeveloperTools

    概述 UWP Community Toolkit  中有一个开发者工具集 DeveloperTools,可以帮助开发者在开发过程中进行 UI 和功能的调试,本篇我们结合代码详细讲解  DeveloperTools 总结 到这里我们就把 UWP Community Toolkit 中的 DeveloperTools 的实现过程和简单的调用示例讲解完成了,希望这些工具对大家开发 UWP 应用有所帮助,如果大家有更好用的工具类

    1.2K70发布于 2018-04-28
  • 来自专栏Windows Community

    Extensions in UWP Community Toolkit - Overview

    概述 UWP Community Toolkit  中有一个 Extensions 的集合,它们可以帮助开发者实现很多基础功能,省去自己造轮子的过程,本篇我们先来看一下 Extensions 的功能都有哪些 总结 到这里我们就把 UWP Community Toolkit 中的 Extensions 的种类和简单的代码调用讲解完成了,希望这些扩展对大家开发 UWP 应用有所帮助,如果大家有更好用的扩展类,也欢迎大家给

    1.7K120发布于 2018-04-28
  • 来自专栏非著名运维

    安装Mysql报错:mysql-community-server-5.7...my-) 需要:mysql-community解决

    错误:软件包:mysql-community-server-5.7.30-1.el7.x86_64 (mysql57-community) 需要:mysql-community-common (x86-64) = 5.7.30-1.el7 已安装: mysql-community-common-8.0.20-1.el7.x86_64 (@mysql80-community Mysql Yum源 [root@test2 ~]# ls mysql57-community-release-el7-11.noarch.rpm mysql57-community-release-el7 ... --> 解决依赖关系完成 错误:软件包:mysql-community-server-5.7.30-1.el7.x86_64 (mysql57-community) 需要:mysql-community-common 可用: mysql-community-common-5.7.10-1.el7.x86_64 (mysql57-community) mysql-community-common

    1.8K20编辑于 2022-06-22
  • Community Enterprise Operating System

    背景CentOS(Community ENTerprise Operating System)是一个基于Red Hat Enterprise Linux(RHEL)的开源Linux发行版,旨在提供一个免费的

    28200编辑于 2025-02-17
  • 来自专栏Windows Community

    New UWP Community Toolkit - RadialGauge

    概述 New UWP Community Toolkit  V2.2.0 的版本发布日志中提到了 RadialGauge 的调整,本篇我们结合代码详细讲解  RadialGauge 的实现。 总结 到这里我们就把 UWP Community Toolkit 中的 RadialGauge 控件的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个控件有所帮助。

    1.2K150发布于 2018-04-28
  • StarRocks Community Monthly Newsletter (Apr)

    ✨GitHub:https://github.com/StarRocks/starrocks中文社区官网:https://www.mirrorship.cn/zh-CN/community

    33310编辑于 2025-05-18
  • 来自专栏Windows Community

    New UWP Community Toolkit - DropShadowPanel

    概述 UWP Community Toolkit  中有一个为 Frmework Element 提供投影效果的控件 - DropShadowPanel,本篇我们结合代码详细讲解  DropShadowPanel 总结 到这里我们就把 UWP Community Toolkit 中的 DropShadowPanel 控件的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个控件有所帮助。

    1.3K70发布于 2018-04-28
  • 来自专栏Windows Community

    New UWP Community Toolkit - RotatorTile

    概述 UWP Community Toolkit  中有一个为图片或磁贴提供轮播效果的控件 - RotatorTile,本篇我们结合代码详细讲解  RotatorTile 的实现。 总结 到这里我们就把 UWP Community Toolkit 中的 RotatorTile 控件的源代码实现过程和简单的调用示例讲解完成了,希望能对大家更好的理解和使用这个控件有所帮助。

    81980发布于 2018-04-28
领券