Sponsored Content
Full Discussion: Tk tutorial
Top Forums Shell Programming and Scripting Tk tutorial Post 32003 by perleo on Saturday 16th of November 2002 12:48:31 PM
Old 11-16-2002
Tk tutorial

Anyone know any good website with a step by step instructions on writing Perl GUI scripts with Tk ???
 

9 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Tutorial forum?

I got this account a while ago and didn't have much time to try it out. After having had some frustration by posting tutorials regarding various Linux activites of mine in my Slashdot journals, it occurred to me that this forum might be better suited. I know I can probably post in the OS specific... (1 Reply)
Discussion started by: deckard
1 Replies

2. UNIX for Advanced & Expert Users

AUTOSYS Tutorial

Can any one help me out in finding the AutoSys tutorial? I just know it is one of scheduling tool (like cron job). (2 Replies)
Discussion started by: ravikirankethe
2 Replies

3. UNIX for Dummies Questions & Answers

Please help, looking for UNIX tutorial

Hello, I only have this afternoon to take a UNIX tutorial for my contract job, and I've posted two threads already for the forum, asking if someone could help me find the Gary Hook AIX tutorial. Neither has been published yet. Could you please help me? Thank you. :confused: (0 Replies)
Discussion started by: jeffpas
0 Replies

4. Linux

Tutorial for btrfs

By any chance anyone knows of any tutorials available for btrfs? I am having a difficult time finding one and I thought maybe someone had a reference to one already... :rolleyes: (0 Replies)
Discussion started by: EssenceNY
0 Replies

5. AIX

AIX useful tutorial...

hi guys, I want to learn AIX, I am a beginner for this operating system of IBM. Can anyone give me some useful tutorial for a beginner like me?... Thanks... + GOD bless + ^_^ (1 Reply)
Discussion started by: TechReader
1 Replies

6. Shell Programming and Scripting

Why do I need this in the script tutorial?

I'm taking a tutorial - intro to Unix Shell Scripting - and the first exercise is a walk-through of writing a script to achieve the following: "As a network administrator you are collecting configuration information about all FTP servers in the organisation. You need to write a script to collect... (6 Replies)
Discussion started by: MaindotC
6 Replies

7. Solaris

Need LAMP tutorial!

Hello Everybody, Does anybody know or recommend me a tutorial for LAMP server on Solaris 10 x86? (3 Replies)
Discussion started by: ahmedamer12
3 Replies

8. Shell Programming and Scripting

Tutorial question

Write a pipeline that takes a file as input and replaces all occurrences of exclamation marks (!) by underscores (_) . The pipeline should also prepend your login at the beginning of every line (the beginning of a line is specified with ^ in Unix) Hi guys, Just trying to do this tutorial... (1 Reply)
Discussion started by: geena_b
1 Replies

9. Web Development

Vue JS 2 Tutorial by The Net Ninja: A Recommended Vue.js Video Tutorial Series

A number of people have asked me how to get started with Vue.js and my reply before today was to Google "Vue.js". That has changed and my recommendation to anyone who wants to learn the fastest growing, easiest to learn and use Vue.js web dev framework is to watch this video tutorial series: ... (0 Replies)
Discussion started by: Neo
0 Replies
Slurm::Stepctx(3pm)					User Contributed Perl Documentation				       Slurm::Stepctx(3pm)

NAME
Slurm::Stepctx - Step launching functions in libslurm SYNOPSIS
use Slurm; $slurm = Slurm::new(); $params = {job_id => 1234, ...}; $ctx = $slurm->step_ctx_create($params); $rc = $ctx->launch({...}, {task_start => sub {...}, task_finish => sub {...} }); DESCRIPTION
The Slurm::Stepctx class is a wrapper of the job step context and step launching functions in libslurm. This package is loaded and bootstraped with package Slurm. METHODS
STEP CONTEXT CREATION FUNCTIONS Please see "SLURM TASK SPAWNING FUNCTIONS" in Slurm for step context creation functions. STEP CONTEXT MANIPULATION FUNCTIONS $rc = $ctx->get($ctx_key, ...); Get parameters from a job step context. o INPUT $ctx_key: type of the parameter to get. Supported key and the corresponding result data are: o $rc = $ctx->get(SLURM_STEP_CTX_STEPID, $stepid); Get the created job step id. $stepid will be set to the step id number. o $rc = $ctx->get(SLURM_STEP_CTX_TASKS, $tasks); Get array of task count on each node. $tasks will be set to an array reference. o $rc = $ctx->get(SLURM_STEP_CTX_TID, $nodeid, $tids); Get array of task IDs for specified node. $nodeid specifies index of the node. $tids will be set to an array reference. o $rc = $ctx->get(SLURM_STEP_CTX_RESP, $resp); TODO: this is not exported. Get job step create response message. o $rc = $ctx->get(SLURM_STEP_CTX_CRED, $cred); Get credential of the created job step. $cred will be an opaque object blessed to "Slurm::slurm_cred_t". o $rc = $ctx->get(SLURM_STEP_CTX_SWITCH_JOB, $switch_info); Get switch plugin specific info of the step. $switch_info will be an opaque object blessed to "Slurm::switch_jobinfo_t". o $rc = $ctx->get(SLURM_STEP_CTX_NUM_HOSTS, $num); Get number of nodes allocated to the job step. o $rc = $ctx->get(SLURM_STEP_CTX_HOST, $nodeid, $nodename); Get node name allocated to the job step. $nodeid specifies index of the node. o $rc = $ctx->get(SLURM_STEP_CTX_JOBID, $jobid); Get job ID of the job step. o $rc = $ctx->get(SLURM_STEP_CTX_USER_MANAGED_SOCKETS, $numtasks, $sockets); Get user managed I/O sockets. TODO: describe the parameters. o RET: error code. $rc = $ctx->daemon_per_node_hack(); Hack the step context to run a single process per node, regardless of the settings selected at Slurm::Stepctx::create() time. o RET: error code. STEP TASK LAUNCHING FUNCTIONS $rc = $ctx->launch($params, $callbacks); Launch a parallel job step. o IN $params: parameters of task launching, with structure of "slurm_step_launch_params_t". o IN $callbacks: callback functions, with structure of "slurm_step_launch_callbacks_t". NOTE: the callback functions will be called in a thread different from the thread calling the "launch()" function. o RET: error code. $rc = $ctx->launch_wait_start(); Block until all tasks have started. o RET: error code. $ctx->launch_wait_finish(); Block until all tasks have finished (or failed to start altogether). $ctx->launch_abort(); Abort an in-progress launch, or terminate the fully launched job step. Can be called from a signal handler. $ctx->launch_fwd_signal($signo); Forward a signal to all those nodes with running tasks. o IN $signo: signal number. SEE ALSO
Slurm AUTHOR
This library is created by Hongjia Cao, <hjcao(AT)nudt.edu.cn> and Danny Auble, <da(AT)llnl.gov>. It is distributed with SLURM. COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2012-03-16 Slurm::Stepctx(3pm)
All times are GMT -4. The time now is 11:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy