Sponsored Content
The Lounge What is on Your Mind? Under Consideration: Migrate the Forums to Discourse Post 303044980 by Neo on Tuesday 10th of March 2020 06:20:54 AM
Old 03-10-2020
Still chugging along:

Code:
   380575 / 651396 ( 58.4%)  [585 items/min]

FYI, discourse plugins on GitHub:

Search . topic:discourse-plugin org:discourse fork:true . GitHub
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to migrate ?

Currently, I am planning a migration between machine which under True64UNIX. The new machine will run with higher version O/S. My question is, is there any solution on migrating one machine to another which with different O/S version? My goal is keeping minimum impact to the users. Excuse my... (1 Reply)
Discussion started by: coolmans
1 Replies

2. UNIX for Dummies Questions & Answers

Pipe not taken into consideration

I'm trying to see every file which my group (staff) has in a certain directory, recursively. The pipe ls -l -R | grep staff is not working exactly as I want, as for every directory to which my user does not have access, a line like: ls: ./directory/lost+found: The file access permissions do not... (5 Replies)
Discussion started by: panchopp
5 Replies

3. Solaris

Migrate oracle solaris 5.8 5.9

If I have an oracle 9 database environment on a san running solaris 5.8 as the os. Can I plug the san into a Solaris 5.9 environment and have the database work ? - as long as binaries are on the san (1 Reply)
Discussion started by: tim-carroll@com
1 Replies

4. Solaris

Can you migrate UFS to ZFS ?

I have some UFS volumes (non root), that I would like to change into ZFS volumes. Is this possible ? I think the only method is to create a new zfs volume and copy the data accoss, this would take a long time for us. Is there a quicker way ? Regards (5 Replies)
Discussion started by: wjones
5 Replies

5. Solaris

Migrate from MPXIO to Powerpath

Here is the issue: I am building a database server using Solaris 10x86 U8. The system is jumpstarted with mpxio enabled and booting from the san. We need to have powerpath 5.3 installed and would like to have powerpath take control of the the boot san as well or have mpxio control the san... (2 Replies)
Discussion started by: nabru72
2 Replies

6. Linux

Mysql Migrate

Hi , I would like to (MYSQL) migrate the all the data from solari's to linux box. I have checked whether mysql is installed or not. rpm -qa | grep -i mysql I confirmed !!!! I want to know the following points. 1) How can get to know what are mysql data files and location as well.... (4 Replies)
Discussion started by: Mani_apr08
4 Replies

7. BSD

Migrate a Hard Disk

hi Has anyone already tried to migrate a hard disk with FreeBSD using recoverdisk? (1 Reply)
Discussion started by: ccc
1 Replies

8. Shell Programming and Scripting

Migrate from FTP to SFTP

Hi,I am using following code for FTP in shell script file and it is working.Now I want to migrate from FTP to SFTP.What code changes/steps I have to perform for SFTP ? ftp -in <<FIN open $SAP_UP_SERVER user $SAP_UP_USER $SAP_UP_PASSWORD asc put... (7 Replies)
Discussion started by: Nitin Varshneya
7 Replies
COLLECTION OF VALUES
/OBJECTS(3) SLV2 COLLECTION OF VALUES/OBJECTS(3) NAME
Collections_of_values/objects - Ordered collections of typed values which are fast for random access by index (i.e. Functions SLV2PluginClass slv2_plugin_classes_get_by_uri (SLV2PluginClasses classes, SLV2Value uri) SLV2PluginClass slv2_plugin_classes_get_at (SLV2PluginClasses classes, unsigned index) void slv2_plugins_free (SLV2World world, SLV2Plugins plugins) SLV2Plugin slv2_plugins_get_by_uri (SLV2Plugins plugins, SLV2Value uri) SLV2Plugin slv2_plugins_get_at (SLV2Plugins plugins, unsigned index) void slv2_uis_free (SLV2UIs list) SLV2UI slv2_uis_get_by_uri (SLV2UIs list, SLV2Value uri) SLV2UI slv2_uis_get_at (SLV2UIs list, unsigned index) SLV2Value slv2_values_get_at (SLV2Values values, unsigned index) bool slv2_values_contains (SLV2Values values, SLV2Value value) Detailed Description a fancy array). Function Documentation unsigned slv2_plugin_classes_size (SLV2PluginClasses classes) Get the number of plugins in the collection. SLV2PluginClass slv2_plugin_classes_get_by_uri (SLV2PluginClasses classes, SLV2Value uri) Get a plugin class from the collection by URI. Return value is shared (stored in classes) and must not be freed or modified by the caller in any way. Time = O(log2(n)) Returns: NULL if plugin with url not found in classes. SLV2PluginClass slv2_plugin_classes_get_at (SLV2PluginClasses classes, unsigned index) Get a plugin from the collection by index. index has no significance other than as an index into classes. Any index not less than slv2_plugin_classes_get_length(classes) will return NULL, so all plugin_classes in a classes can be enumerated by repeated calls to this function starting with index = 0. Time = O(1) Returns: NULL if index out of range. void slv2_plugins_free (SLV2World world, SLV2Plugins plugins) Free a plugin plugins. Freeing a plugin collection does not destroy the plugins it contains (plugins are owned by the world). plugins is invalid after this call. unsigned slv2_plugins_size (SLV2Plugins plugins) Get the number of plugins in the collection. SLV2Plugin slv2_plugins_get_by_uri (SLV2Plugins plugins, SLV2Value uri) Get a plugin from the collection by URI. Return value is shared (stored in plugins) and must not be freed or modified by the caller in any way. Time = O(log2(n)) Returns: NULL if plugin with url not found in plugins. SLV2Plugin slv2_plugins_get_at (SLV2Plugins plugins, unsigned index) Get a plugin from the plugins by index. index has no significance other than as an index into this plugins. Any index not less than slv2_plugins_get_length(plugins) will return NULL, so all plugins in a plugins can be enumerated by repeated calls to this function starting with index = 0. Time = O(1) Returns: NULL if index out of range. void slv2_uis_free (SLV2UIs list) Free a plugin list. Freeing a plugin list does not destroy the plugins it contains (plugins are owned by the world). list is invalid after this call. unsigned slv2_uis_size (SLV2UIs list) Get the number of plugins in the list. SLV2UI slv2_uis_get_by_uri (SLV2UIs list, SLV2Value uri) Get a plugin from the list by URI. Return value is shared (stored in list) and must not be freed or modified by the caller in any way. Time = O(log2(n)) Returns: NULL if plugin with url not found in list. SLV2UI slv2_uis_get_at (SLV2UIs list, unsigned index) Get a plugin from the list by index. index has no significance other than as an index into this list. Any index not less than slv2_list_get_length(list) will return NULL, so all plugins in a list can be enumerated by repeated calls to this function starting with index = 0. Time = O(1) Returns: NULL if index out of range. SLV2Values slv2_values_new () Allocate a new, empty SLV2Values. void slv2_values_free (SLV2Values values) Free an SLV2Values. unsigned slv2_values_size (SLV2Values values) Get the number of elements in a value collection. SLV2Value slv2_values_get_at (SLV2Values values, unsigned index) Get the value at a given index in the collection. Returns: the element at index, or NULL if index is out of range. Time = O(1) bool slv2_values_contains (SLV2Values values, SLV2Value value) Return whether values contains value. Time = O(n) Author Generated automatically by Doxygen for SLV2 from the source code. Version 0.6.6 2 Apr 2009 COLLECTION OF VALUES/OBJECTS(3)
All times are GMT -4. The time now is 06:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy