index
int64 1
10.7k
| class
stringclasses 782
values | comment_sentence
stringlengths 1
1.78k
| partition
int64 0
0
| combo
stringlengths 17
1.81k
| labels
listlengths 7
7
|
|---|---|---|---|---|---|
4,446
|
ReferenceCountMap.java
|
Class for de-duplication of instances. <br>
* Hold the references count to a single instance. If there are no references
* then the entry will be removed.<br>
| 0
|
Class for de-duplication of instances. <br>
* Hold the references count to a single instance. If there are no references
* then the entry will be removed.<br> | ReferenceCountMap.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,448
|
ReferenceCountMap.java
|
* Note: This class is NOT thread-safe.
| 0
|
* Note: This class is NOT thread-safe. | ReferenceCountMap.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,451
|
TestGetSplitHosts.java
|
// Contributions By Racks are
// Rack1 175
// Rack2 275
// Rack3 150
// So, Rack2 hosts, host4 and host 3 should be returned
// even if their individual contribution is not the highest
| 0
|
// Contributions By Racks are
// Rack1 175
// Rack2 275
// Rack3 150
// So, Rack2 hosts, host4 and host 3 should be returned
// even if their individual contribution is not the highest | TestGetSplitHosts.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
4,452
|
TestGetSplitHosts.java
|
// Now Create the blocks without topology information
| 0
|
// Now Create the blocks without topology information | TestGetSplitHosts.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,453
|
TestGetSplitHosts.java
|
// host1 makes the highest contribution among all hosts
// So, that should be returned before others
| 0
|
// host1 makes the highest contribution among all hosts
// So, that should be returned before others | TestGetSplitHosts.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
4,455
|
ShellBasedIdMapping.java
|
* A simple shell-based implementation of {@link IdMappingServiceProvider}
* Map id to user name or group name. It does update every 15 minutes. Only a
* single instance of this class is expected to be on the server.
| 0
|
* A simple shell-based implementation of {@link IdMappingServiceProvider}
* Map id to user name or group name. It does update every 15 minutes. Only a
* single instance of this class is expected to be on the server. | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,456
|
ShellBasedIdMapping.java
|
The maps are incrementally updated as described below:
* 1. Initialize the maps as empty.
* 2. Incrementally update the maps
* - When ShellBasedIdMapping is requested for user or group name given
* an ID, or for ID given a user or group name, do look up in the map
* first, if it doesn't exist, find the corresponding entry with shell
* command, and insert the entry to the maps.
* - When group ID is requested for a given group name, and if the
* group name is numerical, the full group map is loaded. Because we
* don't have a good way to find the entry for a numerical group name,
* loading the full map helps to get in all entries.
* 3. Periodically refresh the maps for both user and group, e.g,
* do step 1.
| 0
|
The maps are incrementally updated as described below:
* 1. Initialize the maps as empty.
* 2. Incrementally update the maps
* - When ShellBasedIdMapping is requested for user or group name given
* an ID, or for ID given a user or group name, do look up in the map
* first, if it doesn't exist, find the corresponding entry with shell
* command, and insert the entry to the maps.
* - When group ID is requested for a given group name, and if the
* group name is numerical, the full group map is loaded. Because we
* don't have a good way to find the entry for a numerical group name,
* loading the full map helps to get in all entries.
* 3. Periodically refresh the maps for both user and group, e.g,
* do step 1. | ShellBasedIdMapping.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
4,457
|
ShellBasedIdMapping.java
|
Note: for testing purpose, step 1 may initial the maps with full mapping
* when using constructor
| 0
|
Note: for testing purpose, step 1 may initial the maps with full mapping
* when using constructor | ShellBasedIdMapping.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,458
|
ShellBasedIdMapping.java
|
@link ShellBasedIdMapping#ShellBasedIdMapping(Configuration, boolean)
| 0
|
@link ShellBasedIdMapping#ShellBasedIdMapping(Configuration, boolean) | ShellBasedIdMapping.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,461
|
ShellBasedIdMapping.java
|
// Used for parsing the static mapping file.
| 0
|
// Used for parsing the static mapping file. | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,462
|
ShellBasedIdMapping.java
|
// Maps for id to name map. Guarded by this object monitor lock
| 0
|
// Maps for id to name map. Guarded by this object monitor lock | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,463
|
ShellBasedIdMapping.java
|
Last time maps were updated
| 0
|
Last time maps were updated | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,465
|
ShellBasedIdMapping.java
|
@param conf the configuration
| 0
|
@param conf the configuration | ShellBasedIdMapping.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,467
|
ShellBasedIdMapping.java
|
// Minimal interval is 1 minute
| 0
|
// Minimal interval is 1 minute | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,469
|
ShellBasedIdMapping.java
|
* @param conf the configuration
| 0
|
* @param conf the configuration | ShellBasedIdMapping.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,473
|
ShellBasedIdMapping.java
|
Get the list of users or groups returned by the specified command,
* and save them in the corresponding map.
| 0
|
Get the list of users or groups returned by the specified command,
* and save them in the corresponding map. | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,476
|
ShellBasedIdMapping.java
|
// only got here if we didn't return false
| 0
|
// only got here if we didn't return false | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,477
|
ShellBasedIdMapping.java
|
// if the static mapping file
// - was modified after last update, load the map again;
// - did not exist but was added since last update, load the map;
// - existed before but deleted since last update, clear the map
//
| 0
|
// if the static mapping file
// - was modified after last update, load the map again;
// - did not exist but was added since last update, load the map;
// - existed before but deleted since last update, clear the map
// | ShellBasedIdMapping.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
4,478
|
ShellBasedIdMapping.java
|
// check modification time, reload the file if the last modification
// time changed since prior load.
| 0
|
// check modification time, reload the file if the last modification
// time changed since prior load. | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,479
|
ShellBasedIdMapping.java
|
// print the following log at initialization or when the static
// mapping file was deleted after prior load
| 0
|
// print the following log at initialization or when the static
// mapping file was deleted after prior load | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,480
|
ShellBasedIdMapping.java
|
Refresh static map, and reset the other maps to empty.
* For testing code, a full map may be re-constructed here when the object
* was created with constructFullMapAtInit being set to true.
| 0
|
Refresh static map, and reset the other maps to empty.
* For testing code, a full map may be re-constructed here when the object
* was created with constructFullMapAtInit being set to true. | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,481
|
ShellBasedIdMapping.java
|
// set constructFullMapAtInit to false to allow testing code to
// do incremental update to maps after initial construction
| 0
|
// set constructFullMapAtInit to false to allow testing code to
// do incremental update to maps after initial construction | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,482
|
ShellBasedIdMapping.java
|
search for id with given name, return "<name>:<id>"
// return
// getent group <name> | cut -d: -f1,3
// OR
// id -u <name> | awk '{print "<name>:"$1 }'
| 0
|
search for id with given name, return "<name>:<id>"
// return
// getent group <name> | cut -d: -f1,3
// OR
// id -u <name> | awk '{print "<name>:"$1 }' | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,483
|
ShellBasedIdMapping.java
|
// search for name with given id, return "<name>:<id>"
| 0
|
// search for name with given id, return "<name>:<id>" | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,484
|
ShellBasedIdMapping.java
|
"dscl . -read /Users/<name> | grep UniqueID" returns "UniqueId: <id>",
// "dscl . -read /Groups/<name> | grep PrimaryGroupID" returns "PrimaryGoupID: <id>"
// The following method returns a command that uses awk to process the result,
// of these commands, and returns "<name> <id>", to simulate one entry returned by
// MAC_GET_ALL_USERS_CMD or MAC_GET_ALL_GROUPS_CMD.
// Specificially, this method returns:
// id -u <name> | awk '{print "<name>:"$1 }'
// OR
// dscl . -read /Groups/<name> | grep PrimaryGroupID | awk '($1 == "PrimaryGroupID:") { print "<name> " $2 }'
| 0
|
"dscl . -read /Users/<name> | grep UniqueID" returns "UniqueId: <id>",
// "dscl . -read /Groups/<name> | grep PrimaryGroupID" returns "PrimaryGoupID: <id>"
// The following method returns a command that uses awk to process the result,
// of these commands, and returns "<name> <id>", to simulate one entry returned by
// MAC_GET_ALL_USERS_CMD or MAC_GET_ALL_GROUPS_CMD.
// Specificially, this method returns:
// id -u <name> | awk '{print "<name>:"$1 }'
// OR
// dscl . -read /Groups/<name> | grep PrimaryGroupID | awk '($1 == "PrimaryGroupID:") { print "<name> " $2 }' | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,485
|
ShellBasedIdMapping.java
|
"dscl . -search /Users UniqueID <id>" returns
// <name> UniqueID = (
// <id>
// )
// "dscl . -search /Groups PrimaryGroupID <id>" returns
// <name> PrimaryGroupID = (
// <id>
// )
// The following method returns a command that uses sed to process the
// the result and returns "<name> <id>" to simulate one entry returned
// by MAC_GET_ALL_USERS_CMD or MAC_GET_ALL_GROUPS_CMD.
// For certain negative id case like nfsnobody, the <id> is quoted as
// "<id>", added one sed section to remove the quote.
// Specifically, the method returns:
// dscl . -search /Users UniqueID <id> | sed 'N;s/\\n//g;N;s/\\n//g' | sed 's/UniqueID =//g' | sed 's/)//g' | sed 's/\"//g'
// OR
// dscl . -search /Groups PrimaryGroupID <id> | sed 'N;s/\\n//g;N;s/\\n//g' | sed 's/PrimaryGroupID =//g' | sed 's/)//g' | sed 's/\"//g'
| 0
|
"dscl . -search /Users UniqueID <id>" returns
// <name> UniqueID = (
// <id>
// )
// "dscl . -search /Groups PrimaryGroupID <id>" returns
// <name> PrimaryGroupID = (
// <id>
// )
// The following method returns a command that uses sed to process the
// the result and returns "<name> <id>" to simulate one entry returned
// by MAC_GET_ALL_USERS_CMD or MAC_GET_ALL_GROUPS_CMD.
// For certain negative id case like nfsnobody, the <id> is quoted as
// "<id>", added one sed section to remove the quote.
// Specifically, the method returns:
// dscl . -search /Users UniqueID <id> | sed 'N;s/\\n//g;N;s/\\n//g' | sed 's/UniqueID =//g' | sed 's/)//g' | sed 's/\"//g'
// OR
// dscl . -search /Groups PrimaryGroupID <id> | sed 'N;s/\\n//g;N;s/\\n//g' | sed 's/PrimaryGroupID =//g' | sed 's/)//g' | sed 's/\"//g' | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,487
|
ShellBasedIdMapping.java
|
// We know the line is fine to parse without error checking like this
// since it matched the regex above.
| 0
|
// We know the line is fine to parse without error checking like this
// since it matched the regex above. | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,488
|
ShellBasedIdMapping.java
|
// When can't map user, return user name's string hashcode
| 0
|
// When can't map user, return user name's string hashcode | ShellBasedIdMapping.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,491
|
RegisterBitFieldCellModifier.java
|
@since 2.0
| 0
|
@since 2.0 | RegisterBitFieldCellModifier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,494
|
RegisterBitFieldCellModifier.java
|
* Make sure we are are dealing with a valid set of information.
| 0
|
* Make sure we are are dealing with a valid set of information. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,497
|
RegisterBitFieldCellModifier.java
|
* Make sure we are working on the editable areas.
| 0
|
* Make sure we are working on the editable areas. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,498
|
RegisterBitFieldCellModifier.java
|
* We let the Model provider supply the current format.
| 0
|
* We let the Model provider supply the current format. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,499
|
RegisterBitFieldCellModifier.java
|
This is a COMBO BOX. So we need to take the value of the bitfield and
* compare it to the associated mnemonic values to see which mnemonic is
* representing the current value. At this point the Bitfield Model data
* has already been established since the "canModify()" method is called
* first by the flexible hierarchy proxies.
| 0
|
This is a COMBO BOX. So we need to take the value of the bitfield and
* compare it to the associated mnemonic values to see which mnemonic is
* representing the current value. At this point the Bitfield Model data
* has already been established since the "canModify()" method is called
* first by the flexible hierarchy proxies. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,500
|
RegisterBitFieldCellModifier.java
|
If we're in the column value, modify the register data.
* Otherwise, call the super-class to edit the watch expression.
| 0
|
If we're in the column value, modify the register data.
* Otherwise, call the super-class to edit the watch expression. | RegisterBitFieldCellModifier.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
4,501
|
RegisterBitFieldCellModifier.java
|
* We let the Model provider supply the current format.
| 0
|
* We let the Model provider supply the current format. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,502
|
RegisterBitFieldCellModifier.java
|
* Get the integer value corresponding to the selected entry.
| 0
|
* Get the integer value corresponding to the selected entry. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,508
|
LinkedListMultimap_CustomFieldSerializer.java
|
This class implements the GWT serialization of
| 0
|
This class implements the GWT serialization of | LinkedListMultimap_CustomFieldSerializer.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,510
|
LongString.java
|
@author Doug Schaefer
| 0
|
@author Doug Schaefer | LongString.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
4,511
|
LongString.java
|
This is for strings that take up more than on chunk.
* The string will need to be broken up into sections and then
* reassembled when necessary.
| 0
|
This is for strings that take up more than on chunk.
* The string will need to be broken up into sections and then
* reassembled when necessary. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,512
|
LongString.java
|
// Additional fields of first record.
| 0
|
// Additional fields of first record. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,514
|
LongString.java
|
// Additional fields of subsequent records.
| 0
|
// Additional fields of subsequent records. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,515
|
LongString.java
|
// Write the first record.
| 0
|
// Write the first record. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,516
|
LongString.java
|
// Write the subsequent records.
| 0
|
// Write the subsequent records. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,518
|
LongString.java
|
// First record
| 0
|
// First record | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,519
|
LongString.java
|
// Other records
| 0
|
// Other records | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,523
|
LongString.java
|
Compatible with {@link String#hashCode()}
| 0
|
Compatible with {@link String#hashCode()} | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,526
|
DatabaseTest.java
|
@link Database
| 0
|
@link Database | DatabaseTest.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,527
|
DatabaseTest.java
|
Tests for the {@link Database} class.
| 0
|
Tests for the {@link Database} class. | DatabaseTest.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,528
|
DatabaseTest.java
|
// This constant can be used to run the test with very large databases.
// Try, for example, setting it to Integer.MAX_VALUE * 7L;
| 0
|
// This constant can be used to run the test with very large databases.
// Try, for example, setting it to Integer.MAX_VALUE * 7L; | DatabaseTest.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,530
|
DatabaseTest.java
|
/* check opening a readonly file for rw access fails */
| 0
|
/* check opening a readonly file for rw access fails */ | DatabaseTest.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,534
|
DatabaseTest.java
|
// We only match String.compareToIgnoreCase behavior within this limited range.
| 0
|
// We only match String.compareToIgnoreCase behavior within this limited range. | DatabaseTest.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,535
|
VisualizerCPU.java
|
Contributors:
* William R. Swanson (Tilera Corporation) - initial API and implementation
* Marc Dumais (Ericsson) - Add CPU/core load information to the multicore visualizer (Bug 396268)
* Marc Dumais (Ericsson) - Bug 405390
| 0
|
Contributors:
* William R. Swanson (Tilera Corporation) - initial API and implementation
* Marc Dumais (Ericsson) - Add CPU/core load information to the multicore visualizer (Bug 396268)
* Marc Dumais (Ericsson) - Bug 405390 | VisualizerCPU.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
4,536
|
VisualizerCPU.java
|
Represents single CPU.
| 0
|
Represents single CPU. | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,537
|
VisualizerCPU.java
|
/** IVisualizerModelObject version of compareTO() */
| 0
|
/** IVisualizerModelObject version of compareTO() */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,539
|
VisualizerCPU.java
|
/** Sorts cores, cpus, etc. by IDs. */
| 0
|
/** Sorts cores, cpus, etc. by IDs. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,540
|
VisualizerCPU.java
|
/** Removes core. */
| 0
|
/** Removes core. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,542
|
VisualizerCPU.java
|
/** Gets core with specified ID. */
| 0
|
/** Gets core with specified ID. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,543
|
VisualizerCPU.java
|
/** Gets cores. */
| 0
|
/** Gets cores. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,544
|
VisualizerCPU.java
|
/** Gets number of cores. */
| 0
|
/** Gets number of cores. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,545
|
VisualizerCPU.java
|
/** get the highest recorded load value for this CPU*/
| 0
|
/** get the highest recorded load value for this CPU*/ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,547
|
VisualizerCPU.java
|
/** Sets the load object associated to this CPU */
| 0
|
/** Sets the load object associated to this CPU */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,548
|
VisualizerCPU.java
|
/** CPU has no parent - always returns null */
| 0
|
/** CPU has no parent - always returns null */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,550
|
VisualizerCPU.java
|
/** Returns string representation. */
| 0
|
/** Returns string representation. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,551
|
VisualizerCPU.java
|
/** Dispose method */
| 0
|
/** Dispose method */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,553
|
VisualizerCPU.java
|
/** List of cores */
| 0
|
/** List of cores */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,554
|
VisualizerCPU.java
|
/** Load object associated to this cpu */
| 0
|
/** Load object associated to this cpu */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,555
|
VisualizerCPU.java
|
/** ID of this core. */
| 0
|
/** ID of this core. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,556
|
VisualizerCPU.java
|
/** Lookup table for cores. */
| 0
|
/** Lookup table for cores. */ | VisualizerCPU.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,558
|
TestFileContextSnapshot.java
|
// allow snapshot on dir
| 0
|
// allow snapshot on dir | TestFileContextSnapshot.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,560
|
TestFileContextSnapshot.java
|
// Create snapshot for sub1
| 0
|
// Create snapshot for sub1 | TestFileContextSnapshot.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,563
|
TestFileContextSnapshot.java
|
// Instead, <sub1>/.snapshot/s2/file1 should exist
| 0
|
// Instead, <sub1>/.snapshot/s2/file1 should exist | TestFileContextSnapshot.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
4,564
|
TestFileContextSnapshot.java
|
// FileStatus of the snapshot should not change except the path
| 0
|
// FileStatus of the snapshot should not change except the path | TestFileContextSnapshot.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,565
|
AutomakefileUtil.java
|
Contributors:
* Red Hat Incorporated - initial API and implementation
| 0
|
Contributors:
* Red Hat Incorporated - initial API and implementation | AutomakefileUtil.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
4,566
|
AutomakefileUtil.java
|
// Look for Automake conditionals which optionally
// activate or disable a Makefile rule command.
| 0
|
// Look for Automake conditionals which optionally
// activate or disable a Makefile rule command. | AutomakefileUtil.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,569
|
JobConfigurable.java
|
@param job the configuration
| 0
|
@param job the configuration | JobConfigurable.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,570
|
JobConfigurable.java
|
/** Initializes a new instance from a {@link JobConf}.
| 0
|
/** Initializes a new instance from a {@link JobConf}. | JobConfigurable.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,573
|
FlexibleSignalsView.java
|
Viewer input requester used to update the viewer once the viewer input has been
* resolved.
| 0
|
Viewer input requester used to update the viewer once the viewer input has been
* resolved. | FlexibleSignalsView.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,575
|
FlexibleSignalsView.java
|
Sets the input to the viewer
| 0
|
Sets the input to the viewer | FlexibleSignalsView.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,576
|
FlexibleSignalsView.java
|
* @param context the object context
| 0
|
* @param context the object context | FlexibleSignalsView.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,577
|
FlexibleSignalsView.java
|
* @return context id
| 0
|
* @return context id | FlexibleSignalsView.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,578
|
FlexibleSignalsView.java
|
* @return SWT style
| 0
|
* @return SWT style | FlexibleSignalsView.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,579
|
FlexibleSignalsView.java
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#viewerUpdatesBegin()
| 0
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#viewerUpdatesBegin() | FlexibleSignalsView.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,585
|
FlexibleSignalsView.java
|
Updates actions and sets the viewer input when a context is activated.
| 0
|
Updates actions and sets the viewer input when a context is activated. | FlexibleSignalsView.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,586
|
FlexibleSignalsView.java
|
* Returns the style bits for the viewer.
| 0
|
* Returns the style bits for the viewer. | FlexibleSignalsView.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,587
|
FlexibleSignalsView.java
|
* Returns the presentation context id for this view.
| 0
|
* Returns the presentation context id for this view. | FlexibleSignalsView.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,588
|
FlexibleSignalsView.java
|
* @param selection
| 0
|
* @param selection | FlexibleSignalsView.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,590
|
ICPPASTConversionName.java
|
* This interface represents a C++ conversion member function.
| 0
|
* This interface represents a C++ conversion member function. | ICPPASTConversionName.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,591
|
ICPPASTConversionName.java
|
* @noextend This interface is not intended to be extended by clients.
| 0
|
* @noextend This interface is not intended to be extended by clients. | ICPPASTConversionName.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,593
|
ICPPASTConversionName.java
|
* @param typeId
| 0
|
* @param typeId | ICPPASTConversionName.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,594
|
ICPPASTConversionName.java
|
* @since 5.1
| 0
|
* @since 5.1 | ICPPASTConversionName.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,595
|
ICPPASTConversionName.java
|
* @since 5.3
| 0
|
* @since 5.3 | ICPPASTConversionName.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,596
|
ICPPASTConversionName.java
|
Returns the IASTTypeId for the ICPPASTConversionName.
*
* i.e. getTypeId() on operator int(); would return the IASTTypeId for "int"
| 0
|
Returns the IASTTypeId for the ICPPASTConversionName.
*
* i.e. getTypeId() on operator int(); would return the IASTTypeId for "int" | ICPPASTConversionName.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,600
|
CColorManager.java
|
Flag which tells if the colors are automatically disposed when
* the current display gets disposed.
| 0
|
Flag which tells if the colors are automatically disposed when
* the current display gets disposed. | CColorManager.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,601
|
CColorManager.java
|
Creates a new CDT color manager which automatically
* disposes the allocated colors when the current display
* gets disposed.
| 0
|
Creates a new CDT color manager which automatically
* disposes the allocated colors when the current display
* gets disposed. | CColorManager.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,602
|
CColorManager.java
|
* Creates a new CDT color manager.
| 0
|
* Creates a new CDT color manager. | CColorManager.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,603
|
CColorManager.java
|
@param autoDisposeOnDisplayDispose if <code>true</code> the color manager
* automatically disposes all managed colors when the current display gets disposed
* and all calls to {@link org.eclipse.jface.text.source.ISharedTextColors#dispose()} are
* ignored.
*
| 0
|
@param autoDisposeOnDisplayDispose if <code>true</code> the color manager
* automatically disposes all managed colors when the current display gets disposed
* and all calls to {@link org.eclipse.jface.text.source.ISharedTextColors#dispose()} are
* ignored.
* | CColorManager.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,604
|
CColorManager.java
|
* @since 4.0
| 0
|
* @since 4.0 | CColorManager.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
4,605
|
CColorManager.java
|
@link org.eclipse.jface.text.source.ISharedTextColors#dispose()
| 0
|
@link org.eclipse.jface.text.source.ISharedTextColors#dispose() | CColorManager.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,606
|
DirectoryWithQuotaFeature.java
|
@link INodeDirectory
| 0
|
@link INodeDirectory | DirectoryWithQuotaFeature.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,607
|
DirectoryWithQuotaFeature.java
|
/** Verify if the storagespace quota is violated after applying delta. */
| 0
|
/** Verify if the storagespace quota is violated after applying delta. */ | DirectoryWithQuotaFeature.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.