idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
18,700
total time the bulb is on , through all repeats , assuming it 's on when entering this element . concode_field_sep List<Element> subs concode_elem_sep PrintStream ps concode_elem_sep long timeon concode_elem_sep boolean flip concode_elem_sep long timeleft concode_elem_sep long n concode_elem_sep Scanner sc concode_elem...
long function ( ) { long loc0 ; if ( flip ) { long loc1 = repeat / 2 ; long loc2 = repeat - loc1 ; loc0 = timeon * loc2 + timeoff * loc1 ; } else { loc0 = timeon * repeat ; } return loc0 ; }
18,701
gets the value of the alertdetails property . concode_field_sep Boolean riskLevelAdjustment concode_elem_sep Boolean riskAdjustment concode_elem_sep Boolean obInformation concode_elem_sep Boolean riskScoring concode_elem_sep Boolean alertDetails concode_field_sep void setObInformation concode_elem_sep void setRiskAdjus...
Boolean function ( ) { return alertDetails ; }
18,702
find an available udp port randomly selected from the range minport , maxport . concode_field_sep int PORT_RANGE_MAX concode_elem_sep Random random concode_elem_sep int PORT_RANGE_MIN concode_field_sep int findAvailableTcpPort concode_elem_sep int findAvailableTcpPort concode_elem_sep int findAvailableTcpPort concode_e...
int function ( int arg0 , int arg1 ) { return SocketType . UDP . findAvailablePort ( arg0 , arg1 ) ; }
18,703
called to retrieve per-instance state from an activity before being killed so that the state can be restored in oncreate bundle or onrestoreinstancestate bundle the bundle populated by this method will be passed to both . concode_field_sep boolean mEnableSlide concode_elem_sep Activity mActivity concode_elem_sep View m...
void function ( Bundle arg0 ) { arg0 . putBoolean ( "srini_string" , mSlidingMenu . isMenuShowing ( ) ) ; arg0 . putBoolean ( "srini_string" , mSlidingMenu . isSecondaryMenuShowing ( ) ) ; }
18,704
the owner of the bundle . this contains the owner 's account identifier , or amazon if the bundle is provided by aws . concode_field_sep String owner concode_elem_sep UserStorage userStorage concode_elem_sep ComputeType computeType concode_elem_sep String bundleId concode_elem_sep String name concode_elem_sep String de...
String function ( ) { return this . owner ; }
18,705
. this default implementation simply deletes the staging file if it exists . concode_field_sep int branchId concode_elem_sep short replicationFactor concode_elem_sep String fileName concode_elem_sep FsPermission dirPermission concode_elem_sep String allOutputFilesPropName concode_elem_sep String WRITER_INCLUDE_RECORD_C...
void function ( ) { if ( this . fs . exists ( this . stagingFile ) ) { HadoopUtils . deletePath ( this . fs , this . stagingFile , false ) ; } }
18,706
remove the current object . this method is not supported on this iterator . concode_field_sep Iterator elementIter concode_elem_sep Object current concode_field_sep Object next concode_elem_sep Iterator getChildElements concode_elem_sep boolean hasNext concode_elem_sep void checkCurrent
void function ( ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
18,707
returns the response for the http redirect that triggered this response , or null if this response was n't triggered by an automatic redirect . the body of the returned response should not be read because it has already been consumed by the redirecting client . concode_field_sep Request request concode_elem_sep RawHead...
Response function ( ) { return redirectedBy ; }
18,708
sets the group id of this vcms thread . concode_field_sep VcmsThread _vcmsThread concode_field_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep boolean isHasImage concode_elem_sep com.liferay.portlet.expando.model.ExpandoBridge getExpand...
void function ( long arg0 ) { _vcmsThread . setGroupId ( arg0 ) ; }
18,709
populates the internal collection of registered scheme protocol schemes with the content of the map passed as a parameter . concode_field_sep ConcurrentHashMap<String,Scheme> registeredSchemes concode_field_sep Scheme getScheme concode_elem_sep Scheme getScheme concode_elem_sep Scheme get concode_elem_sep Scheme unregi...
void function ( final Map < String , Scheme > arg0 ) { if ( arg0 == null ) { return ; } registeredSchemes . clear ( ) ; registeredSchemes . putAll ( arg0 ) ; }
18,710
retrieves the redo log character sequence for connecting this user concode_field_sep String sName concode_elem_sep Grantee grantee concode_elem_sep boolean isPublic concode_elem_sep boolean isSys concode_elem_sep String sPassword concode_field_sep void setPassword concode_elem_sep boolean isAccessible concode_elem_sep ...
String function ( ) { StringBuffer loc0 = new StringBuffer ( ) ; loc0 . append ( Token . T_CONNECT ) . append ( ' ' ) ; loc0 . append ( Token . T_USER ) . append ( ' ' ) ; loc0 . append ( sName ) ; return loc0 . toString ( ) ; }
18,711
processes the transform attribute value corresponding to a given transform stack concode_field_sep DOMTreeManager domTreeManager concode_elem_sep SVGGraphicContext groupGC concode_elem_sep short FILL concode_elem_sep short DRAW concode_elem_sep GraphicContext gc concode_elem_sep Element currentGroup concode_field_sep S...
void function ( Element arg0 , TransformStackElement [ ] arg1 ) { String loc0 = domTreeManager . gcConverter . toSVG ( arg1 ) . trim ( ) ; if ( loc0 . length ( ) > 0 ) arg0 . setAttributeNS ( null , SVG_TRANSFORM_ATTRIBUTE , loc0 ) ; }
18,712
wait until the given element to be visible by element id . max waiting time should provide as second parameter . concode_field_sep WebDriver driver concode_field_sep String getTextOfElementByXPath concode_elem_sep void waitUntilElementVisibilityByCssSelector concode_elem_sep void waitUntilElementVisibilityByLinkText co...
void function ( String arg0 , long arg1 ) { WebDriverWait loc0 = new WebDriverWait ( driver , arg1 ) ; loc0 . until ( ExpectedConditions . visibilityOfElementLocated ( By . arg0 ( getElementByKey ( arg0 ) ) ) ) ; }
18,713
configure one or more factories to decorate the handler used to process websocket messages . this may be useful in some advanced use cases , for example to allow spring security to forcibly close the websocket session when the corresponding http session expires . concode_field_sep Integer sendBufferSizeLimit concode_el...
WebSocketTransportRegistration function ( WebSocketHandlerDecoratorFactory ... arg0 ) { if ( arg0 != null ) { this . decoratorFactories . addAll ( Arrays . asList ( arg0 ) ) ; } return this ; }
18,714
the expression to evaluate for sorting while processing a search request . the expression syntax is based on javascript expressions . for more information , see configuring expressions in the amazon cloudsearch developer guide . constraints : length : 1 - 10240 concode_field_sep String expressionValue concode_elem_sep ...
void function ( String arg0 ) { this . expressionValue = arg0 ; }
18,715
read value s and value name s form given key concode_field_sep Preferences systemRoot concode_elem_sep Method regOpenKey concode_elem_sep int KEY_READ concode_elem_sep Method regQueryValueEx concode_elem_sep int REG_SUCCESS concode_elem_sep Method regEnumValue concode_elem_sep Class<? extends Preferences> userClass con...
Map < String , String > function ( int arg0 , String arg1 ) { if ( arg0 == HKEY_LOCAL_MACHINE ) { return readStringValues ( systemRoot , arg0 , arg1 ) ; } else if ( arg0 == HKEY_CURRENT_USER ) { return readStringValues ( userRoot , arg0 , arg1 ) ; } else { throw new IllegalArgumentException ( "srini_string" + arg0 ) ; ...
18,716
get tags 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 Pet addTagsItem concode_elem_sep Str...
List < Tag > function ( ) { return tags ; }
18,717
map method-names to i18n strings for the fields we might filter on which is path , channellabel at the moment concode_field_sep Map fieldMap concode_field_sep boolean filter concode_elem_sep void buildMap concode_elem_sep String getI18NPrefix concode_elem_sep void postFilter concode_elem_sep List getFieldNames concode_...
void function ( Locale arg0 ) { buildMap ( arg0 ) ; }
18,718
called in automatic mode . concode_field_sep PApplet parent concode_elem_sep boolean registered concode_elem_sep int frameHeight concode_elem_sep int[] pxCopy concode_elem_sep int DEFAULT_SIZE concode_elem_sep PGraphicsOpenGL graphics concode_elem_sep ArrayList<Screen> screens concode_elem_sep Semaphore sem concode_ele...
void function ( ) { this . clear ( ) ; }
18,719
set the ack header to one of `` auto '' , `` client '' , or `` client-individual '' . applies to the subscribe and message frames . concode_field_sep String CONTENT_LENGTH concode_elem_sep String ACK concode_elem_sep Map<String,List<String>> headers concode_elem_sep String LOGIN concode_elem_sep String SERVER concode_e...
void function ( String arg0 ) { set ( ACK , arg0 ) ; }
18,720
get socket . concode_field_sep String deviceType concode_elem_sep InetAddress inetAddress concode_elem_sep int connector concode_elem_sep int port concode_elem_sep String ipAddressString concode_elem_sep int module concode_elem_sep boolean isConnected concode_elem_sep Socket socket concode_field_sep InetAddress getInet...
Socket function ( ) { return socket ; }
18,721
generates and retrieves the difference between the sprint start date and the sprint end date in iso format . concode_field_sep FeatureSettings featureSettings concode_elem_sep FeatureCollectorRepository featureCollectorRepository concode_elem_sep String todayDateISO concode_elem_sep String returnDate concode_elem_sep L...
String function ( ) { int loc0 = this . featureSettings . getSprintEndPrior ( ) ; return DateUtil . toISODateRealTimeFormat ( DateUtil . getDatePriorToNDays ( DateUtil . getDateNoTime ( new Date ( ) ) , loc0 ) ) ; }
18,722
auto generated getter method concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.AssignPrivateIpAddressesType localAssignPrivateIpAddresses concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_sep void writeQName ...
com . amazon . ec2 . AssignPrivateIpAddressesType function ( ) { return localAssignPrivateIpAddresses ; }
18,723
adds a path variable concode_field_sep String path concode_elem_sep Map<String,File> variables concode_elem_sep File file concode_elem_sep boolean relativeToPathVariable concode_field_sep FileReference fromPath concode_elem_sep FileReference fromJarURI concode_elem_sep FileReference fromVariablePath concode_elem_sep in...
void function ( String arg0 , File arg1 ) { variables . put ( arg0 , arg1 ) ; }
18,724
return the session timeout in seconds . concode_field_sep StoreType storeType concode_elem_sep String namespace concode_elem_sep String collectionName concode_elem_sep Integer timeout concode_elem_sep Boolean enabled concode_elem_sep Jdbc jdbc concode_elem_sep HazelcastFlushMode flushMode concode_elem_sep String DEFAUL...
Integer function ( ) { return this . timeout ; }
18,725
whether to enable the automatic addition of the org.springframework.messaging.messageheaders #timestamp header on messageheaderaccessor instances being initialized.by default this property is set to false . concode_field_sep IdGenerator idGenerator concode_elem_sep IdGenerator ID_VALUE_NONE_GENERATOR concode_elem_sep b...
void function ( boolean arg0 ) { this . enableTimestamp = arg0 ; }
18,726
stores iterator-dependent data for a vertex that has been seen during the current pass . concode_field_sep double epsilon concode_elem_sep String NEGATIVE_UNDIRECTED_EDGE concode_elem_sep V startVertex concode_elem_sep Map<V,BellmanFordPathElement<V,E>> vertexData concode_elem_sep Map<V,BellmanFordPathElement<V,E>> pre...
BellmanFordPathElement < V , E > function ( V arg0 , BellmanFordPathElement < V , E > arg1 ) { if ( this . vertexData == null ) { this . vertexData = new HashMap < V , BellmanFordPathElement < V , E >> ( ) ; } return this . vertexData . put ( arg0 , arg1 ) ; }
18,727
sets data offset concode_field_sep List<DirectoryListingEntry> dlel concode_elem_sep boolean isNotControlDataFound concode_elem_sep long dataOffset concode_elem_sep byte[] data concode_elem_sep int resetTableIndex concode_elem_sep int placeHolder concode_elem_sep int controlDataIndex concode_elem_sep boolean isNotReset...
void function ( long arg0 ) { this . dataOffset = arg0 ; }
18,728
returns the status by user uuid of this c folder . concode_field_sep CFolder _cFolder concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setFeedbackDate concode_elem_sep void setGroupId concode_elem_se...
java . lang . String function ( ) { return _cFolder . getStatusByUserUuid ( ) ; }
18,729
update a todo 's done status . concode_field_sep ArrayList<Todo> todoList concode_field_sep void init concode_elem_sep ArrayList<Todo> getTodoList concode_elem_sep void setTodoList concode_elem_sep void archive concode_elem_sep void addTodo
void function ( @ BindingParam ( "srini_string" ) int arg0 , @ BindingParam ( "srini_string" ) boolean arg1 ) { todoList . get ( arg0 ) . setDone ( arg1 ) ; }
18,730
gets the value of the usedef property . concode_field_sep Boolean useDef concode_elem_sep CTDataModel dataModel concode_field_sep void setDataModel concode_elem_sep void setUseDef concode_elem_sep CTDataModel getDataModel
boolean function ( ) { if ( useDef == null ) { return false ; } else { return useDef ; } }
18,731
returns a copy of this configuration concode_field_sep int connectionTimeout concode_elem_sep String password concode_elem_sep int timeout concode_elem_sep int port concode_elem_sep NagiosSettings nagiosSettings concode_elem_sep String host concode_elem_sep NagiosEncryptionMethod encryptionMethod concode_field_sep void...
NagiosConfiguration function ( ) { try { NagiosConfiguration loc0 = ( NagiosConfiguration ) clone ( ) ; return loc0 ; } catch ( CloneNotSupportedException loc0 ) { throw new RuntimeCamelException ( loc0 ) ; } }
18,732
remove the properties added to collection or resource concode_field_sep String sessionCookie concode_elem_sep JMXClient jmxClient concode_elem_sep String userName concode_elem_sep String userNameWithoutDomain concode_elem_sep AutomationContext automationContext concode_elem_sep String backEndUrl concode_field_sep boole...
void function ( String arg0 ) { PropertiesAdminServiceClient loc0 = new PropertiesAdminServiceClient ( backEndUrl , sessionCookie ) ; loc0 . removeProperty ( arg0 , "srini_string" ) ; }
18,733
expands a string according to #expandglob string , and then constructs a wildcardpath for each expanded result which can be used to match strings as described in wildcardpath . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isNullOrEmpty concode_elem_sep List<String> expandGlob concode_elem_sep Str...
List < WildcardPath > function ( String arg0 , char arg1 ) { List < WildcardPath > loc0 = new ArrayList < WildcardPath > ( ) ; for ( String loc1 : Strings . expandGlob ( arg0 ) ) { loc0 . add ( new WildcardPath ( arg0 , loc1 , arg1 ) ) ; } return loc0 ; }
18,734
revert any changes we made to the channel future . concode_field_sep List<Object> delegate concode_elem_sep ChannelHandler handler concode_field_sep boolean add concode_elem_sep void add concode_elem_sep List<Object> subList concode_elem_sep Object set concode_elem_sep void unprocessElement concode_elem_sep boolean con...
void function ( ChannelFuture arg0 ) { final Channel loc0 = arg0 . loc0 ( ) ; loc0 . eventLoop ( ) . submit ( new Callable < Object > ( ) { @ Override public Object call ( ) throws Exception { loc0 . pipeline ( ) . remove ( handler ) ; return null ; } } ) ; }
18,735
sets the experiment id . concode_field_sep AbstractProject project concode_elem_sep Long id concode_elem_sep String title concode_elem_sep Date creationDate concode_elem_sep Map<String,String> properties concode_field_sep Map<String,String> getProperties concode_elem_sep boolean hasSearchResult concode_elem_sep void se...
void function ( Long arg0 ) { this . id = arg0 ; }
18,736
sets the x component . concode_field_sep int m_offset concode_elem_sep ByteBuffer m_buffer concode_field_sep void setW concode_elem_sep float getW concode_elem_sep float getX concode_elem_sep void setY concode_elem_sep float getY concode_elem_sep float getZ concode_elem_sep String toString concode_elem_sep void setZ
void function ( float arg0 ) { m_buffer . putFloat ( m_offset + 4 , arg0 ) ; }
18,737
the root relative path , artifact #getrootrelativepath . concode_field_sep Set<Artifact> idlGeneratedJavaFiles concode_elem_sep String javaPackage concode_elem_sep Set<SourceDirectory> idlDirs concode_elem_sep ImmutableCollection<SourceDirectory> assetDirs concode_elem_sep Artifact generatedManifest concode_elem_sep Se...
PathFragment function ( ) { return relativePath ; }
18,738
given an x. 509 extension that encodes generalnames , return it in the format expected by apis . concode_field_sep ASN1Type ASN1 concode_elem_sep List<Extension> extensions concode_elem_sep HashMap<String,Extension> oidMap concode_elem_sep List SUPPORTED_CRITICAL concode_elem_sep Set<String> critical concode_elem_sep b...
Collection < List < ? >> function ( Extension arg0 ) { if ( arg0 == null ) { return null ; } Collection < List < ? >> loc0 = ( ( GeneralNames ) GeneralNames . ASN1 . decode ( arg0 . getExtnValue ( ) ) ) . getPairsList ( ) ; if ( loc0 . size ( ) == 0 ) { return null ; } return Collections . unmodifiableCollection ( loc0...
18,739
gets the id value for this address . concode_field_sep java.lang.String zip concode_elem_sep City city concode_elem_sep java.lang.String addressLine1 concode_elem_sep java.lang.String addressLine2 concode_elem_sep long serialVersionUID concode_elem_sep java.lang.Integer id concode_elem_sep String status concode_field_s...
java . lang . Integer function ( ) { return id ; }
18,740
adds the user groups to the group . concode_field_sep UserGroupService _service concode_field_sep void deleteUserGroup concode_elem_sep com.liferay.portal.model.UserGroup addUserGroup concode_elem_sep com.liferay.portal.model.UserGroup addUserGroup concode_elem_sep void addTeamUserGroups concode_elem_sep com.liferay.po...
void function ( long arg0 , long [ ] arg1 ) { getService ( ) . addGroupUserGroups ( arg0 , arg1 ) ; }
18,741
set the image that has been generated for this glyph concode_field_sep Image image concode_elem_sep short yOffset concode_elem_sep boolean isMissing concode_elem_sep Shape shape concode_elem_sep short width concode_elem_sep int codePoint concode_elem_sep short height concode_field_sep int getHeight concode_elem_sep boo...
void function ( Image arg0 ) { this . image = arg0 ; }
18,742
create a source from a string . concode_field_sep String contents concode_elem_sep String location concode_elem_sep DefinitionLanguage definitionLang concode_field_sep String getLocation concode_elem_sep DefinitionLanguage detectDefinitionLanguage concode_elem_sep ModuleDefinitionSource fromStringWithLang concode_elem_...
ModuleDefinitionSource function ( String arg0 , String arg1 ) { return new DefaultModuleDefinitionSource ( arg0 , arg1 , DefinitionLanguage . Spaghetti ) ; }
18,743
shuffles randomizes the order of the intbag concode_field_sep int numObjs concode_elem_sep int[] objs concode_field_sep int remove concode_elem_sep int pop concode_elem_sep int top concode_elem_sep Integer[] toIntegerArray concode_elem_sep void doubleCapacityPlusOne concode_elem_sep int get concode_elem_sep int[] toArr...
void function ( ec . util . MersenneTwisterFast arg0 ) { int [ ] loc0 = this . objs ; int loc1 = this . numObjs ; int loc2 ; int loc3 ; for ( int loc4 = loc1 - 1 ; loc4 >= 1 ; loc4 -- ) { loc3 = arg0 . nextInt ( loc4 + 1 ) ; loc2 = loc0 [ loc4 ] ; loc0 [ loc4 ] = loc0 [ loc3 ] ; loc0 [ loc3 ] = loc2 ; } }
18,744
sets the employee value for this opportunitysalesteam . concode_field_sep java.lang.Double contribution concode_elem_sep java.lang.Boolean isPrimary concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef salesRole concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc c...
void function ( com . netsuite . webservices . platform . core_2014_2 . RecordRef arg0 ) { this . employee = arg0 ; }
18,745
the method determines if the resource can be converted to a boolean . concode_field_sep Logger log concode_field_sep boolean isClass concode_elem_sep Class getClass concode_elem_sep String getResource concode_elem_sep boolean isLong concode_elem_sep List getMatchingResourceNames concode_elem_sep double getDouble concod...
boolean function ( String arg0 ) { return gotResource ( arg0 ) ; }
18,746
gets the value of the keyvalue property . concode_field_sep AnyType other concode_elem_sep KeyValueType keyValue concode_elem_sep String x509SubjectName concode_elem_sep byte[] x509SKI concode_elem_sep long serialVersionUID concode_elem_sep byte[] x509Certificate concode_field_sep void setOther concode_elem_sep void se...
KeyValueType function ( ) { return keyValue ; }
18,747
returns the ` b ' coefficient that was specified in the constructor . concode_field_sep double a concode_elem_sep double b concode_field_sep double getValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep double getIntercept
double function ( ) { return this . b ; }
18,748
sets comments . concode_field_sep long sequenceNumber concode_elem_sep String fileName concode_elem_sep String scene7Url concode_elem_sep Object comments concode_elem_sep String filePath concode_elem_sep Object imageLocationCodeDTO concode_elem_sep long inspectionImagesId concode_elem_sep Object isUpdated concode_elem_...
void function ( Object arg0 ) { this . comments = arg0 ; }
18,749
returns a list containing all the keys in the list . concode_field_sep List data concode_elem_sep long serialVersionUID concode_field_sep Comparable getKey concode_elem_sep Object getObject concode_elem_sep Object getObject concode_elem_sep int getIndex concode_elem_sep void removeValue concode_elem_sep void removeValu...
List function ( ) { List loc0 = new java . util . ArrayList ( ) ; Iterator loc1 = this . data . loc1 ( ) ; while ( loc1 . hasNext ( ) ) { KeyedObject loc2 = ( KeyedObject ) loc1 . next ( ) ; loc0 . add ( loc2 . getKey ( ) ) ; } return loc0 ; }
18,750
shows a notification message the current page . the position and behavior of the message depends on the type , which is one of the basic types defined in notification , for instance notification.type _ warning_message . the caption is rendered as plain text with html automatically escaped . concode_field_sep Position P...
void function ( String arg0 , Type arg1 ) { new Notification ( arg0 , arg1 ) . show ( Page . getCurrent ( ) ) ; }
18,751
initializes this algorithmparameters with the specified byte using the specified decoding format . concode_field_sep Provider provider concode_elem_sep Engine ENGINE concode_elem_sep AlgorithmParametersSpi spiImpl concode_elem_sep boolean initialized concode_elem_sep String SEVICE concode_elem_sep String algorithm conc...
void function ( byte [ ] arg0 , String arg1 ) { if ( initialized ) { throw new IOException ( "srini_string" ) ; } spiImpl . engineInit ( arg0 , arg1 ) ; initialized = true ; }
18,752
gets the height of the dimension object . concode_field_sep float width concode_elem_sep float height concode_field_sep void set concode_elem_sep void set concode_elem_sep String toString concode_elem_sep float getWidth concode_elem_sep Dimension toDimension
float function ( ) { return height ; }
18,753
gets the value of the layout property . concode_field_sep Layout layout concode_elem_sep String scrolling concode_elem_sep String flavour concode_elem_sep String src concode_elem_sep String background concode_elem_sep String width concode_elem_sep BigDecimal refresh concode_elem_sep String frameborder concode_elem_sep ...
Layout function ( ) { return layout ; }
18,754
return a list of the names of the currently available garbage collectors within the virtual machine . concode_field_sep PlaceHolder placeHolder concode_field_sep String[] getMemoryManagerNames concode_elem_sep String[] getMemoryPoolNames
String [ ] function ( ) { String [ ] loc0 = { "srini_string" } ; return loc0 ; }
18,755
to parse an incomming tcp message , a terminator character is required to determine the end of the message so that it can be parsed and forwarded . concode_field_sep StringBuffer _myStringBuffer concode_elem_sep int MODE_STREAM concode_elem_sep Thread _myThread concode_elem_sep int MODE_TERMINATED concode_elem_sep byte...
void function ( final char arg0 ) { TERMINATOR = arg0 ; }
18,756
clears all views 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 View getItem concode_elem_sep void recycleView concode_elem_sep List<View> addView concode_elem_sep View get...
void function ( ) { if ( items != null ) { items . clear ( ) ; } if ( emptyItems != null ) { emptyItems . clear ( ) ; } }
18,757
builds a new instance of the concode_field_sep ObjectObjectOpenHashMap<KType,VType> map concode_elem_sep ImmutableOpenMap EMPTY concode_field_sep VType getOrDefault concode_elem_sep VType getOrDefault concode_elem_sep ObjectLookupContainer<KType> keys concode_elem_sep ObjectCollection<KType> keys concode_elem_sep Objec...
ImmutableOpenMap < KType , VType > function ( ) { ObjectObjectOpenHashMap < KType , VType > loc0 = this . map ; this . map = null ; return new ImmutableOpenMap < > ( loc0 ) ; }
18,758
returns the id of this property . concode_field_sep Class nodeClass concode_elem_sep String propertyId concode_field_sep boolean isSimpleProperty concode_elem_sep Class getNodeClass concode_elem_sep boolean isChildProperty concode_elem_sep boolean isChildListProperty concode_elem_sep String toString
String function ( ) { return this . propertyId ; }
18,759
creates a griddatafactory initialized with defaults . initial values are : align swt.fill , swt.fill exclude false grab false , false span 1,1 concode_field_sep GridData data concode_field_sep GridDataFactory fillDefaultsInternal concode_elem_sep GridDataFactory align concode_elem_sep GridDataFactory grab concode_elem_...
GridDataFactory function ( ) { return new GridDataFactory ( ) . fillDefaultsInternal ( ) ; }
18,760
retrieves the name of the signature algorithm . concode_field_sep String[] args concode_elem_sep URI tsa concode_elem_sep byte[] signature concode_elem_sep X509Certificate tsaCertificate concode_elem_sep ZipFile source concode_elem_sep String tSAPolicyID concode_elem_sep X509Certificate[] signerCertificateChain concode...
String function ( ) { return signatureAlgorithm ; }
18,761
returns the user uuid of this phone . concode_field_sep Phone _phone 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_elem_sep boolean i...
java . lang . String function ( ) { return _phone . getUserUuid ( ) ; }
18,762
gets the dynamic time through the formatcurrenttime method in the timezonebean . concode_field_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep String getUseDaylightTime concode_elem_sep String getLocation concode_elem_...
String function ( ) { return TimeZoneBean . formatCurrentTime ( dateFormat ) ; }
18,763
look up an attribute 's local name by index . concode_field_sep NamedNodeMap m_attrs concode_elem_sep int m_lastIndex concode_elem_sep DOMHelper m_dh concode_field_sep String getValue concode_elem_sep String getValue concode_elem_sep String getValue concode_elem_sep int getIndex concode_elem_sep int getIndex concode_el...
String function ( int arg0 ) { return m_dh . getLocalNameOfNode ( ( ( Attr ) m_attrs . item ( arg0 ) ) ) ; }
18,764
clearspace currently does n't support digest authentication . concode_field_sep String URL_PREFIX concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep void authenticate concode_elem_sep void authenticate concode_elem_sep boolean supportsPasswordRetrieval concode_elem_sep boolean isPla...
boolean function ( ) { return false ; }
18,765
verify if the thief picks the correct target concode_field_sep M method concode_elem_sep String expectedTargetResult concode_elem_sep String expectedTarget concode_elem_sep String expectedStealMethod concode_elem_sep PrintStream stdOutOrig concode_elem_sep String expectedConfuseMethod concode_elem_sep PrintStream stdOu...
void function ( ) { assertEquals ( expectedTarget , this . method . pickTarget ( ) ) ; }
18,766
invokes the method . also private method also can be invoked . concode_field_sep Method method concode_elem_sep Object[] _args concode_elem_sep MetaHolder metaHolder concode_elem_sep Object[] EMPTY_ARGS concode_elem_sep Object object concode_field_sep MetaHolder getMetaHolder concode_elem_sep Object getObject concode_e...
Object function ( ExecutionType arg0 , Object [ ] arg1 ) { if ( ExecutionType . ASYNCHRONOUS == arg0 ) { Closure loc0 = AsyncClosureFactory . getInstance ( ) . createClosure ( metaHolder , method , object , arg1 ) ; return executeClj ( loc0 . getClosureObj ( ) , loc0 . getClosureMethod ( ) ) ; } return execute ( object...
18,767
get ad_desktop_id concode_field_sep int AD_Desktop_ID concode_elem_sep String Description concode_elem_sep String Help concode_elem_sep int AD_Color_ID concode_elem_sep Properties m_ctx concode_elem_sep int PA_Goal_ID concode_elem_sep int AD_Column_ID concode_elem_sep ArrayList<Integer> m_workbenches concode_elem_sep i...
int function ( ) { return AD_Desktop_ID ; }
18,768
returns true if a class has any native methods . concode_field_sep Set<String> mStubMethods concode_elem_sep Map<String,ClassReader> mKeep concode_elem_sep Map<String,ClassReader> mDeps concode_elem_sep HashMap<String,String> mRenameClasses concode_elem_sep HashSet<String> mClassesNotRenamed concode_elem_sep Log mLog c...
boolean function ( ClassReader arg0 ) { ClassHasNativeVisitor loc0 = new ClassHasNativeVisitor ( ) ; arg0 . accept ( loc0 , 0 ) ; return loc0 . hasNativeMethods ( ) ; }
18,769
retrieve the defined result alias concode_field_sep LockMode lockMode concode_elem_sep int hashCode concode_elem_sep String alias concode_elem_sep Map<String,String[]> propertyResults concode_field_sep LockMode getLockMode concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void traceLog conc...
String function ( ) { return alias ; }
18,770
maps item into item dto object . concode_field_sep PlaceHolder placeHolder concode_field_sep void fillProperties
ItemDTO function ( Item arg0 ) { ItemDTO loc0 = arg0 instanceof GroupItem ? new GroupItemDTO ( ) : new ItemDTO ( ) ; fillProperties ( loc0 , arg0 ) ; return loc0 ; }
18,771
returns the folder id of this folder . concode_field_sep Folder _folder concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int ...
long function ( ) { return _folder . getFolderId ( ) ; }
18,772
retrieve the set of keys mapping to a value v. wo n't compile vs. above in java due to generics support through type erasure . concode_field_sep Hashtable<K,HashSet<V>> map concode_elem_sep Hashtable<V,HashSet<K>> rmap concode_field_sep int sizeKeys concode_elem_sep Set<K> keys concode_elem_sep boolean containsKey conc...
Set < K > function ( V arg0 ) { return ( rmap . get ( arg0 ) ) ; }
18,773
retrieves the number of characters in the clob value designated by this clob object . concode_field_sep String data concode_field_sep java.io.Writer setCharacterStream concode_elem_sep int setString concode_elem_sep int setString concode_elem_sep java.io.OutputStream setAsciiStream concode_elem_sep void truncate concod...
long function ( ) { return data . length ( ) ; }
18,774
returns the radio interface if any . concode_field_sep Log myLog concode_elem_sep PolledAfterActiveTicks[] polledAfterActive concode_elem_sep Clock myClock concode_elem_sep Button myButton concode_elem_sep LED myLED concode_elem_sep ArrayList<MoteInterface> moteInterfaces concode_elem_sep IPAddress myIPAddress concode_...
Radio function ( ) { if ( myRadio == null ) { myRadio = getInterfaceOfType ( Radio . class ) ; } return myRadio ; }
18,775
it gives the number of items that compose the itemset concode_field_sep List<Item> items concode_elem_sep long timestamp concode_field_sep void addItem concode_elem_sep void addItem concode_elem_sep boolean removeItem concode_elem_sep Item removeItem concode_elem_sep List<Item> getItems concode_elem_sep Itemset cloneIt...
int function ( ) { return items . size ( ) ; }
18,776
cleans up the current spilling channel and file . does not clean up the spilledbufferoreventsequences generated by calls to #rollover . concode_field_sep File currentSpillFile concode_elem_sep long bytesWritten concode_elem_sep String spillFilePrefix concode_elem_sep ByteBuffer readBuffer concode_elem_sep ByteBuffer[] ...
void function ( ) { currentChannel . close ( ) ; if ( ! currentSpillFile . delete ( ) ) { throw new IOException ( "srini_string" ) ; } }
18,777
shows the page to read a specific message concode_field_sep Result result concode_elem_sep PrivateMessageService service concode_elem_sep UserSession userSession concode_elem_sep UserRepository userRepository concode_elem_sep PrivateMessageRepository repository concode_field_sep void findUser concode_elem_sep void send...
void function ( int arg0 ) { PrivateMessage loc0 = this . repository . get ( arg0 ) ; if ( loc0 . isNew ( ) ) { loc0 . markAsRead ( ) ; } this . result . include ( "srini_string" , loc0 ) ; this . result . include ( "srini_string" , loc0 . asPost ( ) ) ; }
18,778
print a designated text to a printstream , eventually wrapping the lines of text so as to ensure that the width of each line does not overflow parser #max_line_length columns . the line-wrapping is done with a breakiterator using the default locale . the text to print may contain \ n characters . this method will force...
void function ( PrintStream arg0 , String arg1 , int arg2 ) { formatText ( arg0 , arg1 , arg2 , Locale . getDefault ( ) ) ; }
18,779
add a field to this and automatically add the import of the type if needed concode_field_sep PlaceHolder placeHolder concode_field_sep BlockStmt addStaticInitializer concode_elem_sep List<MethodDeclaration> getMethodsByParameterTypes concode_elem_sep List<MethodDeclaration> getMethodsByParameterTypes concode_elem_sep L...
FieldDeclaration function ( Class < ? > arg0 , String arg1 , Modifier ... arg2 ) { ( ( Node ) this ) . tryAddImportToParentCompilationUnit ( arg0 ) ; return addField ( arg0 . getSimpleName ( ) , arg1 , arg2 ) ; }
18,780
sets the create date of this website . concode_field_sep Website _website 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_elem_sep bool...
void function ( Date arg0 ) { _website . setCreateDate ( arg0 ) ; }
18,781
test method for motor.depot.model.motordepot #finduserignorecase java.lang.string . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetLoadableFromCsvList_driver concode_elem_sep void testSetNewDriverActiveState concode_elem_sep void testGetDispatcher concode_elem_sep void testMotorDepot concode_el...
void function ( ) { MotorDepot loc0 = getDefaultMotorDepot ( ) ; loc0 . addUser ( "srini_string" , "srini_string" ) ; loc0 . addUser ( "srini_string" , "srini_string" ) ; assertNotNull ( loc0 . findUserIgnoreCase ( "srini_string" ) ) ; }
18,782
get the order of the registration bean . concode_field_sep int order concode_elem_sep boolean asyncSupported concode_elem_sep boolean enabled concode_elem_sep String name concode_elem_sep Map<String,String> initParameters concode_field_sep void setName concode_elem_sep void setEnabled concode_elem_sep void setOrder con...
int function ( ) { return this . order ; }
18,783
adds a name/value pair to the formatted output in name = value format . concode_field_sep ValueHolder next concode_elem_sep ValueHolder holderTail concode_elem_sep String name concode_elem_sep String className concode_elem_sep boolean omitNullValues concode_elem_sep ValueHolder holderHead concode_elem_sep Object value ...
ToStringHelper function ( String arg0 , double arg1 ) { return addHolder ( arg0 , String . valueOf ( arg1 ) ) ; }
18,784
fires an interval removed event . concode_field_sep Vector listenersV_ concode_elem_sep ListDataListener[] listeners_ concode_elem_sep String copyright concode_elem_sep Object source_ concode_field_sep void intervalRemoved concode_elem_sep void removeListDataListener concode_elem_sep void fireIntervalAdded concode_elem...
void function ( int arg0 , int arg1 ) { synchronized ( listeners_ ) { for ( int loc0 = 0 ; loc0 < listeners_ . length ; ++ loc0 ) listeners_ [ loc0 ] . intervalRemoved ( new ListDataEvent ( source_ , ListDataEvent . INTERVAL_REMOVED , arg0 , arg1 ) ) ; } }
18,785
reads an xml node encoded in utf-8 x b16 b8 non-final xml chunk x b16 b8 final xml chunk concode_field_sep HessianRemoteResolver resolver concode_field_sep void readEnd concode_elem_sep HessianRemoteResolver getRemoteResolver concode_elem_sep int addRef concode_elem_sep String getMethod concode_elem_sep String readHead...
org . w3c . dom . Node function ( ) { throw new UnsupportedOperationException ( getClass ( ) . getSimpleName ( ) ) ; }
18,786
the role that is currently assigned to the node - primary or replica . concode_field_sep String cacheClusterId concode_elem_sep String preferredAvailabilityZone concode_elem_sep String currentRole concode_elem_sep Endpoint readEndpoint concode_elem_sep String cacheNodeId concode_field_sep String getCacheClusterId conco...
void function ( String arg0 ) { this . currentRole = arg0 ; }
18,787
set the entity id concode_field_sep HashMap<String,Set<Object>> primaryFilters concode_elem_sep HashMap<String,Object> otherInfo concode_elem_sep HashMap<String,Set<String>> relatedEntities concode_elem_sep String entityType concode_elem_sep String entityId concode_elem_sep Long startTime concode_elem_sep List<Timeline...
void function ( String arg0 ) { this . entityId = arg0 ; }
18,788
returns the number of intersection points found . this will be either 0 , 1 or 2 . concode_field_sep int DO_INTERSECT concode_elem_sep int COLLINEAR concode_elem_sep int result concode_elem_sep Coordinate[] intPt concode_elem_sep Coordinate pa concode_elem_sep Coordinate pb concode_elem_sep int DONT_INTERSECT concode_e...
int function ( ) { return result ; }
18,789
the port on which the back-end server is listening . concode_field_sep Integer instancePort concode_elem_sep com.amazonaws.internal.SdkInternalList<String> policyNames concode_field_sep java.util.List<String> getPolicyNames concode_elem_sep BackendServerDescription withInstancePort concode_elem_sep BackendServerDescrip...
Integer function ( ) { return this . instancePort ; }
18,790
gets the value of the file property . concode_field_sep String file concode_elem_sep String beforeRevision concode_elem_sep String afterRevision concode_elem_sep String relativeFile concode_field_sep String getAfterRevision concode_elem_sep void setAfterRevision concode_elem_sep void setFile concode_elem_sep void setRe...
String function ( ) { return file ; }
18,791
get size . concode_field_sep List<A> listA concode_elem_sep ListIterator<A> keyIterator concode_elem_sep List<B> listB concode_elem_sep ListIterator<B> valueIterator concode_elem_sep boolean isReversed concode_elem_sep B value concode_elem_sep A key concode_field_sep Map.Entry<A,B> next concode_elem_sep Map.Entry<A,B> ...
int function ( ) { return listA . size ( ) ; }
18,792
returns the key type of the given key concode_field_sep PlaceHolder placeHolder concode_field_sep Set<Binding<?>> getBindingsOf concode_elem_sep Set<Binding<?>> getBindingsOf concode_elem_sep Set<T> getInstancesOf concode_elem_sep Set<T> getInstancesOf concode_elem_sep Set<Provider<T>> getProvidersOf concode_elem_sep S...
Class < ? > function ( Key < ? > arg0 ) { Class < ? > loc0 = null ; TypeLiteral < ? > loc1 = arg0 . getTypeLiteral ( ) ; Type loc2 = loc1 . getType ( ) ; if ( loc2 instanceof Class ) { loc0 = ( Class < ? > ) loc2 ; } return loc0 ; }
18,793
get the patternelement . concode_field_sep PatternElement patternElement concode_elem_sep BindingSet bindingSet concode_field_sep BindingSet getBindingSet
PatternElement function ( ) { return patternElement ; }
18,794
puts a float into the buffer . concode_field_sep Factory factory concode_elem_sep ByteBuffer buf concode_elem_sep int BUFFER_SIZE concode_elem_sep boolean direct concode_elem_sep ByteOrder byteOrder concode_field_sep void putIntegerArray concode_elem_sep void putString concode_elem_sep void putDoubleArray concode_elem_...
void function ( float [ ] arg0 ) { verifySize ( 4 * arg0 . length ) ; for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { buf . putFloat ( arg0 [ loc0 ] ) ; } }
18,795
set the container name . concode_field_sep int STREAM_NAME concode_elem_sep int MODULE_TYPE concode_elem_sep int MODULE_SEQUENCE concode_elem_sep int CONTAINER concode_elem_sep int MODULES concode_elem_sep int DEPLOYMENT_DESC concode_elem_sep String[] deploymentDesc concode_elem_sep String[] elements concode_elem_sep i...
StreamDeploymentsPath function ( String arg0 ) { deploymentDesc [ CONTAINER ] = arg0 ; return this ; }
18,796
returns a string representation of the time period . concode_field_sep TimeZone DEFAULT_TIME_ZONE concode_elem_sep Calendar WORKING_CALENDAR concode_field_sep RegularTimePeriod next concode_elem_sep RegularTimePeriod createInstance concode_elem_sep long getLastMillisecond concode_elem_sep long getLastMillisecond concod...
String function ( ) { return String . valueOf ( getStart ( ) ) ; }
18,797
indicates if this network is supposed to be default-routable concode_field_sep int restoreTime concode_elem_sep String name concode_elem_sep int type concode_elem_sep int priority concode_elem_sep boolean dependencyMet concode_elem_sep int radio concode_field_sep placeholderType placeHolder
boolean function ( ) { return ( type == radio ) ; }
18,798
displays a toast given a context and the text . concode_field_sep PlaceHolder placeHolder concode_field_sep ArrayList<SmsAlarm> parseAlarmJson concode_elem_sep String pad concode_elem_sep String expandStringArray concode_elem_sep File[] getAllJsonFiles
void function ( Context arg0 , String arg1 ) { Toast . makeText ( arg0 , arg1 , Toast . LENGTH_LONG ) . show ( ) ; }
18,799
this implementation builds a simplethrowawayclassloader . concode_field_sep SimpleInstrumentableClassLoader classLoader concode_field_sep ClassLoader getInstrumentableClassLoader concode_elem_sep void addTransformer
ClassLoader function ( ) { return new SimpleThrowawayClassLoader ( getInstrumentableClassLoader ( ) ) ; }