问题列表 - 第10459页

尝试安装谷歌插件(GWT)时,在Eclipse(Ganymede)中发现"No Repository Found"错误

我正在尝试安装Google Web Toolkit for Eclipse(Ganymede),我收到以下错误.

An error occurred while collecting items to be installed
  No repository found containing: org.eclipse.emf.common/osgi.bundle/2.4.0.v200808251517
  No repository found containing: org.eclipse.emf.ecore/osgi.bundle/2.4.1.v200808251517
  No repository found containing: org.eclipse.emf.ecore.change/osgi.bundle/2.4.0.v200808251517
  No repository found containing: org.eclipse.emf.ecore.edit/osgi.bundle/2.4.1.v200808251517
  No repository found containing: org.eclipse.emf.ecore.xmi/osgi.bundle/2.4.1.v200808251517
  No repository found containing: org.eclipse.emf.edit/osgi.bundle/2.4.1.v200808251517
  No repository found containing: org.eclipse.wst.common.emf/osgi.bundle/1.1.202.v200809111955
  No repository found containing: org.eclipse.wst.common.emfworkbench.integration/osgi.bundle/1.1.201.v200808071700
  No repository found containing: org.eclipse.wst.common.frameworks/osgi.bundle/1.1.200.v200805140020
  No repository found containing: org.eclipse.wst.common.project.facet.core/osgi.bundle/1.3.3.v200809102124
  No repository found containing: org.eclipse.wst.sse.core/osgi.bundle/1.1.302.v200808260045
  No repository found containing: org.eclipse.wst.sse.ui/osgi.bundle/1.1.2.v200809120159
  No repository found containing: org.eclipse.wst.validation/osgi.bundle/1.2.2.v200809050219
  No …
Run Code Online (Sandbox Code Playgroud)

eclipse installation gwt

12
推荐指数
3
解决办法
4万
查看次数

如何使用'printf'打印'%'字符?

我无法弄清楚的简单问题......

如何在printf字符串中打印'%'字符?下面的代码打印出来,但也会出现"无效转换"错误.

printf "\t\t".$hour."00 HRS\t=>\t%.2f\t%.2f\t%.1f\%\n", $total, $max15, ($max15/$total*100);
Run Code Online (Sandbox Code Playgroud)

应输出如下内容:

        0000 HRS    =>    3125.19    898.02    28.7%
Run Code Online (Sandbox Code Playgroud)

perl printf

8
推荐指数
3
解决办法
2万
查看次数

在F#中创建Array2D(VS2010 Beta 1)

请考虑VS2010 Beta 1中的以下代码片段:

let array = Array2D.zeroCreate 1000 500

这会产生错误,即:

 error FS0030: Value restriction. The value 'array' has been inferred to have 
generic type val array : '_a [,]
Either define 'array' as a simple data term, make it a function with explicit 
arguments or, if you do not intend for it to be generic, add a type annotation.

我可以显式设置类型(在我的例子中是一个字符串网格)?

arrays f# multidimensional-array

1
推荐指数
1
解决办法
1580
查看次数

将超链接连接到字符串的正确方法

什么是正确连接字符串与内部URL的最佳方法?这可以吗?

String.Format("This is the link: <a href={0}>{1}</a>", somevalue1, somevalue2)
Run Code Online (Sandbox Code Playgroud)

或者它可能为注射攻击敞开大门?

那么如何在字符串中插入超链接?

我想我可以使用HyperLink类,但是有没有任何属性可以返回类对象的html代码?

asp.net

1
推荐指数
1
解决办法
6948
查看次数

NSIS脚本条件编译基于文件的存在

我有一个基于NSIS的安装程序,我需要能够在不同的条件下生成略有不同的版本.

条件很容易在编译时建立,如果磁盘上存在特定文件,则可以使用替代品牌.我知道我可以使用makensis.exe的命令行选项来提供这种行为,但如果编译器可以为我处理这个问题会更好.

有没有办法使编译时"IfExist"类型逻辑?

nsis

4
推荐指数
1
解决办法
1717
查看次数

如何编写Delphi Galileo IDE Expert?

HI,

我想为D2007-D2009(又名Galileo IDE)编写一个小型Delphi IDE Expert,以便在其上显示一个带有TMemo实例的窗口,其中包含上述备忘录中表单设计器的所有组件名称和类.所选组件将标有"*".专家应出现在菜单/工具栏上并指定快捷方式.

我该怎么办?

Ps:实际上真正的代码比这更复杂,但我希望有一个通用的框架来开始.

TIA

ide delphi galileo ota

2
推荐指数
1
解决办法
818
查看次数

SQL Server子查询语法

当我运行查询时:

select count(*) from 
(select idCover from x90..dimCover group by idCover having count(*) > 1) 
Run Code Online (Sandbox Code Playgroud)

我收到错误:

Server: Msg 170, Level 15, State 1, Line 2
Line 2: Incorrect syntax near ')'
Run Code Online (Sandbox Code Playgroud)

如何正确制定此查询?

我在SQL Server 2000上

sql sql-server

28
推荐指数
2
解决办法
3万
查看次数

在Visual Studio 2008中未正确设置WindowsSdkDir?

我正在尝试构建一些需要Windows 7.0 SDK头文件和库的C++代码.我的VC++目录设置为:

$(VCInstallDir)include
$(VCInstallDir)atlmfc\include
$(WindowsSdkDir)\include
$(WindowsSdkDir)\common\include
$(FrameworkSDKDir)include
Run Code Online (Sandbox Code Playgroud)

我的$(WindowsSdkDir)变量设置为C:\Program Files\Microsoft SDKs\Windows\v7.0\- 我使用SDK的"Visual Studio注册"配置工具来设置它,它在注册表中看起来是正确的.我已经检查过HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows(和同样的Wow6432Node.

尽管如此,Visual C++仍在从中获取头文件 C:\Program Files\Microsoft SDKs\Windows\v6.0A\

怎么了,怎么解决?

winapi visual-studio-2008

17
推荐指数
2
解决办法
3万
查看次数

如何快速alpha混合RGBA无符号字节颜色?

我正在使用c ++,我想使用以下代码进行alpha混合.

#define CLAMPTOBYTE(color) \
    if ((color) & (~255)) { \
        color = (BYTE)((-(color)) >> 31); \
    } else { \
        color = (BYTE)(color); \
    }
#define GET_BYTE(accessPixel, x, y, scanline, bpp) \
    ((BYTE*)((accessPixel) + (y) * (scanline) + (x) * (bpp))) 

    for (int y = top ; y < bottom; ++y)
    {
        BYTE* resultByte = GET_BYTE(resultBits, left, y, stride, bytepp);
        BYTE* srcByte = GET_BYTE(srcBits, left, y, stride, bytepp);
        BYTE* srcByteTop = GET_BYTE(srcBitsTop, left, y, stride, bytepp);
        BYTE* maskCurrent = …
Run Code Online (Sandbox Code Playgroud)

c++ performance

20
推荐指数
5
解决办法
3万
查看次数

JavaScript对象文字和数组

我有以下JavaScript代码:

oCoord = {x: null, y: null};
var aStack = [];

oCoord.x = 726;
oCoord.y = 52;
aStack.push(oCoord);

oCoord.x = 76;
oCoord.y = 532;
aStack.push(oCoord);

oCoord.x = 716;
oCoord.y = 529;
aStack.push(oCoord);
Run Code Online (Sandbox Code Playgroud)

现在,这将创建以下结构(三个对象的数组).

Array[Object, Object, Object];
Run Code Online (Sandbox Code Playgroud)

但是,当我尝试访问每个对象的属性时,它们都是相同的.为什么是这样?

alert(aStack[0].x); // Outputs 716
alert(aStack[1].x); // Outputs 716
alert(aStack[2].x); // Outputs 716
Run Code Online (Sandbox Code Playgroud)

我究竟做错了什么?

javascript

2
推荐指数
1
解决办法
3427
查看次数