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
6,809
CPathContainerWizard.java
Constructor for ClasspathContainerWizard.
0
Constructor for ClasspathContainerWizard. | CPathContainerWizard.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,810
MonitorBenchmark.java
@link Monitor
0
@link Monitor | MonitorBenchmark.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,811
MonitorBenchmark.java
@author Justin T. Sampson
0
@author Justin T. Sampson | MonitorBenchmark.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,813
UncheckedExecutionException.java
@link java.util.concurrent.ExecutionException
0
@link java.util.concurrent.ExecutionException | UncheckedExecutionException.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,814
UncheckedExecutionException.java
@linkplain #getCause() cause
0
@linkplain #getCause() cause | UncheckedExecutionException.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,815
UncheckedExecutionException.java
@code Error
0
@code Error | UncheckedExecutionException.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,816
UncheckedExecutionException.java
@link ExecutionError
0
@link ExecutionError | UncheckedExecutionException.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,817
UncheckedExecutionException.java
@code * ExecutionException
0
@code * ExecutionException | UncheckedExecutionException.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,822
UncheckedExecutionException.java
@code ExecutionException
0
@code ExecutionException | UncheckedExecutionException.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,823
UncheckedExecutionException.java
Unchecked variant of {@link java.util.concurrent.ExecutionException}. As with * {@code ExecutionException}, the exception's {@linkplain #getCause() cause} comes from a failed * task, possibly run in another thread. * * <p>{@code UncheckedExecutionException} is intended as an alternative to * {@code ExecutionException} when the exception thrown by a task is an unchecked exception. * However, it may also wrap a checked exception in some cases. * * <p>When wrapping an {@code Error} from another thread, prefer {@link ExecutionError}. When * wrapping a checked exception, prefer {@code * ExecutionException}.
0
Unchecked variant of {@link java.util.concurrent.ExecutionException}. As with * {@code ExecutionException}, the exception's {@linkplain #getCause() cause} comes from a failed * task, possibly run in another thread. * * <p>{@code UncheckedExecutionException} is intended as an alternative to * {@code ExecutionException} when the exception thrown by a task is an unchecked exception. * However, it may also wrap a checked exception in some cases. * * <p>When wrapping an {@code Error} from another thread, prefer {@link ExecutionError}. When * wrapping a checked exception, prefer {@code * ExecutionException}. | UncheckedExecutionException.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,826
UncheckedExecutionException.java
* Creates a new instance with the given detail message and cause.
0
* Creates a new instance with the given detail message and cause. | UncheckedExecutionException.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,827
UncheckedExecutionException.java
* Creates a new instance with the given cause.
0
* Creates a new instance with the given cause. | UncheckedExecutionException.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,829
MapKey.java
@code Map
0
@code Map | MapKey.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,830
MapKey.java
@literal @
0
@literal @ | MapKey.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,832
MapKey.java
@link ClassMapKey
0
@link ClassMapKey | MapKey.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,833
MapKey.java
@link StringMapKey
0
@link StringMapKey | MapKey.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,837
MapKey.java
@code unwrapValue
0
@code unwrapValue | MapKey.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,840
MapKey.java
if {@code unwrapValue} is false, then the whole annotation will be the type and annotation * instances will be the keys. If {@code unwrapValue} is true, the value() type of key type * annotation will be the key type for injected map and the value instances will be the keys.
0
if {@code unwrapValue} is false, then the whole annotation will be the type and annotation * instances will be the keys. If {@code unwrapValue} is true, the value() type of key type * annotation will be the key type for injected map and the value instances will be the keys. | MapKey.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,843
JWTRedirectAuthenticationHandler.java
The {@link JWTRedirectAuthenticationHandler} extends * AltKerberosAuthenticationHandler to add WebSSO behavior for UIs. The expected * SSO token is a JsonWebToken (JWT). The supported algorithm is RS256 which * uses PKI between the token issuer and consumer. The flow requires a redirect * to a configured authentication server URL and a subsequent request with the * expected JWT token. This token is cryptographically verified and validated. * The user identity is then extracted from the token and used to create an * AuthenticationToken - as expected by the AuthenticationFilter.
0
The {@link JWTRedirectAuthenticationHandler} extends * AltKerberosAuthenticationHandler to add WebSSO behavior for UIs. The expected * SSO token is a JsonWebToken (JWT). The supported algorithm is RS256 which * uses PKI between the token issuer and consumer. The flow requires a redirect * to a configured authentication server URL and a subsequent request with the * expected JWT token. This token is cryptographically verified and validated. * The user identity is then extracted from the token and used to create an * AuthenticationToken - as expected by the AuthenticationFilter. | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,844
JWTRedirectAuthenticationHandler.java
<p> * The supported configuration properties are: * </p> * <ul> * <li>authentication.provider.url: the full URL to the authentication server. * This is the URL that the handler will redirect the browser to in order to * authenticate the user. It does not have a default value.</li> * <li>public.key.pem: This is the PEM formatted public key of the issuer of the * JWT token. It is required for verifying that the issuer is a trusted party. * DO NOT include the PEM header and footer portions of the PEM encoded * certificate. It does not have a default value.</li> * <li>expected.jwt.audiences: This is a list of strings that identify * acceptable audiences for the JWT token. The audience is a way for the issuer * to indicate what entity/s that the token is intended for. Default value is * null which indicates that all audiences will be accepted.</li> * <li>jwt.cookie.name: the name of the cookie that contains the JWT token. * Default value is "hadoop-jwt".</li> * </ul>
0
<p> * The supported configuration properties are: * </p> * <ul> * <li>authentication.provider.url: the full URL to the authentication server. * This is the URL that the handler will redirect the browser to in order to * authenticate the user. It does not have a default value.</li> * <li>public.key.pem: This is the PEM formatted public key of the issuer of the * JWT token. It is required for verifying that the issuer is a trusted party. * DO NOT include the PEM header and footer portions of the PEM encoded * certificate. It does not have a default value.</li> * <li>expected.jwt.audiences: This is a list of strings that identify * acceptable audiences for the JWT token. The audience is a way for the issuer * to indicate what entity/s that the token is intended for. Default value is * null which indicates that all audiences will be accepted.</li> * <li>jwt.cookie.name: the name of the cookie that contains the JWT token. * Default value is "hadoop-jwt".</li> * </ul> | JWTRedirectAuthenticationHandler.java
[ 0, 0, 1, 0, 0, 0, 0 ]
6,846
JWTRedirectAuthenticationHandler.java
@link AuthenticationFilter#init
0
@link AuthenticationFilter#init | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,847
JWTRedirectAuthenticationHandler.java
* @return valid true if the token has not expired; false otherwise
0
* @return valid true if the token has not expired; false otherwise | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,848
JWTRedirectAuthenticationHandler.java
* @param jwtToken the token that contains the expiration date to validate
0
* @param jwtToken the token that contains the expiration date to validate | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,851
JWTRedirectAuthenticationHandler.java
* @return valid true if signature verifies successfully; false otherwise
0
* @return valid true if signature verifies successfully; false otherwise | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,852
JWTRedirectAuthenticationHandler.java
* @param jwtToken the token that contains the signature to be validated
0
* @param jwtToken the token that contains the signature to be validated | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,853
JWTRedirectAuthenticationHandler.java
* @return true if valid
0
* @return true if valid | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,854
JWTRedirectAuthenticationHandler.java
* @param jwtToken the token to validate
0
* @param jwtToken the token to validate | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,855
JWTRedirectAuthenticationHandler.java
* @return url to use as login url for redirect
0
* @return url to use as login url for redirect | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,856
JWTRedirectAuthenticationHandler.java
* @param request for getting the original request URL
0
* @param request for getting the original request URL | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,857
JWTRedirectAuthenticationHandler.java
* @return serialized JWT token
0
* @return serialized JWT token | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,858
JWTRedirectAuthenticationHandler.java
* @param req servlet request to get the JWT token from
0
* @param req servlet request to get the JWT token from | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,859
JWTRedirectAuthenticationHandler.java
@param config * configuration properties to initialize the handler.
0
@param config * configuration properties to initialize the handler. | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,860
JWTRedirectAuthenticationHandler.java
* @param pk publicKey for the token signtature verification
0
* @param pk publicKey for the token signtature verification | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,861
JWTRedirectAuthenticationHandler.java
Initializes the authentication handler instance. * <p> * This method is invoked by the {@link AuthenticationFilter#init} method.
0
Initializes the authentication handler instance. * <p> * This method is invoked by the {@link AuthenticationFilter#init} method. | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,862
JWTRedirectAuthenticationHandler.java
// setup the URL to redirect to for authentication
0
// setup the URL to redirect to for authentication | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,863
JWTRedirectAuthenticationHandler.java
// setup the public key of the token issuer for verification
0
// setup the public key of the token issuer for verification | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,864
JWTRedirectAuthenticationHandler.java
// setup the list of valid audiences for token validation
0
// setup the list of valid audiences for token validation | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,865
JWTRedirectAuthenticationHandler.java
// parse into the list
0
// parse into the list | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,866
JWTRedirectAuthenticationHandler.java
// setup custom cookie name if configured
0
// setup custom cookie name if configured | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,867
JWTRedirectAuthenticationHandler.java
// unable to parse the token let's try and get another one
0
// unable to parse the token let's try and get another one | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,868
JWTRedirectAuthenticationHandler.java
Encapsulate the acquisition of the JWT token from HTTP cookies within the * request.
0
Encapsulate the acquisition of the JWT token from HTTP cookies within the * request. | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,869
JWTRedirectAuthenticationHandler.java
Create the URL to be used for authentication of the user in the absence of * a JWT token within the incoming request.
0
Create the URL to be used for authentication of the user in the absence of * a JWT token within the incoming request. | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,871
JWTRedirectAuthenticationHandler.java
Verify the signature of the JWT token in this method. This method depends * on the public key that was established during init based upon the * provisioned public key. Override this method in subclasses in order to * customize the signature verification behavior.
0
Verify the signature of the JWT token in this method. This method depends * on the public key that was established during init based upon the * provisioned public key. Override this method in subclasses in order to * customize the signature verification behavior. | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,873
JWTRedirectAuthenticationHandler.java
// if there were no expected audiences configured then just // consider any audience acceptable
0
// if there were no expected audiences configured then just // consider any audience acceptable | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 0, 0, 0, 1 ]
6,874
JWTRedirectAuthenticationHandler.java
// if any of the configured audiences is found then consider it // acceptable
0
// if any of the configured audiences is found then consider it // acceptable | JWTRedirectAuthenticationHandler.java
[ 0, 0, 0, 0, 0, 0, 1 ]
6,875
JWTRedirectAuthenticationHandler.java
* Validate that the expiration time of the JWT token has not been violated.
0
* Validate that the expiration time of the JWT token has not been violated. | JWTRedirectAuthenticationHandler.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,876
OperationsWhileTargetIsRunningTest_6_7.java
Contributors: * Ericsson AB - Initial implementation of Test cases
0
Contributors: * Ericsson AB - Initial implementation of Test cases | OperationsWhileTargetIsRunningTest_6_7.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,877
TestAMLivelinessMonitor.java
// make sure that monitor has started
0
// make sure that monitor has started | TestAMLivelinessMonitor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,878
TestAMLivelinessMonitor.java
// expired[0] would be set to true without resetTimer
0
// expired[0] would be set to true without resetTimer | TestAMLivelinessMonitor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,879
TestForStyledUpload.java
* @see com.vaadin.ui.Upload.Receiver#receiveUpload(String, String)
0
* @see com.vaadin.ui.Upload.Receiver#receiveUpload(String, String) | TestForStyledUpload.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,880
TestForStyledUpload.java
@return String
0
@return String | TestForStyledUpload.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,881
TestForStyledUpload.java
@return String
0
@return String | TestForStyledUpload.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,882
TestForStyledUpload.java
* Returns the fileName.
0
* Returns the fileName. | TestForStyledUpload.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,883
TestForStyledUpload.java
* Returns the mimeType.
0
* Returns the mimeType. | TestForStyledUpload.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,884
AbstractCEditorTextHover.java
Contributors: * QNX Software Systems - Initial API and implementation * IBM Corporation * Anton Leherbauer (Wind River Systems)
0
Contributors: * QNX Software Systems - Initial API and implementation * IBM Corporation * Anton Leherbauer (Wind River Systems) | AbstractCEditorTextHover.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,885
AbstractCEditorTextHover.java
* Abstract class for providing hover information for C elements.
0
* Abstract class for providing hover information for C elements. | AbstractCEditorTextHover.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,886
AbstractCEditorTextHover.java
@see ICEditorTextHover#setEditor(IEditorPart)
0
@see ICEditorTextHover#setEditor(IEditorPart) | AbstractCEditorTextHover.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,887
AbstractCEditorTextHover.java
@see ITextHover#getHoverRegion(ITextViewer, int)
0
@see ITextHover#getHoverRegion(ITextViewer, int) | AbstractCEditorTextHover.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,890
AbstractCEditorTextHover.java
@see ITextHoverExtension#getHoverControlCreator()
0
@see ITextHoverExtension#getHoverControlCreator() | AbstractCEditorTextHover.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,891
AbstractCEditorTextHover.java
@see ITextHoverExtension2#getInformationPresenterControlCreator()
0
@see ITextHoverExtension2#getInformationPresenterControlCreator() | AbstractCEditorTextHover.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,892
AbstractCEditorTextHover.java
@return the affordance string or <code>null</code> if disabled or no * key binding is defined
0
@return the affordance string or <code>null</code> if disabled or no * key binding is defined | AbstractCEditorTextHover.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,896
AbstractCEditorTextHover.java
Returns the tool tip affordance string.
0
Returns the tool tip affordance string. | AbstractCEditorTextHover.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,897
AbstractCEditorTextHover.java
If the hover offset falls within the selection range return the * region for the whole selection.
0
If the hover offset falls within the selection range return the * region for the whole selection. | AbstractCEditorTextHover.java
[ 0, 0, 0, 0, 0, 0, 1 ]
6,898
MIExecContinue.java
Contributors: * QNX Software Systems - Initial API and implementation * Wind River Systems - Modified for new DSF Reference Implementation
0
Contributors: * QNX Software Systems - Initial API and implementation * Wind River Systems - Modified for new DSF Reference Implementation | MIExecContinue.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,902
MIExecContinue.java
The parameters allThreads and groupId are mutually exclusive. allThreads must be false * if we are to use groupId. The value of this method is to only have one place * where we use the hard-coded strings.
0
The parameters allThreads and groupId are mutually exclusive. allThreads must be false * if we are to use groupId. The value of this method is to only have one place * where we use the hard-coded strings. | MIExecContinue.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,904
TestSetTimes.java
* Tests mod & access time in DFS.
0
* Tests mod & access time in DFS. | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,905
TestSetTimes.java
// create file and record atime/mtime
0
// create file and record atime/mtime | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,906
TestSetTimes.java
// record dir times
0
// record dir times | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,907
TestSetTimes.java
// set the access time to be one day in the past
0
// set the access time to be one day in the past | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,908
TestSetTimes.java
// check new access time on file
0
// check new access time on file | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,909
TestSetTimes.java
// set the modification time to be 1 hour in the past
0
// set the modification time to be 1 hour in the past | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,910
TestSetTimes.java
long mtime2 = mtime1 - (3600L * 1000L); fileSys.setTimes(file1, mtime2, -1);
0
long mtime2 = mtime1 - (3600L * 1000L); fileSys.setTimes(file1, mtime2, -1); | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,911
TestSetTimes.java
// check new modification time on file
0
// check new modification time on file | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,912
TestSetTimes.java
// check new modification time on file
0
// check new modification time on file | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,913
TestSetTimes.java
// shutdown cluster and restart
0
// shutdown cluster and restart | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,915
TestSetTimes.java
* Tests mod time change at close in DFS.
0
* Tests mod time change at close in DFS. | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,917
TestSetTimes.java
// parameter initialization
0
// parameter initialization | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,919
TestSetTimes.java
//close file after writing
0
//close file after writing | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,920
TestSetTimes.java
Test that when access time updates are not needed, the FSNamesystem * write lock is not taken by getBlockLocations. * Regression test for HDFS-3981.
0
Test that when access time updates are not needed, the FSNamesystem * write lock is not taken by getBlockLocations. * Regression test for HDFS-3981. | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,922
TestSetTimes.java
// getBlockLocations() should not need the write lock, since we just created // the file (and thus its access time is already within the 100-second // accesstime precision configured above).
0
// getBlockLocations() should not need the write lock, since we just created // the file (and thus its access time is already within the 100-second // accesstime precision configured above). | TestSetTimes.java
[ 0, 0, 1, 0, 0, 0, 0 ]
6,923
TestSetTimes.java
Test whether atime can be set explicitly even when the atime support is * disabled.
0
Test whether atime can be set explicitly even when the atime support is * disabled. | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,924
TestSetTimes.java
// Create an empty file
0
// Create an empty file | TestSetTimes.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,925
FreshValueGeneratorTest.java
@link FreshValueGenerator
0
@link FreshValueGenerator | FreshValueGeneratorTest.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,927
FreshValueGeneratorTest.java
Tests for {@link FreshValueGenerator}.
0
Tests for {@link FreshValueGenerator}. | FreshValueGeneratorTest.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,928
FreshValueGeneratorTest.java
// problem with equality of Type objects?
0
// problem with equality of Type objects? | FreshValueGeneratorTest.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,931
FreshValueGeneratorTest.java
// repeat a few times to make sure we don't stumble upon a bad Locale
0
// repeat a few times to make sure we don't stumble upon a bad Locale | FreshValueGeneratorTest.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,933
TotalHeapUsageEmulatorPlugin.java
@link TotalHeapUsageEmulatorPlugin
0
@link TotalHeapUsageEmulatorPlugin | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,934
TotalHeapUsageEmulatorPlugin.java
@link #HEAP_EMULATION_PROGRESS_INTERVAL
0
@link #HEAP_EMULATION_PROGRESS_INTERVAL | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,935
TotalHeapUsageEmulatorPlugin.java
@link TotalHeapUsageEmulatorPlugin
0
@link TotalHeapUsageEmulatorPlugin | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,936
TotalHeapUsageEmulatorPlugin.java
@link HeapUsageEmulatorCore
0
@link HeapUsageEmulatorCore | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,937
TotalHeapUsageEmulatorPlugin.java
@link #DEFAULT_EMULATION_PROGRESS_INTERVAL
0
@link #DEFAULT_EMULATION_PROGRESS_INTERVAL | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,938
TotalHeapUsageEmulatorPlugin.java
@link #load(long)
0
@link #load(long) | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,939
TotalHeapUsageEmulatorPlugin.java
@link #initialize(ResourceCalculatorPlugin, long)
0
@link #initialize(ResourceCalculatorPlugin, long) | TotalHeapUsageEmulatorPlugin.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,940
TotalHeapUsageEmulatorPlugin.java
// calibrate the core heap-usage utility
0
// calibrate the core heap-usage utility | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,941
TotalHeapUsageEmulatorPlugin.java
// get the target heap usage
0
// get the target heap usage | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,942
TotalHeapUsageEmulatorPlugin.java
// reset the core so that the garbage is reclaimed
0
// reset the core so that the garbage is reclaimed | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,943
TotalHeapUsageEmulatorPlugin.java
// store the emulation progress boundary
0
// store the emulation progress boundary | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,945
TotalHeapUsageEmulatorPlugin.java
// Make sure that at least 1 MB is incremented.
0
// Make sure that at least 1 MB is incremented. | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,948
TotalHeapUsageEmulatorPlugin.java
Clear references to all the GridMix-allocated special objects so that * heap usage is reduced.
0
Clear references to all the GridMix-allocated special objects so that * heap usage is reduced. | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,950
TotalHeapUsageEmulatorPlugin.java
// Create another String object of size 1MB
0
// Create another String object of size 1MB | TotalHeapUsageEmulatorPlugin.java
[ 1, 0, 0, 0, 0, 0, 0 ]