问题标签 [compiled]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
100 浏览

c# - 做了修改,编译和后悔

我今天通过 ctrl+h 对所有解决方案进行了一些更改。当我理解我的错误时,我试图用 ctrl-Z 撤消它,但结果很糟糕。

问题是:在我做了这个愚蠢的举动之前,我怎样才能重新加载最后一个编译的项目。可以说我想要昨天的解决方案。

谢谢你的帮助,伊莱兰。

0 投票
0 回答
482 浏览

php - Laravel 系统返回 NotFoundHttpException

我的 laravel 4 项目有时会在错误日志中打印如下错误:

我无法解决问题。这是什么原因?任何帮助,将不胜感激。谢谢。

0 投票
1 回答
688 浏览

programming-languages - Compiled Language with Dynamic Typing

I'm a bit confused when it comes to a compiled language (compilation to native code) with dynamic typing. Dynamic typing says that the types in a program are only inferred at runtime.

Now if a language is compiled, there's no interpreter running at runtime; it's just your CPU reading instructions off memory and executing them. In such a scenario, if any instruction violating the type semantics of the language happens to execute at runtime, there's no interpreter to intercept the execution of the program and throw any errors. How does the system work then?

What happens when an instruction violating the type semantics of a dynamically typed compiled language is executed at runtime?

PS: Some of the dynamically typed compiled languages I know of include Scheme, Lua and Common Lisp.

0 投票
1 回答
57 浏览

java - java项目的两个独立编译版本

我的项目跨越两个阶段。第一阶段接近完成。虽然我们已经有了一些功能,但可以将其视为逻辑分离的菜单项,已开发并将在第二阶段交付。

有人建议我维护两个版本的代码库(创建两个分支 phase1Branch 和 phase2Branch)。那是因为我们需要两个编译版本(它是 java,因此部署的工件是一个 jar 文件。我使用 jenkins 构建生成用于部署的 jar 文件的项目。)一个用于阶段 1 和另一个用于阶段 2 的代码库版本。这样它就可以在需要时轻松地从阶段 1 切换到阶段 2,例如在向客户展示演示时。

但是,我仍然认为这可以在不维护两个代码库的情况下完成。

以最少的麻烦为目标服务的最佳实践是什么?

0 投票
0 回答
63 浏览

css - Joomla Less Mixin 不起作用

我是 less 的新手,我尝试了一下,我找到了一个应该可以工作的 mixin 代码片段,但它没有。只要我把变量放在reset.less 文件的顶部,它就可以工作。所以我猜我的 Joomla Less 编译器无法正确编译它。但是,如果代码合适,我现在不熟悉了。我正在尝试以下代码:

在我这样写之后它起作用了:

0 投票
2 回答
212 浏览

java - 从已编译的项目中重建 java 项目

有一个用 Maven 构建的 java 项目。我有项目来源,需要改进一些东西,然后重建项目。问题是 Maven 依赖项之一现在丢失了(似乎它只在开发人员的本地仓库中)。但是有一个编译项目(.ear)。我想它有来自那个 Maven 依赖项的代码。

有没有办法使用旧项目的编译文件来构建项目?

0 投票
1 回答
50 浏览

string - Does "strings" against a binary list all usable variables?

I've had a request from a vendor to set a specific environment variable against their software. I'm currently awaiting an explanation of what this actually does. However, I decided to check to see exactly what environment variables were available within the binary using "strings" (on Solaris in this case). It doesn't list the one that they're talking about though.

I think this means that the setting they're asking for isn't actually picked up in any way by the binary mentioned (or any of that vendor's binaries - I checked through the lot of them). However, I'm unsure and can't find an answer to whether running "strings" against a compiled binary will list all of the variables that it can pick up and use from the OS.

Can anyone help to confirm this?

Thanks in advance.

0 投票
1 回答
402 浏览

nhibernate - Unity3d中的NHibernate over Mono,连接字符串问题

我在 Unity 中使用 NHibernate,并且在调试环境中运行项目效果很好,但是在运行编译的 EXE 时,我NullReferenceException在尝试访问数据库时遇到了问题。

经过大量研究,我能够运行以下命令:

在编辑器中运行时,我在控制台中得到了一个很好的连接字符串:

数据源=localhost;初始目录=TheDB;用户ID=yy;密码=xxxx

但是,在运行编译的 EXE 时,此属性为空。

我错过了什么?

0 投票
1 回答
161 浏览

jar - robovm 可以转换所有编译的 jar 文件吗?

robovm 可以转换所有编译的 jar 文件还是有任何异常?

是否有一些代码利用了 RoboVM 无法编译的特殊功能?我想引入一些 Apache 库,我想知道我是否可以保证不会遇到任何问题。有人知道吗?

0 投票
0 回答
339 浏览

c - Fseek 没有到达编译文件的末尾

我正在尝试计算已编译文件中的字符,但我无法到达最后一个字符。这是我的测试代码,其中 SEEK_END 停止在某个点(我不知道为什么)并且文件的其余部分仍未读取。

源代码是使用 make 编译的。
您可以使用 GHex 查看/编辑编译文件。
我的示例:
- 原始编译文件:https
://gist.github.com/anonymous/58aa85dac60047f4adeb - SEEK_END 之前的输出:https ://gist.github.com/anonymous/6b1ab0b2dc3589a4d910

谢谢 !:)