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
|
|---|---|---|---|---|---|
7,396
|
QPropertyExpansion.java
|
// The type/name section ends right before the first attribute.
| 0
|
// The type/name section ends right before the first attribute. | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,398
|
QPropertyExpansion.java
|
Extract the substring that likely contributes to this Q_PROPERTY declaration. The declaration
// could be in any state of being entered, so use the HeuristicScanner to guess about the
// possible structure. The fixed assumptions are that the content assistant was invoked within
// the expansion parameter of Q_PROPERTY. We try to guess at the end of the String, which is
// either the closing paren (within 512 characters from the opening paren) or the current cursor
// location.
// The offset is always right after the opening paren, use it to get to a fixed point in the
// declaration.
| 0
|
Extract the substring that likely contributes to this Q_PROPERTY declaration. The declaration
// could be in any state of being entered, so use the HeuristicScanner to guess about the
// possible structure. The fixed assumptions are that the content assistant was invoked within
// the expansion parameter of Q_PROPERTY. We try to guess at the end of the String, which is
// either the closing paren (within 512 characters from the opening paren) or the current cursor
// location.
// The offset is always right after the opening paren, use it to get to a fixed point in the
// declaration. | QPropertyExpansion.java
|
[
0,
0,
1,
0,
0,
0,
0
] |
7,399
|
QPropertyExpansion.java
|
// We should only need to backup the length of Q_PROPERTY, but allow extra to deal
// with whitespace.
| 0
|
// We should only need to backup the length of Q_PROPERTY, but allow extra to deal
// with whitespace. | QPropertyExpansion.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
7,401
|
QPropertyExpansion.java
|
// Find the start of the previous identifier. This scans backward, so it stops one
// position before the identifier (unless the identifer is at the start of the content).
| 0
|
// Find the start of the previous identifier. This scans backward, so it stops one
// position before the identifier (unless the identifer is at the start of the content). | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,402
|
QPropertyExpansion.java
|
// advance past the opening paren
| 0
|
// advance past the opening paren | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,403
|
QPropertyExpansion.java
|
// This expansion is not applicable if the assistant was invoked after the closing paren.
| 0
|
// This expansion is not applicable if the assistant was invoked after the closing paren. | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,404
|
QPropertyExpansion.java
|
// There are two significant regions in a Q_PROPERTY declaration. The first is everything
// between the opening paren and the first parameter. This region specifies the type and the
// name. The other is the region that declares all the parameters. There is an arbitrary
// amount of whitespace between these regions.
//
// This function finds and returns the offset of the end of the region containing the type and
// name. Returns 0 if the type/name region cannot be found.
| 0
|
// There are two significant regions in a Q_PROPERTY declaration. The first is everything
// between the opening paren and the first parameter. This region specifies the type and the
// name. The other is the region that declares all the parameters. There is an arbitrary
// amount of whitespace between these regions.
//
// This function finds and returns the offset of the end of the region containing the type and
// name. Returns 0 if the type/name region cannot be found. | QPropertyExpansion.java
|
[
0,
0,
1,
0,
0,
0,
0
] |
7,405
|
QPropertyExpansion.java
|
// parse the type/name part and then extract the type and name from the result
| 0
|
// parse the type/name part and then extract the type and name from the result | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,406
|
QPropertyExpansion.java
|
// Give attribute proposals the same order as the Qt documentation.
| 0
|
// Give attribute proposals the same order as the Qt documentation. | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,407
|
QPropertyExpansion.java
|
// Otherwise create a template where the content depends on the type of the attribute's parameter.
| 0
|
// Otherwise create a template where the content depends on the type of the attribute's parameter. | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,408
|
QPropertyExpansion.java
|
Make no suggestions when the start of the current identifier is before the end of
// the "type name" portion of the declaration.
| 0
|
Make no suggestions when the start of the current identifier is before the end of
// the "type name" portion of the declaration. | QPropertyExpansion.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,410
|
QPropertyExpansion.java
|
// If the previous token is an Attribute name that has a parameter then suggest appropriate
// values for that parameter. Otherwise suggest the other Attribute names.
| 0
|
// If the previous token is an Attribute name that has a parameter then suggest appropriate
// values for that parameter. Otherwise suggest the other Attribute names. | QPropertyExpansion.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
7,411
|
QPropertyExpansion.java
|
// There are two types of proposals. If the previous identifier matches a known attribute name,
// then we propose possible values for that attribute. Otherwise we want to propose the identifiers
// that don't already appear in the expansion.
//
// This is implemented by iterating over the list of known attributes. If any of the attributes
// matches the previous identifier, then we build and return a list of valid proposals for that
// attribute.
//
// Otherwise, for each attribute we build a regular expression that checks to see if that token
// appears within the expansion. If it already appears, then the attribute is ignored. Otherwise
// it is added as an unspecified attribute. If the loop completes, then we create a list of proposals
// for from that unspecified list.
| 0
|
// There are two types of proposals. If the previous identifier matches a known attribute name,
// then we propose possible values for that attribute. Otherwise we want to propose the identifiers
// that don't already appear in the expansion.
//
// This is implemented by iterating over the list of known attributes. If any of the attributes
// matches the previous identifier, then we build and return a list of valid proposals for that
// attribute.
//
// Otherwise, for each attribute we build a regular expression that checks to see if that token
// appears within the expansion. If it already appears, then the attribute is ignored. Otherwise
// it is added as an unspecified attribute. If the loop completes, then we create a list of proposals
// for from that unspecified list. | QPropertyExpansion.java
|
[
0,
0,
1,
0,
0,
0,
0
] |
7,415
|
CASTProblemDeclaration.java
|
// Visit the problem.
| 0
|
// Visit the problem. | CASTProblemDeclaration.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,417
|
CustomLayoutDeclarativeTest.java
|
* @author Vaadin Ltd
| 0
|
* @author Vaadin Ltd | CustomLayoutDeclarativeTest.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
7,421
|
ComponentInStateUI.java
|
* @since 7.0.0
| 0
|
* @since 7.0.0 | ComponentInStateUI.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,422
|
ComponentInStateUI.java
|
Mini tutorial code for
* https://vaadin.com/wiki/-/wiki/Main/Using%20Components%
* 20in%20the%20shared%20state
| 0
|
Mini tutorial code for
* https://vaadin.com/wiki/-/wiki/Main/Using%20Components%
* 20in%20the%20shared%20state | ComponentInStateUI.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,425
|
TestTruncateQuotaUpdate.java
|
Make sure we correctly update the quota usage for truncate.
| 0
|
Make sure we correctly update the quota usage for truncate. | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,426
|
TestTruncateQuotaUpdate.java
|
We need to cover the following cases:
* 1. No snapshot, truncate to 0
* 2. No snapshot, truncate at block boundary
* 3. No snapshot, not on block boundary
* 4~6. With snapshot, all the current blocks are included in latest
* snapshots, repeat 1~3
* 7~9. With snapshot, blocks in the latest snapshot and blocks in the current
* file diverged, repeat 1~3
| 0
|
We need to cover the following cases:
* 1. No snapshot, truncate to 0
* 2. No snapshot, truncate at block boundary
* 3. No snapshot, not on block boundary
* 4~6. With snapshot, all the current blocks are included in latest
* snapshots, repeat 1~3
* 7~9. With snapshot, blocks in the latest snapshot and blocks in the current
* file diverged, repeat 1~3 | TestTruncateQuotaUpdate.java
|
[
0,
0,
1,
0,
0,
0,
0
] |
7,428
|
TestTruncateQuotaUpdate.java
|
// case 8: truncate to 2 blocks
// the original 2.5 blocks are in snapshot. the block truncated is not
// in snapshot. diff should be -0.5 block
| 0
|
// case 8: truncate to 2 blocks
// the original 2.5 blocks are in snapshot. the block truncated is not
// in snapshot. diff should be -0.5 block | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,430
|
TestTruncateQuotaUpdate.java
|
// case 9: truncate to 0
| 0
|
// case 9: truncate to 0 | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,431
|
TestTruncateQuotaUpdate.java
|
// case 1: first truncate to 1.5 blocks
// we truncate 1 blocks, but not on the boundary, thus the diff should
// be -block + (block - 0.5 block) = -0.5 block
| 0
|
// case 1: first truncate to 1.5 blocks
// we truncate 1 blocks, but not on the boundary, thus the diff should
// be -block + (block - 0.5 block) = -0.5 block | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,433
|
TestTruncateQuotaUpdate.java
|
// case 3: truncate to 0
| 0
|
// case 3: truncate to 0 | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,434
|
TestTruncateQuotaUpdate.java
|
// case 4: truncate to 1.5 blocks
// all the blocks are in snapshot. truncate need to allocate a new block
// diff should be +BLOCKSIZE
| 0
|
// case 4: truncate to 1.5 blocks
// all the blocks are in snapshot. truncate need to allocate a new block
// diff should be +BLOCKSIZE | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,435
|
TestTruncateQuotaUpdate.java
|
// case 2: truncate to 1 block
| 0
|
// case 2: truncate to 1 block | TestTruncateQuotaUpdate.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,438
|
MemoryTimelineStateStore.java
|
* A state store backed by memory for unit tests
| 0
|
* A state store backed by memory for unit tests | MemoryTimelineStateStore.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,439
|
KeywordSets.java
|
// add all of C then remove the ones we don't need
| 0
|
// add all of C then remove the ones we don't need | KeywordSets.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,440
|
KeywordSets.java
|
// CPP specific stuff
| 0
|
// CPP specific stuff | KeywordSets.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,441
|
KeywordSets.java
|
Contributors:
* John Camelon (IBM Rational Software) - Initial API and implementation
* Markus Schorn (Wind River Systems)
| 0
|
Contributors:
* John Camelon (IBM Rational Software) - Initial API and implementation
* Markus Schorn (Wind River Systems) | KeywordSets.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
7,442
|
FailoverProxyProvider.java
|
@link RetryPolicy
| 0
|
@link RetryPolicy | FailoverProxyProvider.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
7,443
|
FailoverProxyProvider.java
|
@link Idempotent
| 0
|
@link Idempotent | FailoverProxyProvider.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
7,447
|
FailoverProxyProvider.java
|
An implementer of this interface is capable of providing proxy objects for
* use in IPC communication, and potentially modifying these objects or creating
* entirely new ones in the event of certain types of failures. The
* determination of whether or not to fail over is handled by
* {@link RetryPolicy}.
| 0
|
An implementer of this interface is capable of providing proxy objects for
* use in IPC communication, and potentially modifying these objects or creating
* entirely new ones in the event of certain types of failures. The
* determination of whether or not to fail over is handled by
* {@link RetryPolicy}. | FailoverProxyProvider.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,448
|
FailoverProxyProvider.java
|
The information (e.g., the IP address) of the current proxy object. It
* provides information for debugging purposes.
| 0
|
The information (e.g., the IP address) of the current proxy object. It
* provides information for debugging purposes. | FailoverProxyProvider.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,451
|
FailoverProxyProvider.java
|
Return a reference to the interface this provider's proxy objects actually
* implement. If any of the methods on this interface are annotated as being
* {@link Idempotent} or {@link AtMostOnce}, then this fact will be passed to
* the {@link RetryPolicy#shouldRetry(Exception, int, int, boolean)} method on
* error, for use in determining whether or not failover should be attempted.
| 0
|
Return a reference to the interface this provider's proxy objects actually
* implement. If any of the methods on this interface are annotated as being
* {@link Idempotent} or {@link AtMostOnce}, then this fact will be passed to
* the {@link RetryPolicy#shouldRetry(Exception, int, int, boolean)} method on
* error, for use in determining whether or not failover should be attempted. | FailoverProxyProvider.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,453
|
FailoverProxyProvider.java
|
@return the proxy object to invoke methods upon
| 0
|
@return the proxy object to invoke methods upon | FailoverProxyProvider.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,454
|
FailoverProxyProvider.java
|
@param currentProxy
* the proxy object which was being used before this failover event
| 0
|
@param currentProxy
* the proxy object which was being used before this failover event | FailoverProxyProvider.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,455
|
FailoverProxyProvider.java
|
@return the interface implemented by the proxy objects returned by
* {@link FailoverProxyProvider#getProxy()}
| 0
|
@return the interface implemented by the proxy objects returned by
* {@link FailoverProxyProvider#getProxy()} | FailoverProxyProvider.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,457
|
SignalsViewEventHandler.java
|
Updates the signals view.
| 0
|
Updates the signals view. | SignalsViewEventHandler.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,459
|
SignalsViewEventHandler.java
|
* @since: Mar 8, 2004
| 0
|
* @since: Mar 8, 2004 | SignalsViewEventHandler.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,463
|
SingletonImmutableTable.java
|
@author Gregory Kick
| 0
|
@author Gregory Kick | SingletonImmutableTable.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
7,464
|
SingletonImmutableTable.java
|
An implementation of {@link ImmutableTable} that holds a single cell.
| 0
|
An implementation of {@link ImmutableTable} that holds a single cell. | SingletonImmutableTable.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,466
|
DisassemblyResumeAtLineAdapter.java
|
* Resume at line target adapter for the DSF Disassembly view
| 0
|
* Resume at line target adapter for the DSF Disassembly view | DisassemblyResumeAtLineAdapter.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,467
|
DisassemblyResumeAtLineAdapter.java
|
* @since 2.1
| 0
|
* @since 2.1 | DisassemblyResumeAtLineAdapter.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,468
|
NestedPersonForm.java
|
* Example of nested forms
| 0
|
* Example of nested forms | NestedPersonForm.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,469
|
NestedPersonForm.java
|
* Creates a person form which contains nested form for the persons address
| 0
|
* Creates a person form which contains nested form for the persons address | NestedPersonForm.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,473
|
NestedPersonForm.java
|
// reuse the address field - required by EmbeddedForm
| 0
|
// reuse the address field - required by EmbeddedForm | NestedPersonForm.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,474
|
NestedPersonForm.java
|
// create a custom field for the Address object
| 0
|
// create a custom field for the Address object | NestedPersonForm.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,475
|
NestedPersonForm.java
|
// Note that if the nested form is the first or last field in the parent
// form, styles from the parent (padding, ...) may leak to its contents.
| 0
|
// Note that if the nested form is the first or last field in the parent
// form, styles from the parent (padding, ...) may leak to its contents. | NestedPersonForm.java
|
[
0,
0,
0,
0,
0,
0,
1
] |
7,476
|
NestedPersonForm.java
|
// set the data source and the visible fields
| 0
|
// set the data source and the visible fields | NestedPersonForm.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,477
|
SaslDataTransferTestCase.java
|
* @param dataTransferProtection supported QOPs
| 0
|
* @param dataTransferProtection supported QOPs | SaslDataTransferTestCase.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,478
|
SaslDataTransferTestCase.java
|
* @return configuration for starting a secure cluster
| 0
|
* @return configuration for starting a secure cluster | SaslDataTransferTestCase.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,479
|
SaslDataTransferTestCase.java
|
* Creates configuration for starting a secure cluster.
| 0
|
* Creates configuration for starting a secure cluster. | SaslDataTransferTestCase.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,481
|
TestRpcDeniedReply.java
|
* Test for {@link RpcDeniedReply}
| 0
|
* Test for {@link RpcDeniedReply} | TestRpcDeniedReply.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,482
|
ExecutablesViewCopyHandler.java
|
Contributors:
* Nokia - Initial implementation
| 0
|
Contributors:
* Nokia - Initial implementation | ExecutablesViewCopyHandler.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
7,485
|
VContextMenu.java
|
* @param actionOwner
| 0
|
* @param actionOwner | VContextMenu.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,487
|
VContextMenu.java
|
* @param left
| 0
|
* @param left | VContextMenu.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,488
|
VContextMenu.java
|
* @param ao
| 0
|
* @param ao | VContextMenu.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,489
|
VContextMenu.java
|
@param cli
* to be set as an owner of menu
| 0
|
@param cli
* to be set as an owner of menu | VContextMenu.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,491
|
VContextMenu.java
|
* Sets the element from which to build menu
| 0
|
* Sets the element from which to build menu | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,492
|
VContextMenu.java
|
* Shows context menu at given location IF it contain at least one item.
| 0
|
* Shows context menu at given location IF it contain at least one item. | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,498
|
VContextMenu.java
|
// Focus the menu.
| 0
|
// Focus the menu. | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,500
|
VContextMenu.java
|
// Unselect previously selected items
| 0
|
// Unselect previously selected items | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,501
|
VContextMenu.java
|
Extend standard Gwt MenuBar to set proper settings and to override
* onPopupClosed method so that PopupPanel gets closed.
| 0
|
Extend standard Gwt MenuBar to set proper settings and to override
* onPopupClosed method so that PopupPanel gets closed. | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,503
|
VContextMenu.java
|
// Handle icon onload events to ensure shadow is resized correctly
| 0
|
// Handle icon onload events to ensure shadow is resized correctly | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,504
|
VContextMenu.java
|
// Allow to close context menu with ESC
| 0
|
// Allow to close context menu with ESC | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,505
|
VContextMenu.java
|
* Hides context menu if it is currently shown by given action owner.
| 0
|
* Hides context menu if it is currently shown by given action owner. | VContextMenu.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,506
|
EclipseObjects.java
|
Contributors:
* Institute for Software - initial API and implementation
| 0
|
Contributors:
* Institute for Software - initial API and implementation | EclipseObjects.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
7,507
|
EclipseObjects.java
|
* A collection of helper methods to interact with the workbench's IDocuments and IFiles
| 0
|
* A collection of helper methods to interact with the workbench's IDocuments and IFiles | EclipseObjects.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,509
|
EclipseObjects.java
|
* @return the editor or null
| 0
|
* @return the editor or null | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,510
|
EclipseObjects.java
|
* @return the active, visible TextEditor
| 0
|
* @return the active, visible TextEditor | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,511
|
EclipseObjects.java
|
* @return the file from the active editor
| 0
|
* @return the file from the active editor | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,512
|
EclipseObjects.java
|
* @return the document from the currently active editor
| 0
|
* @return the document from the currently active editor | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,513
|
EclipseObjects.java
|
* @return the document opened in the editor
| 0
|
* @return the document opened in the editor | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,514
|
EclipseObjects.java
|
* @return get the document that corresponds to the file
| 0
|
* @return get the document that corresponds to the file | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,516
|
EclipseObjects.java
|
* @return the file at the specified path string
| 0
|
* @return the file at the specified path string | EclipseObjects.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,522
|
IBuildMacroSupplier.java
|
* @param macroName macro name
| 0
|
* @param macroName macro name | IBuildMacroSupplier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,523
|
IBuildMacroSupplier.java
|
* @param contextType context type
| 0
|
* @param contextType context type | IBuildMacroSupplier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,524
|
IBuildMacroSupplier.java
|
* @param contextData context data
| 0
|
* @param contextData context data | IBuildMacroSupplier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,525
|
IBuildMacroSupplier.java
|
* @return IBuildMacro
| 0
|
* @return IBuildMacro | IBuildMacroSupplier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,526
|
IBuildMacroSupplier.java
|
* @param contextType context type
| 0
|
* @param contextType context type | IBuildMacroSupplier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,527
|
IBuildMacroSupplier.java
|
* @param contextData context data
| 0
|
* @param contextData context data | IBuildMacroSupplier.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,530
|
TestDatanodeConfig.java
|
Test that a data-node does not start if configuration specifies
* incorrect URI scheme in data directory.
* Test that a data-node starts if data directory is specified as
* URI = "file:///path" or as a non URI path.
| 0
|
Test that a data-node does not start if configuration specifies
* incorrect URI scheme in data directory.
* Test that a data-node starts if data directory is specified as
* URI = "file:///path" or as a non URI path. | TestDatanodeConfig.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,531
|
TestDatanodeConfig.java
|
// expecting exception here
| 0
|
// expecting exception here | TestDatanodeConfig.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,532
|
TestDatanodeConfig.java
|
// 2. Test "file:" ecPolicy and no ecPolicy (path-only). Both should work.
| 0
|
// 2. Test "file:" ecPolicy and no ecPolicy (path-only). Both should work. | TestDatanodeConfig.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,533
|
TestDatanodeConfig.java
|
// Can't increase the memlock limit past the maximum.
| 0
|
// Can't increase the memlock limit past the maximum. | TestDatanodeConfig.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,534
|
TestDatanodeConfig.java
|
// Try starting the DN with limit configured to the ulimit
| 0
|
// Try starting the DN with limit configured to the ulimit | TestDatanodeConfig.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,537
|
TestTextOutputFormat.java
|
// A reporter that does nothing
| 0
|
// A reporter that does nothing | TestTextOutputFormat.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,538
|
TestTextOutputFormat.java
|
test compressed file
| 0
|
test compressed file | TestTextOutputFormat.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,539
|
TestTextOutputFormat.java
|
// A reporter that does nothing
| 0
|
// A reporter that does nothing | TestTextOutputFormat.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,540
|
CustomDateFormatEEE.java
|
/*
* Copyright 2000-2014 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
| 0
|
/*
* Copyright 2000-2014 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/ | CustomDateFormatEEE.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,541
|
CustomDateFormatEEE.java
|
// Friday
| 0
|
// Friday | CustomDateFormatEEE.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,545
|
AbstractMethodStub.java
|
Contributors:
* QNX Software Systems - initial API and implementation
* Anton Leherbauer (Wind River Systems)
| 0
|
Contributors:
* QNX Software Systems - initial API and implementation
* Anton Leherbauer (Wind River Systems) | AbstractMethodStub.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
7,547
|
IMethodTemplateDeclaration.java
|
Member template declaration.
| 0
|
Member template declaration. | IMethodTemplateDeclaration.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,550
|
IRestart.java
|
Bug 289526 - Migrate the Restart feature to the new one, as supported by the platform
| 0
|
Bug 289526 - Migrate the Restart feature to the new one, as supported by the platform | IRestart.java
|
[
0,
0,
0,
0,
1,
0,
0
] |
7,551
|
IRestart.java
|
Contributors:
* QNX Software Systems - Initial API and implementation
* Navid Mehregani (TI) - Bug 289526 - Migrate the Restart feature to the new one, as supported by the platform
| 0
|
Contributors:
* QNX Software Systems - Initial API and implementation
* Navid Mehregani (TI) - Bug 289526 - Migrate the Restart feature to the new one, as supported by the platform | IRestart.java
|
[
0,
1,
0,
0,
0,
0,
0
] |
7,552
|
IRestart.java
|
Provides the ability to restart a debug target.
| 0
|
Provides the ability to restart a debug target. | IRestart.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,553
|
IRestart.java
|
<p>
* Note: Debug elements which support restart should implement this interface.
* Adopting to this interface is not enough.
* </p>
* <p>
* Note 2: Debugger can also implement the asynchronous
* {@link org.eclipse.debug.core.commands.IRestartHandler}.
* </p>
| 0
|
<p>
* Note: Debug elements which support restart should implement this interface.
* Adopting to this interface is not enough.
* </p>
* <p>
* Note 2: Debugger can also implement the asynchronous
* {@link org.eclipse.debug.core.commands.IRestartHandler}.
* </p> | IRestart.java
|
[
0,
0,
0,
1,
0,
0,
0
] |
7,555
|
IRestart.java
|
* Causes this element to restart its execution.
| 0
|
* Causes this element to restart its execution. | IRestart.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,556
|
IRestart.java
|
* Returns whether this element can currently be restarted.
| 0
|
* Returns whether this element can currently be restarted. | IRestart.java
|
[
1,
0,
0,
0,
0,
0,
0
] |
7,557
|
IRestart.java
|
@see org.eclipse.debug.core.commands.IRestartHandler
| 0
|
@see org.eclipse.debug.core.commands.IRestartHandler | IRestart.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.