Home
last modified time | relevance | path

Searched refs:wsname (Results 1 – 25 of 47) sorted by relevance

12

/dports/devel/git-extras/git-extras-6.3.0/bin/
H A Dgit-bulk26 git config --global bulkworkspaces."$wsname" "$wsdir";
48 function addcurrent { git config --global bulkworkspaces."$wsname" "$PWD"; }
51 function removeworkspace { checkWSName && git config --global --unset bulkworkspaces."$wsname"; }
92 if [[ $rwsname == "$wsname" ]]; then return; fi
95 usage && echo "error: unknown workspace name: $wsname" && exit 1
110 if echo "$PWD" | grep -o -q "$rwsdir"; then wsname="$rwsname" && return; fi
131 if [[ -n $wsname ]] && [[ $rwsname != "$wsname" ]]; then continue; fi
158 …butilcommand="${1:2}" && wsname="$2" && wsdir="$3" && if [ "$4" == "--from" ]; then source="$5"; f…
164 singlemode=true && shift && wsname="$1" && checkWSName ;;
178 if $singlemode; then echo "Selected single workspace mode in workspace: $wsname" && checkWSName; fi
/dports/games/assaultcube/AssaultCube_v1.2.0.2/source/src/
H A Dwizard.cpp95 string wsname = "", wsdisplayname = ""; in wizardmain() local
96 readarg("win service name", wsname, sizeof(wsname)); in wizardmain()
97 if(wsname[0]) in wizardmain()
125 if(wsname[0]) in wizardmain()
127 if(!wsdisplayname[0]) copystring(wsdisplayname, wsname); in wizardmain()
143 path.put(wsname, strlen(wsname)); in wizardmain()
147 winserviceinstaller installer(wsname, wsdisplayname, path.getbuf()); in wizardmain()
162 …intf("A windows service with this name (%s) is already installed: %u\n", wsname, (uint)GetLastErro… in wizardmain()
/dports/lang/gnu-apl/apl-1.8/src/
H A DWorkspace.cc639 CERR << "Unable to )SAVE workspace '" << wsname in save_WS()
644 the_workspace.WS_name = wsname; in save_WS()
798 COUT << "NOT DUMPED: THIS WS IS " << wsname << endl; in dump_WS()
816 CERR << "Unable to )DUMP workspace '" << wsname in dump_WS()
881 << "⍝ " << wsname << " "; in dump_WS()
907 out << "DUMPED WORKSPACE '" << wsname << "'" << endl in dump_WS()
935 if (UTF8_string(wsname).ends_with(".bak")) in load_WS()
938 MORE_ERROR() << wsname << in load_WS()
943 UTF8_string filename = LibPaths::get_lib_filename(libref, wsname, true, in load_WS()
980 out << ")LOAD " << wsname << " (file " << filename in load_WS()
[all …]
H A DCommand.def27 cmd_def(")COPY" , Command::cmd_COPY(out, args, false); , "[lib] wsname [object ...]", EH_oLIB_W…
28 cmd_def(")DROP" , cmd_DROP(out, args); , "[lib] wsname" , EH_oLIB_W…
29 cmd_def(")DUMP-HTML", Command::cmd_DUMP(out, args, true, false);, "[[lib] wsname]" , EH_oLIB_W…
30 cmd_def(")DUMPV" , Command::cmd_DUMP(out, args, false, false);, "[[lib] wsname]" , EH_oLIB_W…
31 cmd_def(")DUMP" , Command::cmd_DUMP(out, args, false, true); , "[[lib] wsname]" , EH_oLIB_W…
40 cmd_def(")LOAD" , Command::cmd_LOAD(out, args, line, false); , "[lib] wsname" , EH_oLIB_W…
46 cmd_def(")PCOPY" , Command::cmd_COPY(out, args, true); , "[lib] wsname [object ...]", EH_oLIB_W…
48 cmd_def(")QLOAD" , Command::cmd_LOAD(out, args, line, true); , "[lib] wsname" , EH_oLIB_W…
50 cmd_def(")SAVE" , Command::cmd_SAVE(out, args); , "[[lib] wsname]" , EH_oLIB_W…
58 cmd_def(")WSID" , Workspace::wsid(out, arg, LIB_WSNAME, false); , "[wsname]" , EH_oWSNAM…
H A DWorkspace.hh221 static void save_WS(ostream & out, LibRef lib, const UCS_string & wsname,
228 static void dump_WS(ostream & out, LibRef lib, const UCS_string & wsname,
243 static void load_WS(ostream & out, LibRef lib, const UCS_string & wsname,
247 static void copy_WS(ostream & out, LibRef lib, const UCS_string & wsname,
H A DCommand.cc709 UCS_string wsname("CONTINUE"); in cmd_CONTINUE() local
711 Workspace::save_WS(out, LIB0, wsname, true); // )SAVE in cmd_CONTINUE()
733 UCS_string wsname = args[0]; in cmd_COPY() local
805 UCS_string wsname; in cmd_DUMP() local
807 Workspace::dump_WS(out, lib, wsname, html, silent); in cmd_DUMP()
1285 UCS_string wsname; in cmd_LOAD() local
1288 Workspace::load_WS(out, lib, wsname, quad_lx, silent); in cmd_LOAD()
1786 UCS_string wsname; in cmd_SAVE() local
1788 Workspace::save_WS(out, lib, wsname, false); in cmd_SAVE()
1824 wsname = args[0]; in resolve_lib_wsname()
[all …]
/dports/math/fricas/fricas-1.3.7/src/etc/
H A Dfricas127 wsname=FRICASsys
167 wsname="$1"
218 if [ `expr $wsname : '.*/.*'` = 0 ] ; then
219 serverws=$rootwsdir/$wsname
221 serverws=$wsname
/dports/lang/gnu-apl/apl-1.8/
H A DREADME-7-more-info84 )COPY [lib] wsname [object ...]
85 )DROP [[lib] wsname]
87 )DUMP-HTML [[lib] wsname]
88 )DUMPV [[lib] wsname]
89 )DUMP [[lib] wsname]
97 )LOAD [lib] wsname
103 )PCOPY [lib] wsname [object ...]
105 )QLOAD [lib] wsname
107 )SAVE [[lib] wsname]
115 )WSID [wsname]
/dports/math/gap/gap-4.11.0/tst/testlibgap/
H A Dwsload.c10 char wsname[16] = "/tmp/libgap.ws"; /* the name must match the one used in wscreate.c */ in main() local
13 args[argc+1] = wsname; in main()
/dports/x11-wm/ctwm/ctwm-4.0.3/
H A Dfunctions_misc.c432 char *wsname; in Execute() local
434 wsname = GetCurrentWorkSpaceName(Scr->currentvs); in Execute()
435 if(!wsname) { in Execute()
436 wsname = ""; in Execute()
439 tmp = replace_substr(s, "$currentworkspace", wsname); in Execute()
/dports/biology/jalview/jalview/src/jalview/ws/jws2/
H A DAWS2Thread.java31 AlignmentView alview, String wsname, String wsUrl) in AWS2Thread() argument
33 super(alFrame, wsinfo, alview, wsname, wsUrl); in AWS2Thread()
H A DMsaWSThread.java456 String wsname, boolean subgaps, boolean presorder) in MsaWSThread() argument
458 super(alFrame, wsinfo, alview, wsname, wsUrl); in MsaWSThread()
480 jalview.gui.AlignFrame alFrame, String wsname, String title, in MsaWSThread() argument
484 this(server2, wsUrl, wsinfo, alFrame, _msa, wsname, subgaps, presorder); in MsaWSThread()
510 ((MsaWSJob) jobs[j]).alignmentProgram = wsname; in MsaWSThread()
/dports/x11/py-i3ipc/i3ipc-2.2.1/examples/
H A Dfocused-windows.py25 wsname = workspace.name
27 print('WS', wsname + ':', coname)
/dports/biology/jalview/jalview/src/jalview/ws/jws1/
H A DJWS1Thread.java38 AlignmentView alview, String wsname, String wsUrl) in JWS1Thread() argument
40 super(alFrame, wsinfo, alview, wsname, wsUrl); in JWS1Thread()
H A DSeqSearchWSThread.java324 AlignmentView alview, String wsname, String db) in SeqSearchWSThread() argument
326 super(alFrame, wsinfo, alview, wsname, wsUrl); in SeqSearchWSThread()
347 String wsname, String title, AlignmentView _msa, String db, in SeqSearchWSThread() argument
350 this(server, wsUrl, wsinfo, alFrame, _msa, wsname, db); in SeqSearchWSThread()
H A DMsaWSThread.java307 AlignmentView alview, String wsname, boolean subgaps, in MsaWSThread() argument
310 super(alFrame, wsinfo, alview, wsname, wsUrl); in MsaWSThread()
332 String wsname, String title, AlignmentView _msa, boolean subgaps, in MsaWSThread() argument
335 this(server, wsUrl, wsinfo, alFrame, _msa, wsname, subgaps, presorder); in MsaWSThread()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.jface/src/org/eclipse/jface/resource/
H A DFontRegistry.java320 String wsname = Util.getWS(); in readResourceBundle() local
322 wsname = StringConverter.removeWhiteSpaces(wsname).toLowerCase(); in readResourceBundle()
328 if (wsname != null) { in readResourceBundle()
329 WSLocation = OSLocation + "_" + wsname; //$NON-NLS-1$ in readResourceBundle()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/
H A DImportBreakpointsOperation.java376 for (String wsname : wsnames) { in updateWorkingSets()
377 if ("".equals(wsname)) { //$NON-NLS-1$ in updateWorkingSets()
380 IWorkingSet set = mgr.getWorkingSet(wsname); in updateWorkingSets()
383 set = mgr.createWorkingSet(wsname, new IAdaptable[] {}); in updateWorkingSets()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/
H A DThemeRegistryReader.java204 String wsname = Platform.getWS(); in getBestPlatformMatch() local
211 if (wsname.equalsIgnoreCase(elementWs)) { in getBestPlatformMatch()
216 } else if (wsname.equalsIgnoreCase(elementWs)) { in getBestPlatformMatch()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/
H A DThemeEngine.java275 String wsname = bundle.getBundleContext().getProperty("osgi.ws"); in registerStylesheet() local
277 uri = uri.replaceAll("\\$os\\$", osname).replaceAll("\\$ws\\$", wsname); in registerStylesheet()
356 String wsname = bundle.getBundleContext().getProperty("osgi.ws"); in getPlatformMatches() local
363 } else if (wsname != null && wsname.equalsIgnoreCase(elementWs)) { in getPlatformMatches()
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/
H A DOds.php694 $wsname = $ws->getAttributeNs($configNs, 'name');
704 $this->setSelected($spreadsheet, $wsname, $setCol, $setRow);
712 …private function setSelected(Spreadsheet $spreadsheet, string $wsname, string $setCol, string $set… argument
716 … $spreadsheet->getSheetByName($wsname)->setSelectedCellByColumnAndRow($setCol + 1, $setRow + 1);
/dports/www/moodle39/moodle/webservice/xmlrpc/
H A Dlocallib.php48 $this->wsname = 'xmlrpc';
/dports/www/moodle310/moodle/webservice/xmlrpc/
H A Dlocallib.php48 $this->wsname = 'xmlrpc';
/dports/www/moodle311/moodle/webservice/xmlrpc/
H A Dlocallib.php48 $this->wsname = 'xmlrpc';
/dports/net/samba412/samba-4.12.15/source3/utils/
H A Dnet_rap.c351 static void list_sessions_func(char *wsname, char *username, uint16_t conns, in list_sessions_func() argument
360 wsname, username, clitype, opens, hrs, min, sec); in list_sessions_func()
363 static void display_session_func(const char *wsname, const char *username, in display_session_func() argument
380 username, wsname, in display_session_func()

12