|
|
|
|   |
|
|
| Last week most active authors |
| No posts for a week |
|
|
|
  |
|
|
|
|   |
| Last active threads |
using a lapack routine
Started Ron Ford · Date: Sep 18, 2008 18:37 ·
11 post(s) |
US-NY: New York-Web Developer, Operations - truTV
Started JobCircle.Com · Date: Sep 17, 2008 14:41 ·
1 post(s) |
US-NY: New York City-Application Specialist
Started JobCircle.Com · Date: Sep 15, 2008 04:28 ·
1 post(s) |
Time and Freewill
Started uv · Date: Sep 13, 2008 09:25 ·
2 post(s) |
UNKNOWN Tk-Workspace-1.75 i86pc-solaris-64int 2.11
Started Josts Smokehouse · Date: Sep 13, 2008 00:32 ·
1 post(s) |
US-NY: New York-Web Developer, Operations - truTV
Started JobCircle.Com · Date: Sep 11, 2008 14:41 ·
1 post(s) |
PASS XML-Atom-Service-0.16.0 i686-linux 2.6.24.3
Started Rick Myers · Date: Sep 11, 2008 14:17 ·
1 post(s) |
Returning a dynamic character array based on input length
Started Ragu · Date: Sep 10, 2008 13:20 ·
20 post(s) |
PASS XML-Atom-Service-0.16.0 i386-freebsd 6.1-release-p23
Started srezic · Date: Sep 9, 2008 23:48 ·
1 post(s) |
how to make emacs aware of bash aliases
Started etay.meiri · Date: Sep 9, 2008 01:46 ·
2 post(s) |
|
| Last week hot threads |
| No posts for a week |
|
|
|
|
  |
| Latest posts |
using a lapack routine
Group: comp.lang.fortran · Group Profile · Search for workspace in comp.lang.fortran
Author: Ron Ford
Date: Sep 18, 2008 18:37
... Further * Details). Elements 1:ILO-1 and IHI:N-1 of TAU are set to * zero. * * WORK (workspace/output) REAL array, dimension (LWORK) * On exit, if INFO = 0, WORK(1) returns the optimal ...LWORK = N*NB, where NB is the * optimal blocksize. * * If LWORK = -1, then a workspace query is assumed; the routine * only calculates the optimal size of the WORK array, returns * this ...
Show full article (4.34Kb) |
US-NY: New York-Web Developer, Operations - truTV
Group: aol.neighborhood.nj.jerseycity · Group Profile · Search for workspace in aol.neighborhood.nj.jerseycity
Author: JobCircle.Com
Date: Sep 17, 2008 14:41
... of Interwoven TeamSite and Perl programming language, experience with version control systems (CVS/Subversion) Duties: Implement and maintain SharePoint-based TruTV / InSession Corporate intranet portal, division sites and collaboration workspaces. Develop custom webparts using ASP.NET, update page layouts to user requirements. Develop new applications for truTV Online group and other departments for public web sites as well as for internal use ...
Show full article (3.36Kb) |
US-NY: New York City-Application Specialist
Group: aol.neighborhood.nj.jerseycity · Group Profile · Search for workspace in aol.neighborhood.nj.jerseycity
Author: JobCircle.Com
Date: Sep 15, 2008 04:28
.... Functional activities include: ? Monitor and maintain Hyperion Financial Reports folder structures and reports within the BI+ Workspace ? Monitor and maintain Hyperion Financial Web Analysis folder structures and views within the BI+ Workspace ? Participate in the Change Management council ? Project Lead for support transition during implementation waves ? Effective Reporting...
Show full article (3.39Kb) |
Time and Freewill
Group: alt.philosophy · Group Profile · Search for workspace in alt.philosophy
Author: uv
Date: Sep 13, 2008 09:25
... archive at http://cogprints.org/6176/ and finally also in my blog at http://ttjohn.blogspot.com/ Later work will be likely to include experiments on the reverse Stickgold effect and the potential use of Global Workspace Theory in the MBI and such work effectively follows up my original UK patent now allowed to expire and publically available. Very briefly my present theory allows most of quantum theory and gravity but introduces The ...
Show full article (2.04Kb) |
UNKNOWN Tk-Workspace-1.75 i86pc-solaris-64int 2.11
Group: perl.cpan.testers · Group Profile · Search for workspace in perl.cpan.testers
Author: Josts Smokehouse
Date: Sep 13, 2008 00:32
...This is a computer-generated report for Tk-Workspace-1.75 on perl 5.10.0, .../make test': No tests defined for Tk::Workspace extension. ------------------------------ PREREQUISITES ------------------------------ Prerequisite modules loaded: No requirements ...PERL5_CPAN_IS_RUNNING = 22342 PERL5_CPAN_IS_RUNNING_IN_RECURSION = 1918,22342 PERL_CR_SMOKER_CURRENT = Tk-Workspace-1.75 PERL_MM_USE_DEFAULT = 1 SHELL = /bin...
Show full article (4.29Kb) |
US-NY: New York-Web Developer, Operations - truTV
Group: aol.neighborhood.nj.jerseycity · Group Profile · Search for workspace in aol.neighborhood.nj.jerseycity
Author: JobCircle.Com
Date: Sep 11, 2008 14:41
... of Interwoven TeamSite and Perl programming language, experience with version control systems (CVS/Subversion) Duties: Implement and maintain SharePoint-based TruTV / InSession Corporate intranet portal, division sites and collaboration workspaces. Develop custom webparts using ASP.NET, update page layouts to user requirements. Develop new applications for truTV Online group and other departments for public web sites as well as for internal use ...
Show full article (3.58Kb) |
PASS XML-Atom-Service-0.16.0 i686-linux 2.6.24.3
Group: perl.cpan.testers · Group Profile · Search for workspace in perl.cpan.testers
Author: Rick Myers
Date: Sep 11, 2008 14:17
...------------------------------ PROGRAM OUTPUT ------------------------------ Output from './Build test': t/00.load..........# Testing XML::Atom::Service 0.16.0 ok t/01.namespace.....ok t/02.categories....ok t/03.collection....ok t/04.workspace.....ok t/05.service.......ok t/06.atompub.......ok t/perlcritic.......ok t/pod-coverage.....ok t/pod..............ok All tests successful. Files=10, Tests=125, 10 wallclock secs ( 0.12 ...
Show full article (4.66Kb) |
Re: Returning a dynamic character array based on input length
Group: comp.lang.fortran · Group Profile · Search for workspace in comp.lang.fortran
Author: James Parsly
Date: Sep 11, 2008 07:52
... set the pointer back where it was. You can only free stuff from the top of the stack down; no cutting holes in the middle. But that's okay for the way this calculation works. To pass a workspace array of length 100 to a subroutine, you do temp = nextavail nextavail = nextavail+100 ! requests allocation call checkstorage(nextavail) !checks to make you've not overflowed call workroutine(x(temp)) ! passes array address ...
Show full article (1.99Kb) |
Re: Returning a dynamic character array based on input length
Group: comp.lang.fortran · Group Profile · Search for workspace in comp.lang.fortran
Author: Gary Scott
Date: Sep 10, 2008 18:56
... set the pointer back where it was. You can only free stuff from the top of the stack down; no cutting holes in the middle. But that's okay for the way this calculation works. To pass a workspace array of length 100 to a subroutine, you do temp = nextavail nextavail = nextavail+100 ! requests allocation call checkstorage(nextavail) !checks to make you've not overflowed call workroutine(x(temp)) ! passes array address ...
Show full article (1.99Kb) |
Re: Returning a dynamic character array based on input length
Group: comp.lang.fortran · Group Profile · Search for workspace in comp.lang.fortran
Author: George McBane
Date: Sep 10, 2008 18:20
... just set the pointer back where it was. You can only free stuff from the top of the stack down; no cutting holes in the middle. But that's okay for the way this calculation works. To pass a workspace array of length 100 to a subroutine, you do temp = nextavail nextavail = nextavail+100 ! requests allocation call checkstorage(nextavail) !checks to make you've not overflowed call workroutine(x(temp)) ! passes array address nextavail =...
Show full article (1.48Kb) |
|
|
|