packages

Is recompiling Oracle Packages safe

Hi We have a third party oracle based application, that ships with precompiled binary(wrapped) packages. But when I compile them in Oracle SQL Developer (right click -> compile all), they get invalidated. Is recompiling a safe operation with no side effects? ...

Will Static sql (as opposed to Dynamic SQL) invalidate other packages in Oracle

Hi If I write a custom package with nothing but static SQL in it, would it invalidate other package. (other third party packages that were shipped as wrapped code). a co worker suggests that I re write the custom package in Dynamic SQL, and I will not see this problem. I find this hard to believe because the third party packages are not...

Is there a visualization tool that can inspect a Java code base and report inter-package dependencies?

We have a Java code base that has grown to be too big for a single monolithic JAR (more than 5000 classes). One of the tasks that we are investigating is how much effort would it be to break this single JAR into smaller components with controlled dependencies between them. However, it's somewhat hard to look at a big bag of code and be...

ipkg: dependencies on versions? adding support for more architectures?

Can you limit the Depends: field in your control files to specific versions, lists of versions, or ranges of version as you can in dpkg? It also seems to me that ipkg out of the box only supports the architectures "arm" and "all", and not x86, which is what I would like to use. Is this a simple modification to the source or a config fi...

How should I define 'static' subroutines in Perl?

I'm used to work in Java, so perhaps this question is a Java-oriented Perl question... anyway, I've created a Person package using Moose. Now, I would like to add a few subroutines which are "static", that is, they do not refer to a specific Person, but are still closely related to Person package. For example, sub sort_persons gets an ...

How can I specify the working directory while running R CMD check?

The command 'R CMD check' runs the R files in the project's tests directory. The directory structure: toplevel project R rmongo.R tests RMongo-Ex.R When i R CMD check project in toplevel directory, i run into this error: cannot open file '../R/rmongo.R': No such file or directory because my test file sources th...

Java package naming and non .com domains

From what I understand Java packages often use a company's website as a package namespace. For example if stackoverflow had a Java widget library it might be called com.stackoverflow.widget. But what happens if you use an obscure TLD. Is info.example.widget acceptable? ...

Where the standard java package located on the HDD?

When I do an import like this: import java.awt.event.MouseEvent; I can use the methods/fields from that Class. I'm just wondered where this package actually located on my HDD. ...

storefront menu tab

i am working on asp.net storefront(not mvc) but the one from aspdotnetstorefront.com I try to add menu items on topmenu but i am seeing (!menu.About!)" as result. How to do this? ...

Demonstrating package names collision in java

I got this question as an assignment: Packages/Naming We have created lot of packages and defined classes and interfaces in them. We have also discussed the point we have to remember while naming them. In this assignment we will see how important naming is. Please change the package names in your previous assignment such th...

Alternative of Matlab's Neural Network Toolbox in R

Is there a kind of package in R for this? Is the "AMORE" package a possible surrogate for Matlab's Neural Network Toolbox? Thanks. ...

How to view hierarchical package structure in Eclipse package explorer

OK I have a feeling I'm doing something that's not "accepted practice" but here's what I would like: in the Eclipse package explorer, I see the following: (dot represents a clickable arrow that I can use to expand the folder) PROJECT Source Folder Package Class Package.SubPackageFooBarPackage.OtherSubPackagePackage.OtherSub...

Debian package not including files; runs install during build

I'm creating a Debian package for my application using dh/debuild, following Ubuntu's PackagingGuide/Complete but I'm having some trouble. I think it has to do with the structure of my Makefile. The source Makefile is: install: mkdir -p /usr/share/getbooru cp -av * /usr/share/getbooru ln -s /usr/share/getbooru/getbooru /usr/...

How to load latex .sty files from a subdirectory?

I use some .sty-files that are not part of texlive and want to have them in a subdirectory of the folder with my main.tex. I used the following line to load the package: \usepackage{sty/prettythesis} This works, but compiling the main.tex with xelatex and using rubber gives me a warning: sty/prettythesis.sty: You have requested packa...

How can I add a package to Qt

I downloaded a package called QtIOCompressor, I need to use the functionality like zipping a directory gzipping a directory etc etc in a application I am coding. But I dont know how to add this package into Qt or how to configure this package by which i can use it with my application which i may code in future! InfO: http://doc.qt.nokia...

How to abort a active download of a package in Ubuntu?

I was downloading a package from a terminal. Actually i want to install some package 'A'. But,by mistake installing some other package 'B'. So, i wanted to stop the download of that package 'B' and start downloading 'A'. But, i couldnt able to do that. I reset my network connnection. I could stop downloading the package B. But, the admin...

Web Service Deployment

Hi Does any body know how to pakage several webservices into one before deployment using ASP.Net. Like say for instance, I have 5 web services and i need to deploy all of them in such a way that the user need to click jus one link. Does anybody know how to do that?... ...

Using pip packages in python scripts

Hi, I've install this script via pip, but how to a reference these files as part of my script, do I need to use import or some other magic? Thanks ...

What does this macports error mean & how do I fix? "p5-gd is only installed for the arch 'x86_64'"

Port command started with PID 395 Error: Cannot install p5-sql-translator for the arch(s) 'i386 x86_64' because Error: its dependency p5-gd is only installed for the arch 'x86_64' Error: and does not have a universal variant. Error: Unable to execute port: architecture mismatch Ty for your help! ...

how to increase the speed of R CMD build when directory contains large unassociated files?

I have a R package in the directory ~/package; I also keep the output from my use of the package in the directory ~/package/out. When the content of ~/package/out gets very large, it takes minutes instead of seconds to build this package. Is there a way to have "R CMD build package" ignore the ~/package/out directory? ...