idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
5,100
called by the buttons of the panel to stop the spider concode_field_sep HttpResponseBody outOfScopeResponseBody concode_elem_sep List<SpiderListener> spiderListeners concode_elem_sep String targetHost concode_elem_sep String browserId concode_elem_sep HttpResponseHeader outOfScopeResponseHeader concode_elem_sep Crawlja...
void function ( ) { crawljax . stop ( ) ; }
5,101
returns a list of configured plugin hosts . note that the list always ends with null element denoting a main plugin repository . concode_field_sep String PLUGIN_LIST_FILE concode_elem_sep Logger LOG concode_field_sep List<IdeaPluginDescriptor> parsePluginList concode_elem_sep List<IdeaPluginDescriptor> process concode_...
List < String > function ( ) { List < String > loc0 = ContainerUtil . newArrayList ( UpdateSettings . getInstance ( ) . getPluginHosts ( ) ) ; ContainerUtil . addIfNotNull ( loc0 , ApplicationInfoEx . getInstanceEx ( ) . getBuiltinPluginsUrl ( ) ) ; loc0 . add ( null ) ; return loc0 ; }
5,102
add information message to a specific client . concode_field_sep Properties buildProperties concode_field_sep String getRequestParameter concode_elem_sep UIComponent findComponent concode_elem_sep ServletContext getServletContext concode_elem_sep Object getManagedBean concode_elem_sep String getActionAttribute concode_...
void function ( String arg0 , String arg1 ) { FacesContext . getCurrentInstance ( ) . addMessage ( arg0 , new FacesMessage ( FacesMessage . SEVERITY_INFO , arg1 , arg1 ) ) ; }
5,103
returns the cookies of the response . concode_field_sep int GZIP_MAGIC_NUMBER_BYTE_1 concode_elem_sep Map<String,Serializable> requestAttributes concode_elem_sep long timeToLiveSeconds concode_elem_sep long ONE_YEAR_IN_SECONDS concode_elem_sep Date created concode_elem_sep boolean storeGzipped concode_elem_sep Pattern ...
List < SerializableCookie > function ( ) { return serializableCookies ; }
5,104
returns the capabilities of the supported audio encoders . concode_field_sep int mMaxFrameWidth concode_elem_sep int mMinChannels concode_elem_sep int mMaxFrameRate concode_elem_sep int mMinFrameRate concode_elem_sep int mMinFrameWidth concode_elem_sep int mCodec concode_elem_sep int mMinBitRate concode_elem_sep int mM...
List < AudioEncoderCap > function ( ) { int loc0 = native_get_num_audio_encoders ( ) ; if ( loc0 == 0 ) return null ; List < AudioEncoderCap > loc1 = new ArrayList < AudioEncoderCap > ( ) ; for ( int loc2 = 0 ; loc2 < loc0 ; ++ loc2 ) { loc1 . add ( native_get_audio_encoder_cap ( loc2 ) ) ; } return loc1 ; }
5,105
returns the target colors , or null if none . concode_field_sep MathTransform1D transform concode_elem_sep Unit<?> unit concode_elem_sep NumberRange<?> range concode_elem_sep long serialVersionUID concode_elem_sep Color[] colors concode_field_sep MathTransform1D getSampleToGeophysics concode_elem_sep void setSampleToGe...
Color [ ] function ( ) { return ( colors != null ) ? colors . clone ( ) : null ; }
5,106
the id of the activitytaskstarted event recorded when this activity task was started . this information can be useful for diagnosing problems by tracing back the chain of events leading up to this event . concode_field_sep String reason concode_elem_sep Long startedEventId concode_elem_sep String details concode_elem_s...
Long function ( ) { return startedEventId ; }
5,107
this is used to execute the task . it is up to the specific task implementation to decide what to do when executed . if the task needs to read or write data then it can attempt to perform the read or write , if it incomplete the it can be scheduled for execution with the reactor . concode_field_sep Trace trace concode_...
void function ( ) { boolean loc0 = ready ( ) ; if ( ! loc0 ) { reactor . process ( this , require ) ; } else { state . resume ( ) ; } }
5,108
return unique character counts found in s. concode_field_sep PlaceHolder placeHolder concode_field_sep int countConsecutiveOccurs concode_elem_sep Set<Character> uniqueChars concode_elem_sep String lcp concode_elem_sep int[] countCapitals concode_elem_sep Set<String> longestRepeatedString concode_elem_sep Set<String> l...
Map < Character , Integer > function ( String arg0 ) { Map < Character , Integer > loc0 = new java . util . HashMap < Character , Integer > ( ) ; for ( char loc1 : arg0 . toCharArray ( ) ) { Integer loc2 = loc0 . get ( loc1 ) ; if ( loc2 == null ) loc0 . put ( loc1 , 1 ) ; else loc0 . put ( loc1 , loc2 + 1 ) ; } return...
5,109
get properties of this iterator , as a bit-significant integer . concode_field_sep String next concode_elem_sep String current concode_elem_sep IntToIntHashMap nestingTable concode_elem_sep Pattern pattern concode_elem_sep Matcher matcher concode_elem_sep int position concode_elem_sep int prevEnd concode_elem_sep Strin...
int function ( ) { return 0 ; }
5,110
gets the value of the reason property . concode_field_sep XMLGregorianCalendar dateTime concode_elem_sep String reason concode_elem_sep XmlSigningCertificateType signingCertificate concode_elem_sep String sourceAddress concode_elem_sep XmlCertificateChainType certificateChain concode_elem_sep XmlBasicSignatureType basi...
String function ( ) { return reason ; }
5,111
get custom deserializer concode_field_sep java.lang.Integer startIndex 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.Integer totalResultSetSize concode_elem_sep com.google.api.ads.dfp.axis....
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 ) ; }
5,112
sets the value of the msisdn property . concode_field_sep XMLGregorianCalendar lockExpirationDate concode_elem_sep XMLGregorianCalendar pairingExpirationDate concode_elem_sep String imei concode_elem_sep String subscriberID concode_elem_sep long serialVersionUID concode_elem_sep String imsi concode_elem_sep String msis...
void function ( String arg0 ) { this . msisdn = arg0 ; }
5,113
throw an exception if the timestamp is out of range or the nonce has been validated previously . concode_field_sep long maxTimestampAgeMsec concode_elem_sep String sortKey concode_elem_sep long DEFAULT_MAX_TIMESTAMP_AGE concode_elem_sep long DEFAULT_TIMESTAMP_WINDOW concode_elem_sep Set<UsedNonce> usedNonces concode_el...
void function ( OAuthMessage arg0 ) { arg0 . requireParameters ( OAuth . OAUTH_TIMESTAMP , OAuth . OAUTH_NONCE ) ; long loc0 = Long . parseLong ( arg0 . getParameter ( OAuth . OAUTH_TIMESTAMP ) ) ; long loc1 = currentTimeMsec ( ) ; validateTimestamp ( arg0 , loc0 , loc1 ) ; validateNonce ( arg0 , loc0 , loc1 ) ; }
5,114
calls casexxx for each class of the model until one returns a non null result ; it yields that result . concode_field_sep LibrariesindexPackage modelPackage concode_field_sep T caseLibrariesIndex concode_elem_sep T casejarToRelativePath concode_elem_sep T defaultCase
T function ( EObject arg0 ) { return doSwitch ( arg0 . eClass ( ) , arg0 ) ; }
5,115
create a unique namespace uri/prefix combination . concode_field_sep PlaceHolder placeHolder concode_field_sep String makePackageName concode_elem_sep String getPrefix concode_elem_sep void addWordToPackageBuffer concode_elem_sep String makeNamespaceFromClassName concode_elem_sep void getPrefixes concode_elem_sep QName...
String function ( XMLStreamWriter arg0 , String arg1 , boolean arg2 ) { return getUniquePrefix ( arg0 , arg1 , null , arg2 ) ; }
5,116
a convenience method for uid-based filtering . concode_field_sep Comparator ENROLLMENT_DISPLAY_UID_NUMERIC_COMPARATOR concode_elem_sep Comparator ENROLLMENT_NAME_COMPARATOR concode_elem_sep Logger log concode_elem_sep Comparator ENROLLMENT_DISPLAY_UID_COMPARATOR concode_field_sep int compare concode_elem_sep int compar...
Set function ( Collection arg0 ) { Set loc0 = new HashSet ( ) ; for ( Iterator loc1 = arg0 . iterator ( ) ; loc1 . hasNext ( ) ; ) { EnrollmentRecord loc2 = ( EnrollmentRecord ) loc1 . next ( ) ; loc0 . add ( loc2 . getUser ( ) . getUserUid ( ) ) ; } return loc0 ; }
5,117
get x array , usually representing the time values for signals . concode_field_sep int port concode_elem_sep String errorString concode_elem_sep DataOutputStream dos concode_elem_sep String vmsIp concode_elem_sep float[] y concode_elem_sep Socket socket concode_elem_sep float[] x concode_elem_sep int shot concode_elem_...
double [ ] function ( ) { return null ; }
5,118
gets the i-value concode_field_sep boolean compact concode_elem_sep Vector<String> 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 Vecto...
String function ( int arg0 ) { return ( String ) values . elementAt ( arg0 ) ; }
5,119
adds the specified branch id to the transaction history list so that we know that we 've seen it and do n't try to authenticate with the same credentials if we get an unauthorized response for it . concode_field_sep Vector<String> transactionHistory concode_elem_sep UserCredentials userCredentials concode_field_sep boo...
void function ( String arg0 ) { transactionHistory . add ( arg0 ) ; }
5,120
sets the logical operator on the expected value conditions of this save operation and returns a pointer to this object for method-chaining . concode_field_sep Map<String,ExpectedAttributeValue> expectedAttributes concode_elem_sep String conditionalOperator concode_field_sep DynamoDBSaveExpression withExpected concode_e...
DynamoDBSaveExpression function ( ConditionalOperator arg0 ) { return withConditionalOperator ( arg0 . toString ( ) ) ; }
5,121
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep String name concode_elem_sep List<String> photoUrls concode_elem_sep List<Tag> tags concode_elem_sep Category category concode_elem_sep Long id concode_elem_sep String value concode_elem_sep StatusEnum statu...
String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
5,122
sets the begin position of this node in the source file . concode_field_sep int ABSOLUTE_END_LINE concode_elem_sep List<Node> childrenNodes concode_elem_sep int ABSOLUTE_BEGIN_LINE concode_elem_sep Comparator<Node> NODE_BY_BEGIN_POSITION concode_elem_sep Range range concode_elem_sep IdentityHashMap<UserDataKey<?>,Objec...
Node function ( Position arg0 ) { range = range . withBegin ( arg0 ) ; return this ; }
5,123
gets millions instructions per second mips rating of a processing element pe . it is assumed all pes ' rating is same in a given machine . concode_field_sep int OTHER_POLICY_DIFFERENT_RATING concode_elem_sep int SPACE_SHARED concode_elem_sep String os concode_elem_sep double timeZone concode_elem_sep int ADVANCE_RESERV...
int function ( ) { if ( getHostList ( ) . size ( ) == 0 ) { return - 1 ; } return PeList . getMips ( getHostList ( ) . get ( 0 ) . getPeList ( ) , 0 ) ; }
5,124
creates a panel containing `` save ... '' , `` save ... '' and `` preview '' buttons . concode_field_sep String kernelText concode_elem_sep Thread mainThread concode_elem_sep int nPasses concode_elem_sep int pass concode_elem_sep float[] kernel concode_elem_sep boolean kernelError concode_elem_sep Button save concode_e...
Panel function ( GenericDialog arg0 ) { Panel loc0 = new Panel ( ) ; loc0 . setLayout ( new FlowLayout ( FlowLayout . CENTER , 5 , 0 ) ) ; open = new Button ( "srini_string" ) ; open . addActionListener ( this ) ; loc0 . add ( open ) ; save = new Button ( "srini_string" ) ; save . addActionListener ( this ) ; loc0 . ad...
5,125
sets the uvindex . concode_field_sep Double visibility concode_elem_sep Integer humidity concode_elem_sep Double pressure concode_elem_sep String pressureTrend concode_elem_sep Integer uvIndex concode_elem_sep Integer ozone concode_field_sep String getPressureTrend concode_elem_sep Integer getUvIndex concode_elem_sep D...
void function ( Integer arg0 ) { this . uvIndex = arg0 ; }
5,126
prints a verbose message . the output is done on system #out . this is displayed only if the logging com.android.common.utils.stdlogger.level is com.android.common.utils.stdlogger.level #verbose or higher . concode_field_sep int mLevel concode_field_sep Level getLevel concode_elem_sep void printMessage concode_elem_sep...
void function ( @ NonNull String arg0 , Object ... arg1 ) { if ( mLevel . mLevel > Level . VERBOSE . mLevel ) { return ; } String loc0 = String . format ( arg0 , arg1 ) ; printMessage ( loc0 , System . out ) ; }
5,127
gets the value of the longdescription property . concode_field_sep PrePayRatePlanShortInfo.LongDescription longDescription concode_elem_sep String identifier concode_elem_sep ChargeDetailType chargeDetail concode_elem_sep List<String> description concode_elem_sep long serialVersionUID concode_field_sep ChargeDetailType...
PrePayRatePlanShortInfo . LongDescription function ( ) { return longDescription ; }
5,128
set the data type using java class . concode_field_sep String type concode_field_sep Validator createValidator concode_elem_sep String getType concode_elem_sep Validator doCreateValidator
void function ( Class < ? > arg0 ) { this . type = new DataType ( arg0 ) . toString ( ) ; }
5,129
apply changes to preferences . if build version < 9 - uses old method sharedpreferences.editor #commit concode_field_sep long DEFAULT_LONG_VALUE concode_elem_sep boolean DEFAULT_BOOLEAN_VALUE concode_elem_sep SharedPreferences sPreferences concode_elem_sep int DEFAULT_INT_VALUE concode_elem_sep String DEFAULT_STRING_VA...
void function ( SharedPreferences . Editor arg0 ) { if ( Build . VERSION . SDK_INT >= Build . VERSION_CODES . GINGERBREAD ) { arg0 . apply ( ) ; } else { arg0 . commit ( ) ; } }
5,130
adds a single directory or a jar file . concode_field_sep List<String> args concode_field_sep ClasspathBuilder addAll concode_elem_sep ClasspathBuilder addJarOf concode_elem_sep String toString
ClasspathBuilder function ( File arg0 ) { return add ( arg0 . getAbsolutePath ( ) ) ; }
5,131
sets the status value for this conceptvalue . concode_field_sep java.lang.String NCID concode_elem_sep java.lang.String domain concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String context concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc c...
void function ( java . lang . String arg0 ) { this . status = arg0 ; }
5,132
returns the contents of the given node . concode_field_sep PlaceHolder placeHolder concode_field_sep String writeInt concode_elem_sep boolean readBool concode_elem_sep double readDouble concode_elem_sep float readFloat concode_elem_sep String writeStringIfNonEmpty concode_elem_sep int readInt concode_elem_sep String wr...
String function ( Node arg0 ) { NodeList loc0 = arg0 . getChildNodes ( ) ; String loc1 = "srini_string" ; for ( int loc2 = 0 ; loc2 < loc0 . getLength ( ) ; loc2 ++ ) { loc1 += loc0 . item ( loc2 ) . getTextContent ( ) ; } return loc1 ; }
5,133
adds a new parameter to the set . concode_field_sep long serialVersionUID concode_elem_sep List<JRPrintHyperlinkParameter> parameters concode_field_sep List<JRPrintHyperlinkParameter> getParameters
void function ( JRPrintHyperlinkParameter arg0 ) { parameters . add ( arg0 ) ; }
5,134
registers a listener to receive changeevent notifications fromthis model whenever the selected index changes . concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listenerList concode_elem_sep int index concode_elem_sep ChangeEvent changeEvent concode_field_sep T[] getListeners concode_elem_sep v...
void function ( ChangeListener arg0 ) { listenerList . add ( ChangeListener . class , arg0 ) ; }
5,135
add an parsernamespacesupport parser under a java security manager , the following run time permission is required . `` org.picketlink.parser.permission '' concode_field_sep List<ParserNamespaceSupport> parsers concode_elem_sep RuntimePermission PARSER_PERM concode_field_sep ParserNamespaceSupport get concode_elem_sep ...
void function ( ParserNamespaceSupport arg0 ) { if ( System . getSecurityManager ( ) != null ) { System . getSecurityManager ( ) . checkPermission ( PARSER_PERM ) ; } parsers . add ( 0 , arg0 ) ; }
5,136
this method resets the incoming events time events included . concode_field_sep long number concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean reset concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep SCInterface getSCInterface concode...
void function ( ) { sCInterface . clearEvents ( ) ; }
5,137
test an integer for the presence of a flag . concode_field_sep int NO_FLAGS concode_elem_sep int REQUEST_PROCESSING_FAILED_CALLBACK concode_elem_sep int REQUEST_EVENT_UNREFERENCED_CALLBACK concode_elem_sep int SBB_PROCESSED_EVENT concode_elem_sep int SLEE_MAY_MARSHAL concode_elem_sep int STANDARD_FLAGS_MASK concode_ele...
boolean function ( int arg0 , int arg1 ) { return ( arg0 & arg1 ) != NO_FLAGS ; }
5,138
map each bin to its bucket . concode_field_sep PlaceHolder placeHolder concode_field_sep double SSE concode_elem_sep int[] V_Optimal concode_elem_sep void main
int [ ] function ( int [ ] arg0 , int arg1 ) { int [ ] loc0 = new int [ arg1 ] ; int loc1 = 0 ; for ( int loc2 = 0 ; loc2 < arg1 ; loc2 ++ ) { if ( loc2 < arg0 [ loc1 ] ) { loc0 [ loc2 ] = loc1 ; } else { loc1 ++ ; loc0 [ loc2 ] = loc1 ; } } return loc0 ; }
5,139
returns the value as a 0.12 type string . more digits after the decimal place will be used if necessary , but two will always be present . concode_field_sep MonetaryFormat FRIENDLY_FORMAT concode_elem_sep MonetaryFormat PLAIN_FORMAT concode_elem_sep int SMALLEST_UNIT_EXPONENT concode_elem_sep long value concode_elem_se...
String function ( ) { return FRIENDLY_FORMAT . code ( 0 , currencyCode ) . format ( this ) . toString ( ) ; }
5,140
returns the string ids of the registered datasources . do n't try anything with remove . concode_field_sep HashMap<String,SensorDataSourceIF> dataProviders concode_elem_sep HashMap<String,ActorDataTargetIF> dataTargets concode_field_sep void unregisterActuatorDataTarget concode_elem_sep void addActuatorSignalStrength c...
Iterator < String > function ( ) { return dataProviders . keySet ( ) . iterator ( ) ; }
5,141
resolve the given class name into a class . the default implementations uses classutils.forname , using the thread context class loader . concode_field_sep Object targetObject concode_elem_sep String targetMethod concode_elem_sep Class targetClass concode_elem_sep Method methodObject concode_elem_sep String staticMetho...
Class function ( String arg0 ) { return ClassUtils . forName ( arg0 , ClassUtils . getDefaultClassLoader ( ) ) ; }
5,142
returns a predicate and value builder for the exception stacktrace on an exchange concode_field_sep PlaceHolder placeHolder concode_field_sep ValueBuilder faultBodyAs concode_elem_sep ValueBuilder constant concode_elem_sep ValueBuilder sendTo concode_elem_sep ValueBuilder systemProperty concode_elem_sep ValueBuilder sy...
ValueBuilder function ( ) { Expression loc0 = new SimpleExpression ( "srini_string" ) ; return new ValueBuilder ( loc0 ) ; }
5,143
returns the default factory . the initial default factory is jdkloggerfactory . concode_field_sep InternalLoggerFactory defaultFactory concode_field_sep void setDefaultFactory concode_elem_sep InternalLoggerFactory newDefaultFactory concode_elem_sep InternalLogger newInstance concode_elem_sep InternalLogger getInstance...
InternalLoggerFactory function ( ) { return defaultFactory ; }
5,144
returns a reference to this object so that method calls can be chained together . concode_field_sep String messageId concode_elem_sep String receiptHandle concode_elem_sep java.util.Map<String,String> attributes concode_elem_sep String body concode_elem_sep String mD5OfBody concode_field_sep void setReceiptHandle conco...
Message function ( java . util . Map < String , String > arg0 ) { setAttributes ( arg0 ) ; return this ; }
5,145
readblock and readnextheaderblock are the methods that users of this class should use to read header blocks from the tar file . readnextheaderblock continues working through the tar file from the current point until it finds a block with a non-0 first byte . concode_field_sep byte[] readBuffer concode_elem_sep long byt...
boolean function ( ) { try { while ( readStream . available ( ) > 0 ) { readBlock ( ) ; if ( readBuffer [ 0 ] != 0 ) { return true ; } } } catch ( EOFException loc0 ) { } close ( ) ; return false ; }
5,146
see comment for getmoreresults . concode_field_sep boolean isEscapeProcessing concode_elem_sep int queryTimeout concode_elem_sep Result errorResult concode_elem_sep int SUCCESS_NO_INFO concode_elem_sep Result batchResultOut concode_elem_sep int maxRows concode_elem_sep JDBCConnection connection concode_elem_sep int RET...
void function ( ) { if ( currentResultSet != null ) { currentResultSet . close ( ) ; } if ( generatedResultSet != null ) { generatedResultSet . close ( ) ; } generatedResultSet = null ; generatedResult = null ; resultIn = null ; currentResultSet = null ; }
5,147
sets the namespace of this saml attribute . concode_field_sep String namespace_ concode_elem_sep int addToAUTHBlock_ concode_elem_sep long serialVersionUID concode_elem_sep Object value_ concode_elem_sep String name_ concode_field_sep void setName concode_elem_sep Object getValue concode_elem_sep String getName concode...
void function ( String arg0 ) { namespace_ = arg0 ; }
5,148
set the name of the bucket in which to upload the files concode_field_sep String secretAccessKey concode_elem_sep int mergerCount concode_elem_sep String endPoint concode_elem_sep String bucketName concode_elem_sep String outputDirectoryPath concode_elem_sep int timeOutWindowCount concode_elem_sep ProxyInputPort<Abstra...
void function ( String arg0 ) { this . bucketName = arg0 ; }
5,149
returns the label . concode_field_sep Integer maxColisionSize concode_elem_sep int index concode_elem_sep String label concode_field_sep Integer getMaxColisionSize concode_elem_sep void setMaxColisionSize concode_elem_sep int getIndex concode_elem_sep void setIndex
String function ( ) { return label ; }
5,150
appends version infos to the given response body concode_field_sep RhinoDebuggerImpl debugger concode_elem_sep String VERSION_1_6 concode_field_sep void handleClearBreakpointRequest concode_elem_sep void handleEvaluateRequest concode_elem_sep void handleContinueRequest concode_elem_sep Long numberToLong concode_elem_se...
void function ( Request arg0 , Response arg1 ) { Map loc0 = arg1 . getBody ( ) ; loc0 . put ( JSONConstants . JAVASCRIPT_VERSION , VERSION_1_6 ) ; loc0 . put ( JSONConstants . ECMASCRIPT_VERSION , "srini_string" ) ; loc0 . put ( JSONConstants . VM_NAME , "srini_string" ) ; loc0 . put ( JSONConstants . VM_VERSION , VERS...
5,151
sets the value of the pkconstraint property . concode_field_sep CreateTable createTable concode_elem_sep ListCacheMax listCacheMax concode_elem_sep FetchSize fetchSize concode_elem_sep ThrowRuntimeExceptions throwRuntimeExceptions concode_elem_sep RowLocking rowLocking concode_elem_sep PreferredRelationMapping preferre...
void function ( final PkConstraint arg0 ) { this . pkConstraint = arg0 ; }
5,152
unregister with the registrar server concode_field_sep Log log concode_elem_sep RegisterAgentListener listener concode_elem_sep int expire_time concode_elem_sep NameAddress target concode_elem_sep String next_nonce concode_elem_sep boolean is_running concode_elem_sep SipProvider sip_provider concode_elem_sep String qop...
void function ( ) { register ( 0 ) ; }
5,153
emit the end of a graph . override this method to change the format of the end of a graph . concode_field_sep Map<String,String> nodeHeader concode_elem_sep Map<String,String> edgeHeader concode_elem_sep NodeStyle nodeStyle concode_elem_sep DefaultStyleConfiguration configuration concode_elem_sep Map<String,String> gra...
void function ( Appendable arg0 ) { arg0 . append ( "srini_string" ) ; }
5,154
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 ; }
5,155
gets the source specs . concode_field_sep RegisterSpec result concode_elem_sep RegisterSpecList sources concode_elem_sep SourcePosition position concode_elem_sep Rop opcode concode_field_sep String toHumanWithInline concode_elem_sep Insn withRegisterOffset concode_elem_sep boolean equalsHandleNulls concode_elem_sep voi...
RegisterSpecList function ( ) { return sources ; }
5,156
returns the primary key of this definition . concode_field_sep Definition _definition concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_...
long function ( ) { return _definition . getPrimaryKey ( ) ; }
5,157
gets a map that contains attributes that are n't bound to any typed property on this class . the map is keyed by the name of the attribute and the value is the string value of the attribute . the map returned by this method is live , and you can add new attribute by updating the map directly . because of this design , ...
Map < QName , String > function ( ) { return otherAttributes ; }
5,158
parse date in rfc1123 format , and return its value as epoch concode_field_sep PlaceHolder placeHolder concode_field_sep String parseCharset concode_elem_sep String parseCharset concode_elem_sep Cache.Entry parseCacheHeaders
long function ( String arg0 ) { try { return DateUtils . parseDate ( arg0 ) . getTime ( ) ; } catch ( DateParseException loc0 ) { return 0 ; } }
5,159
given a binding uri , get the idp identity url concode_field_sep PicketLinkLogger logger concode_field_sep void addAllEntityDescriptorsRecursively concode_elem_sep String getServiceURL concode_elem_sep String getIdentityURL concode_elem_sep IDPSSODescriptorType getIDPDescriptor concode_elem_sep IDPSSODescriptorType get...
String function ( IDPSSODescriptorType arg0 , String arg1 ) { String loc0 = null ; List < EndpointType > loc1 = arg0 . getSingleLogoutService ( ) ; for ( EndpointType loc2 : loc1 ) { if ( loc2 . getBinding ( ) . toString ( ) . equals ( arg1 ) ) { loc0 = loc2 . getLocation ( ) . toString ( ) ; break ; } } return loc0 ; ...
5,160
sets this matrix to the identity matrix concode_field_sep float[] val concode_elem_sep int M11 concode_elem_sep int M21 concode_elem_sep float DEGREE_TO_RAD concode_elem_sep int M00 concode_elem_sep int M10 concode_elem_sep int M20 concode_elem_sep int M01 concode_elem_sep long serialVersionUID concode_elem_sep int M02...
Matrix3 function ( ) { val [ M00 ] = 1 ; val [ M10 ] = 0 ; val [ M20 ] = 0 ; val [ M01 ] = 0 ; val [ M11 ] = 1 ; val [ M21 ] = 0 ; val [ M02 ] = 0 ; val [ M12 ] = 0 ; val [ M22 ] = 1 ; return this ; }
5,161
indicates if this entry should be added to the archive synchronously before adding the next entry and/or accessing the next entry of resourceiterator . concode_field_sep int mode concode_elem_sep int defaultDirMode concode_elem_sep int SYMLINK concode_elem_sep PlexusIoResource resource concode_elem_sep int DIRECTORY co...
boolean function ( ) { return addSynchronously ; }
5,162
create specifying model and formatter . concode_field_sep PlaceHolder placeHolder concode_field_sep JDatePanel createJDatePanel concode_elem_sep JDatePanel createJDatePanel concode_elem_sep DateModel<?> createDateModel concode_elem_sep DateModel<?> createDateModel
JDatePicker function ( DateModel < ? > arg0 , JFormattedTextField . AbstractFormatter arg1 ) { return new JDatePickerImpl ( new JDatePanelImpl ( arg0 ) , arg1 ) ; }
5,163
cleared at application undeployment time to remove any persistence providers that were deployed with the application concode_field_sep List<Class<? extends PersistenceProvider>> providers concode_elem_sep PersistenceProviderResolverImpl INSTANCE concode_elem_sep Map<ClassLoader,List<Class<? extends PersistenceProvider>...
void function ( Set < ClassLoader > arg0 ) { synchronized ( persistenceProviderPerClassLoader ) { for ( ClassLoader loc0 : arg0 ) { persistenceProviderPerClassLoader . remove ( loc0 ) ; } } }
5,164
calls in multithreaded query executor for all datamodels concode_field_sep boolean writeRuntimeResults concode_elem_sep XMLConfigParser parser concode_elem_sep PhoenixUtil util concode_elem_sep Logger logger concode_elem_sep List<DataModel> dataModels concode_elem_sep String queryHint concode_elem_sep WorkloadExecutor ...
Runnable function ( ) { Runnable loc0 = null ; for ( DataModel loc1 : dataModels ) { if ( exportCSV ) { loc0 = exportAllScenarios ( loc1 ) ; } else { loc0 = executeAllScenarios ( loc1 ) ; } } return loc0 ; }
5,165
returns the click listener attached to the button instance . concode_field_sep Image image concode_elem_sep Image disabledImage concode_elem_sep boolean enabled concode_elem_sep boolean visible concode_elem_sep ToolTip toolTipWidget concode_elem_sep String toolTip concode_elem_sep Image downImage concode_elem_sep Strin...
Command function ( ) { return command ; }
5,166
sets the value of the dealertype property . concode_field_sep boolean dealerFound concode_elem_sep boolean authenticationRequired concode_elem_sep String dealerName concode_elem_sep CodeAndDescription channelInfo concode_elem_sep String dealerCode concode_elem_sep String dealerType concode_elem_sep FinanceModel finance...
void function ( String arg0 ) { this . dealerType = arg0 ; }
5,167
sets the value of the rval property . concode_field_sep UpdateResult rval concode_field_sep UpdateResult getRval
void function ( UpdateResult arg0 ) { this . rval = arg0 ; }
5,168
access to response body assertions using an xpath expression to inspect a specific subset of the body . the xpath expression can be a parameterized string using formatting specifiers as defined in string #format string , object . concode_field_sep AntPathMatcher pathMatcher concode_field_sep ResultMatcher forwardedUrlP...
XpathResultMatchers function ( String arg0 , Object ... arg1 ) { return new XpathResultMatchers ( arg0 , null , arg1 ) ; }
5,169
convert a passed byte string e.g. 50b , 100k , or 250m to bytes for internal use . if no suffix is provided , the passed number is assumed to be in bytes . concode_field_sep long DEFAULT_DRIVER_MEM_MB concode_elem_sep Logger logger concode_elem_sep ImmutableMap<String,ByteUnit> byteSuffixes concode_elem_sep ImmutableMa...
long function ( String arg0 ) { return byteStringAs ( arg0 , ByteUnit . BYTE ) ; }
5,170
create an instance of statisticalsearchingcode concode_field_sep QName _InstanceCollection_QNAME concode_field_sep FormerIdentifier createFormerIdentifier concode_elem_sep Instance createInstance concode_elem_sep CallNumber createCallNumber concode_elem_sep ItemType createItemType concode_elem_sep InstanceCollection cr...
StatisticalSearchingCode function ( ) { return new StatisticalSearchingCode ( ) ; }
5,171
returns a double array of the indicated size . if arrays of that size have previously been stored in this factory , then an existing array will be returned . concode_field_sep boolean d6free concode_elem_sep double[] double6 concode_elem_sep boolean d2free concode_elem_sep double[] double2 concode_field_sep void putArr...
double [ ] function ( int arg0 ) { if ( arg0 == 2 && d2free ) { d2free = false ; return double2 ; } else if ( arg0 == 6 && d6free ) { d6free = false ; return double6 ; } return new double [ arg0 ] ; }
5,172
determine if url is in approved list of urls to launch external applications . concode_field_sep ConfigXmlParser parser concode_elem_sep String TAG concode_field_sep void init concode_elem_sep void init concode_elem_sep Whitelist getExternalWhitelist concode_elem_sep List<PluginEntry> getPluginEntries concode_elem_sep ...
boolean function ( String arg0 ) { if ( parser == null ) { Log . e ( TAG , "srini_string" ) ; return false ; } return parser . getExternalWhitelist ( ) . isUrlWhiteListed ( arg0 ) ; }
5,173
parses a list of dependencies into a collection of objects representing maven artifacts . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isSpecLine
List < MavenArtifact > function ( final InputStreamReader arg0 ) { BufferedReader loc0 = new BufferedReader ( arg0 ) ; List < MavenArtifact > loc1 = new ArrayList < > ( ) ; String loc2 = loc0 . readLine ( ) ; while ( loc2 != null ) { if ( isSpecLine ( loc2 ) ) { loc1 . add ( MavenArtifact . parse ( loc2 ) ) ; } loc2 = ...
5,174
gets the approximate area of this vertex in square meters . concode_field_sep double MIN_DIST concode_elem_sep int i concode_elem_sep double dist concode_elem_sep double avrgEle concode_elem_sep int j concode_elem_sep EleCoordinate[] points concode_elem_sep int NPOINTS concode_elem_sep double area concode_field_sep dou...
double function ( ) { return area ; }
5,175
marks a makro as used . concode_field_sep Map<String,RegExp> macros concode_elem_sep Map<String,Boolean> used concode_field_sep RegExp getDefinition concode_elem_sep void expand concode_elem_sep RegExp expandMacro concode_elem_sep boolean insert concode_elem_sep List<String> unused concode_elem_sep boolean isUsed
boolean function ( final String arg0 ) { return used . put ( arg0 , Boolean . TRUE ) != null ; }
5,176
returns whether the planar projections of the two coordinates are equal . concode_field_sep double NULL_ORDINATE concode_elem_sep double x concode_elem_sep double y concode_elem_sep int X concode_elem_sep double z concode_elem_sep int Y concode_elem_sep int dimensionsToTest concode_elem_sep long serialVersionUID concod...
boolean function ( Coordinate arg0 ) { if ( x != arg0 . x ) { return false ; } if ( y != arg0 . y ) { return false ; } return true ; }
5,177
writing photo object data to parcel concode_field_sep int mHeight concode_elem_sep String mPhotoReference concode_elem_sep int mWidth concode_elem_sep Attribution[] mAttributions concode_elem_sep Creator<Photo> CREATOR concode_field_sep Photo[] newArray concode_elem_sep Photo createFromParcel concode_elem_sep int descr...
void function ( Parcel arg0 , int arg1 ) { arg0 . writeInt ( mWidth ) ; arg0 . writeInt ( mHeight ) ; arg0 . writeString ( mPhotoReference ) ; arg0 . writeParcelableArray ( mAttributions , 0 ) ; }
5,178
method to take a user to determine if the user is in the usergroup #paidgroup . concode_field_sep List<User> paidGroup concode_elem_sep List<User> freeGroup concode_field_sep void addUserToPaidGroup concode_elem_sep void addUserToFreeGroup
boolean function ( User arg0 ) { return paidGroup . contains ( arg0 ) ; }
5,179
get the typecode of the forwardrequest . concode_field_sep ForwardRequest value concode_field_sep void _read concode_elem_sep void _write
TypeCode function ( ) { return ForwardRequestHelper . type ( ) ; }
5,180
sets the size threshold beyond which files are written directly to disk . concode_field_sep int sizeThreshold concode_elem_sep int DEFAULT_SIZE_THRESHOLD concode_elem_sep File repository concode_elem_sep FileCleaningTracker fileCleaningTracker concode_field_sep FileCleaningTracker getFileCleaningTracker concode_elem_se...
void function ( int arg0 ) { this . sizeThreshold = arg0 ; }
5,181
adds the leading slash if needed on the beginning of a filename . concode_field_sep PlaceHolder placeHolder concode_field_sep String appendUnixPaths concode_elem_sep String buildFilePath concode_elem_sep String addLeadingSlash concode_elem_sep String removeLeadingSlash concode_elem_sep String removeLeadingUnixSlash
String function ( String arg0 ) { if ( arg0 . startsWith ( "srini_string" ) ) { return arg0 ; } return "srini_string" + arg0 ; }
5,182
gets the campaignid value for this campaignmigrationrequest . concode_field_sep long campaignId 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 landingPageUrl concode_field_sep org.apa...
long function ( ) { return campaignId ; }
5,183
this implementation throws a filenotfoundexception , assuming that the resource can not be resolved to an absolute file path . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isFile concode_elem_sep ReadableByteChannel readableChannel concode_elem_sep URL getURL concode_elem_sep boolean isOpen conco...
File function ( ) { throw new FileNotFoundException ( getDescription ( ) + "srini_string" ) ; }
5,184
gets the id value for this tagdata . concode_field_sep java.util.Calendar date_updated concode_elem_sep com.intellij.tasks.mantis.model.AccountData user_id concode_elem_sep java.util.Calendar date_created concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang.St...
java . math . BigInteger function ( ) { return id ; }
5,185
triggers shutdown , but does not accept cleanup responsibility . concode_field_sep AtomicLongFieldUpdater<StripedSizedEpoch> CleanupAcquiredUpdater concode_elem_sep AtomicReferenceFieldUpdater<StripedSizedEpoch,Object> WakeupUpdater concode_elem_sep int NumStripes concode_elem_sep Object wakeup concode_elem_sep AtomicL...
void function ( ) { awaitShutdown ( triggerShutdown ( ) , false ) ; }
5,186
return the percentage of the max volume levelfrom the value received in the ipcontrol response . concode_field_sep double MIN_DB_VOLUME concode_elem_sep String IP_CONTROL_VOLUME_DEFAULT_VALUE concode_elem_sep DecimalFormat FORMATTER concode_elem_sep String IP_CONTROL_VOLUME_FORMAT concode_elem_sep double MAX_IP_CONTROL...
double function ( String arg0 ) { double loc0 = Double . parseDouble ( arg0 ) ; return ( ( loc0 - 1d ) * 100d ) / MAX_IP_CONTROL_VOLUME ; }
5,187
clears all timestamps cached for files that are located in that path concode_field_sep Map<String,Long> filesTimeStamps_ concode_elem_sep String PREPROCESSED_FILE_PATH concode_elem_sep PreprocessorUtils instance_ concode_field_sep void openPreprocessedFileInEditor concode_elem_sep IFileStore getPreprocessedFilePath con...
void function ( String arg0 ) { Iterator < Entry < String , Long >> loc0 = filesTimeStamps_ . entrySet ( ) . iterator ( ) ; while ( loc0 . hasNext ( ) ) { Entry < String , Long > loc1 = loc0 . next ( ) ; if ( loc1 . getKey ( ) . startsWith ( arg0 ) ) { loc0 . remove ( ) ; } } saveTimestamps ( ) ; }
5,188
singletontargetsource uses the hash code of the target object . concode_field_sep long serialVersionUID concode_elem_sep Object target concode_field_sep Object getTarget concode_elem_sep boolean isStatic concode_elem_sep Class<?> getTargetClass concode_elem_sep boolean equals concode_elem_sep void releaseTarget concode...
int function ( ) { return this . target . hashCode ( ) ; }
5,189
verifies the developer payload of a purchase . concode_field_sep IabHelper.OnConsumeFinishedListener mConsumeFinishedListener concode_elem_sep JSONArray data concode_elem_sep InAppBillingPlugin plugin concode_elem_sep String action concode_elem_sep CallbackContext callbackContext concode_elem_sep IabHelper.QueryInvento...
Boolean function ( Purchase arg0 ) { @ SuppressWarnings ( "srini_string" ) String loc0 = arg0 . getDeveloperPayload ( ) ; return true ; }
5,190
returns shard id where failure occurred concode_field_sep String reason concode_elem_sep String index concode_elem_sep int shardId concode_elem_sep String nodeId concode_elem_sep RestStatus status concode_field_sep String reason concode_elem_sep void writeTo concode_elem_sep void readFrom concode_elem_sep void toXConte...
int function ( ) { return this . shardId ; }
5,191
updates data if required concode_field_sep int INTERVAL_DAILY concode_elem_sep int INTERVAL_MONTHLY concode_elem_sep File path concode_elem_sep int INTERVAL_ALWAYS concode_elem_sep int updateInterval concode_elem_sep int INTERVAL_HOURLY concode_elem_sep byte[] data concode_elem_sep String ident concode_elem_sep int INT...
String function ( ) { if ( needsUpdate ( ) ) return updateForceString ( ) ; return getDataString ( ) ; }
5,192
is the wrapped jsonvalue a jsonobject ? concode_field_sep JSONWrapper INVALID concode_elem_sep JSONValue value concode_field_sep Integer intValue concode_elem_sep boolean isValid concode_elem_sep JSONWrapper parseStrict concode_elem_sep Long longValue concode_elem_sep JSONValue getValue concode_elem_sep String stringVa...
boolean function ( ) { if ( value == null ) { return false ; } return ( value . isObject ( ) != null ) ; }
5,193
computes the logarithm of the given value to the base of 2 , rounded down . it corresponds to the position of the highest non-zero bit . the position is counted , starting with 0 from the least significant bit to the most significant bit . for example , log2floor 16 = 4 , and log2floor 10 = 3 . concode_field_sep PlaceH...
int function ( int arg0 ) { if ( arg0 == 0 ) { throw new ArithmeticException ( "srini_string" ) ; } int loc0 = 0 ; while ( ( arg0 = arg0 >>> 1 ) != 0 ) { loc0 ++ ; } return loc0 ; }
5,194
a method to hide the frame concode_field_sep ImageIcon imageIcon concode_elem_sep JLabel label concode_elem_sep JFrame frame concode_elem_sep DigitalPicture picture concode_field_sep void setVisible concode_elem_sep void setPicture concode_elem_sep void displayImage concode_elem_sep void updateImageAndShowIt concode_el...
void function ( ) { frame . setVisible ( false ) ; }
5,195
get parameter handle . concode_field_sep IEngineTask engineTask concode_elem_sep String selectionValue concode_elem_sep IParamGroup group concode_elem_sep ScalarParameterHandle handle concode_field_sep boolean isRequired concode_elem_sep void setSelectionValue concode_elem_sep String getSelectionValue concode_elem_sep ...
ScalarParameterHandle function ( ) { return handle ; }
5,196
get the frames per second of this effect concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay ...
float function ( ) { return fps ; }
5,197
encodes the input text and sets it as the new message content . concode_field_sep String RFC2646_FROM concode_elem_sep int RFC2646_WIDTH concode_elem_sep String RFC2646_SIGNATURE concode_elem_sep String RFC2646_CRLF concode_elem_sep char RFC2646_QUOTE concode_elem_sep char RFC2646_SPACE concode_field_sep void deflowMes...
void function ( Message arg0 , String arg1 , boolean arg2 ) { setFlowedContent ( arg0 , arg1 , arg2 , RFC2646_WIDTH , true , null ) ; }
5,198
reads data from the native unix file descriptor . concode_field_sep LibC shared_libc concode_elem_sep LibC libc concode_elem_sep int fd concode_elem_sep boolean isOpen concode_field_sep boolean isOpen concode_elem_sep LibC libc concode_elem_sep int write concode_elem_sep void close
int function ( ByteBuffer arg0 ) { if ( ! isOpen ) { throw new IOException ( "srini_string" ) ; } int loc0 = libc . read ( fd , arg0 , arg0 . remaining ( ) ) ; if ( loc0 > 0 ) { arg0 . position ( arg0 . position ( ) + loc0 ) ; } return loc0 ; }
5,199
returns the cosine in radians from a lookup table . concode_field_sep float radDeg concode_elem_sep double BIG_ENOUGH_ROUND concode_elem_sep int SIN_BITS concode_elem_sep float PI concode_elem_sep Random random concode_elem_sep double BIG_ENOUGH_CEIL concode_elem_sep int BIG_ENOUGH_INT concode_elem_sep double BIG_ENOUG...
float function ( float arg0 ) { return Sin . table [ ( int ) ( ( arg0 + PI / 2 ) * radToIndex ) & SIN_MASK ] ; }