idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
1,400
return a null reference for the specified servlet name . concode_field_sep PrintWriter myLogWriter concode_elem_sep Hashtable<String,Object> myAttributes concode_elem_sep URL myResourceBaseURL concode_field_sep Enumeration<String> getServletNames concode_elem_sep ServletRegistration getServletRegistration concode_elem_...
Servlet function ( String arg0 ) { return ( null ) ; }
1,401
test method for com.glebow.cfpoc.domain.testdata #tostring . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( ) { TestData loc0 = new TestData ( 1l , "srini_string" ) ; log . info ( loc0 . toString ( ) ) ; }
1,402
returns the next socket address to try . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> proxySelectorProxies concode_elem_sep ConnectionPool pool concode_elem_sep Dns dns con...
InetSocketAddress function ( ) { InetSocketAddress loc0 = new InetSocketAddress ( socketAddresses [ nextSocketAddressIndex ++ ] , socketPort ) ; if ( nextSocketAddressIndex == socketAddresses . length ) { socketAddresses = null ; nextSocketAddressIndex = 0 ; } return loc0 ; }
1,403
returns all managed properties concode_field_sep List<Property> looksLikeId concode_elem_sep Class<?> baseJavaClass concode_elem_sep Map<String,Property> propertiesByName concode_elem_sep List<Property> managedProperties concode_field_sep Property getProperty concode_elem_sep Set<String> getPropertyNames concode_elem_s...
List < Property > function ( ) { return Collections . unmodifiableList ( managedProperties ) ; }
1,404
computes a hash code as specified by java.util.map.entry #hashcode . concode_field_sep V value concode_elem_sep K key concode_field_sep K getKey concode_elem_sep V getValue concode_elem_sep boolean equals concode_elem_sep V setValue concode_elem_sep String toString concode_elem_sep void setValueInternal
int function ( ) { return ( ( key == null ) ? 0 : key . hashCode ( ) ) ^ ( ( value == null ) ? 0 : value . hashCode ( ) ) ; }
1,405
this is used when removing the listener . note : listeners need to be removed from the member that they are first subscribed . concode_field_sep long callId concode_elem_sep ListenerMessageCodec codec concode_elem_sep Address subscriber concode_elem_sep String serverRegistrationId concode_field_sep String getServerRegi...
Address function ( ) { return subscriber ; }
1,406
returns the parser that is registered under the given pipeline aggregator type . concode_field_sep ImmutableMap<String,Aggregator.Parser> aggParsers concode_elem_sep Pattern VALID_AGG_NAME concode_elem_sep ImmutableMap<String,PipelineAggregator.Parser> pipelineAggregatorParsers concode_field_sep Aggregator.Parser parse...
PipelineAggregator . Parser function ( String arg0 ) { return pipelineAggregatorParsers . get ( arg0 ) ; }
1,407
sets the value of the requesthandler property . concode_field_sep String canonicalizationMethod concode_elem_sep String requestHandler concode_elem_sep ClaimsProcessorsType claimsProcessors concode_elem_sep String stsName concode_elem_sep KeyProviderType keyProvider concode_elem_sep ServiceProvidersType serviceProvider...
void function ( String arg0 ) { this . requestHandler = arg0 ; }
1,408
find out if the task has completed . concode_field_sep File file concode_elem_sep ResourceBundle messageBundle concode_elem_sep int lengthOfTask concode_elem_sep String dialogMessage concode_elem_sep Document document concode_elem_sep Logger logger concode_elem_sep boolean done concode_elem_sep int current concode_elem...
boolean function ( ) { return done ; }
1,409
returns the jasperreport object for this context . note that this context might correspond to a subdataset in the report . use #getdataset to retrieve the dataset for which scriptletsare to be created concode_field_sep JasperReport jasperReport concode_elem_sep JasperReportsContext jasperReportsContext concode_elem_sep...
JasperReport function ( ) { return jasperReport ; }
1,410
sac : implements org.w3c.css.sac.conditionfactory #createcontentcondition string . concode_field_sep ConditionFactory INSTANCE concode_field_sep LangCondition createLangCondition concode_elem_sep CombinatorCondition createOrCondition concode_elem_sep PositionalCondition createPositionalCondition concode_elem_sep Attrib...
ContentCondition function ( String arg0 ) { throw new CSSException ( "srini_string" ) ; }
1,411
passes this packet on to the nethandler for processing . concode_field_sep boolean trackingPosition concode_elem_sep byte mapScale concode_elem_sep int minX concode_elem_sep int columns concode_elem_sep int mapId concode_elem_sep byte[] mapDataBytes concode_elem_sep int minZ concode_elem_sep Vec4b[] icons concode_elem_...
void function ( INetHandlerPlayClient arg0 ) { arg0 . handleMaps ( this ) ; }
1,412
lets the calling thread wait until the server terminates its operation . concode_field_sep Server server concode_elem_sep String WEB_ROOT_DIR concode_elem_sep Logger LOG concode_field_sep void checkAndCreateDirectories concode_elem_sep void start
void function ( ) { server . join ( ) ; }
1,413
return the sort order : ascending true or descending false . concode_field_sep Comparator<T> comparator concode_elem_sep boolean ascending concode_field_sep int compare concode_elem_sep void setAscending concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep void...
boolean function ( ) { return this . ascending ; }
1,414
return the sql error codes to match . concode_field_sep String[] errorCodes concode_elem_sep Class<?> exceptionClass concode_field_sep Class<?> getExceptionClass concode_elem_sep void setExceptionClass concode_elem_sep void setErrorCodes
String [ ] function ( ) { return this . errorCodes ; }
1,415
add data to the send queue . use a category of 0 to make an item non-categorised . commands which need to be queued up and not replacing same type commands must be non-categorised . items added to the queue are considered repeatable , in the sense that they do not cause side effects if they are send multiple times e.g....
void function ( int arg0 , byte [ ] ... arg1 ) { remove_from_queue ( arg0 ) ; QueueItem loc0 = QueueItem . createRepeatable ( arg0 , arg1 [ 0 ] ) ; QueueItem loc1 = loc0 ; for ( int loc2 = 1 ; loc2 < arg1 . length ; ++ loc2 ) { loc1 = loc1 . addRepeatable ( arg1 [ loc2 ] ) ; } queue . offer ( loc0 ) ; }
1,416
gets the map that objects are being placed on concode_field_sep KmlRenderer mRenderer concode_field_sep Iterable<KmlContainer> getContainers concode_elem_sep Iterable<KmlGroundOverlay> getGroundOverlays concode_elem_sep boolean hasPlacemarks concode_elem_sep Iterable<KmlPlacemark> getPlacemarks concode_elem_sep void re...
GoogleMap function ( ) { return mRenderer . getMap ( ) ; }
1,417
gets the output . concode_field_sep OutputStream output concode_elem_sep String LINE_SEPARATOR concode_elem_sep boolean disabled concode_field_sep void printLine concode_elem_sep void printLine concode_elem_sep void printLine concode_elem_sep void print concode_elem_sep void print concode_elem_sep void formatLine conco...
OutputStream function ( ) { if ( output == null ) { setOutput ( System . out ) ; } return output ; }
1,418
gets the outputblocksize attribute of the decoder object concode_field_sep SampleBuffer output concode_elem_sep int outputFrequency concode_elem_sep SynthesisFilter filter1 concode_elem_sep SynthesisFilter filter2 concode_elem_sep int outputChannels concode_elem_sep LayerIIIDecoder decoder concode_field_sep int getOutp...
int function ( ) { return SampleBuffer . OBUFFERSIZE ; }
1,419
set the current log level . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep ...
void function ( int arg0 ) { LOGLEVEL = arg0 ; Log . i ( "srini_string" , "srini_string" + arg0 ) ; }
1,420
sets the height increase of the extreme spikes . concode_field_sep PlaceHolder placeHolder concode_field_sep Builder spikesPerChunk concode_elem_sep Builder spikesPerChunk concode_elem_sep VariableAmount getExtremeSpikeIncrease concode_elem_sep VariableAmount getSpikesPerChunk concode_elem_sep void setHeight concode_el...
void function ( int arg0 ) { setExtremeSpikeIncrease ( VariableAmount . fixed ( arg0 ) ) ; }
1,421
returns a string representation of this filter . concode_field_sep long serialVersionUID concode_field_sep Object readResolve concode_elem_sep boolean evaluate concode_elem_sep Object accept
String function ( ) { return "srini_string" ; }
1,422
gets the value of the show property . concode_field_sep JAXBElement<? extends AbstractMXFileType> abstractMXFile concode_elem_sep String role 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 function ( ) { return show ; }
1,423
load stored client side token for auto login concode_field_sep String REMEMBER_ME concode_elem_sep CLogger log concode_field_sep String getHomeToken concode_elem_sep String getPasswordHash concode_elem_sep void save concode_elem_sep void remove concode_elem_sep boolean validateToken
void function ( String arg0 ) { try { String loc0 = getHomeToken ( ) ; String loc1 = "srini_string" + arg0 + "srini_string" + loc0 + "srini_string" ; AuScript loc2 = new AuScript ( null , loc1 ) ; Clients . response ( "srini_string" , loc2 ) ; } catch ( Exception loc0 ) { log . log ( Level . WARNING , loc0 . getLocaliz...
1,424
bdictionary events concode_field_sep BDictionary bDictionary concode_field_sep void bDictionary_retrieved concode_elem_sep void bDictionary_totalKeys concode_elem_sep void bDictionary_removed concode_elem_sep void bDictionary_nextKey concode_elem_sep void bDictionary_inserted concode_elem_sep void bDictionary_fileIsDic...
void function ( long arg0 , long arg1 , TinyosError arg2 ) { System . out . print ( "srini_string" ) ; if ( arg2 . wasSuccess ( ) ) { System . out . println ( "srini_string" + arg0 + "srini_string" ) ; } else { System . out . println ( "srini_string" ) ; } System . exit ( 0 ) ; }
1,425
convert a passed byte string e.g. 50b , 100k , or 250m to kibibytes for internal use . if no suffix is provided , the passed number is assumed to be in kibibytes . concode_field_sep long DEFAULT_DRIVER_MEM_MB concode_elem_sep Logger logger concode_elem_sep ImmutableMap<String,ByteUnit> byteSuffixes concode_elem_sep Imm...
long function ( String arg0 ) { return parseByteString ( arg0 , ByteUnit . KiB ) ; }
1,426
checks if the specified state has at least one entry action . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean containsOnlyEventsOfType concode_elem_sep boolean oneIncomingTransitionEntersCompositeWithEntryActions concode_elem_sep boolean hasExitAction concode_elem_sep boolean hasAtLeastOneAction con...
boolean function ( State arg0 ) { EList < Expression > loc0 = getFirstEntryActions ( arg0 ) ; if ( loc0 != null && ! loc0 . isEmpty ( ) ) { return true ; } return false ; }
1,427
find the nth occurrence of the given byte b in a utf-8 encoded string concode_field_sep PlaceHolder placeHolder concode_field_sep int findByte concode_elem_sep int findBytes
int function ( byte [ ] arg0 , int arg1 , int arg2 , byte arg3 , int arg4 ) { int loc0 = - 1 ; int loc1 = arg1 ; for ( int loc2 = 0 ; loc2 < arg4 ; loc2 ++ ) { loc0 = findByte ( arg0 , loc1 , arg2 , arg3 ) ; if ( loc0 < 0 ) { return loc0 ; } loc1 = loc0 + 1 ; } return loc0 ; }
1,428
this is a setter concode_field_sep String calendarEventId concode_elem_sep String calendarId concode_elem_sep String siteId concode_elem_sep List<SignupGroup> signupGroups concode_elem_sep Long id concode_elem_sep String title concode_elem_sep int version concode_field_sep boolean isSiteScope concode_elem_sep String ge...
void function ( String arg0 ) { this . siteId = arg0 ; }
1,429
return the name of the analyzed class . concode_field_sep Map<String,Object> fieldCache concode_elem_sep String className concode_field_sep String toCodeForProperty concode_elem_sep Set<Object> getValues concode_elem_sep String toCode concode_elem_sep Number asNumber concode_elem_sep Set<String> getNames concode_elem_s...
String function ( ) { return this . className ; }
1,430
convert an object to jsonnode . concode_field_sep ObjectMapper defaultObjectMapper concode_elem_sep ObjectMapper objectMapper concode_field_sep String prettyPrint concode_elem_sep String generateJson concode_elem_sep ObjectMapper newDefaultMapper concode_elem_sep String asciiStringify concode_elem_sep ObjectNode newObj...
JsonNode function ( final Object arg0 ) { try { return mapper ( ) . valueToTree ( arg0 ) ; } catch ( Exception loc0 ) { throw new RuntimeException ( loc0 ) ; } }
1,431
start polling a given device concode_field_sep boolean m_keepRunning concode_elem_sep long MIN_MSEC_BETWEEN_POLLS concode_elem_sep InsteonDevice m_dev concode_elem_sep Logger logger concode_elem_sep Poller s_poller concode_elem_sep TreeSet<PQEntry> m_pollQueue concode_elem_sep long m_expirationTime concode_elem_sep Thr...
void function ( InsteonDevice arg0 ) { synchronized ( m_pollQueue ) { for ( Iterator < PQEntry > loc0 = m_pollQueue . iterator ( ) ; loc0 . hasNext ( ) ; ) { if ( loc0 . next ( ) . getDevice ( ) . getAddress ( ) . equals ( arg0 . getAddress ( ) ) ) { loc0 . remove ( ) ; logger . debug ( "srini_string" , arg0 ) ; } } } ...
1,432
adds a message the log4j ndc before the request is processed . concode_field_sep Logger log4jLogger concode_elem_sep boolean includeClientInfo concode_field_sep boolean isIncludeClientInfo concode_elem_sep String getNestedDiagnosticContextMessage concode_elem_sep void postHandle concode_elem_sep void afterCompletion co...
void function ( WebRequest arg0 ) { NDC . push ( getNestedDiagnosticContextMessage ( arg0 ) ) ; }
1,433
the write consistency level to use with index and bulk operations can be any of one , quorum , all or default concode_field_sep String transportAddresses concode_elem_sep String indexType concode_elem_sep List<InetSocketTransportAddress> transportAddressesList concode_elem_sep Boolean data concode_elem_sep String index...
WriteConsistencyLevel function ( ) { return consistencyLevel ; }
1,434
add a field with the specified value . concode_field_sep List<String> namesAndValues concode_elem_sep String[] namesAndValues concode_field_sep Builder addLenient concode_elem_sep Builder addLenient concode_elem_sep Builder set concode_elem_sep List<String> values concode_elem_sep void checkNameAndValue concode_elem_se...
Builder function ( String arg0 , String arg1 ) { checkNameAndValue ( arg0 , arg1 ) ; return addLenient ( arg0 , arg1 ) ; }
1,435
adds a file as persisted . concode_field_sep TachyonConf mTachyonConf concode_elem_sep Set<Long> mPersistedFiles concode_elem_sep Object mLock concode_elem_sep UnderFileSystem mUfs concode_elem_sep Set<Long> mPersistingInProgressFiles concode_elem_sep Logger LOG concode_elem_sep BlockDataManager mBlockDataManager conco...
void function ( long arg0 ) { synchronized ( mLock ) { mPersistedFiles . add ( arg0 ) ; } }
1,436
returns the f1 function that is used in the fda3 problem . concode_field_sep long serialVersionUID concode_elem_sep ContinuousFunction fda3_g concode_elem_sep FunctionOptimisationProblem fda3_f_problem concode_elem_sep FunctionOptimisationProblem fda3_g_problem concode_elem_sep ContinuousFunction fda3_f concode_field_s...
ContinuousFunction function ( ) { return this . fda3_f ; }
1,437
creates a new serializer instance from a kryonamespace . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] encode concode_elem_sep T decode concode_elem_sep Serializer forTypes
Serializer function ( KryoNamespace arg0 ) { return using ( Arrays . asList ( arg0 ) ) ; }
1,438
sleeps the current thread until this deadline has expired ; if mayinterrupt is true then an interrupt will cause this method to return true this is essentially a neater way of calling thread.sleep concode_field_sep Logger log concode_elem_sep long serialVersionUID concode_elem_sep long deadline concode_elem_sep Deadlin...
boolean function ( final boolean arg0 ) { while ( isValid ( ) ) { try { Thread . sleep ( getTimeLeft ( TimeUnit . MILLISECONDS ) ) ; } catch ( InterruptedException loc0 ) { if ( arg0 ) return true ; } } return false ; }
1,439
displays popup for the root pane containing specified component . concode_field_sep PopupStyle defaultPopupStyle concode_elem_sep Map<JRootPane,PopupLayer> popupLayers concode_elem_sep Map<JRootPane,ShadeLayer> shadeLayers concode_field_sep void showModalPopup concode_elem_sep void showModalPopup concode_elem_sep void ...
void function ( final Component arg0 , final WebPopup arg1 , final boolean arg2 ) { final JRootPane loc0 = SwingUtils . getRootPane ( arg0 ) ; if ( loc0 != null ) { showPopup ( loc0 , arg1 , arg2 ) ; } }
1,440
retrieves a new hsqlproperties object , if possible , loaded from the specified file . concode_field_sep PlaceHolder placeHolder concode_field_sep void translateDefaultNoSystemExitProperty concode_elem_sep int getDefaultPort concode_elem_sep String[] listLocalInetAddressNames concode_elem_sep void translateDefaultDatab...
HsqlProperties function ( String arg0 ) { if ( StringUtil . isEmpty ( arg0 ) ) { return null ; } HsqlProperties loc0 = new HsqlProperties ( arg0 ) ; try { loc0 . load ( ) ; } catch ( Exception loc1 ) { } return loc0 ; }
1,441
sets the batch for the jms operator . jms can acknowledge receipt of messages back to the broker in batches to improve performance . concode_field_sep boolean topic concode_elem_sep Session session concode_elem_sep Map<String,String> connectionFactoryProperties concode_elem_sep int batch concode_elem_sep boolean transa...
void function ( int arg0 ) { this . batch = arg0 ; }
1,442
get a httpurlconnection from a url . if the connection is https : / / , it will use a more compatible , but less strong , tls configuration . concode_field_sep Proxy proxy concode_elem_sep Proxy ORBOT_HTTP_PROXY concode_field_sep Proxy getProxy concode_elem_sep void setProxy concode_elem_sep void setProxy concode_elem_...
HttpURLConnection function ( URL arg0 ) { return getHttpURLConnection ( arg0 , true ) ; }
1,443
sets the mvcc version of this user tracker path . concode_field_sep UserTrackerPath _userTrackerPath concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean ...
void function ( long arg0 ) { _userTrackerPath . setMvccVersion ( arg0 ) ; }
1,444
return whether this request is still active that is , not completed yet . concode_field_sep boolean requestedSessionIdValid concode_elem_sep PortletSession session concode_elem_sep String scheme concode_elem_sep boolean secure concode_elem_sep Cookie[] cookies concode_elem_sep String windowID concode_elem_sep String au...
boolean function ( ) { return this . active ; }
1,445
get translation from bundles . concode_field_sep Language instance concode_elem_sep HashMap<String,String> languages concode_elem_sep String PREF_FILE concode_elem_sep File prefFile concode_elem_sep String language concode_elem_sep LanguageBundle bundle concode_elem_sep Map<String,String> table concode_field_sep Langua...
String function ( String arg0 ) { String loc0 = get ( arg0 ) ; if ( loc0 == null ) { return arg0 ; } return loc0 ; }
1,446
gets item view concode_field_sep WheelView wheel concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep void recycleView concode_elem_sep List<View> addView concode_elem_sep void clearAll concode_elem_sep View getE...
View function ( ) { return getCachedView ( items ) ; }
1,447
sets the user uuid of this ratings entry . concode_field_sep RatingsEntry _ratingsEntry concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode...
void function ( java . lang . String arg0 ) { _ratingsEntry . setUserUuid ( arg0 ) ; }
1,448
returns the text to be broken up . concode_field_sep char[] text concode_elem_sep int position concode_elem_sep int DONE concode_field_sep Object next concode_elem_sep int nextPosition concode_elem_sep int nextWithEnd concode_elem_sep boolean hasNext concode_elem_sep void remove concode_elem_sep void setText
String function ( ) { return new String ( this . text ) ; }
1,449
returns true if the result set is dynamic . this means that move back and move forward wo n't work because we do not hold on to the records . concode_field_sep ResultSetImpl owner concode_elem_sep ServerPreparedStatement prepStmt concode_elem_sep Field[] metadata concode_elem_sep boolean wasEmpty concode_elem_sep boole...
boolean function ( ) { return true ; }
1,450
sets the value of an attribute in a given scope . concode_field_sep Writer errorWriter concode_elem_sep Reader reader concode_elem_sep Bindings engineScope concode_elem_sep Bindings globalScope concode_elem_sep Writer writer concode_elem_sep List<Integer> scopes concode_field_sep void setWriter concode_elem_sep void se...
void function ( String arg0 , Object arg1 , int arg2 ) { checkName ( arg0 ) ; switch ( arg2 ) { case ENGINE_SCOPE : engineScope . put ( arg0 , arg1 ) ; return ; case GLOBAL_SCOPE : if ( globalScope != null ) { globalScope . put ( arg0 , arg1 ) ; } return ; default : throw new IllegalArgumentException ( "srini_string" )...
1,451
removes all key-value mappings from this sparseintarray . concode_field_sep int[] mKeys concode_elem_sep int mSize concode_elem_sep long[] mValues concode_field_sep int keyAt concode_elem_sep int size concode_elem_sep int indexOfKey concode_elem_sep long get concode_elem_sep long get concode_elem_sep SparseLongArray cl...
void function ( ) { mSize = 0 ; }
1,452
sets the coding scheme version . concode_field_sep String codingSchemeVersion concode_elem_sep String codingSchemeUri concode_elem_sep Property propertyUpdates concode_elem_sep Entity entity concode_field_sep void setPropertyUpdates concode_elem_sep Property getPropertyUpdates concode_elem_sep void setCodingSchemeUri c...
void function ( String arg0 ) { this . codingSchemeVersion = arg0 ; }
1,453
signals start of the nearest neighbour search . initializes the stats object . concode_field_sep double m_MaxP concode_elem_sep double m_PointCount concode_elem_sep double m_CoordCount concode_elem_sep double m_SumP concode_elem_sep double m_SumC concode_elem_sep double m_SumSqC concode_elem_sep long serialVersionUID c...
void function ( ) { m_PointCount = 0 ; m_CoordCount = 0 ; }
1,454
removes the `` file : / / '' prefix from the given uri string , if applicable . if the given uri string does n't have a `` file : / / '' prefix , it is returned unchanged . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String getMimeType concode_elem_sep String getRealPath concode_ele...
String function ( String arg0 ) { if ( arg0 . startsWith ( "srini_string" ) ) { arg0 = arg0 . substring ( 7 ) ; } return arg0 ; }
1,455
create an instance of arrayofmetadatafilterexpression concode_field_sep QName _DeletedMetadataCollection_QNAME concode_elem_sep QName _ArrayOfMetadataFilterExpression_QNAME concode_elem_sep QName _MetadataConditionOperator_QNAME concode_elem_sep QName _MetadataQueryExpression_QNAME concode_elem_sep QName _EntityQueryEx...
ArrayOfMetadataFilterExpression function ( ) { return new ArrayOfMetadataFilterExpression ( ) ; }
1,456
gets the value of the pageorgrouporline 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 pageorgrouporline property . for example , to ad...
List < JAXBElement < ? >> function ( ) { if ( pageOrGroupOrLine == null ) { pageOrGroupOrLine = new ArrayList < JAXBElement < ? >> ( ) ; } return this . pageOrGroupOrLine ; }
1,457
adds to default collection concode_field_sep String defaultCollection concode_elem_sep String host concode_elem_sep SolrManager _instance concode_elem_sep Logger logger concode_elem_sep SolrClient defaultClient concode_elem_sep SolrClient defaultClientUpdate concode_elem_sep HashMap<String,SolrClient> collections conco...
void function ( Collection < SolrInputDocument > arg0 ) { add ( defaultCollection , arg0 ) ; }
1,458
fast space padding method . concode_field_sep PatternConverter next concode_elem_sep int min concode_elem_sep int max concode_elem_sep boolean leftAlign concode_elem_sep String[] SPACES concode_field_sep void format concode_elem_sep String convert
void function ( StringBuffer arg0 , int arg1 ) { while ( arg1 >= 32 ) { arg0 . append ( SPACES [ 5 ] ) ; arg1 -= 32 ; } for ( int loc0 = 4 ; loc0 >= 0 ; loc0 -- ) { if ( ( arg1 & ( 1 << loc0 ) ) != 0 ) { arg0 . append ( SPACES [ loc0 ] ) ; } } }
1,459
unsupported . concode_field_sep BufferedReader bufferedReader concode_elem_sep String cachedLine concode_elem_sep boolean finished concode_field_sep Object next concode_elem_sep String nextLine concode_elem_sep boolean hasNext concode_elem_sep boolean isValidLine concode_elem_sep void closeQuietly concode_elem_sep void...
void function ( ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
1,460
getter method for ticketno concode_field_sep String msisdn concode_elem_sep String subSubCategory concode_elem_sep String subCategory concode_elem_sep String loggedDateAndTime concode_elem_sep String expectedResolutionBy concode_elem_sep String classificationName concode_elem_sep String assignedDepartment concode_elem_...
String function ( ) { return ticketNo ; }
1,461
gets selected time zone time . this is the time zone selected by one of six commandbuttons from the map in the ui . concode_field_sep DateFormat selectedFormat concode_elem_sep int[] pacificXCoords concode_elem_sep int[] nfldXCoords concode_elem_sep int[] easternYCoords concode_elem_sep int[] alaskaYCoords concode_elem...
String function ( ) { return formatCurrentTime ( selectedFormat ) ; }
1,462
gets the value of the content 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 content property . for example , to add a new item , do as...
List < Object > function ( ) { if ( content == null ) { content = new ArrayList < Object > ( ) ; } return this . content ; }
1,463
checks if the haystack array contains all elements of needles array concode_field_sep PlaceHolder placeHolder concode_field_sep boolean arrayContains concode_elem_sep Integer[] toIntegerArray concode_elem_sep T[] concat concode_elem_sep T[] changeArrayType
boolean function ( int arg0 [ ] , int arg1 [ ] ) { needleTraversal : for ( int loc0 = 0 ; loc0 < arg1 . length ; loc0 ++ ) { for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { if ( arg1 [ loc0 ] == arg0 [ loc1 ] ) continue needleTraversal ; } return false ; } return true ; }
1,464
it removes the static fields . concode_field_sep IdListCreator_Bitmap instance concode_field_sep void addAppearancesInSequence concode_elem_sep IDList create concode_elem_sep IdListCreator getInstance concode_elem_sep void addAppearance
void function ( ) { instance = null ; }
1,465
finds an annotation of given annotationtype from the given annotations . if annotations contains multiple annotations of the given type , the first one is returned . if none is found , this method returns null . concode_field_sep PlaceHolder placeHolder concode_field_sep List<T> filterByType
T function ( Annotation [ ] arg0 , Class < T > arg1 ) { for ( Annotation loc0 : arg0 ) { if ( loc0 . arg1 ( ) . equals ( arg1 ) ) { return ( T ) loc0 ; } } return null ; }
1,466
if this is an array , returns the component type of the array . t of t concode_field_sep PlaceHolder placeHolder concode_field_sep JCodeModel owner concode_elem_sep JType erasure concode_elem_sep String fullName concode_elem_sep JPrimitiveType parse concode_elem_sep int compareTo concode_elem_sep JType unboxify concode...
JType function ( ) { throw new IllegalArgumentException ( "srini_string" ) ; }
1,467
method to run the algorithm concode_field_sep int minsup concode_elem_sep int lastBitIndex concode_elem_sep int maximumPatternLength concode_elem_sep long startTime concode_elem_sep long endTime concode_elem_sep BufferedWriter writer concode_elem_sep List<Integer> sequencesSize concode_elem_sep Map<Integer,Bitmap> vert...
void function ( String arg0 , String arg1 , double arg2 ) { writer = new BufferedWriter ( new FileWriter ( arg1 ) ) ; patternCount = 0 ; MemoryLogger . getInstance ( ) . reset ( ) ; startTime = System . currentTimeMillis ( ) ; spam ( arg0 , arg2 ) ; endTime = System . currentTimeMillis ( ) ; writer . close ( ) ; }
1,468
log a warning level message concode_field_sep SimpleDateFormat format concode_elem_sep boolean useLog4j concode_elem_sep Hashtable loggers concode_elem_sep Method[][] methods concode_elem_sep Object[] argsPlain concode_elem_sep Level globalLevel concode_elem_sep Object logger concode_elem_sep Vector appenders concode_e...
void function ( String arg0 ) { log ( Level . WARN , arg0 , null ) ; }
1,469
gets the property value as text . concode_field_sep BorderStyleValueConverter valueConverter concode_elem_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep BorderStyle value concode_field_sep String getJavaInitializationString concode_elem_sep Object getValue concode_elem_sep Component getCustomEditor co...
String function ( ) { if ( value == null ) { return null ; } try { return valueConverter . toAttributeValue ( value ) ; } catch ( BeanException loc0 ) { return null ; } }
1,470
sac : implements org.w3c.css.sac.documenthandler #property string , lexicalunit , boolean . concode_field_sep DocumentHandler INSTANCE concode_field_sep void startPage concode_elem_sep void endFontFace concode_elem_sep void ignorableAtRule concode_elem_sep void importStyle concode_elem_sep void startDocument concode_el...
void function ( String arg0 , LexicalUnit arg1 , boolean arg2 ) { }
1,471
specify whether the database is case sensitive . concode_field_sep PlaceHolder placeHolder concode_field_sep Identifier toPhysicalCatalogName concode_elem_sep Identifier apply concode_elem_sep Identifier getIdentifier concode_elem_sep Identifier toPhysicalTableName concode_elem_sep Identifier toPhysicalColumnName conco...
boolean function ( JdbcEnvironment arg0 ) { return true ; }
1,472
determine if sd card exists . concode_field_sep String LOG_TAG concode_field_sep long getFreeDiskSpace concode_elem_sep File constructFilePaths concode_elem_sep long freeSpaceCalculation concode_elem_sep String getTempDirectoryPath concode_elem_sep boolean testFileExists
boolean function ( ) { String loc0 = Environment . getExternalStorageState ( ) ; boolean loc1 ; if ( loc0 . equals ( Environment . MEDIA_MOUNTED ) ) { loc1 = true ; } else { loc1 = false ; } return loc1 ; }
1,473
called when the activity receives a new intent . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onOverrideUrlLoading concode_elem_sep void onDestroy concode_elem_sep Uri remapUri conc...
void function ( Intent arg0 ) { }
1,474
set system property to value . if securitymanager denies property modification , print debug trace concode_field_sep Logger logger concode_field_sep int intProperty concode_elem_sep boolean booleanProperty concode_elem_sep boolean booleanProperty concode_elem_sep void setProperty concode_elem_sep String property concod...
void function ( String arg0 , String arg1 ) { setProperty ( arg0 , arg1 ) ; }
1,475
clear all stored resources and have the next call to #next loadall previously loaded pages concode_field_sep Map<Object,E> resources concode_elem_sep int count concode_elem_sep int page concode_elem_sep boolean hasMore concode_field_sep boolean next concode_elem_sep PageIterator<E> createIterator concode_elem_sep int s...
ResourcePager < E > function ( ) { count = Math . max ( 1 , page - 1 ) ; page = 1 ; resources . clear ( ) ; hasMore = true ; return this ; }
1,476
returns the result of interpreting the object as an instance of ` library ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep bz242995Package modelPackage concode_field_sep T caseBook concode_elem_sep T caseOneTimeWonder concode_elem_sep T doSwitch concode_el...
T function ( Library arg0 ) { return null ; }
1,477
this method tells the object to use appropriate information to extract ending values for the animation . for example , a animatorset object will pass this call to its child objects to tell them to set up the values . a objectanimator object will use the information it has about its target object and propertyvaluesholde...
void function ( ) { }
1,478
provides the format of the external graphic . concode_field_sep String format concode_elem_sep String uri concode_elem_sep URL location concode_elem_sep Map<String,Object> customProps concode_elem_sep OnLineResource online concode_elem_sep Icon inlineContent concode_elem_sep Set<ColorReplacement> colorReplacements conc...
String function ( ) { return format ; }
1,479
the name of the stage . concode_field_sep String name concode_field_sep void setName concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep StageContext clone concode_elem_sep String toString
StageContext function ( String arg0 ) { setName ( arg0 ) ; return this ; }
1,480
get custom serializer concode_field_sep java.lang.Integer month concode_elem_sep java.lang.Integer year concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.Long count concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_sep void setMo...
org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; }
1,481
retrieves the time stamp of when this event occurred . concode_field_sep String summary concode_elem_sep String node concode_elem_sep long msgID concode_elem_sep String details concode_elem_sep Date eventStamp concode_elem_sep String username concode_field_sep void setSummary concode_elem_sep String getSummary concode_...
Date function ( ) { return eventStamp ; }
1,482
rearranges the array in ascending order , using the natural order . concode_field_sep PlaceHolder placeHolder concode_field_sep void merge concode_elem_sep void exch concode_elem_sep void show concode_elem_sep void main concode_elem_sep boolean less concode_elem_sep boolean isSorted
void function ( Comparable [ ] arg0 ) { int loc0 = arg0 . length ; Comparable [ ] loc1 = new Comparable [ loc0 ] ; for ( int loc2 = 1 ; loc2 < loc0 ; loc2 = loc2 + loc2 ) { for ( int loc3 = 0 ; loc3 < loc0 - loc2 ; loc3 += loc2 + loc2 ) { int loc4 = loc3 ; int loc5 = loc3 + loc2 - 1 ; int loc6 = Math . min ( loc3 + loc...
1,483
stops the local server . concode_field_sep Server server concode_elem_sep SocketAddress address concode_elem_sep List<MockGrpcService> mockServices concode_elem_sep String addressString concode_elem_sep int FLOW_CONTROL_WINDOW concode_field_sep LocalChannelProvider createChannelProvider concode_elem_sep void start conc...
void function ( ) { server . shutdownNow ( ) ; }
1,484
set the displayname value . concode_field_sep List<EnvironmentSetting> commonEnvironmentSettings concode_elem_sep JobManagerTask jobManagerTask concode_elem_sep List<MetadataItem> metadata concode_elem_sep String displayName concode_elem_sep JobReleaseTask jobReleaseTask concode_elem_sep JobPreparationTask jobPreparati...
JobSpecification function ( String arg0 ) { this . displayName = arg0 ; return this ; }
1,485
get the length of this file , in bytes . concode_field_sep long blocksize concode_elem_sep String owner concode_elem_sep Path path concode_elem_sep long length concode_elem_sep Path symlink concode_elem_sep FsPermission permission concode_elem_sep long modification_time concode_elem_sep boolean isdir concode_elem_sep s...
long function ( ) { return length ; }
1,486
gets the bookmarkentitycollection of this userentity . concode_field_sep Collection<BookmarkEntity> bookmarkEntityCollection concode_elem_sep String password concode_elem_sep String userid concode_elem_sep String email concode_elem_sep String username concode_field_sep void setPassword concode_elem_sep String getPasswo...
Collection < BookmarkEntity > function ( ) { return this . bookmarkEntityCollection ; }
1,487
returns the recommended minimum error correction level as described in annex e of iso/iec 15438:2001 e . concode_field_sep int[][] EC_COEFFICIENTS concode_field_sep int getErrorCorrectionCodewordCount concode_elem_sep String generateErrorCorrection
int function ( int arg0 ) { if ( arg0 <= 0 ) { throw new IllegalArgumentException ( "srini_string" ) ; } if ( arg0 <= 40 ) { return 2 ; } if ( arg0 <= 160 ) { return 3 ; } if ( arg0 <= 320 ) { return 4 ; } if ( arg0 <= 863 ) { return 5 ; } throw new WriterException ( "srini_string" ) ; }
1,488
atomically adds the given value to the element at index i. concode_field_sep Unsafe unsafe concode_elem_sep int base concode_elem_sep long serialVersionUID concode_elem_sep int[] array concode_elem_sep int scale concode_field_sep long rawIndex concode_elem_sep int getAndIncrement concode_elem_sep void set concode_elem_...
int function ( int arg0 , int arg1 ) { while ( true ) { int loc0 = get ( arg0 ) ; int loc1 = loc0 + arg1 ; if ( compareAndSet ( arg0 , loc0 , loc1 ) ) return loc0 ; } }
1,489
close concode_field_sep Logger log concode_elem_sep AnnoManagedConnectionFactory mcf concode_elem_sep AnnoManagedConnection mc concode_field_sep AnnoManagedConnectionFactory getMCF concode_elem_sep void callMe
void function ( ) { mc . closeHandle ( this ) ; }
1,490
immutable - cloning is not necessary . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerialization concode_elem_sep void testEquals
void function ( ) { FlowArrangement loc0 = new FlowArrangement ( ) ; assertFalse ( loc0 instanceof Cloneable ) ; }
1,491
gets the value of the forfeitwhenonineligibleplan property . concode_field_sep Boolean forfeitWhenOnIneligiblePlan concode_elem_sep BigInteger maxDaysOnIneligiblePlan concode_elem_sep BigInteger maxDaysUnpaid concode_elem_sep Boolean forfeitWhenUnpaid concode_elem_sep long serialVersionUID concode_field_sep void setFor...
Boolean function ( ) { return forfeitWhenOnIneligiblePlan ; }
1,492
returns option length how many parts are in option . concode_field_sep String DEST_FILE_OPT concode_field_sep boolean start concode_elem_sep String getDestFileName concode_elem_sep boolean checkOptions
int function ( String arg0 ) { if ( DEST_FILE_OPT . equals ( arg0 ) ) { return 2 ; } return 0 ; }
1,493
sets the recursive flag . concode_field_sep boolean mRecursive concode_field_sep boolean isRecursive concode_elem_sep DeleteOptions defaults concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString
DeleteOptions function ( boolean arg0 ) { mRecursive = arg0 ; return this ; }
1,494
gets the instancia value for this diagnosticovozgponin . concode_field_sep java.lang.String designador concode_elem_sep java.lang.String instancia concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String designadorAcesso concode_elem_sep org.apache.axis.de...
java . lang . String function ( ) { return instancia ; }
1,495
get library folders . concode_field_sep IHaxeProject fProject concode_elem_sep List<IFolder> libFolders concode_elem_sep String fileName concode_elem_sep List<IFile> libFiles concode_elem_sep IFolder outputFolder concode_elem_sep List<IFolder> sourceFolders concode_field_sep IFolder getOutputFolder concode_elem_sep voi...
List < IFolder > function ( ) { return libFolders ; }
1,496
creates a new instance of imageinputbuilder . concode_field_sep int __set concode_elem_sep double x concode_elem_sep double y concode_elem_sep javafx.scene.image.Image source concode_field_sep void applyTo concode_elem_sep javafx.scene.effect.ImageInput build concode_elem_sep B x concode_elem_sep B y concode_elem_sep B...
javafx . scene . effect . ImageInputBuilder < ? > function ( ) { return new javafx . scene . effect . ImageInputBuilder ( ) ; }
1,497
a unique deployment configuration id . concode_field_sep String deploymentConfigId concode_field_sep String getDeploymentConfigId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CreateDeploymentConfigResult clone concode_elem_sep String toString concode_elem_sep CreateDeploymentConfigResu...
void function ( String arg0 ) { this . deploymentConfigId = arg0 ; }
1,498
return the underlying logger we are using . concode_field_sep String name concode_elem_sep Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep void trace concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep boolean isInfoEnabled concode_e...
Logger function ( ) { if ( logger == null ) { logger = Hierarchy . getDefaultHierarchy ( ) . getLoggerFor ( name ) ; } return ( logger ) ; }
1,499
returns the minor version number of the http protocol . concode_field_sep String protocol concode_elem_sep int major concode_elem_sep int minor concode_elem_sep long serialVersionUID concode_field_sep boolean lessEquals concode_elem_sep int hashCode concode_elem_sep boolean isComparable concode_elem_sep boolean equals ...
int function ( ) { return minor ; }