idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
3,700
this method is used to retrieve the next unique id for a resource . concode_field_sep boolean m_autoOutlineLevel concode_elem_sep int m_calendarUniqueID concode_elem_sep ProjectFile m_parent concode_elem_sep boolean m_autoWBS concode_elem_sep int m_assignmentUniqueID concode_elem_sep boolean m_autoOutlineNumber concode...
int function ( ) { return ++ m_resourceUniqueID ; }
3,701
parse the content of the given file as an xml document and return a new dom document object.an illegalargumentexception is thrown if the file is null null . concode_field_sep boolean DEBUG concode_field_sep DOMImplementation getDOMImplementation concode_elem_sep void setEntityResolver concode_elem_sep boolean isNamespa...
Document function ( File arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } String loc0 = FilePathToURI . filepath2URI ( arg0 . getAbsolutePath ( ) ) ; if ( DEBUG ) { System . out . println ( "srini_string" + loc0 ) ; } InputSource loc1 = new InputSource ( loc0 ) ; return parse ( l...
3,702
modifies the passed-in token list to start at the specified offset . for example , if the token list covered positions 20-60 in the document inclusive like so : token1 - > token2 - > token3 - > token4 20 30 31 40 41 50 51 60 and you used this method to make the token list start at position 44 , then the token list woul...
TokenSubList function ( Token arg0 , int arg1 , TabExpander arg2 , final RSyntaxTextArea arg3 , float arg4 ) { return getSubTokenList ( arg0 , arg1 , arg2 , arg3 , arg4 , null ) ; }
3,703
throw assertionexception with a given message . use this method surrounded with if block with assert condition in case you plan to do string concatenation to producethe message . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertCondition concode_elem_sep T assertNotNull
void function ( String arg0 ) { throw new AssertionException ( arg0 ) ; }
3,704
indicates the end of the frame . concode_field_sep int PROFILE_PAGE_FLIP concode_elem_sep int PROFILE_FRAME concode_elem_sep ProfileRecorder sSingleton concode_elem_sep long mMinTime concode_elem_sep ProfileRecord[] mProfiles concode_elem_sep int PROFILE_SIM concode_elem_sep int mFrameCount concode_elem_sep long mTotal...
void function ( ) { mFrameCount ++ ; }
3,705
restitution mixing law . feel free to customize this . todo djm : add customization concode_field_sep int maxPolygonVertices concode_elem_sep float aabbMultiplier concode_elem_sep boolean FAST_FLOOR concode_elem_sep float velocityThreshold concode_elem_sep float EPSILON concode_elem_sep int maxTOIContacts concode_elem_...
float function ( float arg0 , float arg1 ) { return arg0 > arg1 ? arg0 : arg1 ; }
3,706
get custom serializer concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String language concode_elem_sep java.lang.String label concode_elem_sep com.netsuite.webservices.platform.common_2014_2.types.Language locale concode_elem_sep org.apache.axis.descrip...
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 ) ; }
3,707
gets the value of the pty 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 pty property . for example , to add a new item , do as follows...
List < NestedParties4BlockT > function ( ) { if ( pty == null ) { pty = new ArrayList < NestedParties4BlockT > ( ) ; } return this . pty ; }
3,708
gets the value of the rot property . concode_field_sep String xref concode_elem_sep String size concode_elem_sep String rot concode_elem_sep String x concode_elem_sep String y concode_elem_sep String layer concode_elem_sep String font concode_elem_sep String ratio concode_field_sep void setY concode_elem_sep void setX ...
String function ( ) { if ( rot == null ) { return "srini_string" ; } else { return rot ; } }
3,709
returns the relation which this entitykey refers to . concode_field_sep String key concode_elem_sep CommonFieldsBase relation concode_field_sep String getKey concode_elem_sep int compareTo
CommonFieldsBase function ( ) { return relation ; }
3,710
return the current transformer 's name . concode_field_sep ObjectManager objectManager concode_elem_sep char DIVIDER concode_elem_sep Log logger concode_elem_sep String componentName concode_field_sep ObjectManager getObjectManager concode_elem_sep void setLogger concode_elem_sep String generateID concode_elem_sep Stri...
String function ( ) { return this . componentName ; }
3,711
create a deep copy of the given sort definition , for use as state holder to compare a modified sort definition against . default implementation creates a mutablesortdefinition instance . can be overridden in subclasses , in particular in case of custom extensions to the sortdefinition interface . is allowed to return ...
SortDefinition function ( SortDefinition arg0 ) { return new MutableSortDefinition ( arg0 ) ; }
3,712
the id of the startchildworkflowexecutioninitiated event corresponding to the startchildworkflowexecution decision to start this child workflow execution . this information can be useful for diagnosing problems by tracing back the chain of events leading up to this event . returns a reference to this object so that met...
ChildWorkflowExecutionStartedEventAttributes function ( Long arg0 ) { this . initiatedEventId = arg0 ; return this ; }
3,713
creates an instance of commoncodestylesettings and sets initial default values for those settings which differ from the original . concode_field_sep Set<String> myCollectedFields concode_elem_sep SettingsType myCurrSettingsType concode_elem_sep ExtensionPointName<LanguageCodeStyleSettingsProvider> EP_NAME concode_field...
CommonCodeStyleSettings function ( ) { return null ; }
3,714
recursively finds the number of visible nodes there are this may accidentally count some of the invis nodes . concode_field_sep String m_label concode_elem_sep boolean m_visible concode_elem_sep boolean m_root concode_elem_sep Instances m_theData concode_elem_sep double m_center concode_elem_sep Vector m_children conco...
int function ( Node arg0 , int arg1 ) { Edge loc0 ; arg1 ++ ; for ( int loc1 = 0 ; ( loc0 = arg0 . getChild ( loc1 ) ) != null && arg0 . getCVisible ( ) ; loc1 ++ ) { arg1 = getCount ( loc0 . getTarget ( ) , arg1 ) ; } return arg1 ; }
3,715
clear the `` processed '' registration of the given property , if any . concode_field_sep boolean converted concode_elem_sep List<PropertyValue> propertyValueList concode_elem_sep Set<String> processedProperties concode_field_sep MutablePropertyValues add concode_elem_sep void removePropertyValue concode_elem_sep void ...
void function ( String arg0 ) { if ( this . processedProperties != null ) { this . processedProperties . remove ( arg0 ) ; } }
3,716
sets whether redeploy is enabled or not . concode_field_sep ScheduledExecutorService redeployService concode_elem_sep List watches concode_elem_sep List touches concode_elem_sep long watchInterval concode_elem_sep boolean started concode_elem_sep boolean enabled concode_field_sep void setWatchFiles concode_elem_sep Thr...
void function ( boolean arg0 ) { this . enabled = arg0 ; }
3,717
sets the id value for this wsgetcomponentversion . concode_field_sep org.talend.mdm.webservice.WSComponent component 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 id concode_field_se...
void function ( java . lang . String arg0 ) { this . id = arg0 ; }
3,718
some text . concode_field_sep InnerClassWithAnnotations anon concode_elem_sep String fFirstName concode_elem_sep String tThirdName concode_elem_sep String sSecondName concode_field_sep String method5 concode_elem_sep String method5 concode_elem_sep String method5 concode_elem_sep String method6 concode_elem_sep String ...
void function ( ) { }
3,719
retrieve list of privilege concode_field_sep int userRoleId concode_elem_sep Set<Privilege> privileges concode_elem_sep String userRoleName concode_field_sep void setUserRoleName concode_elem_sep void setUserRoleId concode_elem_sep String getUserRoleName concode_elem_sep int getUserRoleId concode_elem_sep void setPrivi...
Set < Privilege > function ( ) { return privileges ; }
3,720
record the current modelview matrix state . has the side effect of setting the current matrix state to gl_modelview concode_field_sep float[] mModelView concode_elem_sep float[] mProjection concode_field_sep void getMatrix concode_elem_sep void getCurrentProjection concode_elem_sep void getCurrentState
void function ( GL10 arg0 ) { getMatrix ( arg0 , GL10 . GL_MODELVIEW , mModelView ) ; }
3,721
this method will serialize the object of dictionary file concode_field_sep int totalRecordCount concode_elem_sep int chunk_count concode_elem_sep List<ByteBuffer> oneDictionaryChunkList concode_elem_sep Charset defaultCharset concode_elem_sep ThriftWriter dictionaryThriftWriter concode_elem_sep CarbonTableIdentifier ca...
void function ( ) { ColumnDictionaryChunk loc0 = new ColumnDictionaryChunk ( ) ; loc0 . setValues ( oneDictionaryChunkList ) ; writeThriftObject ( loc0 ) ; }
3,722
todo concode_field_sep long st_ro_evict concode_elem_sep long st_alloc_buckets concode_elem_sep long st_cache_miss concode_elem_sep int st_page_dirty concode_elem_sep long st_page_trickle concode_elem_sep int st_pages concode_elem_sep long st_hash_max_nowait concode_elem_sep long st_io_wait concode_elem_sep long st_syn...
long function ( ) { return st_mvcc_frozen ; }
3,723
performs a dynamic query on the database and returns a range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end to com.l...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 ) { return _membershipRequestLocalService . arg0 ( arg0 , arg1 , arg2 ) ; }
3,724
not implemented , simply calls generateshorturl string url concode_field_sep String apiKey concode_elem_sep Logger log concode_elem_sep String login concode_elem_sep String BITLY_API_URL concode_field_sep String encode concode_elem_sep String getLogin concode_elem_sep void init concode_elem_sep String getApiKey concode...
String function ( String arg0 , boolean arg1 ) { return shorten ( arg0 ) ; }
3,725
see whether an item can be coerced to scmtriggeritem . concode_field_sep hudson.model.SCMedItem delegate concode_field_sep int getQuietPeriod concode_elem_sep int getQuietPeriod concode_elem_sep QueueTaskFuture<?> scheduleBuild2 concode_elem_sep QueueTaskFuture<?> scheduleBuild2 concode_elem_sep Collection<? extends SC...
SCMTriggerItem function ( Item arg0 ) { if ( arg0 instanceof SCMTriggerItem ) { return ( SCMTriggerItem ) arg0 ; } else if ( arg0 instanceof hudson . model . SCMedItem ) { return new Bridge ( ( hudson . model . SCMedItem ) arg0 ) ; } else { return null ; } }
3,726
returns the kaleo definition id of this kaleo node . concode_field_sep KaleoNode _kaleoNode concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep boolean getTerminal c...
long function ( ) { return _kaleoNode . getKaleoDefinitionId ( ) ; }
3,727
gets timestamp for zoneddatetime . concode_field_sep PlaceHolder placeHolder concode_field_sep TimeUnit toTimeUnit concode_elem_sep ChronoUnit toChronoUnit concode_elem_sep Date dateOf concode_elem_sep Date dateOf concode_elem_sep ZonedDateTime zonedDateTimeOf concode_elem_sep ZonedDateTime zonedDateTimeOf concode_elem...
Timestamp function ( final ZonedDateTime arg0 ) { return timestampOf ( arg0 . toInstant ( ) ) ; }
3,728
this method will edit the room from the page listing all the rooms concode_field_sep boolean directEdit concode_elem_sep String endDateString concode_elem_sep int filterParamLast concode_elem_sep int filterParamNone concode_elem_sep String startDateString concode_elem_sep int filterParamPast concode_elem_sep ChatChanne...
String function ( ) { directEdit = false ; return chatTool . processActionEditRoom ( this ) ; }
3,729
create an instance of getbalanceanddbr concode_field_sep PlaceHolder placeHolder concode_field_sep GetDailyBurnRateResponse createGetDailyBurnRateResponse concode_elem_sep InvokeKenanNRC createInvokeKenanNRC concode_elem_sep InvokeKenanNRCResponse createInvokeKenanNRCResponse concode_elem_sep GetBalanceResponse createG...
GetBalanceAndDBR function ( ) { return new GetBalanceAndDBR ( ) ; }
3,730
gets the name that the aggregator is registered under . concode_field_sep Aggregator<T> aggregator concode_elem_sep String name concode_field_sep Aggregator<T> getAggregator
String function ( ) { return name ; }
3,731
divide the string to the two parts if the left is palindrome then recursively use the method to get the answer of the right part concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isPalindrome concode_elem_sep List<List<String>> helper concode_elem_sep void main concode_elem_sep List<List<String>> part...
List < List < String >> function ( String arg0 ) { if ( arg0 == null || arg0 . isEmpty ( ) ) { return new ArrayList < > ( ) ; } int loc0 = arg0 . length ( ) ; int [ ] [ ] loc1 = new int [ loc0 ] [ loc0 ] ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 [ loc2 ] [ loc2 ] = 1 ; } return helper ( arg0 , 0 , loc1 ) ; ...
3,732
set properties for inboundendpoint concode_field_sep String protocol concode_elem_sep String injectingSeq concode_elem_sep SynapseEnvironment synapseEnvironment concode_elem_sep String onErrorSeq concode_elem_sep String name concode_elem_sep Properties properties concode_elem_sep String classImpl concode_field_sep void...
void function ( Properties arg0 ) { this . properties = arg0 ; }
3,733
find touch event target view within the provided container given the coordinates provided via motionevent . concode_field_sep float[] mEventCoords concode_elem_sep PointF mTempPoint concode_elem_sep float[] mMatrixTransformCoords concode_elem_sep Matrix mInverseMatrix concode_field_sep View findClosestReactAncestor con...
int function ( float arg0 , float arg1 , ViewGroup arg2 ) { return findTargetTagAndCoordinatesForTouch ( arg0 , arg1 , arg2 , mEventCoords , null ) ; }
3,734
returns token x concode_field_sep String tokenUpCache[] concode_elem_sep String tokenDownCache[] concode_elem_sep String stringToken[] concode_elem_sep String tokenDelimeter concode_elem_sep String text concode_elem_sep int totalTokens concode_field_sep int getTotalTokens concode_elem_sep String gettokup concode_elem_s...
String function ( int arg0 ) { if ( arg0 < totalTokens ) { return stringToken [ arg0 ] ; } return null ; }
3,735
sets the value of the ratecardaction property . concode_field_sep RateCardAction rateCardAction concode_elem_sep Statement filterStatement concode_field_sep Statement getFilterStatement concode_elem_sep RateCardAction getRateCardAction concode_elem_sep void setFilterStatement
void function ( RateCardAction arg0 ) { this . rateCardAction = arg0 ; }
3,736
returns the non-null address type given to the constructor . concode_field_sep String addrType concode_field_sep int hashCode concode_elem_sep Object getContent concode_elem_sep boolean equals concode_elem_sep String toString
String function ( ) { return addrType ; }
3,737
gets the value of the extlst property . concode_field_sep CTOfficeArtExtensionList extLst concode_elem_sep String link concode_field_sep void setLink concode_elem_sep String getLink concode_elem_sep void setExtLst
CTOfficeArtExtensionList function ( ) { return extLst ; }
3,738
determines whether a segment contains a black point concode_field_sep BitMatrix image concode_elem_sep int CORR concode_elem_sep int width concode_elem_sep int rightInit concode_elem_sep int downInit concode_elem_sep int INIT_SIZE concode_elem_sep int height concode_elem_sep int leftInit concode_elem_sep int upInit con...
boolean function ( int arg0 , int arg1 , int arg2 , boolean arg3 ) { if ( arg3 ) { for ( int loc0 = arg0 ; loc0 <= arg1 ; loc0 ++ ) { if ( image . get ( loc0 , arg2 ) ) { return true ; } } } else { for ( int loc0 = arg0 ; loc0 <= arg1 ; loc0 ++ ) { if ( image . get ( arg2 , loc0 ) ) { return true ; } } } return false ;...
3,739
test for bug 1611872 - previous fails for first minute in hour . concode_field_sep PlaceHolder placeHolder concode_field_sep void testDateConstructor1 concode_elem_sep void testGetStart concode_elem_sep void testGetLastMillisecond concode_elem_sep void testGetSerialIndex concode_elem_sep void testGetFirstMillisecondWit...
void function ( ) { Minute loc0 = new Minute ( 0 , 10 , 15 , 4 , 2000 ) ; Minute loc1 = ( Minute ) loc0 . previous ( ) ; assertEquals ( loc1 , new Minute ( 59 , 9 , 15 , 4 , 2000 ) ) ; }
3,740
check if a given model name exists in the list of available models . concode_field_sep String[] models concode_elem_sep int noModels concode_field_sep String getName concode_elem_sep String toString concode_elem_sep int getNoModels
boolean function ( String arg0 ) { for ( int loc0 = 0 ; loc0 < noModels ; loc0 ++ ) if ( arg0 . compareTo ( models [ loc0 ] ) == 0 ) return true ; return false ; }
3,741
gets the value of the lastname property . concode_field_sep String lastName concode_elem_sep XMLGregorianCalendar portRequestDateTime concode_elem_sep String oldBrandId concode_elem_sep String businessName concode_elem_sep String oldServiceProvider concode_elem_sep String newBrandId concode_elem_sep long serialVersionU...
String function ( ) { return lastName ; }
3,742
get the primitive item type corresponding to this item type . for item , this is type.item . for node , it is type.node . for specific node kinds , it is the value representing the node kind , for example type.element . for anyatomicvalue it is type.atomic _ value . for numeric it is type.number . for other atomic type...
ItemType function ( ) { int loc0 = getPrimitiveType ( ) ; if ( loc0 == Type . NODE ) { return AnyNodeTest . getInstance ( ) ; } else { return NodeKindTest . makeNodeKindTest ( loc0 ) ; } }
3,743
returns the module root manager instance for the specified module . concode_field_sep PlaceHolder placeHolder concode_field_sep ModifiableRootModel getModifiableModel concode_elem_sep boolean isDependsOn concode_elem_sep Module[] getDependencies concode_elem_sep Module[] getDependencies concode_elem_sep ModuleFileIndex...
ModuleRootManager function ( @ NotNull Module arg0 ) { return arg0 . getComponent ( ModuleRootManager . class ) ; }
3,744
gets the value of the conversionrateresult property . concode_field_sep double conversionRateResult concode_field_sep void setConversionRateResult
double function ( ) { return conversionRateResult ; }
3,745
returns a string of binary digits representing the 8 bits starting at bit i. concode_field_sep int bitlen concode_elem_sep char hexchars[] concode_elem_sep StringBuffer binbyte concode_elem_sep int masks[] concode_elem_sep byte data[] concode_elem_sep StringBuffer hexbyte concode_field_sep int toInt concode_elem_sep St...
String function ( int arg0 ) { int loc0 ; for ( loc0 = 7 ; loc0 >= 0 ; loc0 -- ) binbyte . setCharAt ( loc0 , ( ( data [ arg0 ] & 0xFF & masks [ loc0 ] ) > 0 ) ? '1' : '0' ) ; return binbyte . toString ( ) ; }
3,746
add the `` file-name '' parameter . concode_field_sep String fileName concode_elem_sep Date modificationDate concode_elem_sep long size concode_elem_sep Date readDate concode_elem_sep String type concode_elem_sep Date creationDate concode_elem_sep Map<String,String> parameters concode_elem_sep long size concode_field_s...
T function ( final String arg0 ) { this . fileName = arg0 ; return ( T ) this ; }
3,747
set proxy host and proxy credentials . concode_field_sep SSLContext m_aDefaultSSLContext concode_elem_sep boolean DEFAULT_USE_SYSTEM_PROPERTIES concode_elem_sep boolean DEFAULT_USE_DNS_CACHE concode_elem_sep Credentials m_aProxyCredentials concode_elem_sep boolean m_bUseSystemProperties concode_elem_sep boolean m_bUseD...
void function ( @ Nullable final HttpHost arg0 , @ Nullable final Credentials arg1 ) { m_aProxy = arg0 ; m_aProxyCredentials = arg1 ; }
3,748
gets the value of the dataset 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 dataset property . for example , to add a new item , do as...
List < DataSet > function ( ) { if ( dataSet == null ) { dataSet = new ArrayList < DataSet > ( ) ; } return this . dataSet ; }
3,749
returns the zoom factor of the page visualization . a zoom factor of 1.0 f is equal to 100 % or actual size . a zoom factor of 0.5 f is equal to 50 % of the original size . concode_field_sep ArrayList<WeakReference<AbstractPageViewComponent>> selectedPageText concode_elem_sep float oldUserZoom concode_elem_sep float us...
float function ( ) { return userRotation ; }
3,750
called by the sound line concode_field_sep AudioClipPlayerListener p_listener concode_elem_sep Clip clip concode_field_sep void play concode_elem_sep void init concode_elem_sep void goTo concode_elem_sep void stop concode_elem_sep void rewind concode_elem_sep void loop concode_elem_sep void loop concode_elem_sep void m...
void function ( LineEvent arg0 ) { if ( arg0 . getType ( ) . equals ( LineEvent . Type . STOP ) ) { if ( p_listener != null ) p_listener . onAudioClipStop ( this ) ; } }
3,751
returns the name . concode_field_sep String cookieDomain concode_elem_sep Date cookieExpiryDate concode_elem_sep int cookieVersion concode_elem_sep String name concode_elem_sep boolean isSecure concode_elem_sep String cookiePath concode_elem_sep String value concode_elem_sep long serialVersionUID concode_elem_sep Map<S...
String function ( ) { return this . name ; }
3,752
sets the default value key of the filter . concode_field_sep boolean isEnabled concode_elem_sep String filterName concode_elem_sep String valueKey concode_field_sep void setEnabled concode_elem_sep String getFilterName concode_elem_sep boolean isEnabled concode_elem_sep String getValueKey
void function ( String arg0 ) { this . valueKey = arg0 ; }
3,753
expects wire to be set for all cases , and compares the decoder 's output to expected headers . concode_field_sep Buffer bytesIn concode_elem_sep Hpack.Reader hpackReader concode_elem_sep Story story concode_field_sep Collection<Story[]> createStories concode_elem_sep void assertSetEquals concode_elem_sep Story getStor...
void function ( ) { testDecoder ( story ) ; }
3,754
rounds out the current block to the next block bondary . if we are currently at a block boundary , nothing is done . concode_field_sep int DEFAULT_BLOCKS_PER_RECORD concode_elem_sep int DEFAULT_COMPRESSION concode_elem_sep byte[] ZERO_BLOCK concode_elem_sep OutputStream writeStream concode_elem_sep boolean debug concod...
void function ( ) { int loc0 = bytesLeftInBlock ( ) ; if ( loc0 == 0 ) { return ; } write ( ZERO_BLOCK , loc0 ) ; assertAtBlockBoundary ( ) ; }
3,755
retrieves the fully qualified name of the given method object . concode_field_sep String catalogName concode_elem_sep Database database concode_elem_sep HashSet builtin concode_elem_sep HashMap inverseAliasMap concode_field_sep Iterator iterateAllAccessibleMethods concode_elem_sep void addBuiltinToSet concode_elem_sep ...
String function ( Method arg0 ) { return arg0 == null ? null : arg0 . getDeclaringClass ( ) . getName ( ) + '.' + arg0 . getName ( ) ; }
3,756
gets an joboperations for performing job related operations on the associated account . concode_field_sep FileOperations fileOperations concode_elem_sep BatchServiceClient protocolLayer concode_elem_sep PoolOperations poolOperations concode_elem_sep ComputeNodeOperations computeNodeOperations concode_elem_sep Applicati...
JobOperations function ( ) { return jobOperations ; }
3,757
iterate over registered handlermethodargumentresolver s and invoke the one that supports it . concode_field_sep Map<MethodParameter,HandlerMethodArgumentResolver> argumentResolverCache concode_elem_sep List<HandlerMethodArgumentResolver> argumentResolvers concode_field_sep HandlerMethodArgumentResolverComposite addReso...
Object function ( MethodParameter arg0 , Message < ? > arg1 ) { HandlerMethodArgumentResolver loc0 = getArgumentResolver ( arg0 ) ; Assert . notNull ( loc0 , "srini_string" + arg0 . getParameterType ( ) . getName ( ) + "srini_string" ) ; return loc0 . resolveArgument ( arg0 , arg1 ) ; }
3,758
creates a new empty jsonobject . this is equivalent to creating a new jsonobject using the constructor . concode_field_sep JsonValue FALSE concode_elem_sep JsonValue NULL concode_elem_sep JsonValue TRUE concode_field_sep JsonValue array concode_elem_sep JsonArray array concode_elem_sep JsonArray array concode_elem_sep ...
JsonObject function ( ) { return new JsonObject ( ) ; }
3,759
called every world.tick concode_field_sep File chunkSaveLocation concode_elem_sep Object field_48450_c concode_elem_sep List field_48451_a concode_elem_sep Set field_48449_b concode_field_sep void func_48447_a concode_elem_sep void saveExtraChunkData concode_elem_sep void func_48446_a concode_elem_sep void func_48445_a...
void function ( ) { }
3,760
get dos path from long path concode_field_sep String path concode_elem_sep int FA_HIDDEN concode_elem_sep Pattern absolute concode_elem_sep int FA_DIRECTORY concode_elem_sep int FA_READONLY concode_field_sep void deleteFile concode_elem_sep void copyFile concode_elem_sep boolean isFile concode_elem_sep void getDirector...
ClarionString function ( String arg0 ) { return new ClarionString ( arg0 ) ; }
3,761
asserts that two objects refer to the same object . if they are not the same an assertionfailederror is thrown . concode_field_sep PlaceHolder placeHolder concode_field_sep void fail concode_elem_sep void fail concode_elem_sep void assertNull concode_elem_sep void assertNull concode_elem_sep void assertTrue concode_ele...
void function ( Object arg0 , Object arg1 ) { assertNotSame ( null , arg0 , arg1 ) ; }
3,762
sets the value of the code property . concode_field_sep String code concode_elem_sep String extraData concode_field_sep String getExtraData concode_elem_sep void setExtraData concode_elem_sep String getCode
void function ( String arg0 ) { this . code = arg0 ; }
3,763
reset this observer to the give cluster state . any pending waits will be canceled . concode_field_sep boolean timedOut concode_elem_sep ChangePredicate changePredicate concode_elem_sep ChangePredicate MATCH_ALL_CHANGES_PREDICATE concode_elem_sep ESLogger logger concode_elem_sep Long startTimeNS concode_elem_sep Listen...
void function ( ClusterState arg0 ) { if ( observingContext . getAndSet ( null ) != null ) { clusterService . remove ( clusterStateListener ) ; } lastObservedState . set ( new ObservedState ( arg0 ) ) ; }
3,764
sets the value of the id property . concode_field_sep SourceCode sourceCode concode_elem_sep ResourceType templateRef concode_elem_sep Documentation documentation concode_elem_sep String id concode_elem_sep String title concode_elem_sep Example example concode_field_sep void setTemplateRef concode_elem_sep String getTi...
void function ( String arg0 ) { this . id = arg0 ; }
3,765
the part size , in bytes , specified in the initiate multipart upload request . this is the size of all the parts in the upload except the last part , which may be smaller than this size . concode_field_sep String archiveDescription concode_elem_sep String creationDate concode_elem_sep String multipartUploadId concode_...
void function ( Long arg0 ) { this . partSizeInBytes = arg0 ; }
3,766
gets the player 's name . concode_field_sep String name concode_field_sep void setName concode_elem_sep DiskPlacement makeNextMove concode_elem_sep void initialize concode_elem_sep void notifyInvalidMove
String function ( ) { return ( name ) ; }
3,767
returns the type of view . concode_field_sep int mBottom concode_elem_sep Object mViewObject concode_elem_sep int mLeft concode_elem_sep List<ViewInfo> mChildren concode_elem_sep int mBaseLine concode_elem_sep Object mLayoutParamsObject concode_elem_sep int mRightMargin concode_elem_sep int mTopMargin concode_elem_sep ...
ViewType function ( ) { return ViewType . USER ; }
3,768
free a memory block . concode_field_sep MemoryMode mode concode_elem_sep TaskMemoryManager taskMemoryManager concode_elem_sep long pageSize concode_elem_sep long used concode_field_sep long getUsed concode_elem_sep void spill concode_elem_sep long spill concode_elem_sep LongArray allocateArray concode_elem_sep MemoryBl...
void function ( MemoryBlock arg0 ) { used -= arg0 . size ( ) ; taskMemoryManager . freePage ( arg0 , this ) ; }
3,769
the execution state of the cluster step . concode_field_sep StepStateChangeReason stateChangeReason concode_elem_sep StepTimeline timeline concode_elem_sep String state concode_field_sep StepStatus withStateChangeReason concode_elem_sep void setStateChangeReason concode_elem_sep StepStateChangeReason getStateChangeReas...
String function ( ) { return this . state ; }
3,770
return an enumeration of the usernames defined on this server . concode_field_sep Hashtable homes concode_elem_sep UserConfig userConfig concode_field_sep void init concode_elem_sep UserConfig getUserConfig concode_elem_sep String getHome concode_elem_sep void setUserConfig
Enumeration function ( ) { return ( homes . keys ( ) ) ; }
3,771
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String key concode_field_sep String getKey concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep TagKeyOnly clone concode_elem_sep TagKeyOnly withKey concode_elem_sep void setKey
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getKey ( ) != null ) loc0 . append ( "srini_string" + getKey ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
3,772
setter funtion for combiner doing least true or most false compare concode_field_sep DefaultOutputPort<HashMap<K,Integer>> mergedport concode_elem_sep HashMap<K,Integer> mergedTuple concode_elem_sep Integer lval concode_elem_sep boolean least concode_field_sep void beginWindow concode_elem_sep void process concode_elem...
void function ( boolean arg0 ) { least = arg0 ; }
3,773
a convenience method for logging an ` error ' message . concode_field_sep String contextPrefix concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep void log concode_elem_sep void log concode_elem_sep boolean isInfoEnabled concode_elem_sep int ha...
void function ( final Object arg0 , final Exception arg1 ) { log ( LogTarget . ERROR , arg0 , arg1 ) ; }
3,774
get password concode_field_sep byte[] _byte concode_elem_sep String password concode_elem_sep BigDecimal number concode_elem_sep Float _float concode_elem_sep Integer integer concode_elem_sep Double _double concode_elem_sep String string concode_elem_sep DateTime dateTime concode_elem_sep byte[] binary concode_elem_sep...
String function ( ) { return password ; }
3,775
the value of the defaultsearchfield configured for this search domain and its current status . concode_field_sep DefaultSearchFieldStatus defaultSearchField concode_field_sep DefaultSearchFieldStatus getDefaultSearchField concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString con...
void function ( DefaultSearchFieldStatus arg0 ) { this . defaultSearchField = arg0 ; }
3,776
sets the value of the serverid property . concode_field_sep Alliances.Alliance alliance concode_elem_sep String name concode_elem_sep String logo concode_elem_sep BigInteger id concode_elem_sep String tag concode_elem_sep String serverId concode_elem_sep Boolean open concode_elem_sep BigInteger timestamp concode_elem_s...
void function ( String arg0 ) { this . serverId = arg0 ; }
3,777
finds all nodes at the specified depth whose expected_policy_set contains the specified expected oid if matchany is false or the special oid `` any value '' if matchany is true . concode_field_sep PolicyNodeImpl mParent concode_elem_sep boolean mCriticalityIndicator concode_elem_sep HashSet<String> mExpectedPolicySet c...
Set < PolicyNodeImpl > function ( int arg0 , String arg1 , boolean arg2 ) { if ( arg1 . equals ( ANY_POLICY ) ) { return getPolicyNodes ( arg0 ) ; } else { return getPolicyNodesExpectedHelper ( arg0 , arg1 , arg2 ) ; } }
3,778
when the aggregated value is the result of applying a function to data from multiple metrics , this might be set for certain functions . for example , if we are computing the max or min from a set of data points from multiple metrics , then srcmetric along with #srcmetricinterval will tell us from which metric that val...
String function ( ) { return srcMetric ; }
3,779
get column index from a long concode_field_sep char[][] paddock concode_elem_sep List<Long> availablePositions concode_elem_sep KattIO io concode_field_sep void printAndExit concode_elem_sep boolean isHorseFound concode_elem_sep boolean isPositionVisited concode_elem_sep int getRowForPosition concode_elem_sep void main...
int function ( long arg0 ) { return ( int ) arg0 ; }
3,780
called whenever the osgi framework starts our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; }
3,781
sets the log writer for this managedconnection instance . concode_field_sep Logger log concode_elem_sep MultipleManagedConnectionFactory2 mcf concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep Object connection concode_elem_sep PrintWriter logwriter concode_field_sep void associateConnection conc...
void function ( PrintWriter arg0 ) { log . trace ( "srini_string" ) ; logwriter = arg0 ; }
3,782
creates a recognitioninfo if the relevant values are set in the instance . concode_field_sep String ifdName concode_elem_sep byte[] contextHandle concode_elem_sep byte[] cardApp concode_elem_sep String protocolEndpoint concode_elem_sep BigInteger slotIdx concode_elem_sep String cardType concode_elem_sep String binding ...
RecognitionInfo function ( ) { if ( cardType != null ) { RecognitionInfo loc0 = new RecognitionInfo ( ) ; loc0 . setCardType ( cardType ) ; loc0 . setCardIdentifier ( cardIdentifier ) ; return loc0 ; } else { return null ; } }
3,783
this method resets the outgoing events . concode_field_sep boolean event1 concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void reactMain_region_A concode_elem_sep void init concode_elem_sep SCInterface getSCInterface concode_elem_se...
void function ( ) { }
3,784
standard setter . concode_field_sep Set<String> supportedPortletModes concode_elem_sep String portalName concode_elem_sep Set<String> supportedWindowStates concode_elem_sep String containerName concode_elem_sep RenderConfig renderConfig concode_elem_sep Logger LOG concode_elem_sep String portalVersion concode_field_sep...
void function ( String arg0 ) { this . portalVersion = arg0 ; }
3,785
gets the mensagemcertificacao value for this validacaocertificacaosettopbox . concode_field_sep java.lang.String chaveCertificacao concode_elem_sep br.com.gvt.www.tv.configuracaoTV.ValidacaoCertificacaoSetTopBoxStatusCertificacao statusCertificacao concode_elem_sep int relacaoSinalRuido concode_elem_sep org.apache.axis...
java . lang . String function ( ) { return mensagemCertificacao ; }
3,786
main concode_field_sep PlaceHolder placeHolder concode_field_sep void test15
void function ( String [ ] arg0 ) { test15 ( ) ; }
3,787
returns the header value concode_field_sep Properties headers concode_elem_sep String namespace concode_elem_sep IOCallback callback concode_elem_sep IOConnection connection concode_elem_sep URL url concode_field_sep void disconnect concode_elem_sep void setHeaders concode_elem_sep SocketIO addHeader concode_elem_sep S...
String function ( String arg0 ) { if ( this . headers . contains ( arg0 ) ) return this . headers . getProperty ( arg0 ) ; return null ; }
3,788
convert from dip to px concode_field_sep PlaceHolder placeHolder concode_field_sep float toPixelFromSP concode_elem_sep float toPixelFromSP concode_elem_sep float toDIPFromPixel
float function ( float arg0 ) { return TypedValue . applyDimension ( TypedValue . COMPLEX_UNIT_DIP , arg0 , DisplayMetricsHolder . getWindowDisplayMetrics ( ) ) ; }
3,789
get the value for this argument . concode_field_sep boolean m_isFromWithParam concode_elem_sep boolean m_isVisible concode_elem_sep XObject m_val concode_elem_sep QName m_qname concode_elem_sep String m_expression concode_field_sep String getExpression concode_elem_sep void setIsVisible concode_elem_sep void setQName c...
XObject function ( ) { return m_val ; }
3,790
ensures the specified service is removed . concode_field_sep Map<State,Map<Mode,Mode>> modeToggle concode_field_sep T getValue concode_elem_sep T findValue concode_elem_sep ServiceController<T> findService concode_elem_sep void stop concode_elem_sep void start concode_elem_sep ServiceController<T> getService concode_el...
void function ( ServiceController < T > arg0 ) { transition ( arg0 , State . REMOVED ) ; }
3,791
pet status in the store 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 status concode_field_sep void setName concode_elem_sep String toIndentedStri...
StatusEnum function ( ) { return status ; }
3,792
encodes a int value to the byte array . concode_field_sep PlaceHolder placeHolder concode_field_sep short int2 concode_elem_sep void int2 concode_elem_sep int int4 concode_elem_sep void int4 concode_elem_sep long int8 concode_elem_sep void int8 concode_elem_sep float float4 concode_elem_sep void float4
void function ( byte [ ] arg0 , int arg1 , double arg2 ) { int8 ( arg0 , arg1 , Double . doubleToRawLongBits ( arg2 ) ) ; }
3,793
returns the index . 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 String getLabel concode_elem_sep void setIndex
int function ( ) { return index ; }
3,794
deprecated . please use appeventslogger instead . concode_field_sep String EVENT_NAME_LOG_CONVERSION_PIXEL concode_elem_sep String EVENT_PARAMETER_PIXEL_ID concode_elem_sep AppEventsLogger appEventsLogger concode_elem_sep String EVENT_PARAMETER_PIXEL_VALUE concode_field_sep InsightsLogger newLogger concode_elem_sep Ins...
void function ( BigDecimal arg0 , Currency arg1 ) { logPurchase ( arg0 , arg1 , null ) ; }
3,795
returns true if this element was already visited . concode_field_sep int linkCount concode_elem_sep Map myVisitedElements concode_elem_sep Iterator myElements concode_elem_sep boolean done concode_field_sep void beginVisit concode_elem_sep Iterator getElementLinks concode_elem_sep void endVisit concode_elem_sep void pe...
boolean function ( Object arg0 ) { return myVisitedElements . containsKey ( arg0 ) ; }
3,796
returns pam 250 matrix by dayhoff concode_field_sep Map<String,SubstitutionMatrix<AminoAcidCompound>> aminoAcidMatrices concode_elem_sep Map<String,SubstitutionMatrix<NucleotideCompound>> nucleotideMatrices concode_field_sep SubstitutionMatrix<AminoAcidCompound> getMatrixFromAAINDEX concode_elem_sep InputStreamReader g...
SubstitutionMatrix < AminoAcidCompound > function ( ) { return getAminoAcidMatrix ( "srini_string" ) ; }
3,797
get custom serializer concode_field_sep java.lang.Double amount concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Long line concode_elem_sep java.lang.Long orderLine concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String memo concode_elem_sep boolean __h...
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 ) ; }
3,798
the count of timers started by this workflow execution that have not fired yet . constraints : range : 0 - concode_field_sep Integer openDecisionTasks concode_elem_sep Integer openLambdaFunctions concode_elem_sep Integer openChildWorkflowExecutions concode_elem_sep Integer openTimers concode_elem_sep Integer openActivi...
void function ( Integer arg0 ) { this . openTimers = arg0 ; }
3,799
sets the maxlength . concode_field_sep char[] soundexMapping concode_elem_sep char[] US_ENGLISH_MAPPING concode_elem_sep Soundex US_ENGLISH concode_elem_sep int maxLength concode_elem_sep String US_ENGLISH_MAPPING_STRING concode_field_sep Object encode concode_elem_sep String encode concode_elem_sep char[] getSoundexMa...
void function ( final int arg0 ) { this . maxLength = arg0 ; }