The sources tag has no wiki summary.
0
votes
0answers
18 views
java suppresswarnings unused in Java 1.7 sdk
@SuppressWarnings({"unchecked", "UnnecessaryLocalVariable"})
T[] newArray = (T[]) new Object[newSize];
tmp = newArray;
found it in source of java 7
why no just
tmp = (T[]) new Object[newSize];
...
0
votes
2answers
27 views
IvyDE: How to attach sources?
All of my Eclipse project's dependencies are managed through Ivy (my IvyDE plugin). I would now like to attach the sources JAR for one of these dependencies so I can run a debug session and drill down ...
0
votes
0answers
33 views
Unknown Source apk auto update try failing with internal storage
I am working on an android application which will not be released under playstore. the app will be downloaded from the website directly. So it is an unknown source kind of application.
I want to ...
0
votes
1answer
48 views
How to get sources in my Intellij project
I'm trying to get sources added to my project. I manually added the below repo and included an atmosphere snapshot.
<repositories>
<!-- Added to get the Atmosphere 1.1.0-SNAPSHOT, can ...
1
vote
1answer
331 views
Cannot access to rubygems.org from terminal
I have a problem that I cannot fix it. I try searching for few weeks but It still not solved.
I have problem with install with gem. the issue is terminal cannot reach to ruby gems.org. Here is some ...
1
vote
0answers
81 views
How to get project from meteor.com
My hard disk was broken and i missed sources of my meteor application. But i have it into meteor.com hosting. Standart meteor app dont have any instrument to download sources.
Can i get back my ...
0
votes
0answers
19 views
like sources ads sponsored insights
We don't have a single ad running sponsored stories and all our ads have a direct link to the facebook page but still when we see the insights we get this
Like Sources
6,257 Ads and Sponsored ...
0
votes
4answers
273 views
Sources organization for C++ project [closed]
I would like to have the opinion of other developper about the best way to organise your C++ source code.
Before, I use to place all my headers in a sinlge directory, and sources in different ...
0
votes
1answer
129 views
How to link an ANTLR library with sources in NetBeans
I am trying to link the sources with the ANTLR library I have included in a project within NetBeans 7.2. When I want to go to a source of a class (e.g. by Ctrl+Mouse Click) I only get to a genereated ...
0
votes
1answer
47 views
Eclipse IDE and SVN - how to add a sources folder to project, without changing the .classpath in?
I have an Eclipse IDE Project, which is hosted on SVN.
For one of the jars I have the sources, which I would like to add to the project.
The Problem is, that I do not whant the sources or the ...
1
vote
1answer
119 views
Eclipse - sharing user libraries between projects
I'm taking some time to learn Eclipse, and later on NetBeans. I actually enjoy both IDEs.
I don't know which one I prefer, but they seem to be intuitive.
As for the Eclipse IDE, I'm learning about ...
2
votes
1answer
140 views
Reloading sources of a CherryPy application behind Apache using Mod_WSGI
I'm serving a CherryPy application object in Apache2 using mod_wsgi. Everything seems to be fine from a user perspective, meaning that he/she can actually reach the application and work with it as ...
0
votes
1answer
38 views
How-to guide for making a Ruby “sources” gem?
The documentation for the RubyGems code has this description of #sources:
Returns an Array of sources to fetch remote gems from. If the sources list is empty, attempts to load the "sources" gem, ...
4
votes
1answer
711 views
JavaFX source code not showing in IntelliJ idea
I downloaded the JavaFx source code from http://hg.openjdk.java.net/openjfx/2.2/master/rt/summary.
The name of the folder in the zip file is re-e71070b0e0c0,
I unzipped this and added the folder under ...
0
votes
1answer
53 views
Issues with attaching source to external library
I successfully attached the source for an external library in my Android project. I used the method which is described in this answer. I now see the source, however I face another problem. After I ...
5
votes
1answer
95 views
What does […] in .Net sources mean?
.Net core libraries source code (that can be accessed using Resharper) sometimes contain weird part "[....]" that you can see not only in comments, but in the code itself. What does it mean and why ...
0
votes
0answers
71 views
I can't see java sources when debugging downloaded sources from Maven with Eclipse Juno
Basically, the topic says it all: I downloaded the sources for my maven dependencies but when execution hits a breakpoint on them, it doesn't stop. Any pointers on how to fix this?
Thanks in advance.
...
0
votes
1answer
94 views
What is the JSON format to specify multiple “sources” under AWS::CloudFormation::Init?
As per AWS CloudFormation documentation found here :
http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide/aws-resource-init.html#aws-resource-init-sources
I simply added a "comma" and ...
1
vote
1answer
845 views
Apache Poi Sourcecode & JavaDoc
Refering to How Can I Add the Apache POI Library in and Eclipse Project?
I'm not able to find the sources of apache-poi or include the javadocs into eclipse.
I've tried to zip the docs folder and ...
2
votes
2answers
374 views
Maven, IntelliJ Idea and Android Sources
I am using combination Maven and IntelliJ Idea. Although javadoc and sources are shown using Android Module in Idea, I can not see any of them using android maven. Any help, how to show sources also ...
1
vote
1answer
517 views
Intellij idea: attach java sources to project
I am developing a websphere portlet in idea 11. The portlet is using some methods defined on portal. I don't have the production environment compiled classes or jars on my pc but i have the source ...
1
vote
1answer
664 views
Android: How to push updates on preinstalled apps without allowing installation from unknown sources
Here's the situation:
I have a bunch of Android devices which are to be flashed with custom ROMs and given out to clients. As part of that ROM will be a 'support' app, which is tied to the device. It ...
2
votes
3answers
811 views
How to attach sources or docs for external libraries in eclipse ADT (Android) [duplicate]
Possible Duplicate:
How to attach javadoc or sources to jars in libs folder?
I like to know how to attach sources and docs for external libraries in android projects, using libraries in the ...
3
votes
0answers
377 views
What does “fan_context_story” mean in the “page_fans_by_like_source”
In the Facebook Insights API, I can pull the "page_fans_by_like_source" and get a list of page like sources. One of the sources is "fan_context_story", but I don't know what that means and the ...
5
votes
4answers
107 views
Ambiguousness in android java source
EditText ed1=(EditText)findViewById(R.id.editText1);
int a=Integer.parseInt(ed1.getText().toString());
Is the above code referencing that get the input as numeric from the user and show it as ...
1
vote
1answer
94 views
Browse and diff Android sources
I am troubleshooting a bug that occurs on my Android 2.2 phone, but not on my Android 2.3 phone.
As the bug seems to be in SimpleOnScaleGestureListener, I would like to:
determine which version of ...
1
vote
1answer
402 views
Maven assembly, how to include parent's sources
I have an assembly executed in my top level project (the parent)
I extract all the sources to allow the client to compile himself the project.
The problem is that all is extracted except the parent ...
2
votes
1answer
689 views
Can't toggle breakpoint in Eclipse while remote debugging
I am debugging java application with remote debug feature. Application is running separately, while access to it's JVM is configured under Debug Configurations - Remote Java Application.
Sources are ...
3
votes
3answers
282 views
A “source-less” C++ idiom
I am developing a fairly large C++ support library, and have found myself moving towards a header-only approach. In C++ this almost works because you can implement where you define in classes. For ...
2
votes
1answer
177 views
Compiling DotNetOpenAuth from github sources
If you build you get error on checking signed assemblies.
Is it okey just to change
SignAssembly = false
DelaySign = false
in
tools\DotNetOpenAuth.props?
Just for developing/debugging purposes.
3
votes
1answer
1k views
.gdbinit: how to access environment variables inside .gdbinit and inside gdb itself?
I am looking to set up the path for the source code when debugging with gdb. I chose to do that with a .gdbinit file.
Basically, it contains a command:
directory="/path/to/src".
However, I would ...
0
votes
2answers
403 views
How do I attach the sources for a library bundle in OSGi/Equinox/Eclipse?
I created a library bundle for commons-lang3 and this works well. I can build the bundle, add a dependency and then use all the classes in this bundle in my plugins.
But I don't see the sources in ...
1
vote
0answers
391 views
Flowplayer: Using ipad mode with multiple video sources
I'm setting up flowplayer script using the ipad() plugin. It worked out fine. However, I need to set up the script so that it will read from multiple video sources just like it is configured in a ...
2
votes
2answers
1k views
How to deploy the sources file with the jar using Maven deploy:deploy-file
I have the following plugins for creating a -sources.jar and deploying a specific named jar to a repository.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
0
votes
4answers
594 views
Ruby / RoR - source code protecting
How I can protect my source code? We cannot keep sources on our servers, and want to distribute our system to customers. Also I want to license my software, at this case I can develop something like ...
1
vote
1answer
127 views
Is R source code available in a Git repo?
I want to git clone the R source repo. Does it even exist?
All I can find is this link for a svn repo that doesn't work https://svn.r-project.org/
0
votes
1answer
120 views
Use sources for android on desktop application
I have a number of classes for working with SQLite database, XML and etc. for Android application.
Its necessary to make builds of application before releasing new version to Android Market. It ...
0
votes
1answer
63 views
Curl multiple sources [closed]
i need something that will run multiple URLs multiple times. Something like:
for ($i=0; $i<4; $i++)
{
for ($j=0; $j<5; $j++)
{
// run source
// wait
}
}
I cannot use ...
0
votes
1answer
178 views
Where can I download the sources jar for geronimo-commonj_1.1_spec-1.0.jar
The sources jar for geronimo-commonj_1.1_spec-1.0.jar is not found in the maven repo.
Where would I be able to download the sources jar/zip?
0
votes
1answer
806 views
Hang on “Loading Kernel Image …”
I took the kernel configuration file from the rowboat sources for the Beagleboard xM DM3730 and used that to successfully compile a uImage of the kernel included in the Cyanogenmod kernel sources ...
0
votes
2answers
822 views
maven assembly plugin - correct use of the exclude term
short: I need to filter all java Files and every META-INF Folder from a set of jars and package the class files and resources into one single jar.
I currently use the maven assembly plugin, but am ...
0
votes
3answers
698 views
Compile iReport 4.0.2 from sources with NetBeans 6.5.1 java.io.IOException
I am trying to compile iReport 4.0.2 with NetBeans 6.5.1. On the iReport forums it says that this is the NetBeans platform to which it is compatible.
However, I get this error when compiling the ...
0
votes
1answer
340 views
[DisplayTag]Install and configure DisplayTag with Eclipse
I download the last sources : displayTag (v1.2) and I try to configure it with Eclipse but I don't succeed.
Maven configuration seems to be ok : I build the jar correctly but when I open a Java Class, ...
3
votes
1answer
1k views
How to dynamically change event sources for fullCalendar (jQuery)?
I am using the jQuery FullCalendar plug-in. I want to load initially the calendar with events as an array. I am doing this like:
events: <%= Model.Events %>
or
eventSources: [{
...
0
votes
1answer
613 views
How to tell automake that a dependency is generated and thus in builddir and not in sourcedir
I wonder if I can tell automake that a dependency is generated and thus in builddir and not in sourcedir? In my case the generated dependencies look like this:
$ head -n2 .deps/dynamic.Po
...
1
vote
1answer
799 views
Rails generate: rack not in source
I use Rails 3.0 on Ruby 1.9.2 with RVM. When I try to use 'rails generate', I get the following error:
Could not find rack-1.2.2 in any of the sources
It also gives me the following warning:
NOTE: ...
16
votes
10answers
19k views
NetBeans doesnt open project from existing sources
I've installed NetBeans 6.9.1 and installed few updates for it (Help -> Check for Updates).
Then i've created a new project from existing sources. After few changes i've closed it. And now i am ...
0
votes
1answer
1k views
RPMBUILD //SOURCES
I'm trying to build a RPM for barnyard2-1.9, but when I attempt it I receive this error. These are the last few lines of the rpmbuild output:
/usr/bin/install -d -p ...
9
votes
7answers
2k views
Why in maven project layout resources are kept separate from java sources
Why maven keeps resource in a separate "source folder" from the java sources?
From my experience, in Java the resource files are mostly treated like java source files, which, when "compiled" just ...
2
votes
1answer
2k views
How can I get Android 2.2.1 sources?
I have a repository created with
git clone git://android.git.kernel.org/platform/frameworks/base.git
But I don't see any specific branch for 2.2.1 version
git branch -r
The output
origin/HEAD
...
