task
stringlengths
12
101
input
stringlengths
0
3.73k
output
stringlengths
1
5.04k
options
sequence
pageTitle
stringlengths
0
320
outputColName
stringlengths
1
216
url
stringlengths
14
211
wdcFile
stringlengths
69
76
220b90e6_wiki_first_grid___jqGrid_Wiki__Property
[Description] Defines that we want to use a pager bar to navigate through the records. This must be a valid HTML element; in our example we gave the div the id of “pager”, but any name is acceptable. Note that the Navigation layer (the “pager” div) can be positioned anywhere you want, determined by your HTML; in our example we specified that the pager will appear after the Body layer. [Property]
pager
[]
wiki:first_grid - jqGrid Wiki
Property
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Afirst_grid
44/1438042990445.44_20150728002310-00273-ip-10-236-191-2_798649018_0.json
220b90e6_wiki_first_grid___jqGrid_Wiki__Property
[Description] Sets how many records we want to view in the grid. This parameter is passed to the URL for use by the server routine retrieving the data [Property]
rowNum
[]
wiki:first_grid - jqGrid Wiki
Property
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Afirst_grid
44/1438042990445.44_20150728002310-00273-ip-10-236-191-2_798649018_0.json
220b90e6_wiki_first_grid___jqGrid_Wiki__Property
[Description] An array to construct a select box element in the pager in which we can change the number of the visible rows. When changed during the execution, this parameter replaces the rowNum parameter that is passed to the url [Property]
rowList
[]
wiki:first_grid - jqGrid Wiki
Property
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Afirst_grid
44/1438042990445.44_20150728002310-00273-ip-10-236-191-2_798649018_0.json
220b90e6_wiki_first_grid___jqGrid_Wiki__Property
[Description] Sets the initial sorting column. Can be a name or number. This parameter is added to the URL for use by the server routine [Property]
sortname
[]
wiki:first_grid - jqGrid Wiki
Property
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Afirst_grid
44/1438042990445.44_20150728002310-00273-ip-10-236-191-2_798649018_0.json
220b90e6_wiki_first_grid___jqGrid_Wiki__Property
[Description] Defines whether we want to display the number of total records from the query in the pager bar [Property]
viewrecords
[]
wiki:first_grid - jqGrid Wiki
Property
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Afirst_grid
44/1438042990445.44_20150728002310-00273-ip-10-236-191-2_798649018_0.json
220b90e6_wiki_first_grid___jqGrid_Wiki__Property
[Description] Sets the caption for the grid. If this parameter is not set the Caption layer will be not visible [Property]
caption
[]
wiki:first_grid - jqGrid Wiki
Property
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3Afirst_grid
44/1438042990445.44_20150728002310-00273-ip-10-236-191-2_798649018_0.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Array [Disadvantages] Slow search Slow deletes Fixed size [Advantages]
Quick inserts Fast access if index known<
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Ordered Array [Disadvantages] Slow inserts Slow deletes Fixed size [Advantages]
Faster search than unsorted array
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Stack [Disadvantages] Slow access to other items [Advantages]
Last-in, first-out acces
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Queue [Disadvantages] Slow access to other items [Advantages]
First-in, first-out access
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Linked List [Disadvantages] Slow search [Advantages]
Quick inserts Quick deletes
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Binary Tree [Disadvantages] Deletion algorithm is complex [Advantages]
Quick search Quick inserts Quick deletes (If the tree remains balanced)
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Red-Black Tree [Disadvantages] Complex to implement [Advantages]
Quick search Quick inserts Quick deletes (Tree always remains balanced)
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] 2-3-4 Tree [Disadvantages] Complex to implement [Advantages]
Quick search Quick inserts Quick deletes (Tree always remains balanced) (Similar trees good for disk storage)
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Hash Table [Disadvantages] Slow deletes Access slow if key is not known Inefficient memory usage [Advantages]
Very fast access if key is known Quick inserts
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Heap [Disadvantages] Slow access to other items [Advantages]
Quick inserts Quick deletes Access to largest item
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
c4062e35_Data_Structures_and_Algorithms__Advantages
[Data Structure] Graph [Disadvantages] Some algorithms are slow and very complex [Advantages]
Best models real-world situations
[]
Introduction to Data Structures and Algorithms
Advantages
http://www.idevelopment.info/data/Programming/data_structures/overview/Data_Structures_Algorithms_Introduction.shtml
44/1438042988399.65_20150728002308-00341-ip-10-236-191-2_497311053_1.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] περισσοτερα [Occur] 26 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] προϊοντα [Occur] 26 [Description] no [H1] no [H2] yes [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] φυτα [Occur] 12 [Description] yes [H1] no [H2] no [H3] no [Title]
yes
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] κηπου [Occur] 9 [Description] yes [H1] no [H2] no [H3] no [Title]
yes
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] ειδη [Occur] 8 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] περισσότερα [Occur] 8 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] γεωπονικο [Occur] 6 [Description] no [H1] no [H2] no [H3] no [Title]
yes
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] παρκο [Occur] 6 [Description] no [H1] no [H2] no [H3] no [Title]
yes
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] προσφορό [Occur] 6 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] 27410 [Occur] 6 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] ευρώ [Occur] 5 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] προϊόντα [Occur] 4 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] σποροι [Occur] 4 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] border [Occur] 4 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] γκαζον [Occur] 4 [Description] yes [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] περιο [Occur] 3 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] radius [Occur] 3 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] είναι [Occur] 3 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
89b5aaf0_iko_parko___website_calculator__Title
[Keyword] τιμη [Occur] 3 [Description] no [H1] no [H2] no [H3] no [Title]
no
[ [ "n", "o" ], [ "y", "e", "s" ] ]
geoponiko-parko.gr worth $15.72 - geoponiko-parko - website calculator
Title
http://www.statsradar.net/www/geoponiko-parko.gr
44/1438042981525.10_20150728002301-00036-ip-10-236-191-2_710858725_8.json
31ff30a1_aintenance__Import__and_Export__Description
[Name] View Merged Data [Description]
Toggles the code of the merging process
[]
Microsoft Access: Lesson 22 - Database Maintenance, Import, and Export
Description
http://www.yevol.com/en/access2003/Lesson22.htm
44/1438042981525.10_20150728002301-00001-ip-10-236-191-2_852930198_68.json
31ff30a1_aintenance__Import__and_Export__Description
[Name] First Record [Description]
Displays the very first record on the list
[]
Microsoft Access: Lesson 22 - Database Maintenance, Import, and Export
Description
http://www.yevol.com/en/access2003/Lesson22.htm
44/1438042981525.10_20150728002301-00001-ip-10-236-191-2_852930198_68.json
31ff30a1_aintenance__Import__and_Export__Description
[Name] Previous Record [Description]
Displays the previous record on the list
[]
Microsoft Access: Lesson 22 - Database Maintenance, Import, and Export
Description
http://www.yevol.com/en/access2003/Lesson22.htm
44/1438042981525.10_20150728002301-00001-ip-10-236-191-2_852930198_68.json
31ff30a1_aintenance__Import__and_Export__Description
[Name] Go To Record [Description]
To jump to a particular record, click in the Go To Record text box, type a number and press Enter. The corresponding record will be displayed
[]
Microsoft Access: Lesson 22 - Database Maintenance, Import, and Export
Description
http://www.yevol.com/en/access2003/Lesson22.htm
44/1438042981525.10_20150728002301-00001-ip-10-236-191-2_852930198_68.json
31ff30a1_aintenance__Import__and_Export__Description
[Name] Next Record [Description]
Displays the next record on the list
[]
Microsoft Access: Lesson 22 - Database Maintenance, Import, and Export
Description
http://www.yevol.com/en/access2003/Lesson22.htm
44/1438042981525.10_20150728002301-00001-ip-10-236-191-2_852930198_68.json
31ff30a1_aintenance__Import__and_Export__Description
[Name] Last Record [Description]
Displays the very last record on the list
[]
Microsoft Access: Lesson 22 - Database Maintenance, Import, and Export
Description
http://www.yevol.com/en/access2003/Lesson22.htm
44/1438042981525.10_20150728002301-00001-ip-10-236-191-2_852930198_68.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_mutex_alloc [Description]
Function pointer for allocating a mutex. This function is called by the client when needed if the function pointer is not NULL.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_mutex_free [Description]
Function pointer for freeing a mutex. This function is called by the client when needed if the function pointer is not NULL.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_mutex_lock [Description]
Function pointer for locking critical sections of code. This function is called by the client when needed if the function pointer is not NULL.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_mutex_unlock [Description]
Function pointer for unlocking critical sections of code. This function is called by the client when needed if the function pointer is not NULL.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_get_errno [Description]
Function pointer for getting the value of the errno variable. This function is called by the client when needed if the function pointer is not NULL. In a threaded environment, errno is typically redefined so that it has a value for each thread, rather than a global value for the entire process. This redefinition is done at compile time. Because the libldap library does not know what method your code and threading environment will use to get the value of errno for each thread, it calls this function to return the value of errno.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_set_errno [Description]
Function pointer for setting the value of the errno variable. This function is called by the client when needed if the function pointer is not NULL. In a threaded environment, errno is typically redefined so that it has a value for each thread, rather than a global value for the entire process. This redefinition is done at compile time. Because the libldap library does not know what method your code and threading environment will use to get the value of errno for each thread, it calls this function to set the value of errno.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_get_lderrno [Description]
Function pointer for getting error values from calls to functions in the libldap library. This function is called by the client when needed if the function pointer is not NULL. If this function pointer is not set, the libldap library records these errors in fields in the LDAP structure.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_set_lderrno [Description]
Function pointer for setting error values from calls to functions in the libldap library. This function is called by the client when needed if the function pointer is not NULL. If this function pointer is not set, the libldap library records these errors in fields in the LDAP structure.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
fd38da9e__Writing_Multithreaded_Clients__Description
[Field] *ltf_lderrno_arg [Description]
Additional parameter passed to the functions for getting and setting error values from calls to functions in the libldap library. *ltf_get_lderrno and *ltf_set_lderrno identify these functions.
[]
Mozilla LDAP C SDK: Chapter 16 - Writing Multithreaded Clients
Description
http://www-archive.mozilla.org/directory/csdk-docs/threaded.htm
44/1438042990445.44_20150728002310-00274-ip-10-236-191-2_265030063_0.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] DATEFMT [Description]
Specifies a format for printing dates.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] DELTAYMD [Description]
Changes the default printing date for the object.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] OPTIONS [Description]
Lists the object-specific options.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] OVERFLOW [Description]
Specifies an overflow buffer for use by the object.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] RANGE [Description]
Specifies a time range for the object.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] STYLE [Description]
Lists the fonts used by the object.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] TIMEFMT [Description]
Specifies a format for printing times.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
8b4157ea_ge____Schedule__Printing_Model__Description
[Property] VALUE [Description]
Specifies a value for a text or bitmap object.
[]
Microsoft Schedule+ Support Page -- Schedule+ Printing Model
Description
http://bogaarts.home.xs4all.nl/spm/printable.htm
44/1438042981525.10_20150728002301-00174-ip-10-236-191-2_34631069_3.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] date_century_boundary [Option type] integer [Example] 50 [Description]
The threshold by which a 2-digit year is determined to be in the current century or in the next century. Equivalent to II_DATE_CENTURY_BOUNDARY.
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] group [Option type] string [Example] payroll [Description]
Specifies the group ID of the user, equivalent to the "-G" flag
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] role [Option type] string [Description]
The role ID of the application. If a role password is required, the parameter value should be specified as "role/password"
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] effective_user [Option type] string [Example] another_user [Description]
The ingres user account being impersonated, equivalent to the "-u" flag
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] dbms_password [Option type] string [Example] s3cr3t [Description]
The internal database password for the user connecting to Ingres
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] table_structure [Option type] string [Example] INGRES_STRUCTURE_BTREE [Description]
The default structure for new tables. Valid values for table_structure are: INGRES_STRUCTURE_BTREE INGRES_STRUCTURE_HASH INGRES_STRUCTURE_HEAP INGRES_STRUCTURE_ISAM INGRES_STRUCTURE_CBTREE INGRES_STRUCTURE_CISAM INGRES_STRUCTURE_CHASH INGRES_STRUCTURE_CHEAP
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] index_structure [Option type] string [Example] INGRES_STRUCTURE_HASH [Description]
The default structure for new secondary indexes. Valid values for index_structure are: INGRES_STRUCTURE_CBTREE INGRES_STRUCTURE_CISAM INGRES_STRUCTURE_CHASH INGRES_STRUCTURE_BTREE INGRES_STRUCTURE_HASH INGRES_STRUCTURE_ISAM
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] login_local [Option type] boolean [Example] TRUE [Description]
Determines how the connection user ID and password are used when a VNODE is included in the target database string. If set to TRUE, the user ID and password are used to locally access the VNODE, and the VNODE login information is used to establish the DBMS connection. If set to FALSE, the process user ID is used to access the VNODE, and the connection user ID and password are used in place of the VNODE login information to establish the DBMS connection. This parameter is ignored if no VNODE is included in the target database string. The default is FALSE.
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] timezone [Option type] string [Description]
Controls the timezone of the session. If not set it will default to the value defined by II_TIMEZONE_NAME. If II_TIMEZONE_NAME is not defined, NA-PACIFIC (GMT-8 with Daylight Savings) is used.
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] date_format [Option type] integer [Example] INGRES_DATE_MULTINATIONAL4 [Description]
Sets the allowable input and output format for Ingres dates. Defaults to the value defined by II_DATE_FORMAT. If II_DATE_FORMAT is not set the default date format is US, e.g. mm/dd/yy. Valid values for date_format are: INGRES_DATE_DMY INGRES_DATE_FINISH INGRES_DATE_GERMAN INGRES_DATE_ISO INGRES_DATE_ISO4 INGRES_DATE_MDY INGRES_DATE_MULTINATIONAL INGRES_DATE_MULTINATIONAL4 INGRES_DATE_YMD INGRES_DATE_US
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] decimal_separator [Option type] string [Example] "," [Description]
The character identifier for decimal data
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] money_lort [Option type] integer [Example] INGRES_MONEY_TRAILING [Description]
Leading or trailing currency sign. Valid values for money_lort are: INGRES_MONEY_LEADING INGRES_MONEY_TRAILING
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] money_sign [Option type] string [Example] € [Description]
The currency symbol to be used with the MONEY datatype
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] money_precision [Option type] integer [Example] 3 [Description]
The precision of the MONEY datatype
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] float4_precision [Option type] integer [Example] 10 [Description]
Precision of the FLOAT4 datatype
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] float8_precision [Option type] integer [Example] 10 [Description]
Precision of the FLOAT8 data
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
a2c471d2_PHP__ingres_connect___Manual__Description
[Option name] blob_segment_length [Option type] integer [Example] 8192 [Description]
The amount of data in bytes to fetch at a time when retrieving BLOB or CLOB data, defaults to 4096 bytes when not explicitly set
[]
PHP: ingres_connect - Manual
Description
http://au1.php.net/manual/en/function.ingres-connect.php
44/1438042990445.44_20150728002310-00312-ip-10-236-191-2_19762200_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Calculates the logical conjunction of two matchers. [Covered Here?] Yes [Class]
AllOf
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Calculates the logical disjunction of two matchers. [Covered Here?] Yes [Class]
AnyOf
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Provides a custom description to another matcher. [Covered Here?] Yes [Class]
DescribedAs
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Decorates another Matcher, retaining the behavior but allowing tests to be slightly more expressive. [Covered Here?] Again [Class]
Is
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] A matcher that always returns true. [Covered Here?] No [Class]
IsAnything
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Is the value equal to another value, as tested by the Object.equals(java.lang.Object) invokedMethod? [Covered Here?] Yes [Class]
IsEqual
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Tests whether the value is an instance of a class. [Covered Here?] Yes [Class]
IsInstanceOf
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Calculates the logical negation of a matcher. [Covered Here?] Yes [Class]
IsNot
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Is the value null? [Covered Here?] Yes [Class]
IsNull
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
222cae42_red_by_Actual_Events__May_2012__Class
[Javadoc Class Description] Is the value the same object as another value? [Covered Here?] Yes [Class]
IsSame
[ [ "A", "l", "l", "O", "f" ], [ "A", "n", "y", "O", "f" ], [ "D", "e", "s", "c", "r", "i", "b", "e", "d", "A", "s" ], [ "I", "s" ], [ "I", "s", "A", "n", "y", "t", "h", "i", "n", "g" ], [ "I", "s", "E", "q", "u", "a", "l" ], [ "I", "s", "I", "n", "s", "t", "a", "n", "c", "e", "O", "f" ], [ "I", "s", "N", "o", "t" ], [ "I", "s", "N", "u", "l", "l" ], [ "I", "s", "S", "a", "m", "e" ] ]
Inspired by Actual Events: May 2012
Class
http://marxsoftware.blogspot.com/2012_05_01_archive.html
44/1438042990445.44_20150728002310-00038-ip-10-236-191-2_156387978_0.json
4ed2dc5d_Collected_Issues_with_Atomics_ble_136___memory_order_effects_Meaning
[Element] memory_order_relaxed [Meaning]
the operation does not order memory
[]
Collected Issues with Atomics
Meaning
http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2783.htm
44/1438042990445.44_20150728002310-00240-ip-10-236-191-2_632279641_0.json
4ed2dc5d_Collected_Issues_with_Atomics_ble_136___memory_order_effects_Meaning
[Element] memory_order_release [Meaning]
the operation performs a release operation on the affected memory location, thus making regular memory writes visible to other threads through the atomic variable to which it is applied
[]
Collected Issues with Atomics
Meaning
http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2783.htm
44/1438042990445.44_20150728002310-00240-ip-10-236-191-2_632279641_0.json
4ed2dc5d_Collected_Issues_with_Atomics_ble_136___memory_order_effects_Meaning
[Element] memory_order_acquire [Meaning]
the operation performs an acquire operation on the affected memory location, thus making regular memory writes in other threads released through the atomic variable to which it is applied visible to the current thread
[]
Collected Issues with Atomics
Meaning
http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2783.htm
44/1438042990445.44_20150728002310-00240-ip-10-236-191-2_632279641_0.json
4ed2dc5d_Collected_Issues_with_Atomics_ble_136___memory_order_effects_Meaning
[Element] memory_order_consume [Meaning]
the operation performs a consume operation on the affected memory location, thus making regular memory writes in other threads released through the atomic variable to which it is applied visible to the regular memory reads that are dependencies of this consume operation.
[]
Collected Issues with Atomics
Meaning
http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2783.htm
44/1438042990445.44_20150728002310-00240-ip-10-236-191-2_632279641_0.json
4ed2dc5d_Collected_Issues_with_Atomics_ble_136___memory_order_effects_Meaning
[Element] memory_order_acq_rel [Meaning]
the operation has both acquire and release semantics
[]
Collected Issues with Atomics
Meaning
http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2783.htm
44/1438042990445.44_20150728002310-00240-ip-10-236-191-2_632279641_0.json
4ed2dc5d_Collected_Issues_with_Atomics_ble_136___memory_order_effects_Meaning
[Element] memory_order_seq_cst [Meaning]
the operation has both acquire and release semantics, and, in addition, has sequentially-consistent operation ordering
[]
Collected Issues with Atomics
Meaning
http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2783.htm
44/1438042990445.44_20150728002310-00240-ip-10-236-191-2_632279641_0.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Display the required information like definitions, CUI about the input term.
WebService::UMLSKS::DisplayInfo
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Form a graph by accepting parents and siblings from UMLS.
WebService::UMLSKS::FormGraph
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Get an allowable shortest path between the supplied terms.
WebService::UMLSKS::GetAllowablePaths
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Get all the preferred terms and CUIs of the input term.
WebService::UMLSKS::GetCUIs
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Fetches all the neighbor concepts for the input concept.
WebService::UMLSKS::GetNeighbors
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Get username and password from the user.
WebService::UMLSKS::GetUserData
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
Query UMLS web services with the query arguments like query term and method name.
WebService::UMLSKS::Query
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json
d9430f2d_ilarity_0_23___search_cpan_org__ebService__UMLSKS__ConnectUMLS
access the Unified Medical Language System (UMLS) via Webservices [3] 0.23
WebService::UMLSKS::Similarity
[]
Ted Pedersen / WebService-UMLSKS-Similarity-0.23 - search.cpan.org
WebService::UMLSKS::ConnectUMLS
http://search.cpan.org/~tpederse/WebService-UMLSKS-Similarity-0.23/
44/1438042990445.44_20150728002310-00281-ip-10-236-191-2_215810590_2.json