a

building workspace has encountered a problem

本小妞迷上赌 提交于 2020-04-17 03:59:11
【推荐阅读】微服务还能火多久?>>> 导入一个现有的项目后,eclipse要building workspace,而且发现在这个过程中一直在不间断地校验JavaScript,由于项目中有大量的JS代码,造成该过程很慢,这时再对eclipse进行其它操作,很容易导致eclipse卡死。有时候会出现 building workspace has encountered a problem 这样的错误 。 出现该错误之后,即使关闭eclipse再打开,之后还会报这样的错误: 在网上查找以后,找到的解决方法: 创建一个新的workspace,删除原来的workspace,并通过File-->Switch workspace选择使用新创建的workspace。 设置buidling workspace时不校验JavaScript代码,右击项目-->properties-->Builders,在对应视图中取消JavaScript Validator选项。 这样导入项目时就不会被building workspace占用大量的时间,也不会再出现上述错误。 看到有说, (把project选项里的 building automatically前的勾去掉 ) 个人感觉应该没什么用,building workspacea这个任务始终都是要进行的。 来源: oschina 链接: https://my

mysql 1449错误

南楼画角 提交于 2020-03-25 14:00:05
3 月,跳不动了?>>> 一、问题 为了更好地管理mysql数据库,重新创建了一个新账号:accout 并给予all privileges, 但是开发人员在使用视图的时候出现了mysql 1449的错误,网上说要给账号所有权限。 最后找到一篇文章完美解决问题: http://blog.handone.com/index.php/archives/137 二、问题原因: 因为创建视图使用的是root@%用户(目前已经不存在),然后登录用户使用的是accout@localhost用户,导致mysql认为现在的用户无权限访问该视图,解决方法就是在当前用户下重建该视图。 三、解决方案 将原来视图删除,使用新账号重新生成视图 来源: oschina 链接: https://my.oschina.net/u/2602029/blog/662833

再译《A *路径搜索入门》之六

主宰稳场 提交于 2020-03-25 03:57:25
3 月,跳不动了?>>> ■ 延伸 阅读 Further Reading 好了, 现 在你 已 具 备 了基 础 知 识 和一些先 进 的概念感。在 这 一点上,我建 议 你到涉水我的源代 码 。 该软 件包包含两个版本,一个 是 C ++ 的 ,一个 是 Blitz Basic 的 。两个版本都大量注 释 , 应该 是相当容易 执 行,相 对 来 说 。 这 里是 链 接。 Okay, now you have the basics and a sense of some of the advanced concepts. At this point, I'd suggest wading into my source code. The package contains two versions, one in C++ and one in Blitz Basic. Both versions are heavily commented and should be fairly easy to follow, relatively speaking. Here is the link. http://www.blitzcoder.com/cgi-bin/showcase/showcase_showentry.pl?id=turtle177604062002002208

再译《A *路径搜索入门》之三

故事扮演 提交于 2020-03-25 03:51:31
3 月,跳不动了?>>> ■ 继续 搜索 Continuing the Search 要 继续 搜索,我 们简单 地 选择在 开启列表中具有最小 F 值 的方 块 。然后,我 们用选择 方 块 作 以下 事情 : To continue the search, we simply choose the lowest F score square from all those that are on the open list. We then do the following with the selected square: 1. 把 它从 开启列表 取出,并加入到 关 闭 列表 。 1.Drop it from the open list and add it to the closed list. 2. 检查 所有的相 邻 方 块 。忽略那些 在 关 闭 列表 里 或不可行走的( 墙 ,水或其他非法地形),如果它 们还不在 开启列表中 , 加方 块 到 开启列表 。将 选 定方 块作为 新方 块的 “父”。 2. Check all of the adjacent squares. Ignoring those that are on the closed list or unwalkable (terrain with walls, water, or other

git remove a file from remote repository

橙三吉。 提交于 2020-02-29 14:42:34
当你误提交一些文件的时候,比如log 之类的,这些事本地文件需要的,那么如何删除远程仓库的这些log,而不删除本地的文件呢。 git rm -r -- cached File-or-FolderName -r Allow recursive removal when a leading directory name is given. -- cached Use this option to unstage and remove paths only from the index. Working tree files, whether modified or not, will be left alone. -n或者 -- dry-run Don’t actually remove any file(s). Instead, just show if they exist in the index and would otherwise be removed by the command. git rm -r -n --cached "bin/" //-n:加上这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。 git rm File-or-FolderName #### 删除本地和repository git commit -m "Removed

a 伪类顺序,background

旧时模样 提交于 2020-01-07 11:23:52
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 1 a:link; a:hover; a:active; a:visited ==> a:link ; a:visited ; a:hover; a:active 有连接的A(正常),鼠标移上悬停B(高亮),点击激活鼠标抬起之间C(灰态),已经访问过的A(正常) 2 background : background-color || background-image || background-repeat || background-attachment || background-position 默认值为: transparent none repeat scroll 0% 0% 3 图像坐标:右x, 下y 4 background-position : 背景图片相对于容器元素应该在什么位置 -50px,-50px : 容器固定,图片位置左移50px,上移50px 来源: oschina 链接: https://my.oschina.net/u/259872/blog/324830

用jQuery对TABLE进行增、删、改操作

百般思念 提交于 2019-12-19 16:38:17
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> <%@ Page Title="关于我们" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="About.aspx.cs" Inherits="About" %> <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"> </asp:Content> <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <script type="text/javascript" src=" http://ajax.microsoft.com/ajax/jquery /jquery-1.4.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $(document).ready(function () { var tdNods = $("td"); tdNods.click(tdClick); });

HTML中<a>标签的rel属性的含义_HTML5新增属性值

懵懂的女人 提交于 2019-12-10 07:23:16
HTML中<a>标签有个rel属性,这篇文章简要介绍下rel属性的含义、Value,及在HTML5中新增的一些属性值。 1、rel属性定义: <a>标签的rel属性 用于指出当前文档与被链接文档的关系 。仅在有href属性存在的情况下使用,我们常在link标签中用到,比如:<link rel=“ stylesheet” style="text/css" href=“../” >。 2、作用介绍: a.rel属性是指定连接的关系类型,表明所连接的文档和此连接的关系; b.把这个属性根据实际情况写的话, 对于搜索引擎来说,会起到一定的链接作用。特别是在html5中,部分属性还专门为浏览器或搜索引擎而提供的; c.部分属性,是针对一些客户终端而设计的,具体百度找下相关知识,这里暂不研究了。 3、HTML4.01与 HTML5之间的差异 已删除的值:appendix, chapter, contents, copyright, glossary, index, section, start, subsection。 新的值:archives, author, bookmark, external, first, index, last, license, nofollow, noreferrer, search, sidebar, tag, up。 4、属性值及描述: 值 描述

java8函数表达式的定义[Definition of a Lambda Expression]

馋奶兔 提交于 2019-12-05 08:18:14
英文来源于:Java in a Nutshell, 6th Edition            Definition of a Lambda Expression A lambda expression is essentially a function that does not have a name, and can be treated as a value in the language. As Java does not allow code to run around on its own outside of classes, in Java, this means that a lambda is an anonymous method that is defined on some class (that is possibly unknown to the developer).                         ---Java in a Nutshell, 6th Edition 其实正则表达式就是没有名字的函数,(参数,返回值,函数体),在java 语言中视为一个值. 因为java的函数必须在类中定义,这就意味着,java语言中的函数表达式即为在某类中定义的匿名方法. 函数表达式在java视为一个值,即:Runnable r = () ->

submit is not a function

和自甴很熟 提交于 2019-12-04 05:48:55
Javascript Error: submit is not a function 有时候需要用javascript提交表单,很可能大家会用javascript:myForm.submit();可是在这样做的时候怎么也提交不成功,在FF中查看javascript错误Javascript Error: submit is not a function。其原因可能在于用myForm.submit()提交表单的时候,表单里面含有name="submit"的元素,在提交的时候,该对象会和submit();方法发生混淆造成该错误! 来源: oschina 链接: https://my.oschina.net/u/135629/blog/55111