Displaying 5 results from an estimated 5 matches for "repoz".
Did you mean:
repo
2012 Mar 22
0
problems configuring cluster to lucci and virtual machines resource
...r)
File '/usr/lib/python2.6/site-packages/tg/configuration.py', line 655 in
wrapper
return app(environ, start_response)
File '/usr/lib/python2.6/site-packages/tg/configuration.py', line 555 in
remover
return app(environ, start_response)
File '/usr/lib/python2.6/site-packages/repoze/tm/__init__.py', line 19 in
__call__
result = self.application(environ, save_status_and_headers)
File '/usr/lib/python2.6/site-packages/tw/core/middleware.py', line 43 in
__call__
return self.wsgi_app(environ, start_response)
File '/usr/lib/python2.6/site-packages/tw/core/middl...
2006 Feb 03
2
rgl install problem on Solaris 10 X86
...checking for libpng-config... yes
configure: creating ./config.status
config.status: creating src/Makevars
** libs
CC -xtarget=generic64 -I/export/home/choid/bin/R2.2.1/lib/R/include -I/usr/openwin/include -DHAVE_PNG_H -I/usr/include/libpng12 -I/mounts/devel/SUNWspro/prd/include -I/mounts/devel/GNU/repoz/readline43/include -KPIC -O -xlibmil -dalign -I/mounts/devel/SUNWspro/prod/include -c api.cpp -o api.o
CC: Warning: Option -dalign passed to ld, if ld is invoked, ignored otherwise
CC -xtarget=generic64 -I/export/home/choid/bin/R2.2.1/lib/R/include -I/usr/openwin/include -DHAVE_PNG_H -I/usr/incl...
2006 Jul 19
3
error when compiling "stats" library in R-2.3.1 on Solaris x86
...el/SUNWspro/prod/include -c eureka.f -o eureka.o
f95 -PIC -O -I/mounts/devel/SUNWspro/prod/include -c stl.f -o stl.o
f95 -PIC -O -I/mounts/devel/SUNWspro/prod/include -c portsrc.f -o portsrc.o
cc -xtarget=generic64 -G -L/mounts/devel/SUNWspro/lib/amd64 -L/usr/sfw/lib/amd64 -L/mounts/devel/GNU/repoz/readline43/lib/amd64 -o stats.so init.o kmeans.o ansari.o bandwidths.o chisqsim.o d2x2xk.o fexact.o kendall.o ks.o line.o smooth.o prho.o swilk.o ksmooth.o loessc.o isoreg.o Srunmed.o Trunmed.o dblcen.o distance.o hclust-utils.o nls.o HoltWinters.o PPsum.o arima.o burg.o filter.o mAR.o pacf...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...tion, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+"""Sample controller module"""
+
+# turbogears imports
+from tg import expose
+#from tg import redirect, validate, flash
+
+# third party imports
+#from pylons.i18n import ugettext as _
+#from repoze.what import predicates
+
+# project specific imports
+from ovirtserver.lib.base import BaseController
+#from ovirtserver.model import DBSession, metadata
+
+
+class SampleController(BaseController):
+
+ @expose('ovirtserver.templates.index')
+ def index(self):
+ return dict(pa...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...tion, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-"""Sample controller module"""
-
-# turbogears imports
-from tg import expose
-#from tg import redirect, validate, flash
-
-# third party imports
-#from pylons.i18n import ugettext as _
-#from repoze.what import predicates
-
-# project specific imports
-from ovirtserver.lib.base import BaseController
-#from ovirtserver.model import DBSession, metadata
-
-
-class SampleController(BaseController):
-
- @expose('ovirtserver.templates.index')
- def index(self):
- return dict(pa...