idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
22,100
append the contents of a charslice to the buffer concode_field_sep char[] array concode_elem_sep int used concode_field_sep char[] getCharArray concode_elem_sep void appendWideChar concode_elem_sep void getChars concode_elem_sep int length concode_elem_sep void setCharAt concode_elem_sep CharSequence subSequence concod...
void function ( CharSlice arg0 ) { int loc0 = arg0 . length ( ) ; ensureCapacity ( loc0 ) ; arg0 . copyTo ( array , used ) ; used += loc0 ; }
22,101
sets the value of the day property . concode_field_sep Integer month concode_elem_sep Integer year concode_elem_sep Integer day concode_field_sep void setMonth concode_elem_sep Integer getYear concode_elem_sep Integer getMonth concode_elem_sep void setYear concode_elem_sep Integer getDay
void function ( Integer arg0 ) { this . day = arg0 ; }
22,102
test of softvalue method , of class card . concode_field_sep PlaceHolder placeHolder concode_field_sep void testToString concode_elem_sep void testHardValue concode_elem_sep void testGetRank concode_elem_sep void testGetSuit
void function ( ) { for ( int loc0 = 1 ; loc0 < 14 ; loc0 ++ ) { Card loc1 = new Card ( Suit . CLUBS , loc0 ) ; assertEquals ( loc0 , loc1 . softValue ( ) ) ; } }
22,103
removes all key-value mappings from this sparsearray . concode_field_sep Object DELETED concode_elem_sep long[] mKeys concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep Object[] mValues concode_field_sep long keyAt concode_elem_sep E valueAt concode_elem_sep int indexOfValue concode_elem_sep ...
void function ( ) { int loc0 = mSize ; Object [ ] loc1 = mValues ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 [ loc2 ] = null ; } mSize = 0 ; mGarbage = false ; }
22,104
sets the css class of this vcms status . concode_field_sep VcmsStatus _vcmsStatus concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setStatusId concode_elem_sep void setGroupId concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isIsPrimary co...
void function ( java . lang . String arg0 ) { _vcmsStatus . setCssClass ( arg0 ) ; }
22,105
writes a specific short value 2 bytes to the output byte buffer at the given offset . concode_field_sep PlaceHolder placeHolder concode_field_sep void writeInt concode_elem_sep void writeInt concode_elem_sep void writeInt concode_elem_sep void writeByte concode_elem_sep void writeByte concode_elem_sep void writeByte co...
void function ( byte [ ] arg0 , int arg1 , short arg2 ) { checkBoundary ( arg0 , arg1 , 2 ) ; arg0 [ arg1 ++ ] = ( byte ) ( 0xff & ( arg2 >> 8 ) ) ; arg0 [ arg1 ] = ( byte ) ( 0xff & arg2 ) ; }
22,106
returns a new spannablestring from the specified charsequence . you can override this to provide a different kind of spannable . concode_field_sep Spannable.Factory sInstance concode_field_sep void removeSpan concode_elem_sep Spannable.Factory getInstance concode_elem_sep void setSpan
Spannable function ( CharSequence arg0 ) { return new SpannableString ( arg0 ) ; }
22,107
creates a maptype by specifying the data type of keys keytype and values keytype . the field of valuecontainsnull is set to true . concode_field_sep DataType StringType concode_elem_sep DataType DateType concode_elem_sep DataType BooleanType concode_elem_sep DataType BinaryType concode_elem_sep DataType TimestampType c...
MapType function ( DataType arg0 , DataType arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } if ( arg1 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return new MapType ( arg0 , arg1 , true ) ; }
22,108
sets the arguments parameters used by the plugin . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive concode_field_sep String getName concode_...
void function ( String [ ] arg0 ) { this . args = arg0 . clone ( ) ; }
22,109
gets the value of the nilreason 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 nilreason property . for example , to add a new item , d...
List < String > function ( ) { if ( nilReason == null ) { nilReason = new ArrayList < String > ( ) ; } return this . nilReason ; }
22,110
sample_depends_on takes one of the following four values : 0 : the dependency of this sample is unknown ; 1 : this sample does depend on others not an i picture ; 2 : this sample does not depend on others i picture ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep byte samplePaddingValue c...
int function ( ) { return sampleDependsOn ; }
22,111
the id of the decisiontaskstarted event recorded when this decision task was started . this information can be useful for diagnosing problems by tracing back the chain of events leading up to this event . returns a reference to this object so that method calls can be chained together . concode_field_sep String timeoutT...
DecisionTaskTimedOutEventAttributes function ( Long arg0 ) { this . startedEventId = arg0 ; return this ; }
22,112
this method is invoked by the jaxb implementation on each instance when unmarshalling completes . concode_field_sep String val concode_elem_sep Object parent concode_elem_sep STFilterOperator operator concode_field_sep Object getParent concode_elem_sep String getVal concode_elem_sep void setOperator concode_elem_sep vo...
void function ( Unmarshaller arg0 , Object arg1 ) { setParent ( arg1 ) ; }
22,113
returns whether the lines and files match between this instance and the one given . concode_field_sep int address concode_elem_sep int line concode_elem_sep SourcePosition NO_INFO concode_elem_sep CstUtf8 sourceFile concode_field_sep int hashCode concode_elem_sep CstUtf8 getSourceFile concode_elem_sep boolean equals co...
boolean function ( SourcePosition arg0 ) { return ( line == arg0 . line ) && ( ( sourceFile == arg0 . sourceFile ) || ( ( sourceFile != null ) && sourceFile . equals ( arg0 . sourceFile ) ) ) ; }
22,114
an array list containing all of the state masks that can be used . there are a total of 32 masks available . concode_field_sep long NONE concode_elem_sep long ALL concode_elem_sep long[] MASKS concode_field_sep long clearValues concode_elem_sep String leftPad concode_elem_sep boolean isValue concode_elem_sep long setVa...
long [ ] function ( ) { return LongStateUtil . getMasks ( null ) ; }
22,115
returns the route used by this connection . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode_elem_sep byte[] SPDY...
Route function ( ) { return route ; }
22,116
sets the runtimeexception / error that induced a blaze crash . concode_field_sep boolean catastrophe concode_elem_sep long startTimeMillis concode_elem_sep Collection<ConfiguredTarget> testTargets concode_elem_sep Throwable crash concode_elem_sep ExitCode exitCondition concode_elem_sep Collection<ConfiguredTarget> actu...
void function ( Throwable arg0 ) { Preconditions . checkState ( arg0 == null || ( ( arg0 instanceof RuntimeException ) || ( arg0 instanceof Error ) ) ) ; this . crash = arg0 ; }
22,117
create an instance of getshrdepcmpsresponse concode_field_sep QName _Company_QNAME concode_elem_sep QName _CompanyRequest_QNAME concode_elem_sep QName _CompanyResponse_QNAME concode_field_sep GetRequestVerb createGetRequestVerb concode_elem_sep DeleteRequest createDeleteRequest concode_elem_sep DeleteResponse createDel...
GetShrDepCmpsResponse function ( ) { return new GetShrDepCmpsResponse ( ) ; }
22,118
this private method is used to access the user objects in the collection and perform operations on them . concode_field_sep int INSERT concode_elem_sep int DELETE concode_elem_sep User uPublic concode_elem_sep HsqlArrayList uUser concode_elem_sep int SELECT concode_elem_sep int ALL concode_elem_sep int UPDATE concode_f...
User function ( String arg0 ) { for ( int loc0 = 0 , loc1 = uUser . size ( ) ; loc0 < loc1 ; loc0 ++ ) { User loc2 = ( User ) uUser . get ( loc0 ) ; if ( ( loc2 != null ) && loc2 . getName ( ) . equals ( arg0 ) ) { return loc2 ; } } throw Trace . error ( Trace . USER_NOT_FOUND , arg0 ) ; }
22,119
return false by default . concode_field_sep PlaceHolder placeHolder concode_field_sep Connection getNativeConnectionFromStatement concode_elem_sep Connection getNativeConnection concode_elem_sep boolean isNativeConnectionNecessaryForNativeStatements concode_elem_sep Connection doGetNativeConnection concode_elem_sep Res...
boolean function ( ) { return false ; }
22,120
get the websphere group names for the given subject . concode_field_sep Method getSecurityName concode_elem_sep Method getRunAsSubject concode_elem_sep String USER_REGISTRY concode_elem_sep Method getGroupsForUser concode_elem_sep Log logger concode_elem_sep Class<?> wsCredentialClass concode_field_sep Class<?> getClas...
List < String > function ( final Subject arg0 ) { return getWebSphereGroups ( getSecurityName ( arg0 ) ) ; }
22,121
compares ip address without the port . concode_field_sep byte data[] concode_elem_sep NetworkAddress net_local_adr concode_elem_sep loopmsg_t msgs[] concode_elem_sep int MAX_LOOPBACK concode_elem_sep QuakeSocketFactory socketFactory concode_elem_sep int get concode_elem_sep int send concode_elem_sep int datalen concode...
boolean function ( NetworkAddress arg0 , NetworkAddress arg1 ) { if ( arg0 . type != arg1 . type ) return false ; if ( arg0 . type == Constants . NA_LOOPBACK ) return true ; if ( arg0 . type == Constants . NA_IP ) { return ( arg0 . ip [ 0 ] == arg1 . ip [ 0 ] && arg0 . ip [ 1 ] == arg1 . ip [ 1 ] && arg0 . ip [ 2 ] == ...
22,122
getter . concode_field_sep MessageType type concode_elem_sep Object body concode_field_sep MessageType getType
Object function ( ) { return body ; }
22,123
return type metadata object concode_field_sep int maxItems concode_elem_sep int spellTreshold concode_elem_sep org.talend.mdm.webservice.WSWhereItem whereItem concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String orderBy concode_e...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
22,124
used to communicate a return object from a plugin tool to the main whitebox user-interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive...
void function ( Object arg0 ) { if ( myHost != null ) { myHost . returnData ( arg0 ) ; } }
22,125
this method was generated by mybatis generator . this method returns the value of the database column task_group . id _ concode_field_sep String groupName concode_elem_sep Integer createBy concode_elem_sep String groupDesc concode_elem_sep Date createTime concode_elem_sep Integer updateBy concode_elem_sep Boolean enabl...
Integer function ( ) { return id ; }
22,126
calculates the size of all the iterators . caches it for fast lookups in the future . iterators should n't change size after the queries have been executed so caching is safe assumption , should check . concode_field_sep int m_fullSize concode_elem_sep int m_activeIteratorIndex concode_elem_sep OJBIterator m_activeIter...
int function ( ) { if ( m_fullSize == - 1 ) { int loc0 = 0 ; Iterator loc1 = m_rsIterators . iterator ( ) ; while ( loc1 . hasNext ( ) ) { loc0 += ( ( OJBIterator ) loc1 . next ( ) ) . loc0 ( ) ; } m_fullSize = loc0 ; } return m_fullSize ; }
22,127
extract the response body and decode it , returning it as a mono . concode_field_sep Object EMPTY_BODY concode_field_sep ResponseExtractor<Mono<HttpHeaders>> headers concode_elem_sep ResponseExtractor<Mono<ResponseEntity<T>>> response concode_elem_sep ResponseExtractor<Mono<ResponseEntity<T>>> response concode_elem_sep...
BodyExtractor < Mono < T >> function ( ResolvableType arg0 ) { return ( clientResponse , messageConverters ) -> decodeResponseBodyAsMono ( clientResponse , arg0 , messageConverters ) ; }
22,128
this function return recorded handle . concode_field_sep long mRecorderHandle concode_field_sep void stop concode_elem_sep void start concode_elem_sep Recorder create concode_elem_sep void destroy concode_elem_sep void addStream
long function ( ) { return mRecorderHandle ; }
22,129
method to tell the page to render or not based on the initialized flag concode_field_sep String plotPointShape concode_elem_sep boolean enableDynamicValues concode_elem_sep boolean areaMapEnabled concode_elem_sep int CUSTOM_CHART_TYPE concode_elem_sep String xAxisTitle concode_elem_sep boolean barChartOrientationHorizo...
boolean function ( OutputChart arg0 ) { boolean loc0 = this . renderOnSubmit ; if ( loc0 ) { this . renderOnSubmit = false ; } return loc0 ; }
22,130
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String name concode_elem_sep com.amazonaws.internal.SdkInternalList<String> platformTypes concode_field_sep void setName concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals con...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getName ( ) != null ) loc0 . append ( "srini_string" + getName ( ) + "srini_string" ) ; if ( getPlatformTypes ( ) != null ) loc0 . append ( "srini_string" + getPlatformTypes ( ) ) ; loc0 . append ( "srini_string" ...
22,131
creates a linkedblockingqueue with a capacity of integer #max_value , containing the elements of the specified iterable , in the order they are returned by the iterable 's iterator . concode_field_sep PlaceHolder placeHolder concode_field_sep SynchronousQueue<E> newSynchronousQueue concode_elem_sep ConcurrentLinkedQueu...
LinkedBlockingQueue < E > function ( Iterable < ? extends E > arg0 ) { if ( arg0 instanceof Collection ) { return new LinkedBlockingQueue < E > ( Collections2 . cast ( arg0 ) ) ; } LinkedBlockingQueue < E > loc0 = new LinkedBlockingQueue < E > ( ) ; Iterables . addAll ( loc0 , arg0 ) ; return loc0 ; }
22,132
gets card no . concode_field_sep String doorCode concode_elem_sep String macAddress concode_elem_sep String cardNo concode_field_sep void setDoorCode concode_elem_sep String getDoorCode concode_elem_sep String getMacAddress concode_elem_sep void setMacAddress concode_elem_sep void setCardNo
String function ( ) { return cardNo ; }
22,133
get memory info of device . concode_field_sep String TAG concode_elem_sep String MEM_INFO_PATH concode_field_sep String getAvailMemory concode_elem_sep ActivityManager.MemoryInfo printMemoryInfo concode_elem_sep String printMemInfo
ActivityManager . MemoryInfo function ( Context arg0 ) { ActivityManager loc0 = ( ActivityManager ) arg0 . getSystemService ( Context . ACTIVITY_SERVICE ) ; ActivityManager . MemoryInfo loc1 = new ActivityManager . MemoryInfo ( ) ; loc0 . getMemoryInfo ( loc1 ) ; return loc1 ; }
22,134
returns the integer value at a specified offset of the page . if an integer was not stored at that location , the behavior of the method is unpredictable . concode_field_sep int BLOCK_SIZE concode_elem_sep ByteBuffer contents concode_elem_sep FileMgr filemgr concode_elem_sep int INT_SIZE concode_field_sep void setStrin...
int function ( int arg0 ) { contents . position ( arg0 ) ; return contents . getInt ( ) ; }
22,135
sorts the map 's records in place , spill them to disk , and returns an unsafekvexternalsorter note that the map will be reset for inserting new records , and the returned sorter can not be used to insert records . concode_field_sep UnsafeProjection groupingKeyProjection concode_elem_sep StructType groupingKeySchema co...
UnsafeKVExternalSorter function ( ) { return new UnsafeKVExternalSorter ( groupingKeySchema , aggregationBufferSchema , SparkEnv . get ( ) . blockManager ( ) , map . getPageSizeBytes ( ) , map ) ; }
22,136
gets the password value for this person . concode_field_sep java.lang.String lastName concode_elem_sep java.lang.String address concode_elem_sep java.lang.String city concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.util.Calendar dateOfBirth concode_elem_sep long zipcode concode_elem_sep java.lang.String f...
java . lang . String function ( ) { return password ; }
22,137
select contacts and apply sort concode_field_sep Map<Long,Contact> map concode_elem_sep List<Contact> lnameIdx concode_elem_sep List<Contact> lnameDescIdx concode_elem_sep long serialVersionUID concode_elem_sep List<Contact> fnameIdx concode_elem_sep List<Contact> fnameDescIdx concode_field_sep void add concode_elem_se...
List < Contact > function ( long arg0 , long arg1 , String arg2 , boolean arg3 ) { List < Contact > loc0 = getIndex ( arg2 , arg3 ) ; long loc1 = arg0 + arg1 ; if ( loc1 > loc0 . size ( ) ) loc1 = loc0 . size ( ) ; List < Contact > loc2 = loc0 . subList ( ( int ) arg0 , ( int ) loc1 ) ; return loc2 ; }
22,138
computes an hashcode for this module information . concode_field_sep String moduleClass concode_elem_sep String patchLevel concode_elem_sep String majorVersion concode_elem_sep String minorVersion concode_field_sep void setPatchLevel concode_elem_sep String getMajorVersion concode_elem_sep String getModuleClass concode...
int function ( ) { final int loc0 ; loc0 = this . moduleClass . hashCode ( ) ; return loc0 ; }
22,139
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 List<SkuDetails> getAllProducts concode_elem_sep void erasePurchase concode_elem_sep List<String> getAllOwnedSkus con...
Purchase function ( String arg0 ) { return mPurchaseMap . get ( arg0 ) ; }
22,140
sets the minimum amount of time the queue will execute tasks per frame . if this is set , executemultiple is automatically set to true and the execute loop will execute as many tasks as it can before the execution window threshold is passed . any remaining tasks will be executed in the following frame . concode_field_s...
void function ( final int arg0 ) { _executionTime = arg0 ; _executeMultiple . set ( true ) ; }
22,141
sets the adgroupexperimentbidmultiplierstype value for this adgroupexperimentbidmultipliers . concode_field_sep java.lang.String adGroupExperimentBidMultipliersType concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeCalc conco...
void function ( java . lang . String arg0 ) { this . adGroupExperimentBidMultipliersType = arg0 ; }
22,142
gets the value of the customer property . concode_field_sep Customer customer concode_field_sep void setCustomer
Customer function ( ) { return customer ; }
22,143
gets the value of the useddata property . concode_field_sep Boolean unlimitedMinutes concode_elem_sep DataBalanceType remainingData concode_elem_sep DataBalanceType dataRemainingBeforeThrottle concode_elem_sep Boolean unlimitedMessages concode_elem_sep long serialVersionUID concode_elem_sep DataBalanceType dataUsedAfte...
DataBalanceType function ( ) { return usedData ; }
22,144
get all the classes loaded by a given class loader concode_field_sep PlaceHolder placeHolder concode_field_sep long getObjectSize concode_elem_sep Class[] getAllLoadedClasses concode_elem_sep void redefineClasses concode_elem_sep boolean isRedefineClassesSupported
Class [ ] function ( ClassLoader arg0 ) { return new Class [ 0 ] ; }
22,145
get the naming store injector . concode_field_sep AtomicInteger refcnt concode_elem_sep ServiceController<?> controller concode_elem_sep String name concode_elem_sep InjectedValue<ManagedReferenceFactory> managedReferenceFactory concode_elem_sep Object source concode_elem_sep InjectedValue<ServiceBasedNamingStore> nami...
InjectedValue < ServiceBasedNamingStore > function ( ) { return namingStoreValue ; }
22,146
a state must be reachable . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphJavaValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart concode_field_sep ...
void function ( ) { prepareStateTest ( ) ; assertFalse ( validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ) ; assertError ( diagnostics , ISSUE_NODE_NOT_REACHABLE ) ; }
22,147
returns a string representation of this instance , primarily for debugging purposes . concode_field_sep Number q1 concode_elem_sep Number q3 concode_elem_sep long serialVersionUID concode_elem_sep Number median concode_elem_sep Number minRegularValue concode_elem_sep Number mean concode_elem_sep Number minOutlier conco...
String function ( ) { return super . toString ( ) + "srini_string" + this . mean + "srini_string" + this . median + "srini_string" + this . q1 + "srini_string" + this . q3 + "srini_string" ; }
22,148
get / audits / : id : get an auditevent by id . concode_field_sep AuditEventService auditEventService concode_field_sep ResponseEntity<List<AuditEvent>> getAll concode_elem_sep ResponseEntity<List<AuditEvent>> getByDates
ResponseEntity < AuditEvent > function ( @ PathVariable Long arg0 ) { return ResponseUtil . wrapOrNotFound ( auditEventService . find ( arg0 ) ) ; }
22,149
get nodes at a particular listener . this method lazily adds service discovery concode_field_sep Map<HostAndPort,Long> lastSeenMap concode_elem_sep CuratorFramework cf concode_elem_sep Logger LOG concode_elem_sep boolean started concode_elem_sep ListeningAnnouncerConfig listeningAnnouncerConfig concode_elem_sep Object ...
Collection < HostAndPort > function ( final String arg0 ) { return getCurrentNodes ( arg0 ) . keySet ( ) ; }
22,150
gets owning institution bib id . concode_field_sep String lastUpdatedBy concode_elem_sep Integer bibliographicId concode_elem_sep String owningInstitutionBibId concode_elem_sep Integer owningInstitutionId concode_elem_sep InstitutionEntity institutionEntity concode_elem_sep byte[] content concode_elem_sep List<Holdings...
String function ( ) { return owningInstitutionBibId ; }
22,151
returns the valid from date of this cashier . the valid from/to dates may be used to define a time period in which the cashier is assignable to a teller . concode_field_sep String officeName concode_elem_sep String tellerName concode_elem_sep Collection<StaffData> staffOptions concode_elem_sep Date endDate concode_elem...
Date function ( ) { return startDate ; }
22,152
get the name of broker to use for sending/receiving mqtt messages . concode_field_sep String itemName concode_elem_sep MessageType messageType concode_elem_sep Logger logger concode_elem_sep String topic concode_elem_sep String TEMP_COLON_REPLACEMENT concode_elem_sep TransformationService transformationService concode_...
String function ( ) { return broker ; }
22,153
waitfor concode_field_sep Long responseTime concode_elem_sep CountDownLatch bs concode_elem_sep Throwable error concode_elem_sep String m_phoneNumber concode_field_sep Logger log concode_elem_sep void handleTimeout concode_elem_sep void handleError concode_elem_sep void handleResponse concode_elem_sep Long getResponseT...
void function ( ) { info ( "srini_string" + m_phoneNumber + "srini_string" ) ; bs . await ( ) ; info ( "srini_string" + m_phoneNumber + "srini_string" ) ; }
22,154
retrieve the character encoding for the request . concode_field_sep HttpServletRequest request concode_field_sep String getContentType concode_elem_sep String toString concode_elem_sep int getContentLength concode_elem_sep InputStream getInputStream
String function ( ) { return request . getCharacterEncoding ( ) ; }
22,155
gets the result of the group defined by the query . concode_field_sep IBitmapResult filterResult concode_elem_sep GroupResult groupResult concode_elem_sep SelectQuery query concode_elem_sep Bitmap validRecords concode_elem_sep GroupResult filteredGroupResult concode_field_sep void setValidRecords concode_elem_sep void ...
GroupResult function ( ) { return groupResult ; }
22,156
returns the bubble limit for this event . concode_field_sep boolean preventDefault concode_elem_sep boolean cancelable concode_elem_sep boolean isBubbling concode_elem_sep List defaultActions concode_elem_sep Event originalEvent concode_elem_sep String type concode_elem_sep EventTarget target concode_elem_sep short eve...
int function ( ) { return bubbleLimit ; }
22,157
return true if a write lock is hold by another file watcher concode_field_sep File lockFileTarget concode_elem_sep File lockFile concode_elem_sep long lockFileLastModified concode_elem_sep Logger LOGGER concode_field_sep void writeUnLock concode_elem_sep void writeLock concode_elem_sep void finalize concode_elem_sep bo...
boolean function ( ) { return lockFile . exists ( ) && lockFile . lastModified ( ) != lockFileLastModified ; }
22,158
indicates whether this method is a valid property method . concode_field_sep PlaceHolder placeHolder concode_field_sep FieldProperty<V> createProperty concode_elem_sep MethodProperty<V> createProperty concode_elem_sep Property<V> createProperty
boolean function ( Method arg0 ) { try { new MethodPropertyImpl < V > ( arg0 ) ; return true ; } catch ( IllegalArgumentException loc0 ) { return false ; } }
22,159
gets the type value for this report . concode_field_sep com.omniture.www.ReportReportSuite reportSuite concode_elem_sep java.lang.String period concode_elem_sep com.omniture.www.ReportData[] data concode_elem_sep com.omniture.www.ReportElement[] elements concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep b...
com . omniture . www . ReportType function ( ) { return type ; }
22,160
sets the value of the link property . concode_field_sep String comments concode_elem_sep TEnclosure enclosure concode_elem_sep String link concode_elem_sep String description concode_elem_sep TGuid guid concode_elem_sep Map<QName,String> otherAttributes concode_elem_sep TSource source concode_elem_sep String title conc...
void function ( String arg0 ) { this . link = arg0 ; }
22,161
creates a sequence parser from parsers one , two and three sub-parsers . equivalent to calling parser.sequence one , parser.sequence two , three . concode_field_sep int NO_MATCH concode_field_sep Parser<T> star concode_elem_sep Parser<T> repeat concode_elem_sep Parser<T> repeat concode_elem_sep Parser<T> intersection c...
Parser < T > function ( Parser < ? super T > arg0 , Parser < ? super T > arg1 , Parser < ? super T > arg2 ) { return Parser . < T > sequence ( arg0 , Parser . < T > sequence ( arg1 , arg2 ) ) ; }
22,162
returns the target of the question . concode_field_sep String[] context concode_elem_sep String property concode_elem_sep int length concode_elem_sep long serialVersionUID concode_elem_sep String target concode_field_sep void calculateLength concode_elem_sep String getProperty concode_elem_sep void setContext concode_e...
String function ( ) { return target ; }
22,163
implements both addition and subtraction -- they are the same in gf size . concode_field_sep int primitive concode_elem_sep GenericGFPoly one concode_elem_sep int[] logTable concode_elem_sep GenericGF AZTEC_DATA_10 concode_elem_sep int INITIALIZATION_THRESHOLD concode_elem_sep GenericGF AZTEC_DATA_6 concode_elem_sep Ge...
int function ( int arg0 , int arg1 ) { return arg0 ^ arg1 ; }
22,164
deserialize a given object from a byte array . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] serialize
Object function ( byte [ ] arg0 ) { ByteArrayInputStream loc0 = new ByteArrayInputStream ( arg0 ) ; ObjectInputStream loc1 = new ObjectInputStream ( loc0 ) ; if ( loc0 != null ) { loc0 . close ( ) ; } return loc1 . readObject ( ) ; }
22,165
returns an image encoded by the specified inputstream . concode_field_sep Map<Font,Font> m_fontToBoldFontMap concode_elem_sep Map<RGB,Color> m_colorMap concode_elem_sep int BOTTOM_LEFT concode_elem_sep int BOTTOM_RIGHT concode_elem_sep int TOP_RIGHT concode_elem_sep int TOP_LEFT concode_elem_sep Map<Integer,Cursor> m_i...
Image function ( InputStream arg0 ) { try { Display loc0 = Display . getCurrent ( ) ; ImageData loc1 = new ImageData ( arg0 ) ; if ( loc1 . transparentPixel > 0 ) { return new Image ( loc0 , loc1 , loc1 . getTransparencyMask ( ) ) ; } return new Image ( loc0 , loc1 ) ; } finally { arg0 . close ( ) ; } }
22,166
gets the value of the spendinglimit property . concode_field_sep Money spendingLimit concode_elem_sep String startDateTime concode_elem_sep BudgetOrderRequest lastRequest concode_elem_sep String billingAccountName concode_elem_sep String budgetOrderName concode_elem_sep String primaryBillingId concode_elem_sep String b...
Money function ( ) { return spendingLimit ; }
22,167
remove a child node from this node , if it is one . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_elem_sep String findAttribute concode_elem_sep String getNa...
void function ( TreeNode arg0 ) { if ( children != null ) children . remove ( arg0 ) ; }
22,168
returns the instruction to be executed at the indicated index , or null if there is no instruction at that index . concode_field_sep boolean startedTxn concode_elem_sep TempTableStore tempTables concode_elem_sep int counter concode_elem_sep boolean atomic concode_elem_sep List<ProgramInstruction> programInstructions co...
ProgramInstruction function ( int arg0 ) { return getInstructionAtIndex ( arg0 ) ; }
22,169
create and append an edit directive to the edit set if not there . this only records that the attribute was changed and the value in the plf copy node should be used , if allowed , during the merge at login time . concode_field_sep String RCS_ID concode_elem_sep IUserLayoutStore dls concode_elem_sep Log LOG concode_fie...
void function ( Element arg0 , String arg1 , IPerson arg2 ) { addDirective ( arg0 , arg1 , Constants . ELM_EDIT , arg2 ) ; }
22,170
sets the value of the label property . concode_field_sep String help concode_elem_sep String localeDescription concode_elem_sep String label concode_elem_sep Language locale concode_field_sep String getLocaleDescription concode_elem_sep void setLocaleDescription concode_elem_sep String getLabel concode_elem_sep String ...
void function ( String arg0 ) { this . label = arg0 ; }
22,171
main entry point for application concode_field_sep int RUN_COUNT concode_field_sep T measureOneRun concode_elem_sep T measure concode_elem_sep int[][] computeLevenshtein concode_elem_sep List<String> processWords
void function ( String [ ] arg0 ) { RandomWords loc0 = new RandomWords ( Paths . get ( "srini_string" ) ) ; List < String > loc1 = loc0 . createList ( 1000 ) ; measure ( "srini_string" , ( ) -> computeLevenshtein ( loc1 , false ) ) ; measure ( "srini_string" , ( ) -> computeLevenshtein ( loc1 , true ) ) ; }
22,172
sets the cookie handler to be used to read outgoing cookies and write incoming cookies . if unset , the cookiehandler #getdefault system-wide default cookie handler will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connect...
OkHttpClient function ( CookieHandler arg0 ) { this . cookieHandler = arg0 ; return this ; }
22,173
print error and warning statistics concode_field_sep StdOutWriter out concode_elem_sep int warnings concode_elem_sep String NL concode_elem_sep int errors concode_field_sep void debug concode_elem_sep void checkErrors concode_elem_sep void err concode_elem_sep String getLine concode_elem_sep void setGUIMode concode_ele...
void function ( ) { final StringBuilder loc0 = new StringBuilder ( errors + "srini_string" ) ; if ( errors != 1 ) loc0 . append ( "srini_string" ) ; loc0 . append ( "srini_string" ) . append ( warnings ) . append ( "srini_string" ) ; if ( warnings != 1 ) loc0 . append ( "srini_string" ) ; loc0 . append ( "srini_string"...
22,174
registers a quick fix for the annotation which is only available on a particular range of text within the annotation . concode_field_sep ProblemHighlightType myHighlightType concode_elem_sep String myTooltip concode_elem_sep IntentionAction quickFix concode_elem_sep String myMessage concode_elem_sep List<QuickFixInfo> ...
void function ( @ NotNull IntentionAction arg0 , @ Nullable TextRange arg1 , @ Nullable final HighlightDisplayKey arg2 ) { if ( arg1 == null ) { arg1 = new TextRange ( myStartOffset , myEndOffset ) ; } if ( myQuickFixes == null ) { myQuickFixes = new ArrayList < > ( ) ; } myQuickFixes . add ( new QuickFixInfo ( arg0 , ...
22,175
returns the http headers , such as `` content-length : 0 '' . concode_field_sep SocketPolicy socketPolicy concode_elem_sep long bodyDelayAmount concode_elem_sep Headers.Builder headers concode_elem_sep List<PushPromise> promises concode_elem_sep String CHUNKED_BODY_HEADER concode_elem_sep TimeUnit bodyDelayUnit concode...
Headers function ( ) { return headers . build ( ) ; }
22,176
if only javadocget or javadocset were specified , then simply create delegating getter/setter and do not generate state saving code concode_field_sep String defaultValue concode_elem_sep boolean definedInSuperClass concode_elem_sep String name concode_elem_sep String javadocSet concode_elem_sep Required required concod...
boolean function ( ) { return ( modifiesDefaultValueOrMethodExpression == false && modifiesJavadoc == true ) ; }
22,177
returns the size of the entry for key and value inuser-defined units . the default implementation returns 1 so that size is the number of entries and max size is the maximum number of entries . an entry 's size must not change while it is in the cache . concode_field_sep int evictionCount concode_elem_sep int putCount ...
int function ( K arg0 , V arg1 ) { return 1 ; }
22,178
retrieves the thread name to be used when this object is the runnable object of a thread . concode_field_sep Thread runnerThread concode_elem_sep Server server concode_elem_sep boolean keepAlive concode_elem_sep RowOutputBinary rowOut concode_elem_sep Session session concode_elem_sep byte[] mainBuffer concode_elem_sep ...
String function ( ) { return "srini_string" + Integer . toString ( hashCode ( ) , 16 ) ; }
22,179
always returns s.getstart + s.getend / 2 concode_field_sep PlaceHolder placeHolder concode_field_sep int getMax concode_elem_sep int getMax concode_elem_sep int getMax concode_elem_sep int getMax
int function ( Position arg0 ) { int loc0 = arg0 . getStart ( ) ; int loc1 = arg0 . getEnd ( ) ; return ( loc0 + loc1 ) / 2 ; }
22,180
format a value based on its type . concode_field_sep Log LOG concode_field_sep String checkNullString concode_elem_sep String checkNullString concode_elem_sep Object getValue concode_elem_sep Boolean isNotNullOrEmpty concode_elem_sep Boolean isNullOrEmpty concode_elem_sep boolean checkEquality concode_elem_sep String t...
String function ( Object arg0 ) { String loc0 = "srini_string" ; if ( arg0 == null ) { return loc0 ; } if ( arg0 instanceof Date ) { loc0 = DateUtil . formatDate ( ( Date ) arg0 ) ; } else { loc0 = arg0 . toString ( ) ; } return loc0 ; }
22,181
safely increment the reference counter . returns false when the object is shutting down no change to the reference counter in this case . concode_field_sep int count concode_elem_sep boolean shutdown concode_field_sep void finishShutdown concode_elem_sep void beginShutdown concode_elem_sep void Decrement
boolean function ( ) { if ( shutdown ) return false ; ++ count ; return true ; }
22,182
calculate the nanoseconds since midnight from a given calendar . copy/pasted from org.h2.util.datetimeutils #nanosfromcalendar java.util.calendar . concode_field_sep Calendar staticCalendar concode_elem_sep int SHIFT_YEAR concode_elem_sep int SHIFT_MONTH concode_elem_sep ThreadLocal<Calendar> localCalendar concode_fiel...
long function ( Calendar arg0 ) { int loc0 = arg0 . get ( Calendar . HOUR_OF_DAY ) ; int loc1 = arg0 . get ( Calendar . MINUTE ) ; int loc2 = arg0 . get ( Calendar . SECOND ) ; int loc3 = arg0 . get ( Calendar . MILLISECOND ) ; return ( ( ( ( ( ( loc0 * 60L ) + loc1 ) * 60 ) + loc2 ) * 1000 ) + loc3 ) * 1000000 ; }
22,183
one-shot initialization of jdk 1.2 + resourcebundle.getbundle method having classloader in the signature . concode_field_sep Object mutex concode_elem_sep HsqlArrayList bundleList concode_elem_sep Locale locale concode_elem_sep Method newGetBundleMethod concode_elem_sep String prefix concode_elem_sep HashMap bundleHand...
Method function ( ) { Class loc0 ; Class [ ] loc1 ; loc0 = ResourceBundle . class ; loc1 = new Class [ ] { String . class , Locale . class , ClassLoader . class } ; try { return loc0 . getMethod ( "srini_string" , loc1 ) ; } catch ( Exception loc2 ) { return null ; } }
22,184
get custom deserializer concode_field_sep java.lang.String host_qmanager concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String dist_qname_in concode_elem_sep java.lang.String dist_qname_out ...
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; }
22,185
gets the value of the scope property . concode_field_sep List<JAXBElement<?>> pageOrGroupOrLine concode_elem_sep BigDecimal scope concode_elem_sep String name concode_elem_sep String width concode_elem_sep Boolean dynamic concode_elem_sep NavbarPositionType position concode_field_sep void setName concode_elem_sep Strin...
BigDecimal function ( ) { return scope ; }
22,186
set sql . replace rowid with trim rowid for remote sql to convert into string as rowid is not serialized concode_field_sep String m_sql concode_elem_sep long serialVersionUID concode_elem_sep int m_resultSetType concode_elem_sep String m_trxName concode_elem_sep int m_resultSetConcurrency concode_field_sep String getSq...
void function ( String arg0 ) { m_sql = arg0 ; }
22,187
hooks into vanilla 's readfromnbt to call #readfromnbt . this makes it easier for other entity mixins to override readfromnbt without having to specify the @inject annotation . concode_field_sep int blockMetadata concode_elem_sep BlockPos pos concode_elem_sep Timing timing concode_elem_sep TileEntityType tileType conco...
void function ( NBTTagCompound arg0 , CallbackInfo arg1 ) { this . readFromNbt ( this . getSpongeData ( ) ) ; }
22,188
set an itable entry . concode_field_sep CodeArray[] data concode_field_sep FunctionTable allocate concode_elem_sep CodeArray get concode_elem_sep int length concode_elem_sep CodeArray[] getBacking
void function ( int arg0 , CodeArray arg1 ) { if ( VM . VerifyAssertions && VM . runningVM ) VM . _assert ( VM . NOT_REACHED ) ; data [ arg0 ] = arg1 ; }
22,189
does the playlist have a next song ? concode_field_sep double volume concode_elem_sep Song current concode_elem_sep Thread lastStarted concode_elem_sep Playlist playlist concode_elem_sep Song previous concode_elem_sep boolean DEBUG concode_elem_sep SongStream previousStream concode_elem_sep boolean playing concode_elem...
boolean function ( ) { return playlist != null && playlist . hasNext ( ) ; }
22,190
sets node 's type . concode_field_sep DetailNode parent concode_elem_sep int columnNumber concode_elem_sep DetailNode[] children concode_elem_sep int index concode_elem_sep String text concode_elem_sep int type concode_elem_sep int lineNumber concode_elem_sep DetailNode[] EMPTY_DETAIL_NODE_ARRAY concode_field_sep Detai...
void function ( int arg0 ) { this . type = arg0 ; }
22,191
returns the value of the named attribute as an object , or null if no attribute of the given name exists . concode_field_sep Method method concode_elem_sep String methodName concode_elem_sep Map<String,Object> attributes concode_field_sep void setAttribute concode_elem_sep String getMethodName concode_elem_sep Method g...
Object function ( String arg0 ) { return attributes . get ( arg0 ) ; }
22,192
sets the value of the promocodetrigger property . concode_field_sep ChangeRatePlanTrigger changeRatePlanTrigger concode_elem_sep AddFeatureTrigger addFeatureTrigger concode_elem_sep PeriodicPaymentTrigger periodicPaymentTrigger concode_elem_sep RefillTrigger refillTrigger concode_elem_sep String channel concode_elem_se...
void function ( PromoCodeTrigger arg0 ) { this . promoCodeTrigger = arg0 ; }
22,193
get the ratio of memory allocated for all the writers . concode_field_sep Map<InternalParquetRecordWriter,Long> writerList concode_elem_sep long DEFAULT_MIN_MEMORY_ALLOCATION concode_elem_sep long totalMemoryPool concode_elem_sep float DEFAULT_MEMORY_POOL_RATIO concode_elem_sep long minMemoryAllocation concode_elem_sep...
float function ( ) { return memoryPoolRatio ; }
22,194
given a student id and a list of courses , it finds what courses the student has not taken from among the list of courses . it is non-volatile to parameters . concode_field_sep TranscriptMemHelper tmh concode_field_sep boolean add concode_elem_sep ArrayList<Item> removeCourseLevel concode_elem_sep double testWithMemHel...
ArrayList < Item > function ( int arg0 , ArrayList < Item > arg1 ) { ArrayList < Item > loc0 = new ArrayList < Item > ( ) ; for ( Item loc1 : arg1 ) { if ( tmh . getGrade ( arg0 , loc1 . getId ( ) ) < 0 ) { loc0 . add ( loc1 ) ; } } return loc0 ; }
22,195
changes the current minimal value of this bounded range model . concode_field_sep int extent concode_elem_sep long serialVersionUID concode_elem_sep EventListenerList listenerList concode_elem_sep int maximum concode_elem_sep int value concode_elem_sep int minimum concode_elem_sep boolean isAdjusting concode_elem_sep C...
void function ( int arg0 ) { int loc0 , loc1 ; loc1 = Math . max ( arg0 , this . maximum ) ; loc0 = Math . max ( arg0 , this . value ) ; setRangeProperties ( loc0 , extent , arg0 , loc1 , isAdjusting ) ; }
22,196
this method is used for updating an existing entity . if the entity does not exist in the datastore , an exception is thrown . it uses http put method . concode_field_sep PlaceHolder placeHolder concode_field_sep PersistenceManager getPersistenceManager concode_elem_sep CollectionResponse<Calendar> listCalendar concode...
Calendar function ( Calendar arg0 ) { PersistenceManager loc0 = getPersistenceManager ( ) ; try { if ( ! containsCalendar ( arg0 ) ) { throw new EntityNotFoundException ( "srini_string" ) ; } loc0 . makePersistent ( arg0 ) ; } finally { loc0 . close ( ) ; } return arg0 ; }
22,197
returns the length of the list . concode_field_sep Node head concode_elem_sep Node next concode_elem_sep Boolean value concode_field_sep void add concode_elem_sep Boolean getValue concode_elem_sep Boolean contains concode_elem_sep Node getLastNode concode_elem_sep Boolean isAlternating concode_elem_sep Node get concode...
int function ( ) { return getLength ( head ) ; }
22,198
gets the value of the code property . concode_field_sep String code concode_elem_sep long serialVersionUID concode_elem_sep String type concode_field_sep String getType concode_elem_sep void setCode concode_elem_sep void setType
String function ( ) { return code ; }
22,199
action . concode_field_sep ContextUtil cu concode_elem_sep Log log concode_field_sep placeholderType placeHolder
void function ( ActionEvent arg0 ) { TotalScoresBean loc0 = ( TotalScoresBean ) cu . lookupBean ( "srini_string" ) ; loc0 . setAssessmentGradingList ( new ArrayList ( ) ) ; }