idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
15,100
called by the procedureexecutor to mark the procedure step as finished . concode_field_sep int running concode_elem_sep ArrayList<Procedure> subprocedures concode_elem_sep State state concode_elem_sep Log LOG concode_field_sep boolean setRollback concode_elem_sep void unsetRollback concode_elem_sep boolean isFailed con...
void function ( final Procedure arg0 ) { running -- ; }
15,101
applies a colorfilter to the paint objects used to render the svg . concode_field_sep boolean whiteMode concode_elem_sep InputStream data concode_elem_sep Integer replaceColor concode_elem_sep ColorFilter fillColorFilter concode_elem_sep boolean closeInputStream concode_elem_sep ColorFilter strokeColorFilter concode_el...
SVGBuilder function ( ColorFilter arg0 ) { this . strokeColorFilter = this . fillColorFilter = arg0 ; return this ; }
15,102
returns a hash code value for the object . concode_field_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep Logger log concode_elem_sep ResourceAdapter ra concode_field_sep ManagedConnection createManagedConnection concode_elem_sep void setResourceAdapter concode_elem_sep void setLogWrite...
int function ( ) { int loc0 = 17 ; return loc0 ; }
15,103
gets the value of the currency property . concode_field_sep String usageContext concode_elem_sep String catalogContractId concode_elem_sep String description concode_elem_sep String currency concode_elem_sep long serialVersionUID concode_field_sep String getUsageContext concode_elem_sep String getCatalogContractId conc...
String function ( ) { return currency ; }
15,104
returns the return value of the sslengine operation . concode_field_sep int bytesProduced concode_elem_sep int bytesConsumed concode_elem_sep SSLEngineResult.HandshakeStatus handshakeStatus concode_elem_sep SSLEngineResult.Status status concode_field_sep int bytesProduced concode_elem_sep HandshakeStatus getHandshakeSt...
Status function ( ) { return status ; }
15,105
encode a password as a base64-encoded char array . concode_field_sep String secretKeyId concode_elem_sep SecretKeyHolder secretKeyHolder concode_elem_sep Logger logger concode_elem_sep SaslServer saslServer concode_elem_sep String QOP_AUTH_CONF concode_elem_sep String QOP_AUTH concode_elem_sep String DEFAULT_REALM conc...
char [ ] function ( String arg0 ) { Preconditions . checkNotNull ( arg0 , "srini_string" ) ; return Base64 . encode ( Unpooled . wrappedBuffer ( arg0 . getBytes ( StandardCharsets . UTF_8 ) ) ) . toString ( StandardCharsets . UTF_8 ) . toCharArray ( ) ; }
15,106
retrieve the full class name of the manakin transformer which will generate this step 's dri , for display in manakin xml-ui . this class must extend the org.dspace.app.xmlui.aspect.submission.steptransformer class . this property is only used by the manakin xml-ui , and therefore is not relevant if you are using the j...
String function ( ) { return xmlBindingClassName ; }
15,107
expires events that fall out of the window every expire_events_threshold so that the window does not grow too big . concode_field_sep WindowLifecycleListener<T> windowLifecycleListener concode_elem_sep TriggerPolicy<T> triggerPolicy concode_elem_sep ReentrantLock lock concode_elem_sep int EXPIRE_EVENTS_THRESHOLD concod...
void function ( ) { if ( eventsSinceLastExpiry . incrementAndGet ( ) >= EXPIRE_EVENTS_THRESHOLD ) { scanEvents ( false ) ; } }
15,108
checks if the given value is set to `` on '' . concode_field_sep String OVERRIDE_SETTINGS_FILE concode_elem_sep String SETTINGS_FILE concode_elem_sep String OVERRIDE_ACCEPTED_DEVICES concode_field_sep ProxySelector buildSelector concode_elem_sep File getSettingsFile concode_elem_sep ProxySelector installPacProxyIfAvail...
boolean function ( Object arg0 ) { return Integer . valueOf ( 1 ) . equals ( arg0 ) ; }
15,109
set date of last modification concode_field_sep String DIR concode_elem_sep java.util.Date created concode_elem_sep String SYMLINK concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep java.util.Date modified concode_elem_sep long id concode_elem_sep String label concode_elem_sep Map POSS...
void function ( java . util . Date arg0 ) { this . modified = arg0 ; }
15,110
creates a copy of this list . concode_field_sep long[] data concode_elem_sep int size concode_elem_sep long[] EMPTY_ARRAY concode_elem_sep int increment concode_field_sep void add concode_elem_sep void set concode_elem_sep int size concode_elem_sep long get concode_elem_sep void clear concode_elem_sep long[] toArray co...
Object function ( ) { final LongList loc0 = ( LongList ) super . clone ( ) ; loc0 . data = data . clone ( ) ; return loc0 ; }
15,111
tear down after testing . concode_field_sep String webUrl concode_elem_sep WebClient webClient concode_field_sep void setUpClass concode_elem_sep void doTest concode_elem_sep void testBuilderDefinedFlowWithMethodCall concode_elem_sep void setUp concode_elem_sep void tearDownClass concode_elem_sep void testXmlDefinedFlo...
void function ( ) { webClient . closeAllWindows ( ) ; }
15,112
set the max . request size in bytes . if this size is exceed we will send a `` 413 request entity too large '' to the client . concode_field_sep int maxHeaderSize concode_elem_sep ServerBootstrap bootstrap concode_elem_sep List<ChannelHandler> httpChannelHandlers concode_elem_sep SSLContext sslContext concode_elem_sep ...
void function ( int arg0 ) { this . maxRequestSize = arg0 ; }
15,113
return lower triangular factor concode_field_sep int pivsign concode_elem_sep double[][] LU concode_elem_sep int[] piv concode_elem_sep int m concode_elem_sep int n concode_field_sep double det concode_elem_sep int[] getPivot concode_elem_sep Matrix solve concode_elem_sep double[] getDoublePivot concode_elem_sep boolea...
Matrix function ( ) { Matrix loc0 = new Matrix ( m , n ) ; double [ ] [ ] loc1 = loc0 . getArray ( ) ; for ( int loc2 = 0 ; loc2 < m ; loc2 ++ ) { for ( int loc3 = 0 ; loc3 < n ; loc3 ++ ) { if ( loc2 > loc3 ) { loc1 [ loc2 ] [ loc3 ] = LU [ loc2 ] [ loc3 ] ; } else if ( loc2 == loc3 ) { loc1 [ loc2 ] [ loc3 ] = 1.0 ; ...
15,114
get the uuid from the entity at the specified index concode_field_sep NamedResource parent concode_elem_sep String SLASH concode_field_sep JsonNode getError concode_elem_sep WebResource resource concode_elem_sep List<JsonNode> getEntries concode_elem_sep WebResource withParams concode_elem_sep WebResource withToken con...
UUID function ( JsonNode arg0 , int arg1 ) { return UUID . fromString ( getEntity ( arg0 , arg1 ) . get ( "srini_string" ) . asText ( ) ) ; }
15,115
adds an optional argument list to the method information . concode_field_sep String displayName concode_elem_sep String toolTip concode_elem_sep IMethodInfo methodInfo concode_field_sep void setName concode_elem_sep boolean isStatic concode_elem_sep String getName concode_elem_sep void setToolTip concode_elem_sep void ...
void function ( IArgumentInfoList arg0 ) { ( ( org . eclipse . birt . report . model . metadata . MethodInfo ) methodInfo ) . addArgumentList ( arg0 ) ; }
15,116
removes an element at a given index , shifting elements at greater indicies down one . concode_field_sep int size concode_elem_sep int[] values concode_field_sep void add concode_elem_sep int set concode_elem_sep void growIfNeeded concode_elem_sep void clear concode_elem_sep void insert concode_elem_sep boolean remove ...
void function ( int arg0 ) { if ( arg0 >= size ) { throw new IndexOutOfBoundsException ( "srini_string" ) ; } else if ( arg0 < 0 ) { throw new IndexOutOfBoundsException ( "srini_string" ) ; } size -- ; System . arraycopy ( values , arg0 + 1 , values , arg0 , size - arg0 ) ; }
15,117
reset this future to the initial state . concode_field_sep T result concode_elem_sep int S_CANCELED concode_elem_sep int S_ERROR concode_elem_sep int S_DONE concode_elem_sep int S_READY concode_elem_sep Exception error concode_elem_sep int state concode_field_sep boolean cancel concode_elem_sep boolean isCancelled conc...
boolean function ( ) { if ( state == S_READY ) { return false ; } state = S_READY ; result = null ; error = null ; return true ; }
15,118
set the subject of this message . concode_field_sep Map<String,String> headers concode_elem_sep List<Attachment> attachments concode_elem_sep String characterSet concode_elem_sep Map<RecipientType,List<EmailAddress>> recipients concode_elem_sep String subject concode_elem_sep List<EmailAddress> replyTo concode_elem_sep...
void function ( String arg0 ) { this . subject = arg0 ; }
15,119
convert ebus type uint concode_field_sep byte CRC_TAB_8_VALUE[] concode_elem_sep Logger logger concode_field_sep int decodeBCD concode_elem_sep byte expandByte concode_elem_sep int decodeUChar concode_elem_sep int decodeLng concode_elem_sep int decodeDATA1b concode_elem_sep float decodeDATA2c concode_elem_sep float dec...
int function ( byte arg0 , byte arg1 ) { int loc0 = decodeInt ( arg0 , arg1 ) ; long loc1 = loc0 & 0xffffffffl ; return ( int ) loc1 ; }
15,120
tests whether a rehash is in progress concode_field_sep RpcManager rpcManager concode_elem_sep CommandsFactory cf concode_elem_sep CacheNotifier cacheNotifier concode_elem_sep Configuration configuration concode_elem_sep boolean trace concode_elem_sep StateTransferManager stateTransferManager concode_elem_sep Log log c...
boolean function ( ) { return stateTransferManager . isStateTransferInProgress ( ) ; }
15,121
retrieve the field type represented by this instance . concode_field_sep String m_alias concode_elem_sep CustomFieldContainer m_parent concode_elem_sep FieldType m_field concode_elem_sep GraphicalIndicator m_indicator concode_elem_sep CustomFieldLookupTable m_table concode_field_sep GraphicalIndicator getGraphicalIndic...
FieldType function ( ) { return m_field ; }
15,122
gets the status of the undo command . concode_field_sep int cursor concode_elem_sep ArrayList<Memento> mementoStateHistory concode_elem_sep int maxHistorySize concode_field_sep boolean isRedo concode_elem_sep void undo concode_elem_sep void redo concode_elem_sep void addState
boolean function ( ) { return mementoStateHistory . size ( ) > 0 && cursor > 0 ; }
15,123
move the cursor to offset index . concode_field_sep Object SELECTION_END concode_elem_sep Object SELECTION_START concode_field_sep int getSelectionStart concode_elem_sep boolean extendUp concode_elem_sep boolean extendLeft concode_elem_sep boolean extendRight concode_elem_sep int findEdge concode_elem_sep boolean moveD...
void function ( Spannable arg0 , int arg1 ) { setSelection ( arg0 , arg1 , arg1 ) ; }
15,124
creates a post request . concode_field_sep List<HandlerAdapter> handlerAdapters concode_elem_sep List<HandlerMapping> handlerMappings concode_elem_sep HttpSession session concode_elem_sep MockHttpServletResponse http concode_elem_sep ModelAndView modelAndView concode_field_sep Response handle concode_elem_sep MockHttpS...
MockHttpServletRequest function ( final String arg0 ) { MockHttpServletRequest loc0 = new MockHttpServletRequest ( "srini_string" , arg0 ) ; return loc0 ; }
15,125
casts the passed object into the servantactivator . concode_field_sep PlaceHolder placeHolder concode_field_sep ServantActivator extract concode_elem_sep ServantActivator read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write concode_elem_sep ServantActiv...
ServantActivator function ( org . omg . CORBA . Object arg0 ) { try { return ( ServantActivator ) arg0 ; } catch ( ClassCastException loc0 ) { BAD_PARAM loc1 = new BAD_PARAM ( ) ; loc1 . initCause ( loc0 ) ; throw loc1 ; } }
15,126
sets the value of the dataprovider property . concode_field_sep Long size concode_elem_sep String name concode_elem_sep String description concode_elem_sep Long id concode_elem_sep AudienceSegmentDataProvider dataProvider concode_elem_sep AudienceSegmentAudienceSegmentType type concode_elem_sep AudienceSegmentStatus st...
void function ( AudienceSegmentDataProvider arg0 ) { this . dataProvider = arg0 ; }
15,127
returns true if this scope is a singleton that should be loaded eagerly in stage . concode_field_sep Scoping SINGLETON_INSTANCE concode_elem_sep Scoping EAGER_SINGLETON concode_elem_sep Scoping UNSCOPED concode_elem_sep Scoping SINGLETON_ANNOTATION concode_field_sep V acceptVisitor concode_elem_sep V acceptVisitor conc...
boolean function ( Stage arg0 ) { if ( this == EAGER_SINGLETON ) { return true ; } if ( arg0 == Stage . PRODUCTION ) { return this == SINGLETON_ANNOTATION || this == SINGLETON_INSTANCE ; } return false ; }
15,128
ensures that this object is in the running state . if this object is not running , then the call has the effect of setting the starttime attribute to the current value of system.currenttimemillis and setting the running attribute to true . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep l...
void function ( ) { startTime = System . currentTimeMillis ( ) ; running = true ; }
15,129
return the scope of the library . concode_field_sep File file concode_elem_sep LibraryScope scope concode_elem_sep boolean unpackRequired concode_elem_sep String name concode_field_sep String getName concode_elem_sep boolean isUnpackRequired concode_elem_sep File getFile
LibraryScope function ( ) { return this . scope ; }
15,130
this method may be used to determine if the specified ip address is contained within the ip address range . concode_field_sep BigInteger m_end concode_elem_sep BigInteger m_next concode_elem_sep byte[] m_begin concode_field_sep InetAddress next concode_elem_sep Iterator<InetAddress> iterator concode_elem_sep boolean ha...
boolean function ( InetAddress arg0 ) { return InetAddressUtils . isInetAddressInRange ( arg0 . getAddress ( ) , m_begin , m_end ) ; }
15,131
return the wrapped methodparameter , if any . note : either methodparameter or field is available . concode_field_sep Field field concode_elem_sep MethodParameter methodParameter concode_elem_sep Annotation[] fieldAnnotations concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Field getField...
MethodParameter function ( ) { return this . methodParameter ; }
15,132
close a statement without throwing an exception . concode_field_sep PlaceHolder placeHolder concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep ResultSet getGeneratedKeys concode_elem_sep String escapeMetaDataPattern
void function ( Statement arg0 ) { if ( arg0 != null ) { try { arg0 . close ( ) ; } catch ( SQLException loc0 ) { } } }
15,133
returns the list of classes in the specified package and in the specified search scope . concode_field_sep ExtensionPointName<PsiElementFinder> EP_NAME concode_field_sep boolean processPackageDirectories concode_elem_sep boolean processPackageDirectories concode_elem_sep PsiPackage findPackage concode_elem_sep PsiClass...
PsiClass [ ] function ( @ NotNull PsiPackage arg0 , @ NotNull GlobalSearchScope arg1 ) { return PsiClass . EMPTY_ARRAY ; }
15,134
removes one pattern from the list of patterns in this inputdecoder concode_field_sep boolean partialMatch concode_elem_sep List<Character> currentMatching concode_elem_sep KeyStroke fullMatch concode_elem_sep List<CharacterPattern> bytePatterns concode_elem_sep TerminalPosition lastReportedTerminalPosition concode_elem...
boolean function ( CharacterPattern arg0 ) { return bytePatterns . remove ( arg0 ) ; }
15,135
a list of ecscluster objects containing the cluster descriptions . concode_field_sep String nextToken concode_elem_sep com.amazonaws.internal.SdkInternalList<EcsCluster> ecsClusters concode_field_sep DescribeEcsClustersResult withEcsClusters concode_elem_sep DescribeEcsClustersResult withEcsClusters concode_elem_sep vo...
void function ( java . util . Collection < EcsCluster > arg0 ) { if ( arg0 == null ) { this . ecsClusters = null ; return ; } this . ecsClusters = new com . amazonaws . internal . SdkInternalList < EcsCluster > ( arg0 ) ; }
15,136
unmodifiable view of modified features . it is imperative that the user manually synchronize on the map when iterating over any of its collection views : set s = diff.modified2.keyset ; / / need n't be in synchronized block ... synchronized diff / / synchronizing on diff , not diff.modified2 or s ! iterator i = s.itera...
Map < String , SimpleFeature > function ( ) { return modified2 ; }
15,137
returns the severity of this inferenceissue . will be one of the istatus #ok , istatus #warning , or istatus #error . concode_field_sep int severity concode_elem_sep String message concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String getMessage
int function ( ) { return severity ; }
15,138
specify the statement separator , if a custom one . defaults to '' ; '' if not specified and falls back to '' \ n '' as a last resort ; may be set to scriptutils #eof_statement_separator to signal that each script contains a single statement without a separator . concode_field_sep String sqlScriptEncoding concode_elem_...
void function ( String arg0 ) { this . separator = arg0 ; }
15,139
returns a url for accessing the artifact from the local machine ie preferring a local repo , using the default remote sits sonatype for snapshots and maven.org for releases concode_field_sep Function<MavenArtifact,String> APACHE_SNAPSHOT_URL_GENERATOR concode_elem_sep Function<MavenArtifact,String> releaseUrlGenerator ...
String function ( MavenArtifact arg0 ) { return new MavenRetriever ( ) . getLocalUrl ( arg0 ) ; }
15,140
get the value class for job outputs . concode_field_sep JobID jobId concode_elem_sep Credentials credentials concode_elem_sep UserGroupInformation ugi concode_elem_sep org.apache.hadoop.mapred.JobConf conf concode_field_sep String[] toTimestampStrs concode_elem_sep JobID getJobID concode_elem_sep Path[] getLocalCacheAr...
Class < ? > function ( ) { return conf . getOutputValueClass ( ) ; }
15,141
see appel section 19.1 : converts cfg into `` edge-split '' form , such that each node either a unique successor or unique predecessor . in addition , the ssa form we use enforces a further constraint , requiring each block with a final instruction that returns a value to have a primary successor that has no other pred...
void function ( SsaMethod arg0 ) { edgeSplitPredecessors ( arg0 ) ; edgeSplitMoveExceptionsAndResults ( arg0 ) ; edgeSplitSuccessors ( arg0 ) ; }
15,142
gets the value of the oid property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the oid property . for example , to add a new item , do as follows...
List < String > function ( ) { return this . oid ; }
15,143
returns the rise range . concode_field_sep Range rise concode_elem_sep Range set concode_field_sep void setSet concode_elem_sep void setRise concode_elem_sep Range getSet
Range function ( ) { return rise ; }
15,144
create a readable and parseable audit log string for a successful event . concode_field_sep Log LOG concode_elem_sep String KEY_VAL_SEPARATOR concode_elem_sep String REFRESH_QUEUE concode_elem_sep String UNAUTHORIZED_USER concode_elem_sep char PAIR_SEPARATOR concode_elem_sep String JOBTRACKER concode_elem_sep String RE...
void function ( String arg0 , String arg1 , String arg2 ) { if ( LOG . isInfoEnabled ( ) ) { LOG . info ( createSuccessLog ( arg0 , arg1 , arg2 ) ) ; } }
15,145
sets the payload of this user notification event . concode_field_sep UserNotificationEvent _userNotificationEvent concode_field_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isArchived concode_elem_sep boolean isCachedModel concode_elem_sep com.liferay.portlet.expa...
void function ( java . lang . String arg0 ) { _userNotificationEvent . setPayload ( arg0 ) ; }
15,146
changes price of cat to a price given by parameter concode_field_sep int quantity concode_elem_sep String color concode_elem_sep boolean trained concode_elem_sep String species concode_elem_sep double price concode_elem_sep int nextCatID concode_elem_sep String name concode_elem_sep double weight concode_elem_sep int i...
void function ( double arg0 ) { price = arg0 ; }
15,147
create a simpleschedulebuilder set to repeat the given number of times - 1 with an interval of the given number of seconds . note : total count = 1 at start time + repeat count concode_field_sep int m_nMisfireInstruction concode_elem_sep long m_nInterval concode_elem_sep int m_nRepeatCount concode_field_sep SimpleSched...
SimpleScheduleBuilder function ( final int arg0 , final int arg1 ) { ValueEnforcer . isGT0 ( arg0 , "srini_string" ) ; return simpleSchedule ( ) . withIntervalInSeconds ( arg1 ) . withRepeatCount ( arg0 - 1 ) ; }
15,148
reinitialise . concode_field_sep int bufpos concode_elem_sep boolean prevCharIsLF concode_elem_sep int bufsize concode_elem_sep int available concode_elem_sep int tabSize concode_elem_sep java.io.Reader inputStream concode_elem_sep int line concode_elem_sep int bufcolumn[] concode_elem_sep int bufline[] concode_elem_se...
void function ( java . io . InputStream arg0 , String arg1 ) { ReInit ( arg0 , arg1 , 1 , 1 , 4096 ) ; }
15,149
removes the sip provider from this listening point . concode_field_sep SipStack sipStack concode_elem_sep int port concode_elem_sep MessageProcessor messageProcessor[] concode_elem_sep String host concode_elem_sep String transport concode_elem_sep SipProvider sipProviderImpl concode_field_sep String makeKey concode_ele...
void function ( ) { this . sipProviderImpl = null ; }
15,150
set user message level . defines what kind of messages the client is interested in . concode_field_sep int hand concode_elem_sep String password concode_elem_sep int HAND_LEFT concode_elem_sep int KEY_BLASTER concode_elem_sep int KEY_SHOTGUN concode_elem_sep int rate concode_elem_sep String skin concode_elem_sep int KE...
void function ( int arg0 ) { this . message = arg0 ; }
15,151
this method processes the supplied information to extract the relevant details . concode_field_sep ExpressionHandler predicate concode_elem_sep boolean usesHeaders concode_elem_sep ProcessorAction action concode_elem_sep boolean usesContent concode_elem_sep Logger log concode_field_sep List<ConfigMessage> init concode_...
boolean function ( Trace arg0 , Node arg1 , Direction arg2 , Map < String , ? > arg3 , Object [ ] arg4 ) { if ( predicate != null ) { return predicate . test ( arg0 , arg1 , arg2 , arg3 , arg4 ) ; } return true ; }
15,152
write property to the xml . concode_field_sep StringBuilder buffer concode_elem_sep int CLOSING concode_elem_sep int OPENING concode_elem_sep int NO_CONTENT concode_elem_sep Writer writer concode_field_sep void writeText concode_elem_sep void sendData concode_elem_sep void writeElement concode_elem_sep void writeElemen...
void function ( String arg0 , String arg1 , String arg2 ) { writeElement ( arg0 , arg1 , OPENING ) ; buffer . append ( arg2 ) ; writeElement ( arg0 , arg1 , CLOSING ) ; }
15,153
accessor for the configuration supplied when the population strategy is initialized . concode_field_sep Log log concode_elem_sep Configuration config concode_field_sep void init concode_elem_sep Object getValue concode_elem_sep Object getValueFromTag concode_elem_sep boolean isFormInError concode_elem_sep String[] getV...
Configuration function ( ) { return this . config ; }
15,154
close jdbc connection . concode_field_sep Properties connectionProperties concode_elem_sep Logger logger concode_elem_sep String databaseDriver concode_elem_sep Connection connection concode_elem_sep String databaseUrl concode_field_sep Connection getConnection concode_elem_sep void setPassword concode_elem_sep void se...
void function ( ) { try { connection . close ( ) ; } catch ( SQLException loc0 ) { throw new RuntimeException ( "srini_string" , loc0 ) ; } }
15,155
hook for blocking the launching of intents by the cordova application . this will be called when the webview will not navigate to a page , but could launch an intent to handle the url . return false to block this : if any plugin returns false , cordova will block the navigation . if all plugins return null , the defaul...
Boolean function ( String arg0 ) { return null ; }
15,156
bind an entitymanager to the current http context . concode_field_sep ThreadLocal<EntityManager> currentEntityManager concode_elem_sep String CURRENT_ENTITY_MANAGER concode_field_sep void bindForCurrentContext concode_elem_sep void bindForSync concode_elem_sep T withTransaction concode_elem_sep void withTransaction con...
void function ( EntityManager arg0 ) { bindForCurrentContext ( arg0 , false ) ; }
15,157
subclasses may override this method to perform custom layer updates . this will be called with the transaction lock held . subclass implementations of this method must call the superclass implementation . returns false if there is still work to be done after this update is complete . concode_field_sep PointF offset con...
void function ( RenderContext arg0 ) { if ( mNewPosition != null ) { mPosition = mNewPosition ; mNewPosition = null ; } if ( mNewResolution != 0.0f ) { mResolution = mNewResolution ; mNewResolution = 0.0f ; } }
15,158
returns purchase information for a given product , or null if there is no purchase . concode_field_sep Map<String,SkuDetails> mSkuMap concode_elem_sep Map<String,Purchase> mPurchaseMap concode_field_sep void erasePurchase concode_elem_sep List<String> getAllOwnedSkus concode_elem_sep List<String> getAllOwnedSkus concod...
Purchase function ( String arg0 ) { return mPurchaseMap . get ( arg0 ) ; }
15,159
helper for error callbacks that just returns the status.error by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String ...
void function ( int arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . ERROR , arg0 ) ) ; }
15,160
gets the id . concode_field_sep String watermark concode_elem_sep ExchangeService service concode_elem_sep String id concode_field_sep boolean getUsesWatermark concode_elem_sep void loadFromXml concode_elem_sep void setWaterMark concode_elem_sep String getWaterMark concode_elem_sep void setId concode_elem_sep ExchangeS...
String function ( ) { return id ; }
15,161
extract the response body and decode it , returning it as a single . concode_field_sep PlaceHolder placeHolder concode_field_sep ResponseExtractor<Single<HttpHeaders>> headers concode_elem_sep BodyExtractor<Single<T>> as concode_elem_sep BodyExtractor<Single<T>> as concode_elem_sep ResponseExtractor<Single<ResponseEnti...
ResponseExtractor < Single < T >> function ( Class < T > arg0 ) { ResolvableType loc0 = ResolvableType . forClass ( arg0 ) ; return body ( loc0 ) ; }
15,162
the textual data of the content . concode_field_sep String charset concode_elem_sep String data concode_field_sep void setCharset concode_elem_sep void setData concode_elem_sep Content withData concode_elem_sep Content withCharset concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Content cl...
String function ( ) { return this . data ; }
15,163
returns copy of list of unresolved classes supposed to be called from ui thread concode_field_sep List<UnresolvedClass> unresolvedClassList concode_elem_sep JVMProblemModel model concode_elem_sep List<UnresolvedModule> unresolvedModuleList concode_field_sep boolean isNeedReport concode_elem_sep void addRequieredJava co...
List < UnresolvedClass > function ( ) { synchronized ( unresolvedClassList ) { List < UnresolvedClass > loc0 = new ArrayList < UnresolvedClass > ( unresolvedClassList ) ; if ( ! model . isTestEnvironment ( ) ) { unresolvedClassList . clear ( ) ; } return loc0 ; } }
15,164
called on general exception that has to be silent . concode_field_sep Context context concode_field_sep void IO concode_elem_sep void FileNotFound concode_elem_sep void Unexpected
void function ( Exception arg0 ) { }
15,165
deserialize a remoteinvocationresult object from the given inputstream . gives decorateinputstream a chance to decorate the streamfirst for example , for custom encryption or compression . creates an objectinputstream via createobjectinputstream andcalls doreadremoteinvocationresult to actually read the object.can be o...
RemoteInvocationResult function ( InputStream arg0 , String arg1 ) { ObjectInputStream loc0 = createObjectInputStream ( decorateInputStream ( arg0 ) , arg1 ) ; try { return doReadRemoteInvocationResult ( loc0 ) ; } finally { loc0 . close ( ) ; } }
15,166
sets the food item 's oven space units to the given int . concode_field_sep long deliveryWaitStartTime concode_elem_sep DecimalFormat df concode_elem_sep int cookTime concode_elem_sep long cookWaitStartTime concode_elem_sep int prepTime concode_elem_sep long cookStartTime concode_elem_sep long preparationStartTime conc...
void function ( int arg0 ) { this . ovenSpaceUnits = arg0 ; }
15,167
load 4 bytes from the provided array at the indicated offset . concode_field_sep int BYTE_ARRAY_BASE_OFFSET concode_elem_sep Unsafe theUnsafe concode_elem_sep LittleEndianBytes byteArray concode_field_sep long load64 concode_elem_sep void putLongLittleEndian concode_elem_sep void putLongLittleEndian concode_elem_sep vo...
int function ( byte [ ] arg0 , int arg1 ) { return ( arg0 [ arg1 ] & 0xFF ) | ( ( arg0 [ arg1 + 1 ] & 0xFF ) << 8 ) | ( ( arg0 [ arg1 + 2 ] & 0xFF ) << 16 ) | ( ( arg0 [ arg1 + 3 ] & 0xFF ) << 24 ) ; }
15,168
supports iterating the children elements in some generic processor or browser all defined children will be listed , even if they have no value on this instance note that the actual content of primitive or xhtml elements is not iterated explicitly . to find these , the processing code must recognise the element as a pri...
List < Property > function ( ) { List < Property > loc0 = new ArrayList < Property > ( ) ; listChildren ( loc0 ) ; return loc0 ; }
15,169
fill in the value by data from the cdr stream . concode_field_sep ForwardRequest value concode_field_sep TypeCode _type concode_elem_sep void _write
void function ( InputStream arg0 ) { value = ForwardRequestHelper . read ( arg0 ) ; }
15,170
stop all background threads concode_field_sep CountDownLatch startLatch concode_elem_sep CopyOnWriteArrayList<Throwable> failures concode_elem_sep int minFieldSize concode_elem_sep int maxFieldSize concode_elem_sep ESLogger logger concode_elem_sep CountDownLatch stopLatch concode_elem_sep AtomicBoolean stop concode_ele...
void function ( ) { if ( stop . get ( ) ) { return ; } stop . set ( true ) ; Assert . assertThat ( "srini_string" , stopLatch . await ( 6 , TimeUnit . MINUTES ) , equalTo ( true ) ) ; assertNoFailures ( ) ; }
15,171
concrete implementation of arraysortedassert #issortedaccordingto comparator . concode_field_sep Arrays arrays concode_elem_sep Failures failures concode_elem_sep CharArrays INSTANCE concode_field_sep void assertEndsWith concode_elem_sep void assertStartsWith concode_elem_sep CharArrays instance concode_elem_sep void a...
void function ( AssertionInfo arg0 , char [ ] arg1 , Comparator < ? super Character > arg2 ) { Arrays . assertIsSortedAccordingToComparator ( arg0 , failures , arg1 , arg2 ) ; }
15,172
returns a function that accepts a supplier and returns the result of invoking supplier #get on that supplier . concode_field_sep long serialVersionUID concode_elem_sep Supplier<T> delegate concode_elem_sep long expirationNanos concode_elem_sep long durationNanos concode_elem_sep T instance concode_elem_sep Function<? s...
Function < Supplier < T > , T > function ( ) { @ SuppressWarnings ( "srini_string" ) SupplierFunction < T > loc0 = ( SupplierFunction < T > ) SupplierFunctionImpl . INSTANCE ; return loc0 ; }
15,173
sets the foreground color and font of the specified graphics context to that specified in this style . concode_field_sep Color color concode_elem_sep Font lastFont concode_elem_sep Font lastStyledFont concode_elem_sep boolean bold concode_elem_sep FontMetrics fontMetrics concode_elem_sep boolean italic concode_field_se...
void function ( Graphics arg0 , Font arg1 ) { Font loc0 = getStyledFont ( arg1 ) ; arg0 . setFont ( loc0 ) ; arg0 . setColor ( color ) ; }
15,174
hook for redirecting requests . applies to webview requests as well as requests made by plugins . to handle the request directly , return a uri in the form : cdvplugin : / / pluginid / ... and implement handleopenforread . to make this easier , use the topluginuri and frompluginuri helpers : public uri remapuri uri uri...
Uri function ( Uri arg0 ) { return null ; }
15,175
optional . data attached to the event that can be used by the decider in subsequent workflow tasks . constraints : length : 0 - 32768 concode_field_sep String control concode_elem_sep String runId concode_elem_sep Long decisionTaskCompletedEventId concode_elem_sep String workflowId concode_field_sep RequestCancelExtern...
void function ( String arg0 ) { this . control = arg0 ; }
15,176
package scoped to allow manifest fetching from other hivedriver classes helper to initialize attributes and return one . concode_field_sep String HOST_PROPERTY_KEY concode_elem_sep Attributes manifestAttributes concode_elem_sep boolean JDBC_COMPLIANT concode_elem_sep String PORT_PROPERTY_KEY concode_elem_sep String DBN...
String function ( Attributes . Name arg0 ) { try { loadManifestAttributes ( ) ; } catch ( IOException loc0 ) { throw new SQLException ( "srini_string" , loc0 ) ; } return manifestAttributes . getValue ( arg0 ) ; }
15,177
returns a textmatcher for matching the text that does not starts with the given string concode_field_sep PlaceHolder placeHolder concode_field_sep TextMatcher notContainsWord concode_elem_sep TextMatcher notContainsWord concode_elem_sep TextMatcher iNotStartsWith concode_elem_sep TextMatcher iNotStartsWith concode_elem...
TextMatcher function ( String arg0 ) { return new NegatedTextMatcher ( startsWith ( arg0 ) ) ; }
15,178
converts an action2 to a funcn to allow heterogeneous handling of functions with different arities . concode_field_sep PlaceHolder placeHolder concode_field_sep FuncN<R> fromFunc concode_elem_sep FuncN<R> fromFunc concode_elem_sep FuncN<R> fromFunc concode_elem_sep FuncN<R> fromFunc concode_elem_sep FuncN<R> fromFunc c...
FuncN < Void > function ( final Action2 < ? super T0 , ? super T1 > arg0 ) { return new FuncN < Void > ( ) { @ SuppressWarnings ( "srini_string" ) @ Override public Void call ( Object ... arg1 ) { if ( arg1 . length != 2 ) { throw new RuntimeException ( "srini_string" ) ; } arg0 . call ( ( T0 ) arg1 [ 0 ] , ( T1 ) arg1...
15,179
adds a nested prefix which is a child of this entity type concode_field_sep String prefix concode_elem_sep String description concode_elem_sep List<String> nestedPrefixes concode_elem_sep long serialVersionUID concode_elem_sep String title concode_elem_sep String parentPrefix concode_elem_sep List<String> entityAccessV...
void function ( String arg0 ) { if ( this . nestedPrefixes == null ) { this . nestedPrefixes = new Vector < String > ( ) ; } if ( ! this . nestedPrefixes . contains ( arg0 ) ) { this . nestedPrefixes . add ( arg0 ) ; } }
15,180
get a comparison key for an object . this must satisfy the rule that if two objects are equal according to the xpath eq operator , then their comparison keys are equal according to the java equals method , and vice versa . there is no requirement that the comparison keys should reflect the ordering of the underlying ob...
ComparisonKey function ( AtomicValue arg0 ) { return ( arg0 == null ? new ComparisonKey ( Type . EMPTY , "srini_string" ) : baseComparer . getComparisonKey ( arg0 ) ) ; }
15,181
pipeline setup with dn1 very slow but it wo n't lead to timeout . client finishes setup successfully . concode_field_sep short REPLICATION concode_elem_sep long BLOCKSIZE concode_elem_sep Configuration conf concode_field_sep void pipeline_Fi_05 concode_elem_sep void pipeline_Fi_16 concode_elem_sep void pipeline_Fi_06 c...
void function ( ) { final String loc0 = FiTestUtil . getMethodName ( ) ; runSlowDatanodeTest ( loc0 , new SleepAction ( loc0 , 1 , 3000 ) ) ; }
15,182
get the current target concode_field_sep boolean ignoreProjectTag concode_elem_sep Project project concode_elem_sep Vector<Target> targetVector concode_elem_sep String currentProjectName concode_elem_sep Map<String,Target> currentTargets concode_elem_sep Target currentTarget concode_elem_sep File buildFile concode_elem...
Target function ( ) { return currentTarget ; }
15,183
retrieves a list of the sessions in this container that are visible to the specified session , given the access rights of the session user . concode_field_sep int sessionIdCount concode_elem_sep IntKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void removeSession concode_elem_sep Session ne...
Session [ ] function ( Session arg0 ) { return arg0 . isAdmin ( ) ? getAllSessions ( ) : new Session [ ] { arg0 } ; }
15,184
release the payload databuffer which is useful on runtimes e.g. netty with pooled buffers such as netty . a shortcut for : databuffer payload = message.getpayload ; databufferutils.release payload ; concode_field_sep DataBuffer payload concode_elem_sep Type type concode_field_sep DataBuffer getPayload concode_elem_sep ...
void function ( ) { DataBufferUtils . release ( this . payload ) ; }
15,185
add a timeout observer . concode_field_sep boolean stopped concode_elem_sep String ERROR_INVALID_TIMEOUT concode_elem_sep Vector observers concode_elem_sep long timeout concode_field_sep void fireTimeoutOccured concode_elem_sep void removeTimeoutObserver concode_elem_sep void stop concode_elem_sep void start concode_el...
void function ( TimeoutObserver arg0 ) { observers . addElement ( arg0 ) ; }
15,186
returns a string representation of this object ; useful for testing and debugging . concode_field_sep com.amazonaws.internal.SdkInternalList<MetricCollectionType> metrics concode_elem_sep com.amazonaws.internal.SdkInternalList<MetricGranularityType> granularities concode_field_sep DescribeMetricCollectionTypesResult wi...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getMetrics ( ) != null ) loc0 . append ( "srini_string" + getMetrics ( ) + "srini_string" ) ; if ( getGranularities ( ) != null ) loc0 . append ( "srini_string" + getGranularities ( ) ) ; loc0 . append ( "srini_st...
15,187
removes an object from index . concode_field_sep Indexer indexer concode_field_sep List<String> search concode_elem_sep List<String> search concode_elem_sep List<String> search concode_elem_sep void update concode_elem_sep void write
void function ( EntityMetadata arg0 , Object arg1 , String arg2 ) { try { indexer . unindex ( arg0 , arg2 ) ; } catch ( Exception loc0 ) { throw new PersistenceException ( loc0 . getMessage ( ) ) ; } }
15,188
retrieves the blob value designated by this blob instance as a stream . concode_field_sep BlobDataID blob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep int setBytes concode_elem_sep int setBytes concode_elem_sep void truncate concode_elem_sep boolean isClosed concode_elem...
InputStream function ( ) { return new BlobInputStream ( this , 0 , length ( ) , session . getStreamBlockSize ( ) ) ; }
15,189
removes top header concode_field_sep boolean compact concode_elem_sep Vector values concode_elem_sep String name concode_field_sep void setHeaders concode_elem_sep void addTop concode_elem_sep String getName concode_elem_sep boolean isCommaSeparated concode_elem_sep boolean isCommaSeparated concode_elem_sep Vector getV...
void function ( ) { values . removeElementAt ( 0 ) ; }
15,190
a no op concode_field_sep HashMap<K,V> mergedTuple concode_elem_sep DefaultOutputPort<HashMap<K,V>> mergedport concode_field_sep void process concode_elem_sep void setup concode_elem_sep void endWindow concode_elem_sep void teardown
void function ( long arg0 ) { }
15,191
get the first parameter concode_field_sep int result concode_elem_sep BiFunction<NumberExpression,NumberExpression,E> factory concode_elem_sep String expectedToString concode_elem_sep NumberExpression first concode_elem_sep NumberExpression second concode_field_sep void testToString concode_elem_sep List<Object[]> prep...
NumberExpression function ( ) { return this . first ; }
15,192
returns the interpolation type for the attribute . concode_field_sep int TEXTURE3D concode_elem_sep double[] _defaultValues concode_elem_sep int enumInt64 concode_elem_sep int[] m_indexToSemantics concode_elem_sep int POSITION concode_elem_sep int enumInt8 concode_elem_sep int TEXTURE1D concode_elem_sep int m_hash conc...
int function ( int arg0 ) { return _interpolation [ arg0 ] ; }
15,193
the description of the archive that was specified in the initiate multipart upload request . concode_field_sep String archiveDescription concode_elem_sep String creationDate concode_elem_sep String multipartUploadId concode_elem_sep Long partSizeInBytes concode_elem_sep String vaultARN concode_field_sep UploadListEleme...
void function ( String arg0 ) { this . archiveDescription = arg0 ; }
15,194
returns a text representation of this object . concode_field_sep String langHyphen concode_elem_sep String lang concode_field_sep short getConditionType concode_elem_sep void fillAttributeSet concode_elem_sep String getLang concode_elem_sep boolean equals concode_elem_sep boolean match concode_elem_sep int getSpecifici...
String function ( ) { return "srini_string" + lang + ')' ; }
15,195
logs an info message . concode_field_sep Date date concode_elem_sep List<Entry> entries concode_elem_sep Level level concode_elem_sep Boolean debugEnabled concode_elem_sep PrintWriter writer concode_elem_sep String category concode_elem_sep Object message concode_elem_sep Throwable error concode_elem_sep DateFormat DAT...
void function ( Object arg0 , Throwable arg1 ) { add ( Level . INFO , arg0 , arg1 ) ; }
15,196
register a particular listener for a particular message type . more than one listener can be registered for each message type . concode_field_sep Message template concode_elem_sep MessageListener listener concode_elem_sep boolean DEBUG concode_elem_sep PhoenixSource source concode_elem_sep boolean DISPLAY_ERROR_MSGS co...
void function ( Message arg0 , MessageListener arg1 ) { Integer loc0 = new Integer ( arg0 . loc0 ( ) ) ; Vector loc1 = ( Vector ) templateTbl . get ( loc0 ) ; if ( loc1 == null ) { loc1 = new Vector ( ) ; } loc1 . addElement ( new msgTemplate ( arg0 , arg1 ) ) ; templateTbl . put ( loc0 , loc1 ) ; }
15,197
retrieve container contents from specified parent recursively if requested . concode_field_sep ManagedEntity rootEntity concode_elem_sep SelectionSpec[] selectionSpecs concode_field_sep ObjectContent[] retrieveObjectContents concode_elem_sep ManagedEntity searchManagedEntity concode_elem_sep ManagedEntity[] createManag...
ManagedEntity [ ] function ( boolean arg0 ) { String [ ] [ ] loc0 = new String [ ] [ ] { new String [ ] { "srini_string" } } ; return searchManagedEntities ( loc0 , arg0 ) ; }
15,198
create an instance of user concode_field_sep PlaceHolder placeHolder concode_field_sep Groups createGroups concode_elem_sep AuthenticateArg createAuthenticateArg concode_elem_sep Responsibility createResponsibility concode_elem_sep DomainUserMappingList createDomainUserMappingList concode_elem_sep ProcurementCompany cr...
User function ( ) { return new User ( ) ; }
15,199
set fieldtype value to fieldtype concode_field_sep Class<?> genericeValueType concode_elem_sep Field field concode_elem_sep Class<?> genericKeyType concode_elem_sep String description concode_elem_sep FieldType fieldType concode_elem_sep boolean isList concode_elem_sep boolean required concode_elem_sep int order concod...
void function ( FieldType arg0 ) { this . fieldType = arg0 ; }