idx
int64
0
25k
question
stringlengths
68
5.61k
target
stringlengths
21
500
2,500
returns the osgi service identifier . concode_field_sep ResourceActionLocalService _service concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep java.util.List<com.liferay.portal.kernel.model.ResourceAction> getResourceActions concode_elem_sep java.util.L...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
2,501
normalizes the uri so unsafe characters is encoded concode_field_sep String RAW_TOKEN_START concode_elem_sep String RAW_TOKEN_END concode_elem_sep String CHARSET concode_field_sep String stripPrefix concode_elem_sep Map<String,Object> parseQuery concode_elem_sep Map<String,Object> parseQuery concode_elem_sep boolean is...
URI function ( String arg0 ) { return new URI ( UnsafeUriCharactersEncoder . encode ( arg0 , true ) ) ; }
2,502
adds the given variabledefinition to this variablemap . concode_field_sep List<VariableDefinition> variableDefinitions concode_elem_sep Map<String,VariableDefinition> mapVariableDefinitions concode_field_sep VariableDefinition getVariableDefinition concode_elem_sep void ensureMap concode_elem_sep void ensureVariableDef...
void function ( VariableDefinition arg0 ) { this . ensureMap ( ) ; this . ensureVariableDefinitions ( ) ; this . variableDefinitions . add ( arg0 ) ; this . mapVariableDefinitions . put ( arg0 . getId ( ) , arg0 ) ; }
2,503
creates the next json message to send to remote js executor , with request id pre-filled in . concode_field_sep JsonFactory mJsonFactory concode_elem_sep OkHttpClient mHttpClient concode_elem_sep String TAG concode_elem_sep WebSocket mWebSocket concode_elem_sep ConcurrentHashMap<Integer,JSDebuggerCallback> mCallbacks c...
JsonGenerator function ( int arg0 ) { JsonGenerator loc0 = mJsonFactory . createGenerator ( new StringWriter ( ) ) ; loc0 . writeStartObject ( ) ; loc0 . writeNumberField ( "srini_string" , arg0 ) ; return loc0 ; }
2,504
returns a new query accepting only documentsin this range . this query might not be very efficient when run on its own since it is optimized towards random-access , so it is best used either with drilldownquery #add string , query drilldownquery or when intersected with another query that can lead the iteration . if th...
Query function ( ValueSource arg0 ) { return getQuery ( null , arg0 ) ; }
2,505
find out if this log file line is after the given date concode_field_sep String user concode_elem_sep String level concode_elem_sep String action concode_elem_sep Date date concode_elem_sep String params concode_field_sep boolean isLevel concode_elem_sep String getLevel concode_elem_sep String getUser concode_elem_sep ...
boolean function ( Date arg0 ) { if ( arg0 != null ) { return ( arg0 . compareTo ( this . date ) <= 0 ) ; } return false ; }
2,506
if we did save away the value , then just access it , but if we did n't save it away , then we 'll want the most up-to-date value concode_field_sep Object savedValue concode_elem_sep Object submittedValue concode_elem_sep Log log concode_elem_sep String name concode_elem_sep boolean haveSavedValue concode_elem_sep bool...
Object function ( FacesContext arg0 , UIComponent arg1 ) { if ( haveSavedValue ) return savedValue ; else return getValue ( arg0 , arg1 ) ; }
2,507
gets a boolean value based on if the event has been triggered with a eventtype #nodedeleted . concode_field_sep boolean triggered concode_elem_sep boolean deleted concode_field_sep void process concode_elem_sep void reset concode_elem_sep boolean isTriggered
boolean function ( ) { return deleted ; }
2,508
return true if the given year is a leap year . concode_field_sep int MILLIS_PER_SECOND concode_elem_sep int JULIAN_1_CE concode_elem_sep int[] DAYS_BEFORE concode_elem_sep int MILLIS_PER_HOUR concode_elem_sep long MIN_MILLIS concode_elem_sep int[] MONTH_LENGTH concode_elem_sep long MAX_MILLIS concode_elem_sep int MILLI...
boolean function ( int arg0 ) { return ( ( arg0 & 0x3 ) == 0 ) && ( ( arg0 % 100 != 0 ) || ( arg0 % 400 == 0 ) ) ; }
2,509
partitions a portion of an array . concode_field_sep PlaceHolder placeHolder concode_field_sep void sort concode_elem_sep void sort
int function ( int [ ] arg0 , int arg1 , int arg2 ) { int loc0 = arg0 [ arg1 ] ; int loc1 = arg1 - 1 ; int loc2 = arg2 + 1 ; while ( loc1 < loc2 ) { loc1 ++ ; while ( arg0 [ loc1 ] < loc0 ) { loc1 ++ ; } loc2 -- ; while ( arg0 [ loc2 ] > loc0 ) { loc2 -- ; } if ( loc1 < loc2 ) { ArrayUtil . swap ( arg0 , loc1 , loc2 ) ...
2,510
checks whether paths in a given fields mask are valid . concode_field_sep String FIELD_SEPARATOR_REGEX concode_elem_sep String FIELD_PATH_SEPARATOR concode_elem_sep String FIELD_PATH_SEPARATOR_REGEX concode_elem_sep boolean replaceMessageFields concode_elem_sep boolean replaceRepeatedFields concode_field_sep FieldMask ...
boolean function ( Descriptor arg0 , FieldMask arg1 ) { for ( String loc0 : arg1 . getPathsList ( ) ) { if ( ! isValid ( arg0 , loc0 ) ) { return false ; } } return true ; }
2,511
obtain a list of simplified predicates based on the rules described in the class documentation . concode_field_sep Predicate lastVisited concode_elem_sep ResourceProvider resourceProvider concode_field_sep void acceptAlwaysPredicate concode_elem_sep void acceptCategoryPredicate concode_elem_sep void acceptUnaryPredicat...
List < Predicate > function ( ) { if ( lastVisited == null ) { return Collections . emptyList ( ) ; } if ( lastVisited instanceof OrPredicate ) { return Arrays . asList ( ( ( OrPredicate ) lastVisited ) . getPredicates ( ) ) ; } return Collections . singletonList ( lastVisited ) ; }
2,512
gets the current value of the given counter . concode_field_sep PlaceHolder placeHolder concode_field_sep long getCurrentTotalBytesRead concode_elem_sep long getCurrentBytesWritten concode_elem_sep long getLongGaugeValue concode_elem_sep long getCurrentTotalBytesWritten concode_elem_sep long getCurrentWebResponses conc...
long function ( AzureFileSystemInstrumentation arg0 , String arg1 ) { return getLongCounter ( arg1 , getMetrics ( arg0 ) ) ; }
2,513
parse the checksum octal integer from a header buffer . concode_field_sep int BYTE_MASK concode_field_sep long computeCheckSum concode_elem_sep StringBuffer parseName concode_elem_sep int getNameBytes concode_elem_sep long parseOctal concode_elem_sep int getOctalBytes concode_elem_sep int getLongOctalBytes
int function ( long arg0 , byte [ ] arg1 , int arg2 , int arg3 ) { getOctalBytes ( arg0 , arg1 , arg2 , arg3 ) ; arg1 [ arg2 + arg3 - 1 ] = ( byte ) ' ' ; arg1 [ arg2 + arg3 - 2 ] = 0 ; return arg2 + arg3 ; }
2,514
gets the results value for this lineitemcreativeassociationpage . concode_field_sep java.lang.Integer startIndex concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize con...
com . google . api . ads . dfp . axis . v201411 . LineItemCreativeAssociation [ ] function ( ) { return results ; }
2,515
sets the logging level of the messages logged by this handler , levels lower than this value will be dropped . concode_field_sep Level DEFAULT_LEVEL concode_elem_sep Formatter formatter concode_elem_sep Filter filter concode_elem_sep ErrorManager errorMan concode_elem_sep Level level concode_elem_sep String prefix conc...
void function ( Level arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( "srini_string" ) ; } LogManager . getLogManager ( ) . checkAccess ( ) ; this . level = arg0 ; }
2,516
return the websockethandler . concode_field_sep Log logger concode_elem_sep WebSocketHandler wsHandler concode_elem_sep HandshakeHandler handshakeHandler concode_elem_sep List<HandshakeInterceptor> interceptors concode_field_sep List<HandshakeInterceptor> getHandshakeInterceptors concode_elem_sep void handleRequest con...
WebSocketHandler function ( ) { return this . wsHandler ; }
2,517
client ref encoder . used by a server stub to encode the enclosed client message reference . concode_field_sep java.lang.Object server concode_elem_sep boolean stopped concode_elem_sep boolean clientT concode_elem_sep com.ericsson.otp.erlang.OtpErlangRef send_ref concode_elem_sep java.lang.String cookie concode_elem_se...
void function ( ) { os . write_ref ( send_ref . node ( ) , send_ref . id ( ) , send_ref . creation ( ) ) ; }
2,518
tests to see if all of the federates in the given set have achieved this synchronization point yet or not . if this is a federation-wide synchronization point , the set of given federates should be the set of federates currently in the federation . in this case , this method will return true if all the given federate h...
boolean function ( Set < Integer > arg0 ) { if ( arg0 == null || isRestricted ( ) ) arg0 = this . federates ; for ( Integer loc0 : arg0 ) { if ( achieved . contains ( loc0 ) == false ) return false ; } return true ; }
2,519
returns the largest y coordinate of the framing rectangle of this legend item . concode_field_sep LegendItem item concode_elem_sep Point2D labelPosition concode_elem_sep Shape marker concode_elem_sep Line2D line concode_elem_sep double x concode_elem_sep double width concode_elem_sep double y concode_elem_sep double he...
double function ( ) { return getY ( ) + getHeight ( ) ; }
2,520
reads a utf-8 encoded string . since ascii is a subset of utf-8 , this method may be used to read strings that are known to be ascii-only . concode_field_sep int PREFIX_6_BITS concode_elem_sep int PREFIX_8_BITS concode_elem_sep DataInputStream in concode_elem_sep int PREFIX_5_BITS concode_elem_sep List<HeaderEntry> INI...
String function ( ) { int loc0 = readByte ( ) ; int loc1 = readInt ( loc0 , PREFIX_8_BITS ) ; byte [ ] loc2 = new byte [ loc1 ] ; bytesLeft -= loc1 ; in . readFully ( loc2 ) ; return new String ( loc2 , "srini_string" ) ; }
2,521
gets the capability . concode_field_sep C capability concode_elem_sep CapabilityId id concode_field_sep CapabilityContext getCapabilityContext concode_elem_sep int hashCode concode_elem_sep String getCapabilityName concode_elem_sep boolean equals concode_elem_sep CapabilityId getCapabilityId
C function ( ) { return capability ; }
2,522
tie integer to index/key pair concode_field_sep PlaceHolder placeHolder concode_field_sep Object getPrototype concode_elem_sep Object resolveAddress concode_elem_sep int tied concode_elem_sep int instance concode_elem_sep int address concode_elem_sep int address concode_elem_sep void untie concode_elem_sep int getAddre...
int function ( String arg0 , int arg1 , int arg2 ) { return CMemoryImpl . getInstance ( ) . tie ( arg0 , arg1 , arg2 ) ; }
2,523
access plugins property . concode_field_sep String CONFIG_KEY concode_elem_sep Map plugIns concode_elem_sep Map testSuites concode_field_sep boolean addTestSuite concode_elem_sep Object removePlugIn concode_elem_sep Map getTestSuites concode_elem_sep void setTestSuites concode_elem_sep boolean addPlugIn concode_elem_se...
Set function ( ) { return plugIns . keySet ( ) ; }
2,524
create an instance of listusergroupcompaniesresponseverb concode_field_sep QName _GrpReqKeys_QNAME concode_elem_sep QName _GroupMasterRequest_QNAME concode_elem_sep QName _GroupMasterResponse_QNAME concode_elem_sep QName _GroupMaster_QNAME concode_field_sep GetRequestVerb createGetRequestVerb concode_elem_sep GroupMast...
ListUserGroupCompaniesResponseVerb function ( ) { return new ListUserGroupCompaniesResponseVerb ( ) ; }
2,525
returns the primary key of this foo . concode_field_sep Foo _foo 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_sep boolean isCachedM...
long function ( ) { return _foo . getPrimaryKey ( ) ; }
2,526
setter for hostserver concode_field_sep KickstartVirtualizationType virtualizationType concode_elem_sep KickstartData ksdata concode_elem_sep String kickstartMode concode_elem_sep Server oldServer concode_elem_sep String systemRhnHost concode_elem_sep String kickstartFromHost concode_elem_sep Date lastAction concode_el...
void function ( Server arg0 ) { this . hostServer = arg0 ; }
2,527
return the underlying modelmap instance never null . concode_field_sep Object view concode_elem_sep ModelMap model concode_elem_sep HttpStatus status concode_elem_sep boolean cleared concode_field_sep boolean wasCleared concode_elem_sep Map<String,Object> getModel concode_elem_sep void setViewName concode_elem_sep Map<...
ModelMap function ( ) { if ( this . model == null ) { this . model = new ModelMap ( ) ; } return this . model ; }
2,528
if you want to use your own setting , specify okhttpclient.builder instance.ref : linemessagingservicebuilder #createdefaultokhttpclientbuilder . concode_field_sep long DEFAULT_CONNECT_TIMEOUT concode_elem_sep long DEFAULT_READ_TIMEOUT concode_elem_sep OkHttpClient.Builder okHttpClientBuilder concode_elem_sep long conn...
LineMessagingServiceBuilder function ( @ NonNull OkHttpClient . Builder arg0 ) { this . okHttpClientBuilder = arg0 ; return this ; }
2,529
enlarge this byte vector so that it can receive n more bytes . concode_field_sep byte[] data concode_elem_sep int length concode_field_sep ByteVector put12 concode_elem_sep ByteVector put4 concode_elem_sep ByteVector put1 concode_elem_sep ByteVector put2 concode_elem_sep ByteVector put8 concode_elem_sep ByteVector putU...
void function ( final int arg0 ) { int loc0 = 2 * data . length ; int loc1 = length + arg0 ; byte [ ] loc2 = new byte [ loc0 > loc1 ? loc0 : loc1 ] ; System . arraycopy ( data , 0 , loc2 , 0 , length ) ; data = loc2 ; }
2,530
gets the value of the scale property . concode_field_sep String color concode_elem_sep Icon icon concode_elem_sep String scale concode_field_sep void setIcon concode_elem_sep void setColor concode_elem_sep void setScale concode_elem_sep String getColor concode_elem_sep Icon getIcon
String function ( ) { return scale ; }
2,531
utility for parsing the response from call to / graph url . concode_field_sep A provider concode_elem_sep Token accessToken concode_field_sep O readGraphResultObjects concode_elem_sep O post concode_elem_sep O post concode_elem_sep O get concode_elem_sep JSONArray parseJsonArray
JSONObject function ( final String arg0 , final String arg1 ) { JSONObject loc0 ; if ( arg1 != null && arg1 . startsWith ( "srini_string" ) ) { loc0 = new JSONObject ( arg0 ) ; } else { throw new CallServiceException ( "srini_string" ) ; } return loc0 ; }
2,532
get suggested terms if no result found against searched term . concode_field_sep SearchResult searchResult concode_elem_sep List<Quran> quranList concode_elem_sep int totalHits concode_elem_sep String suggestedTerm concode_elem_sep int totalPages concode_field_sep int getTotalHits concode_elem_sep SearchResultBuilder w...
String function ( ) { return suggestedTerm ; }
2,533
extract the policyerror from given any . this method uses the policyerrorholder . concode_field_sep PlaceHolder placeHolder concode_field_sep PolicyError read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
PolicyError function ( Any arg0 ) { try { return ( ( PolicyErrorHolder ) arg0 . extract_Streamable ( ) ) . value ; } catch ( ClassCastException loc0 ) { BAD_OPERATION loc1 = new BAD_OPERATION ( "srini_string" ) ; loc1 . minor = Minor . Any ; loc1 . initCause ( loc0 ) ; throw loc1 ; } }
2,534
enable saving of query profiles . the only way to save them is to enable local store provider writes , which also saves the storage plugin configs . doing so causes the cttas feature to fail on the next run , so the test fixture deletes all local files on start and close , unless #keeplocalfiles is set . concode_field_...
FixtureBuilder function ( ) { configProperty ( ExecConstants . SYS_STORE_PROVIDER_LOCAL_ENABLE_WRITE , true ) ; systemOption ( ExecConstants . ENABLE_QUERY_PROFILE_OPTION , true ) ; systemOption ( ExecConstants . QUERY_PROFILE_DEBUG_OPTION , true ) ; return this ; }
2,535
builds a number from the given integer descriptor . creates the narrowest type possible , or a specific type , if specified . concode_field_sep BigDecimal MIN_DOUBLE concode_elem_sep BigInteger MAX_LONG concode_elem_sep BigInteger MIN_LONG concode_elem_sep BigInteger MIN_INTEGER concode_elem_sep BigDecimal MAX_DOUBLE c...
Number function ( String arg0 ) { return parseInteger ( null , arg0 ) ; }
2,536
this method is called from classes implementing the jdbc interfaces . inside the engine it is used for conversion from a value of type other to another type . it will throw if the other is an instance of a classe that is not available . concode_field_sep byte[] data concode_field_sep int getBytesLength concode_elem_sep...
Serializable function ( ) { try { return InOutUtil . deserialize ( data ) ; } catch ( Exception loc0 ) { throw Trace . error ( Trace . SERIALIZATION_FAILURE , loc0 . getMessage ( ) ) ; } }
2,537
return the management applicationcontext . concode_field_sep ApplicationContext applicationContext concode_field_sep void setApplicationContext concode_elem_sep MvcEndpoints getMvcEndpoints
ApplicationContext function ( ) { return this . applicationContext ; }
2,538
a user-supplied id that uniquely identifies the batchprediction . this value is identical to the value of the batchpredictionid in the request . concode_field_sep String batchPredictionId concode_field_sep String getBatchPredictionId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CreateB...
void function ( String arg0 ) { this . batchPredictionId = arg0 ; }
2,539
try to find out suitable date given yy yy mmddhhmmss format difficult thing being finding out appropiate year concode_field_sep long ONE_YEAR concode_field_sep String formatDate concode_elem_sep String formatDate concode_elem_sep Date parseDateTime concode_elem_sep Date parseDateTime concode_elem_sep String getDateTime...
Date function ( String arg0 ) { return parseISODate ( arg0 , System . currentTimeMillis ( ) ) ; }
2,540
enable advanced highlighting . concode_field_sep StyledTextXtextAdapter styledTextXtextAdapter concode_elem_sep XtextSourceViewerConfiguration fConfiguration concode_elem_sep IPreferenceStore preferenceStore concode_elem_sep XtextSourceViewer fSourceViewer concode_elem_sep XtextPresentationReconciler fPresentationRecon...
void function ( ) { fPresenter = getPresenterProvider ( ) . get ( ) ; fPresenter . install ( fSourceViewer , fPresentationReconciler ) ; if ( styledTextXtextAdapter != null ) { fReconciler = reconcilerProvider . get ( ) ; fReconciler . install ( styledTextXtextAdapter , fSourceViewer , fPresenter ) ; } }
2,541
sets the value of the onerror property . concode_field_sep boolean onError concode_elem_sep boolean onWarning concode_elem_sep String description concode_elem_sep List<String> arguments concode_elem_sep int actionOrder concode_elem_sep String fileMgmtGroup concode_elem_sep String actionName concode_elem_sep boolean onS...
void function ( boolean arg0 ) { this . onError = arg0 ; }
2,542
gets the velocidadeuploadsiebel value for this ossturbonetvelocidadesincronizadain . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep int velocidadeUploadSiebel concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.gvt.www.ws.eai.oss....
int function ( ) { return velocidadeUploadSiebel ; }
2,543
converts the jdk level to a name supported by selenium . concode_field_sep String DEBUG concode_elem_sep ImmutableMap<Integer,Level> levelMap concode_field_sep Level toLevel concode_elem_sep Level normalize
String function ( Level arg0 ) { Level loc0 = normalize ( arg0 ) ; return loc0 == Level . FINE ? DEBUG : loc0 . getName ( ) ; }
2,544
pass the line through . do nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isEndOfRecord concode_elem_sep String postProcess
String function ( String arg0 ) { return arg0 ; }
2,545
convenient call for abstractdao #delete object . entity must attached to an entity context . concode_field_sep List<ToManyTarget2> toManyTarget2List concode_elem_sep Long toOneTarget2__resolvedKey concode_elem_sep Long id concode_elem_sep DaoSession daoSession concode_elem_sep RelationSource2Dao myDao concode_elem_sep ...
void function ( ) { if ( myDao == null ) { throw new DaoException ( "srini_string" ) ; } myDao . delete ( this ) ; }
2,546
makes a new unordered spannearquery with additional asserts from the provided terms concode_field_sep PlaceHolder placeHolder concode_field_sep SpanQuery spanQuery concode_elem_sep SpanQuery spanPositionRangeQuery concode_elem_sep SpanQuery spanContainingQuery concode_elem_sep SpanQuery spanNearOrderedQuery concode_ele...
SpanQuery function ( String arg0 , int arg1 , String ... arg2 ) { SpanNearQuery . Builder loc0 = SpanNearQuery . newUnorderedNearQuery ( arg0 ) ; loc0 . setSlop ( arg1 ) ; for ( String loc1 : arg2 ) { loc0 . addClause ( new SpanTermQuery ( new Term ( arg0 , loc1 ) ) ) ; } return spanQuery ( loc0 . build ( ) ) ; }
2,547
when #favorpathextension is set , this property determines whetherto allow use of jaf java activation framework to resolve a path extension to a specific mediatype . by default this is not set in which case pathextensioncontentnegotiationstrategy will use jaf if available . concode_field_sep Map<String,MediaType> media...
ContentNegotiationConfigurer function ( boolean arg0 ) { this . factory . setUseJaf ( arg0 ) ; return this ; }
2,548
called to retrieve a view to a list that will be kept sorted and updated with modifications concode_field_sep Comparator<T> comparator concode_elem_sep List<T> list concode_field_sep void add concode_elem_sep int indexOfElement concode_elem_sep ListSorter<T> create concode_elem_sep ListSorter<T> create concode_elem_sep...
List < T > function ( ) { return Collections . unmodifiableList ( list ) ; }
2,549
gets the value of the show property . concode_field_sep String role concode_elem_sep CISeriesType ciSeries concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep Strin...
String function ( ) { return show ; }
2,550
private methods concode_field_sep Map<TripIdentifier,List<Trip>> tripsByIdentifier concode_elem_sep Map<String,String> stopIdsByLocation concode_elem_sep Logger _log concode_elem_sep Boolean _excludeNonRevenue concode_elem_sep int _totalTripCount concode_elem_sep GtfsMutableRelationalDao gtfsDao concode_field_sep void ...
String function ( String arg0 ) { return stopIdsByLocation . get ( arg0 ) ; }
2,551
returns corresponding fix field name as per fixconstants.fieldsname @number for this message concode_field_sep int number concode_elem_sep ByteBufferBytes fieldData concode_elem_sep byte MULTI_VALUE_DELIM concode_elem_sep CharSequence name concode_elem_sep int _defaultSize concode_elem_sep int valueSize concode_elem_se...
CharSequence function ( ) { return name ; }
2,552
set the location of a quartz job definition xml file that follows the `` job_scheduling_data_1_5 '' xsd or better . can be specified to automatically register jobs that are defined in such a file , possibly in addition to jobs defined directly on this schedulerfactorybean . concode_field_sep Log logger concode_elem_sep...
void function ( String arg0 ) { this . jobSchedulingDataLocations = new String [ ] { arg0 } ; }
2,553
gets the value of the name property . concode_field_sep XMLGregorianCalendar issuingDate concode_elem_sep JAXBElement<String> name concode_elem_sep JAXBElement<String> vendorName concode_elem_sep JAXBElement<String> value concode_elem_sep XMLGregorianCalendar expirationDate concode_field_sep void setName concode_elem_s...
JAXBElement < String > function ( ) { return name ; }
2,554
test object . concode_field_sep PlaceHolder placeHolder concode_field_sep void testShort concode_elem_sep void testBoolean concode_elem_sep void testChar concode_elem_sep void testByte concode_elem_sep void testInt concode_elem_sep void testFloat concode_elem_sep void testDouble concode_elem_sep void testLong
void function ( ) { Object loc0 = new Object ( ) ; long loc1 = Instruments . sizeOf ( loc0 ) ; Assert . assertEquals ( Instruments . SIZE_OBJECT , loc1 ) ; }
2,555
computes disparity using the bm algorithm for a rectified stereo pair . the method executes the bm algorithm on a rectified stereo pair . see the stereo_match.cpp opencv sample on how to prepare images and call the method . note that the method is not constant , thus you should not use the same stereobm instance from w...
void function ( Mat arg0 , Mat arg1 , Mat arg2 , int arg3 ) { compute_0 ( nativeObj , arg0 . nativeObj , arg1 . nativeObj , arg2 . nativeObj , arg3 ) ; return ; }
2,556
creates a jbutton . concode_field_sep PlaceHolder placeHolder concode_field_sep void positionFrameRandomly concode_elem_sep void centerDialogInParent concode_elem_sep Rectangle getMaximumWindowBounds concode_elem_sep void positionDialogRelativeToParent concode_elem_sep JPanel createTablePanel concode_elem_sep JLabel cr...
JButton function ( final String arg0 , final Font arg1 ) { final JButton loc0 = new JButton ( arg0 ) ; loc0 . setFont ( arg1 ) ; return loc0 ; }
2,557
close the channel , channel is gone from the server now , a new channel is required if you wish to reconnect , you ca n't re-use the old one concode_field_sep String clientId concode_elem_sep Integer TIMEOUT_MS concode_elem_sep ReadyState readyState concode_elem_sep HttpClient httpClient concode_elem_sep Thread thPoll ...
void function ( ) { this . readyState = ReadyState . CLOSING ; disconnect ( sendGet ( getUrl ( "srini_string" ) ) ) ; }
2,558
set the minimum width of the column . concode_field_sep ColumnPropertyManager properties concode_elem_sep CellEditor<ColType> cellEditor concode_elem_sep CellRenderer DEFAULT_CELL_RENDERER concode_elem_sep CellRenderer<RowType,ColType> cellRenderer concode_field_sep int getPreferredColumnWidth concode_elem_sep void set...
void function ( int arg0 ) { setColumnProperty ( MinimumWidthProperty . TYPE , new MinimumWidthProperty ( arg0 ) ) ; }
2,559
hash code for the statistics object concode_field_sep long num_nulls concode_elem_sep boolean hasNonNullValue concode_field_sep boolean isSmallerThan concode_elem_sep T genericGetMin concode_elem_sep void setNumNulls concode_elem_sep boolean isEmpty concode_elem_sep byte[] getMaxBytes concode_elem_sep long getNumNulls ...
int function ( ) { return 31 * Arrays . hashCode ( getMaxBytes ( ) ) + 17 * Arrays . hashCode ( getMinBytes ( ) ) + Long . valueOf ( this . getNumNulls ( ) ) . hashCode ( ) ; }
2,560
takes in a jsongenerator created by #startmessageobject and returns the stringifiedjson concode_field_sep JsonFactory mJsonFactory concode_elem_sep OkHttpClient mHttpClient concode_elem_sep String TAG concode_elem_sep WebSocket mWebSocket concode_elem_sep ConcurrentHashMap<Integer,JSDebuggerCallback> mCallbacks concode...
String function ( JsonGenerator arg0 ) { arg0 . writeEndObject ( ) ; arg0 . flush ( ) ; return ( ( StringWriter ) arg0 . getOutputTarget ( ) ) . getBuffer ( ) . toString ( ) ; }
2,561
sets the value of the colors property . concode_field_sep CTCellStyleXfs cellStyleXfs concode_elem_sep Object parent concode_elem_sep CTFonts fonts concode_elem_sep CTBorders borders concode_elem_sep CTCellXfs cellXfs concode_elem_sep CTExtensionList extLst concode_elem_sep CTCellStyles cellStyles concode_elem_sep CTNu...
void function ( CTColors arg0 ) { this . colors = arg0 ; }
2,562
get a field from a class . the method will first try to look for a declared field in the same class . if the method is not declared in this class it will look for the field in the super class . this will continue throughout the whole class hierarchy . if the field is not found an illegalargumentexception is thrown . co...
Field function ( Class < ? > arg0 , String arg1 ) { return Whitebox . getField ( arg0 , arg1 ) ; }
2,563
send a byte to uart concode_field_sep int BAUD_19200 concode_elem_sep int BAUD_57600 concode_elem_sep int BAUD_9600 concode_elem_sep int BAUD_38400 concode_elem_sep int BAUD_1200 concode_elem_sep int BAUD_2400 concode_field_sep void init concode_elem_sep int read concode_elem_sep boolean isDataAvailable concode_elem_se...
void function ( int arg0 ) { System . out . println ( "srini_string" + arg0 ) ; }
2,564
get the hash code of this unicastref , combining hash code of the manager with hash code of the object id . concode_field_sep int DIRTY concode_elem_sep UnicastConnectionManager manager concode_elem_sep ObjID[] this_id concode_elem_sep long dgcSequence concode_elem_sep long dgcInterfaceHash concode_elem_sep ObjID objid...
int function ( ) { return manager . hashCode ( ) ^ objid . hashCode ( ) ; }
2,565
return the app the controlarb controls . concode_field_sep App2D app concode_elem_sep boolean releaseWithAll concode_elem_sep LinkedList<ControlChangeListener> listeners concode_elem_sep LinkedList<ControlArb> controlArbs concode_elem_sep boolean appControl concode_elem_sep Logger logger concode_field_sep void setRelea...
App2D function ( ) { return app ; }
2,566
clear the bit set . concode_field_sep long[] data concode_elem_sep int numHashFunctions concode_elem_sep int numBits concode_elem_sep BitSet bitSet concode_elem_sep double DEFAULT_FPP concode_field_sep long sizeInBytes concode_elem_sep long[] getBitSet concode_elem_sep void checkArgument concode_elem_sep int optimalNum...
void function ( ) { Arrays . fill ( data , 0 ) ; }
2,567
gets the value of the eventtype property . concode_field_sep BigDecimal amount concode_elem_sep XMLGregorianCalendar dueDate concode_elem_sep long serialVersionUID concode_elem_sep String eventType concode_elem_sep XMLGregorianCalendar paymentDate concode_field_sep XMLGregorianCalendar getPaymentDate concode_elem_sep v...
String function ( ) { return eventType ; }
2,568
reset this instance to its initial checksum . concode_field_sep long adler concode_field_sep long getValue concode_elem_sep long updateByteImpl concode_elem_sep void update concode_elem_sep void update concode_elem_sep void update concode_elem_sep long updateImpl
void function ( ) { adler = 1 ; }
2,569
sets the id value for this contentbundle . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang.String description concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Long id concod...
void function ( java . lang . Long arg0 ) { this . id = arg0 ; }
2,570
set the link of the resource concode_field_sep String pdate concode_elem_sep String about concode_elem_sep String link concode_elem_sep String description concode_elem_sep Hashtable dc_container concode_elem_sep String title concode_elem_sep RSSDoublinCoreModule dc concode_field_sep RSSDoublinCoreModule getRSSDoublinCo...
void function ( String arg0 ) { this . link = arg0 ; }
2,571
is the current ast normalized ? e.g. has the normalize pass been run and has the denormalize pass not yet been run ? concode_field_sep AbstractCompiler compiler concode_field_sep Node optimizeSubtree concode_elem_sep void beginTraversal concode_elem_sep void endTraversal concode_elem_sep CodingConvention getCodingConve...
boolean function ( ) { Preconditions . checkNotNull ( compiler ) ; return compiler . getLifeCycleStage ( ) . isNormalized ( ) ; }
2,572
list.tostring concode_field_sep int minSupport concode_field_sep List<Integer> getOneFreqItems concode_elem_sep void writeToFile concode_elem_sep List<List<Integer>> loadTransactions concode_elem_sep void main concode_elem_sep void generateAllFreqItemsets
String function ( List < Integer > arg0 ) { StringBuilder loc0 = new StringBuilder ( ) ; for ( int loc1 : arg0 ) { loc0 . append ( loc1 ) ; loc0 . append ( "srini_string" ) ; } loc0 . setLength ( loc0 . length ( ) - 1 ) ; return loc0 . toString ( ) ; }
2,573
returns the result of interpreting the object as an instance of ` value set ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep BusinessconfigurationPackage modelPackage concode_field_sep T caseValueSetEntry concode_elem_sep T caseConfigurationElement concode...
T function ( ValueSet arg0 ) { return null ; }
2,574
returns true if the given uri matches the pattern concode_field_sep URI uriPattern concode_field_sep String toString concode_elem_sep boolean matchNormalized
boolean function ( URI arg0 ) { return matchNormalized ( arg0 . normalize ( ) ) ; }
2,575
sets the value of the description property . concode_field_sep Integer sequenceNumber concode_elem_sep Date lastUpdateDate concode_elem_sep Integer parentObjectId concode_elem_sep String name concode_elem_sep String description concode_elem_sep String lastUpdateUser concode_elem_sep String createUser concode_elem_sep S...
void function ( String arg0 ) { this . description = arg0 ; }
2,576
tests situation where the number of shards requested exceeds the the number of files . empty shards are expected . concode_field_sep String ARCHIVE_FILE_SEPARATOR concode_elem_sep String ARCHIVE_DIR_SUFFIX concode_elem_sep String CLASS_SUFFIX concode_field_sep void testSingleFilePackages concode_elem_sep Collection<Str...
void function ( ) { int [ ] [ ] loc0 = { { 2 , 1 , 1 } , { 10 , 2 , 2 } , { 100 , 10 , 9 } , { 100 , 9 , 10 } } ; comboRunner ( loc0 ) ; }
2,577
return the text encoded in bytes so long as those bytes adhereto the format specified by the #getbytes method . this methodassumes that all the bytes in the bytes belong to the text . ingeneral , it is necessary to get the appropriate text slice from the parent bytebuffer using bytebuffers #slice bytebuffer , int , int...
Text function ( ByteBuffer arg0 ) { return new Text ( ByteBuffers . getString ( arg0 , StandardCharsets . UTF_8 ) , arg0 ) ; }
2,578
indicates whether a score computation is needed for the given advocates . concode_field_sep long serialVersionUID concode_elem_sep HashSet<Integer> defaultScores concode_elem_sep Integer minDecoysInBin concode_elem_sep HashMap<Integer,HashSet<Integer>> spectrumMatchingScores concode_field_sep void clearScores concode_e...
boolean function ( ArrayList < Integer > arg0 ) { if ( spectrumMatchingScores != null && ! spectrumMatchingScores . isEmpty ( ) ) { for ( Integer loc0 : arg0 ) { if ( PsmScoringPreferences . this . isScoringNeeded ( loc0 ) ) { return true ; } } } return false ; }
2,579
get or build and get dao by class annotated by @entity concode_field_sep Map<Class<?>,Map<String,DAO>> daoProperties concode_elem_sep Map<Class<?>,DAO> daoPool concode_field_sep DAO<T> buildDaoByEntityClass
DAO < T > function ( Class < T > arg0 ) { daoPool . putIfAbsent ( arg0 , buildDaoByEntityClass ( arg0 ) ) ; return daoPool . get ( arg0 ) ; }
2,580
visits an annotation of the field . concode_field_sep FieldVisitor fv concode_elem_sep int api concode_field_sep AnnotationVisitor visitTypeAnnotation concode_elem_sep void visitEnd concode_elem_sep void visitAttribute
AnnotationVisitor function ( String arg0 , boolean arg1 ) { if ( fv != null ) { return fv . visitAnnotation ( arg0 , arg1 ) ; } return null ; }
2,581
add a fromnativeconverter to convert a native result type into the given java type . converters are checked for in the order added . concode_field_sep List toNativeConverters concode_elem_sep List fromNativeConverters concode_elem_sep Object converter concode_elem_sep Class type concode_field_sep FromNativeConverter ge...
void function ( Class arg0 , FromNativeConverter arg1 ) { fromNativeConverters . add ( new Entry ( arg0 , arg1 ) ) ; Class loc0 = getAltClass ( arg0 ) ; if ( loc0 != null ) { fromNativeConverters . add ( new Entry ( loc0 , arg1 ) ) ; } }
2,582
sets the value of the smallicon property . concode_field_sep PathType largeIcon concode_elem_sep PathType smallIcon concode_elem_sep java.lang.String id concode_elem_sep java.lang.String lang concode_field_sep java.lang.String getLang concode_elem_sep PathType getLargeIcon concode_elem_sep void setId concode_elem_sep j...
void function ( PathType arg0 ) { this . smallIcon = arg0 ; }
2,583
helper called by generated code to construct default values for bytes fields . this is like #bytesdefaultvalue , but returns a bytebuffer . concode_field_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep ByteBuffer EMPTY_BYTE_BUFFER concode_elem_sep int DEFAULT_BUFFER_SIZE concode_field_sep int hashEnum concode_elem_sep int...
ByteBuffer function ( String arg0 ) { return ByteBuffer . wrap ( byteArrayDefaultValue ( arg0 ) ) ; }
2,584
the id of the extension concode_field_sep boolean installed concode_elem_sep String imageLink concode_elem_sep String backgroundColor concode_elem_sep String link concode_elem_sep String description concode_elem_sep String id concode_elem_sep String label concode_elem_sep String type concode_elem_sep String version con...
String function ( ) { return id ; }
2,585
helper method - loads a testmodel from the testmodel directory concode_field_sep IModelSequencer sequencer concode_field_sep Statechart loadStatechartFromResource concode_elem_sep String getModelDirectory
ExecutionFlow function ( String arg0 ) { Statechart loc0 = loadStatechartFromResource ( arg0 ) ; final ExecutionFlow loc1 = sequencer . transform ( loc0 ) ; return loc1 ; }
2,586
annotates adds context to the given exception with information about this frame . concode_field_sep ExecutionStack stack concode_elem_sep IntList subroutines concode_elem_sep LocalsArray locals concode_field_sep void makeInitialized concode_elem_sep Frame subFrameForLabel concode_elem_sep Frame mergeWith concode_elem_s...
void function ( ExceptionWithContext arg0 ) { locals . annotate ( arg0 ) ; stack . annotate ( arg0 ) ; }
2,587
creates a buffer for the given working copy . the new buffer will be initialized with the contents of the underlying file if and only if it was not already initialized by the compilation owner a buffer is uninitialized if its content is null . note : this buffer will be associated to the working copy for its entire lif...
IBuffer function ( ICompilationUnit arg0 ) { return BufferManager . createBuffer ( arg0 ) ; }
2,588
the workspace user is an administrator on the workspace . concode_field_sep String defaultOu concode_elem_sep Boolean enableWorkDocs concode_elem_sep Boolean enableInternetAccess concode_elem_sep Boolean userEnabledAsLocalAdministrator concode_elem_sep String customSecurityGroupId concode_field_sep Boolean isUserEnable...
void function ( Boolean arg0 ) { this . userEnabledAsLocalAdministrator = arg0 ; }
2,589
getter method for classificationid concode_field_sep Date endDate concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep Integer classificationId concode_elem_sep Timestamp createdDate concode_elem_sep String alertName concode_elem_sep String createdBy concode_elem_sep Timestamp mod...
Integer function ( ) { return classificationId ; }
2,590
returns interpolated values given the barycentric coordinates of a point in a triangle and the values at each vertex . concode_field_sep Vector2 tmp3 concode_elem_sep Vector2 tmp1 concode_elem_sep Vector2 tmp2 concode_field_sep Vector2 polygonCentroid concode_elem_sep Vector2 toBarycoord concode_elem_sep boolean baryco...
Vector2 function ( Vector2 arg0 , Vector2 arg1 , Vector2 arg2 , Vector2 arg3 , Vector2 arg4 ) { float loc0 = 1 - arg0 . x - arg0 . y ; arg4 . x = loc0 * arg1 . x + arg0 . x * arg2 . x + arg0 . y * arg3 . x ; arg4 . y = loc0 * arg1 . y + arg0 . x * arg2 . y + arg0 . y * arg3 . y ; return arg4 ; }
2,591
number of shards with completed snapshot concode_field_sep XContentBuilderString TOTAL concode_elem_sep XContentBuilderString INITIALIZING concode_elem_sep int doneShards concode_elem_sep int totalShards concode_elem_sep int initializingShards concode_elem_sep int failedShards concode_elem_sep XContentBuilderString FAI...
int function ( ) { return doneShards ; }
2,592
returns the attachment with the primary key . concode_field_sep AttachmentLocalService _attachmentLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_e...
com . liferay . mail . model . Attachment function ( long arg0 ) { return _attachmentLocalService . getAttachment ( arg0 ) ; }
2,593
determine whether the submit button is disabled . concode_field_sep String IMAGE_DISABLED concode_elem_sep String IMAGE_ENABLED concode_elem_sep boolean status concode_field_sep String getImageButton concode_elem_sep boolean getStatus concode_elem_sep void setStatus
boolean function ( ) { return ! status ; }
2,594
set whether to write footers in compact form . see #iscompactfooter for more info . concode_field_sep Collection<BinaryTypeConfiguration> typeCfgs concode_elem_sep boolean compactFooter concode_elem_sep BinaryIdMapper idMapper concode_elem_sep BinarySerializer serializer concode_elem_sep boolean DFLT_COMPACT_FOOTER con...
void function ( boolean arg0 ) { this . compactFooter = arg0 ; }
2,595
check if the given protocol is a valid protocol that can be used . concode_field_sep int COAP concode_elem_sep Set<Integer> validProtocols concode_elem_sep Logger logger concode_field_sep placeholderType placeHolder
boolean function ( int arg0 ) { return validProtocols . contains ( arg0 ) ; }
2,596
gives the alert timings of late window of the milestone . concode_field_sep Map<String,List<DateTime>> alertTimings concode_field_sep List<DateTime> getDueWindowAlertTimings concode_elem_sep Map<String,List<DateTime>> getAlertTimings concode_elem_sep List<DateTime> getMaxWindowAlertTimings concode_elem_sep List<DateTim...
List < DateTime > function ( ) { return alertTimings . get ( WindowName . late . toString ( ) ) ; }
2,597
given a thrift definition , protocols events , it checks all the required fields , and create default value if a required field is missing concode_field_sep List<TProtocol> fixedEvents concode_elem_sep List<TProtocol> rootEvents concode_field_sep void checkSet concode_elem_sep boolean isRequired concode_elem_sep void c...
List < TProtocol > function ( StructType arg0 ) { Iterator < TProtocol > loc0 = rootEvents . iterator ( ) ; checkStruct ( loc0 , arg0 ) ; return fixedEvents ; }
2,598
destroy this ticket . this discards secret information . after this method is called , other methods will throw illegalstateexception . concode_field_sep int INITIAL concode_elem_sep int NUM_FLAGS concode_elem_sep KerberosPrincipal server concode_elem_sep int RENEWABLE concode_elem_sep KeyImpl sessionKey concode_elem_s...
void function ( ) { if ( sessionKey == null ) throw new DestroyFailedException ( "srini_string" ) ; sessionKey = null ; asn1Encoding = null ; }
2,599
gets the quota for this origin , for the web sql database api , in bytes . if this origin does not use the web sql database api , this quota will be set to zero . concode_field_sep long mUsage concode_elem_sep String mOrigin concode_elem_sep long mQuota concode_field_sep void updateQuota concode_elem_sep String getOrig...
long function ( ) { return mQuota ; }