index
int64 0
10.7k
| class
stringclasses 867
values | comment_sentence
stringlengths 1
1.78k
| partition
int64 0
0
| combo
stringlengths 17
1.81k
| labels
listlengths 7
7
|
|---|---|---|---|---|---|
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,486
|
ShellBasedIdMapping.java
|
// Skip entirely empty and comment lines.
| 0
|
// Skip entirely empty and comment lines. | 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,489
|
ShellBasedIdMapping.java
|
// When can't map group, return group name's string hashcode
| 0
|
// When can't map group, return group 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,492
|
RegisterBitFieldCellModifier.java
|
* Used to make sure we are dealing with a valid register.
| 0
|
* Used to make sure we are dealing with a valid register. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,493
|
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,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,495
|
RegisterBitFieldCellModifier.java
|
* We need to read the register in order to get the attributes.
| 0
|
* We need to read the register in order to get the attributes. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,496
|
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,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,503
|
RegisterBitFieldCellModifier.java
|
* Write the bit field using the selected mnemonic.
| 0
|
* Write the bit field using the selected mnemonic. | RegisterBitFieldCellModifier.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,504
|
PackageSanityTests.java
|
Basic sanity tests for the entire package.
| 0
|
Basic sanity tests for the entire package. | PackageSanityTests.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,507
|
LinkedListMultimap_CustomFieldSerializer.java
|
@link LinkedListMultimap
| 0
|
@link LinkedListMultimap | LinkedListMultimap_CustomFieldSerializer.java
|
[
0,
0,
0,
0,
1,
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,513
|
LongString.java
|
// Must be first to match ShortString.
| 0
|
// Must be first to match ShortString. | LongString.java
|
[
0,
0,
1,
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,517
|
LongString.java
|
// Write the last record.
| 0
|
// Write the last record. | 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,520
|
LongString.java
|
// Middle records.
| 0
|
// Middle records. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,521
|
LongString.java
|
// Last record.
| 0
|
// Last record. | LongString.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,522
|
LongString.java
|
@link String#hashCode()
| 0
|
@link String#hashCode() | LongString.java
|
[
0,
0,
0,
0,
1,
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,524
|
TestGetInstances.java
|
Makes sure <code>Configuration.getInstances()</code> returns
* instances of the required type.
| 0
|
Makes sure <code>Configuration.getInstances()</code> returns
* instances of the required type. | TestGetInstances.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,525
|
DatabaseTest.java
|
Contributors:
* QNX Software Systems - initial API and implementation
* Andrew Ferguson (Symbian)
* Markus Schorn (Wind River Systems)
| 0
|
Contributors:
* QNX Software Systems - initial API and implementation
* Andrew Ferguson (Symbian)
* Markus Schorn (Wind River Systems) | DatabaseTest.java
|
[
0,
1,
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,529
|
DatabaseTest.java
|
// Allocate all database chunks up to TEST_OFFSET.
| 0
|
// Allocate all database chunks up to TEST_OFFSET. | 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,531
|
DatabaseTest.java
|
// we expect to get a failure here
| 0
|
// we expect to get a failure here | DatabaseTest.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,532
|
DatabaseTest.java
|
/* check opening a readonly file for read access does not fail */
| 0
|
/* check opening a readonly file for read access does not fail */ | DatabaseTest.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,533
|
DatabaseTest.java
|
// this may be pointless on some platforms
| 0
|
// this may be pointless on some platforms | 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,538
|
VisualizerCPU.java
|
/** Compares this item to the specified item. */
| 0
|
/** Compares this item to the specified item. */ | 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,541
|
VisualizerCPU.java
|
/** Adds core. */
| 0
|
/** Adds 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,546
|
VisualizerCPU.java
|
/** Gets the load value associated to this CPU */
| 0
|
/** Gets the load value associated to 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,549
|
VisualizerCPU.java
|
/** Gets ID of this CPU. */
| 0
|
/** Gets ID of this CPU. */ | 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,557
|
TestFileContextSnapshot.java
|
// disallow snapshot on dir
| 0
|
// disallow snapshot on dir | TestFileContextSnapshot.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,559
|
TestFileContextSnapshot.java
|
* Test FileStatus of snapshot file before/after rename
| 0
|
* Test FileStatus of snapshot file before/after rename | 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,561
|
TestFileContextSnapshot.java
|
// Rename the snapshot
| 0
|
// Rename the snapshot | TestFileContextSnapshot.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
4,562
|
TestFileContextSnapshot.java
|
// <sub1>/.snapshot/s1/file1 should no longer exist
| 0
|
// <sub1>/.snapshot/s1/file1 should no longer exist | TestFileContextSnapshot.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
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,567
|
JobConfigurable.java
|
/** That what may be configured. */
| 0
|
/** That what may be configured. */ | JobConfigurable.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
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,572
|
FlexibleSignalsView.java
|
* A Signals view based on flexible hierarchy.
| 0
|
* A Signals view based on flexible hierarchy. | FlexibleSignalsView.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,574
|
FlexibleSignalsView.java
|
@return the model presentation to be used for this view
| 0
|
@return the model presentation to be used for this view | FlexibleSignalsView.java
|
[
0,
0,
0,
1,
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,580
|
FlexibleSignalsView.java
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#viewerUpdatesComplete()
| 0
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#viewerUpdatesComplete() | FlexibleSignalsView.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,581
|
FlexibleSignalsView.java
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#updateStarted(org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate)
| 0
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#updateStarted(org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate) | FlexibleSignalsView.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,582
|
FlexibleSignalsView.java
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#updateComplete(org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate)
| 0
|
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdateListener#updateComplete(org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate) | FlexibleSignalsView.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
4,583
|
FlexibleSignalsView.java
|
* @see org.eclipse.debug.ui.contexts.IDebugContextListener#debugContextChanged(org.eclipse.debug.ui.contexts.DebugContextEvent)
| 0
|
* @see org.eclipse.debug.ui.contexts.IDebugContextListener#debugContextChanged(org.eclipse.debug.ui.contexts.DebugContextEvent) | FlexibleSignalsView.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.