idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
16,500
save the internal state of the group concode_field_sep AuthorityService authorityService concode_elem_sep GroupService groupService concode_elem_sep GroupDTO group concode_field_sep List<?> getAllGroups concode_elem_sep boolean hasAuthorities concode_elem_sep String getName concode_elem_sep GroupView getGroupView conco...
void function ( ) { groupService . save ( group ) ; }
16,501
gets the value of the id property . concode_field_sep List<Object> content concode_elem_sep String id concode_elem_sep String mimeType concode_elem_sep String encoding concode_field_sep void add concode_elem_sep String getEncoding concode_elem_sep String getMimeType concode_elem_sep void setEncoding concode_elem_sep Li...
String function ( ) { return id ; }
16,502
create an immutable array . concode_field_sep K[] array concode_elem_sep int length concode_elem_sep ImmutableArray2<?> EMPTY concode_elem_sep AtomicBoolean canExtend concode_field_sep Iterator<K> iterator concode_elem_sep ImmutableArray2<K> set concode_elem_sep K[] array concode_elem_sep K get concode_elem_sep int len...
ImmutableArray2 < K > function ( K ... arg0 ) { return new ImmutableArray2 < K > ( arg0 , arg0 . length ) ; }
16,503
set max value of given column concode_field_sep int[][] maskByteRange concode_elem_sep byte[][] min concode_elem_sep byte[][] maxKeys concode_elem_sep byte[][] max concode_elem_sep int noOfCol concode_elem_sep KeyGenerator keyGenerator concode_elem_sep LogService LOGGER concode_field_sep void add concode_elem_sep void ...
void function ( byte [ ] arg0 , int arg1 ) { if ( null == max [ arg1 ] ) { max [ arg1 ] = arg0 ; } else { if ( ByteUtil . UnsafeComparer . INSTANCE . compareTo ( arg0 , max [ arg1 ] ) > 0 ) { max [ arg1 ] = arg0 ; } } }
16,504
returns the row object that currently represents the same database row . in current implementations of row , this is always the same as the this object for memory tables , but could be a different object for cachedrow or cacheddatarow implementation . for example the row object that represents a given database row can ...
Row function ( ) { return this ; }
16,505
determine whether the given bean should be proxied with its target class rather than its interfaces . checks the #preserve_target_class_attribute `` preservetargetclass '' attribute of the corresponding bean definition . concode_field_sep String PRESERVE_TARGET_CLASS_ATTRIBUTE concode_field_sep placeholderType placeHol...
boolean function ( ConfigurableListableBeanFactory arg0 , String arg1 ) { if ( arg1 != null && arg0 . containsBeanDefinition ( arg1 ) ) { BeanDefinition loc0 = arg0 . getBeanDefinition ( arg1 ) ; return Boolean . TRUE . equals ( loc0 . getAttribute ( PRESERVE_TARGET_CLASS_ATTRIBUTE ) ) ; } return false ; }
16,506
gets the value of the timezonestandardname property . concode_field_sep JAXBElement<String> timezoneStandardName concode_elem_sep JAXBElement<String> decimalSeparator concode_elem_sep JAXBElement<String> timeFormat concode_elem_sep JAXBElement<String> thousandsSeparator concode_field_sep void setTimezoneStandardName co...
JAXBElement < String > function ( ) { return timezoneStandardName ; }
16,507
returns object of this class with specified values . concode_field_sep int ATTR_PREFIX_EXTROUTETAG concode_elem_sep List<Long> pfxExtRouteTag concode_elem_sep Logger log concode_elem_sep int ATTR_PREFIX_EXT_LEN concode_field_sep List<Long> pfxExtRouteTag concode_elem_sep BgpPrefixAttrExtRouteTag read concode_elem_sep s...
BgpPrefixAttrExtRouteTag function ( ArrayList < Long > arg0 ) { return new BgpPrefixAttrExtRouteTag ( arg0 ) ; }
16,508
gets the value of the description property . concode_field_sep List<Long> categoryIds concode_elem_sep Long size concode_elem_sep String name concode_elem_sep String description concode_elem_sep Long id concode_elem_sep AudienceSegmentDataProvider dataProvider concode_elem_sep AudienceSegmentAudienceSegmentType type co...
String function ( ) { return description ; }
16,509
set the domain id concode_field_sep String owner concode_elem_sep Long modifiedTime concode_elem_sep String readers concode_elem_sep String description concode_elem_sep Long createdTime concode_elem_sep String id concode_elem_sep String writers concode_field_sep Long getModifiedTime concode_elem_sep String getReaders c...
void function ( String arg0 ) { this . id = arg0 ; }
16,510
set the description of this web resource collection . concode_field_sep String description concode_elem_sep String name concode_elem_sep String methods[] concode_elem_sep String patterns[] concode_elem_sep Log log concode_field_sep void setName concode_elem_sep String[] findMethods concode_elem_sep String[] findPattern...
void function ( String arg0 ) { this . description = arg0 ; }
16,511
sets the org.apache.batik.svggen.stylehandler to be used . it should not be null . concode_field_sep boolean svgFont concode_elem_sep DecimalFormatSymbols dsf concode_elem_sep RenderingHints hints concode_elem_sep StyleHandler styleHandler concode_elem_sep Document domFactory concode_elem_sep Paint paint concode_elem_s...
void function ( StyleHandler arg0 ) { if ( arg0 == null ) throw new SVGGraphics2DRuntimeException ( ERR_STYLE_HANDLER_NULL ) ; this . styleHandler = arg0 ; }
16,512
compatibility check for the ov-chip protocol layer . see the compatibility check explanations and also ds.ov2.util.apdu _ serializable #is_compatible_with apdu_serializable . is_compatible_with . this object is only compatible to instances of this class with the same pretended size . concode_field_sep short size concod...
boolean function ( Object arg0 ) { if ( arg0 instanceof Resizable_buffer ) { return this . size ( ) == ( ( Resizable_buffer ) arg0 ) . size ( ) ; } return false ; }
16,513
evaluate variable/constant name as an int . note : booleans get mapped to 0/1 concode_field_sep ArrayList<String> names concode_elem_sep ArrayList<Object> values concode_field_sep String valToString concode_elem_sep int getNumValues concode_elem_sep String toStringConcatenated concode_elem_sep String getName concode_el...
int function ( String arg0 ) { int loc0 ; loc0 = getIndexOf ( arg0 ) ; if ( loc0 == - 1 ) throw new PrismLangException ( "srini_string" = "srini_string" ) ; return getIntValue ( loc0 ) ; }
16,514
sets the message as handled concode_field_sep boolean handled concode_elem_sep ManagedMessage message concode_field_sep ManagedMessage getMessage concode_elem_sep boolean isHandled
void function ( ) { this . handled = true ; }
16,515
get the origin of an url : ex getorigin `` http://www.example.com:8080/index.html?bar=foo '' would return `` http://www.example.com:8080 '' . it will return an empty string for an invalid url . concode_field_sep PlaceHolder placeHolder concode_field_sep String getScheme concode_elem_sep String nativeGetOrigin concode_e...
String function ( String arg0 ) { return nativeGetOrigin ( arg0 ) ; }
16,516
creates a classloader that can be used to load resources from theworkspace . concode_field_sep boolean resolveSimpleProjectReferences concode_field_sep File getFileSystemFile concode_elem_sep void addJavaClasspathEntries concode_elem_sep void addClasspathEntries concode_elem_sep URL[] convertClassPath concode_elem_sep ...
ClassLoader function ( IProject arg0 ) { final List < URL > loc0 = Lists . newArrayList ( ) ; addClasspathEntries ( arg0 , loc0 ) ; return URLClassLoader . newInstance ( loc0 . toArray ( new URL [ loc0 . size ( ) ] ) , WorkspaceClassLoaderFactory . class . getClassLoader ( ) ) ; }
16,517
sets the widget 's position in the tab index . if more than one widget has the same tab index , each such widget will receive focus in an arbitrary order . setting the tab index to -1 will cause the widget to be removed from the tab order . concode_field_sep PlaceHolder placeHolder concode_field_sep int getTabIndex con...
void function ( Widget arg0 , int arg1 ) { assert ( arg0 != null && arg0 . getElement ( ) != null ) : "srini_string" ; arg0 . getElement ( ) . setTabIndex ( arg1 ) ; }
16,518
append the provided value . concode_field_sep ToStringStyler DEFAULT_TO_STRING_STYLER concode_elem_sep StringBuilder buffer concode_elem_sep ToStringStyler styler concode_elem_sep boolean styledFirstField concode_elem_sep Object object concode_field_sep void printFieldSeparatorIfNecessary concode_elem_sep String toStri...
ToStringCreator function ( Object arg0 ) { this . styler . styleValue ( this . buffer , arg0 ) ; return this ; }
16,519
returns the background paint . if null , the background should remain unfilled . concode_field_sep Paint outlinePaint concode_elem_sep Stroke outlineStroke concode_elem_sep Paint backgroundPaint concode_elem_sep Range range concode_elem_sep String label concode_elem_sep long serialVersionUID concode_field_sep String ge...
Paint function ( ) { return this . backgroundPaint ; }
16,520
tests the com.acme.spring.jdbc.repository.impl.jdbcstockrepository #getall method . concode_field_sep StockRepository stockRepository concode_elem_sep JdbcTemplate jdbcTemplate concode_field_sep Stock createStock concode_elem_sep void testGet concode_elem_sep Archive createTestArchive concode_elem_sep void setDataSourc...
void function ( ) { runScript ( jdbcTemplate , "srini_string" ) ; List < Stock > loc0 = stockRepository . getAll ( ) ; assertNotNull ( "srini_string" , loc0 ) ; assertEquals ( "srini_string" , 2 , loc0 . size ( ) ) ; }
16,521
region locks are not supported . concode_field_sep SessionFactoryOptions settings concode_elem_sep T region concode_field_sep SessionFactoryOptions settings concode_elem_sep void unlockRegion concode_elem_sep void removeAll concode_elem_sep void evictAll concode_elem_sep boolean putFromLoad concode_elem_sep boolean put...
SoftLock function ( ) { return null ; }
16,522
returns the uri of the module source text . concode_field_sep Object securityDomain concode_elem_sep Reader reader concode_elem_sep Object validator concode_elem_sep long serialVersionUID concode_elem_sep URI uri concode_elem_sep URI base concode_field_sep Reader getReader concode_elem_sep Object getSecurityDomain conc...
URI function ( ) { return uri ; }
16,523
helper method to get a json array from a stream . concode_field_sep JSONObject object concode_field_sep ExtendedJSONObject parseJSONObject concode_elem_sep ExtendedJSONObject parseJSONObject concode_elem_sep ExtendedJSONObject getObject concode_elem_sep String toJSONString concode_elem_sep boolean containsKey concode_e...
JSONArray function ( Reader arg0 ) { Object loc0 = parseRaw ( arg0 ) ; if ( loc0 == null ) { return null ; } if ( loc0 instanceof JSONArray ) { return ( JSONArray ) loc0 ; } throw new NonArrayJSONException ( loc0 ) ; }
16,524
gets the value of the sgeotag property . concode_field_sep SGeoTag sGeoTag concode_field_sep void setSGeoTag
SGeoTag function ( ) { return sGeoTag ; }
16,525
returns the name of this shopping item field . concode_field_sep ShoppingItemField _shoppingItemField concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep long getItemFieldId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concod...
java . lang . String function ( ) { return _shoppingItemField . getName ( ) ; }
16,526
this will provide a matrix that will revert the current map 's scaling and rotation . this can be useful when drawing to a fixed location on the screen . concode_field_sep int mZoomLevelProjection concode_elem_sep Matrix mUnrotateAndScaleMatrix concode_elem_sep int mMapViewWidth concode_elem_sep float mMultiTouchScale ...
Matrix function ( ) { return mUnrotateAndScaleMatrix ; }
16,527
set the acls for the queue concode_field_sep String name concode_elem_sep Log LOG concode_elem_sep Map<String,AccessControlList> acls concode_elem_sep Set<Queue> children concode_elem_sep Object schedulingInfo concode_elem_sep QueueState state concode_elem_sep Properties props concode_field_sep void setName concode_ele...
void function ( Map < String , AccessControlList > arg0 ) { this . acls = arg0 ; }
16,528
returns the password associated to this server username . concode_field_sep byte[] password concode_elem_sep String address concode_elem_sep int port concode_elem_sep String PROTOCOL_TCP concode_elem_sep String PROTOCOL_SSLTCP concode_elem_sep int MAX_STUN_SERVER_COUNT concode_elem_sep boolean isOldTurn concode_elem_se...
byte [ ] function ( ) { return password ; }
16,529
gets the value of the extension 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 extension property . for example , to add a new item , d...
List < ExtensionType > function ( ) { if ( extension == null ) { extension = new ArrayList < ExtensionType > ( ) ; } return this . extension ; }
16,530
returns the file comment . concode_field_sep Charset charset concode_elem_sep long expectedEntries concode_elem_sep Map<String,ZipFileEntry> entries concode_elem_sep boolean maybeZip64 concode_elem_sep boolean isZip64 concode_elem_sep long centralDirectoryOffset concode_elem_sep long zip64EndOfCentralDirectoryOffset co...
String function ( ) { return comment ; }
16,531
serialize to a json object . parameters are serialized as decimal strings . hex-versus-decimal was reverse-engineered from what the persona public verifier accepted . concode_field_sep RSAPrivateKey privateKey concode_elem_sep int SERIALIZATION_BASE concode_elem_sep String SIGNATURE_ALGORITHM concode_elem_sep RSAPublic...
ExtendedJSONObject function ( ) { ExtendedJSONObject loc0 = new ExtendedJSONObject ( ) ; loc0 . put ( "srini_string" , "srini_string" ) ; loc0 . put ( "srini_string" , publicKey . getModulus ( ) . toString ( SERIALIZATION_BASE ) ) ; loc0 . put ( "srini_string" , publicKey . getPublicExponent ( ) . toString ( SERIALIZAT...
16,532
helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g...
void function ( int arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; }
16,533
compare files . concode_field_sep boolean failOnly concode_elem_sep File compare concode_elem_sep String outputFormat concode_elem_sep SimpleLog logger concode_elem_sep File destdir concode_elem_sep Map differ concode_elem_sep String baseDir concode_field_sep void setBaseDir concode_elem_sep String makeResultExtension ...
boolean function ( File arg0 , File arg1 ) { try { return FileCompare . compareFiles ( arg0 , arg1 ) ; } catch ( Exception loc0 ) { logger . error ( "srini_string" , loc0 ) ; return false ; } }
16,534
returns the human-readable message . concode_field_sep int code concode_elem_sep String data concode_elem_sep String message concode_field_sep int getCode concode_elem_sep String getData
String function ( ) { return message ; }
16,535
set the param value . concode_field_sep String param concode_elem_sep String orientation concode_field_sep void setOrientation concode_elem_sep String getParam concode_elem_sep String getOrientation concode_elem_sep void listener
void function ( String arg0 ) { this . param = arg0 ; }
16,536
remove all the registered variables . concode_field_sep Map<String,Object> vars concode_field_sep T get concode_elem_sep String dump concode_elem_sep T register
void function ( ) { vars . clear ( ) ; }
16,537
gets the rational value as type double . will cause a divide-by-zero error if the denominator is 0 . concode_field_sep long mNumerator concode_elem_sep long mDenominator concode_field_sep long getNumerator concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep long getDenominator
double function ( ) { return mNumerator / ( double ) mDenominator ; }
16,538
returns the osgi service identifier . concode_field_sep PortletPreferencesService _service concode_field_sep void updateArchivePreferences concode_elem_sep void restoreArchivedPreferences concode_elem_sep void restoreArchivedPreferences concode_elem_sep void restoreArchivedPreferences concode_elem_sep PortletPreference...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
16,539
gets a byte array for the given input stream . concode_field_sep char[] LT concode_elem_sep char[] QUOT concode_elem_sep char[] GT concode_elem_sep char[] APOS concode_elem_sep Logger logger concode_elem_sep char[] AMP concode_field_sep void pipeStream concode_elem_sep InputStream getStream concode_elem_sep String enc ...
byte [ ] function ( InputStream arg0 ) { ByteArrayOutputStream loc0 = new ByteArrayOutputStream ( ) ; pipeStream ( arg0 , loc0 , 4096 ) ; return loc0 . toByteArray ( ) ; }
16,540
prints the usage information . concode_field_sep Logger LOG concode_elem_sep Options OPTS concode_elem_sep Configuration config concode_field_sep void traverse concode_elem_sep Configuration loadConfig concode_elem_sep List<File> getFilesToProcess concode_elem_sep Map<String,List<AuditEvent>> check concode_elem_sep Che...
void function ( ) { final HelpFormatter loc0 = new HelpFormatter ( ) ; loc0 . printHelp ( "srini_string" + CodeChecker . class . getName ( ) + "srini_string" , OPTS ) ; System . exit ( 1 ) ; }
16,541
decode the fields of the file / proc/pid/stat and return cutime + cstime concode_field_sep PlaceHolder placeHolder concode_field_sep float getProcessCpuUsage concode_elem_sep String readSystemStat concode_elem_sep String readProcessStat concode_elem_sep float getSystemCpuUsage concode_elem_sep long getSystemIdleTime co...
long function ( String [ ] arg0 ) { return Long . parseLong ( arg0 [ 16 ] ) + Long . parseLong ( arg0 [ 17 ] ) ; }
16,542
returns the current room temperature concode_field_sep double dcbFrostTemperature concode_elem_sep byte dcbHeatState concode_elem_sep byte dcbWaterState concode_elem_sep byte address concode_elem_sep double dcbSetTemperature concode_elem_sep int dcbHoldTime concode_elem_sep Models dcbModel concode_elem_sep byte dcbStat...
State function ( Class < ? extends Item > arg0 ) { if ( arg0 == StringItem . class ) return StringType . valueOf ( Double . toString ( dcbRoomTemperature ) ) ; return DecimalType . valueOf ( Double . toString ( dcbRoomTemperature ) ) ; }
16,543
sets 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_elem_...
void function ( Date arg0 ) { this . eventStamp = arg0 ; }
16,544
specify if the property is deprecated . concode_field_sep Object defaultValue concode_elem_sep String name concode_elem_sep String description concode_elem_sep String id concode_elem_sep String shortDescription concode_elem_sep String type concode_elem_sep Deprecation deprecation concode_elem_sep Hints hints concode_fi...
boolean function ( ) { return this . deprecation != null ; }
16,545
estimates the length of formatted header elements . concode_field_sep BasicHeaderValueFormatter DEFAULT concode_elem_sep String UNSAFE_CHARS concode_elem_sep String SEPARATORS concode_field_sep String formatNameValuePair concode_elem_sep CharArrayBuffer formatNameValuePair concode_elem_sep int estimateNameValuePairLen ...
int function ( final HeaderElement [ ] arg0 ) { if ( ( arg0 == null ) || ( arg0 . length < 1 ) ) return 0 ; int loc0 = ( arg0 . length - 1 ) * 2 ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 += estimateHeaderElementLen ( arg0 [ loc1 ] ) ; } return loc0 ; }
16,546
second index i.e for linechart that will be pointvalue index . concode_field_sep SelectedValueType type concode_elem_sep int firstIndex concode_elem_sep int secondIndex concode_field_sep void setFirstIndex concode_elem_sep void set concode_elem_sep void set concode_elem_sep boolean isSet concode_elem_sep SelectedValueT...
int function ( ) { return secondIndex ; }
16,547
returns a hash code for this screen object . concode_field_sep ObservableList<Screen> unmodifiableScreens concode_elem_sep ScreenConfigurationAccessor accessor concode_elem_sep Rectangle2D bounds concode_elem_sep float scale concode_elem_sep double dpi concode_elem_sep ObservableList<Screen> screens concode_elem_sep At...
int function ( ) { long loc0 = 7L ; loc0 = 37L * loc0 + bounds . hashCode ( ) ; loc0 = 37L * loc0 + visualBounds . hashCode ( ) ; loc0 = 37L * loc0 + Double . doubleToLongBits ( dpi ) ; loc0 = 37L * loc0 + Float . floatToIntBits ( scale ) ; return ( int ) ( loc0 ^ ( loc0 >> 32 ) ) ; }
16,548
return the location of the imported resource . concode_field_sep String importedResource concode_elem_sep Object source concode_elem_sep Resource[] actualResources concode_field_sep Object getSource concode_elem_sep Resource[] getActualResources
String function ( ) { return this . importedResource ; }
16,549
retrieves a list of users matching a filter which usernames are not present in existingusers . concode_field_sep SpringSecurityLdapTemplate ldapTemplate concode_elem_sep String userSearchQuery concode_elem_sep String keyOrganization concode_elem_sep String passwordRecoveryURL concode_elem_sep String keyDistinguishedNam...
List < LdapUser > function ( String arg0 , Set < String > arg1 ) { List < LdapUser > loc0 = listUsers ( arg0 ) ; if ( arg1 != null ) { Iterator < LdapUser > loc1 = loc0 . iterator ( ) ; while ( loc1 . hasNext ( ) ) { LdapUser loc2 = loc1 . next ( ) ; if ( arg1 . contains ( loc2 . getUsername ( ) ) ) { loc1 . remove ( )...
16,550
access the numerator . concode_field_sep int denominator concode_elem_sep int numerator concode_field_sep SimpleFraction buildFractionMaxDenominator concode_elem_sep SimpleFraction buildFractionMaxDenominator concode_elem_sep SimpleFraction buildFractionExactDenominator concode_elem_sep int getDenominator
int function ( ) { return numerator ; }
16,551
override this method to do any cleanup needed after generation concode_field_sep String SCT_GENERATOR_CONSOLE concode_elem_sep IGeneratorBridge bridge concode_elem_sep MessageConsoleStream error concode_elem_sep Injector injector concode_elem_sep MessageConsoleStream info concode_field_sep void refreshTargetProject con...
void function ( GeneratorEntry arg0 ) { }
16,552
get custom deserializer concode_field_sep com.omniture.www.Evar[] evars concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String rsid concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String site_title concode_field_...
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; }
16,553
returns the bundle context of this bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep void start
BundleContext function ( ) { return context ; }
16,554
returns the child tag of the specified tag by its name . concode_field_sep EObjectAtOffsetHelper EObjectUtils concode_field_sep EObject resolveElementAt concode_elem_sep WMLKey getKeyByName concode_elem_sep String toWMLString concode_elem_sep String toWMLString concode_elem_sep String toWMLString concode_elem_sep Strin...
WMLTag function ( WMLTag arg0 , String arg1 ) { for ( WMLTag loc0 : arg0 . getWMLTags ( ) ) { if ( loc0 . asWMLTag ( ) . getName ( ) . equals ( arg1 ) ) { return loc0 ; } } return null ; }
16,555
equivalent to calling : actions.click element . sendkeys keystosend . this method is different from org.openqa.selenium.webelement #sendkeys charsequence - see actions #sendkeys charsequence for details how . concode_field_sep Mouse mouse concode_elem_sep Keyboard keyboard concode_elem_sep CompositeAction action concod...
Actions function ( WebElement arg0 , CharSequence ... arg1 ) { action . addAction ( new SendKeysAction ( keyboard , mouse , ( Locatable ) arg0 , arg1 ) ) ; return this ; }
16,556
create login protocol request . concode_field_sep String ATTR_AGENT concode_elem_sep String SERVICE_SESSION_PING concode_elem_sep String ATTR_AGENTKEY concode_elem_sep int ERR4004_ILLEGAL_COMMAND_FOR_STATE concode_elem_sep String POSTFIX_IND concode_elem_sep String SERVICE_MULTI_REQ concode_elem_sep String ATTR_USER co...
Element function ( String arg0 , String arg1 ) { Element loc0 = createRequest ( SERVICE_LOGIN ) ; loc0 . setAttribute ( ATTR_NAME , arg0 ) ; loc0 . setAttribute ( ATTR_PASSWORD , arg1 ) ; loc0 . setAttribute ( ATTR_PROTOCOLVERSION , PROTOCOL_VERSION ) ; return loc0 ; }
16,557
sets the company id of this o auth token . concode_field_sep OAuthToken _oAuthToken concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getGadgetKey concode_elem_sep boolean isEscapedModel c...
void function ( long arg0 ) { _oAuthToken . setCompanyId ( arg0 ) ; }
16,558
the id of this mapping . concode_field_sep int mappingId concode_elem_sep ShardingType shardingType concode_elem_sep Set<ShardTable> shardTables concode_elem_sep Set<ShardIndex> shardIndices concode_elem_sep String globalGroupName concode_field_sep ShardIndex getShardIndexForKey concode_elem_sep ShardingType getShardin...
int function ( ) { return this . mappingId ; }
16,559
create a new sax parser object using the class name provided . the named class must exist and must implement the org.xml.sax.parser parser interface . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
Parser function ( String arg0 ) { return ( Parser ) NewInstance . newInstance ( NewInstance . getClassLoader ( ) , arg0 ) ; }
16,560
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...
ServerProperties function ( int arg0 , String arg1 ) { if ( StringUtil . isEmpty ( arg1 ) ) { return null ; } ServerProperties loc0 = new ServerProperties ( arg0 , arg1 ) ; try { loc0 . load ( ) ; } catch ( Exception loc1 ) { } return loc0 ; }
16,561
set the system count . concode_field_sep boolean subscribed concode_elem_sep Long systemCount concode_elem_sep boolean isFreeForGuests concode_elem_sep String name concode_elem_sep boolean isSubscribable concode_elem_sep Long availableSubscriptions concode_elem_sep Long id concode_elem_sep String label concode_elem_sep...
void function ( Long arg0 ) { this . systemCount = arg0 ; }
16,562
return a handle to deal with the translation . concode_field_sep String text concode_elem_sep String locale concode_elem_sep String resourceKey concode_elem_sep TranslationHandle handle concode_field_sep String getResourceKey concode_elem_sep String getText concode_elem_sep Object clone concode_elem_sep String getLocal...
TranslationHandle function ( Module arg0 ) { if ( handle == null ) handle = new TranslationHandle ( ( ModuleHandle ) arg0 . getHandle ( arg0 ) , this ) ; return handle ; }
16,563
return the singleton bsh reflectmanager . concode_field_sep ReflectManager rfm concode_field_sep boolean RMSetAccessible concode_elem_sep boolean setAccessible
ReflectManager function ( ) { if ( rfm == null ) { Class loc0 ; try { loc0 = Class . forName ( "srini_string" ) ; rfm = ( ReflectManager ) loc0 . newInstance ( ) ; } catch ( Exception loc1 ) { throw new Unavailable ( "srini_string" + loc1 ) ; } } return rfm ; }
16,564
returns the value to which the specified key is mapped , or null if this map contains no mapping for the key.more formally , if this map contains a mapping from a key k to a value v such that key == null ? k == null : key.equals k , then this method returns v ; otherwise it returns null . there can be at most one such ...
V function ( Object arg0 ) { V loc0 = null ; if ( containsKey ( arg0 ) ) { loc0 = values . get ( keys . indexOf ( arg0 ) ) ; } return loc0 ; }
16,565
shuts the reader down . concode_field_sep int bufferLength concode_elem_sep Collection<Listener> listeners concode_elem_sep byte[] buffer concode_elem_sep InputStream inputStream concode_elem_sep Thread thread concode_elem_sep Logger logger concode_field_sep int findMessageLength concode_elem_sep void interpretBuffer c...
void function ( ) { if ( thread != null ) { thread . interrupt ( ) ; } try { inputStream . close ( ) ; } catch ( IOException loc0 ) { } }
16,566
a valid entry should have no issues concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphJavaValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart concode_fi...
void function ( ) { prepareStateTest ( ) ; Entry loc0 = factory . createEntry ( ) ; region . getVertices ( ) . add ( loc0 ) ; createTransition ( loc0 , state ) ; assertEquals ( EntryKind . INITIAL , loc0 . getKind ( ) ) ; assertTrue ( validator . validate ( loc0 , diagnostics , new HashMap < Object , Object > ( ) ) ) ;...
16,567
gets a value indicating whether this represents a group of addresses rather than a single address . concode_field_sep Address address concode_elem_sep String displayName concode_elem_sep List<NamedAddress> groupAddresses concode_elem_sep boolean isGroup concode_field_sep String getName concode_elem_sep List<NamedAddres...
boolean function ( ) { return this . isGroup ; }
16,568
create a terminal `` no-op router '' that accepts any input context and returns the unchanged request and an empty continuation iterator . concode_field_sep Endpoint endpoint concode_elem_sep Router IDENTITY_ROUTER concode_field_sep Router endpoint concode_elem_sep Endpoint extractEndpoint concode_elem_sep Continuation...
Router function ( ) { return IDENTITY_ROUTER ; }
16,569
returns a mutable-object node that is shallow immutable . the returned instance implements object #equals object and object #hashcode in thecanonical way . concode_field_sep PlaceHolder placeHolder concode_field_sep ByteSequence getByteSequence concode_elem_sep Map<Key,MarshalingTreeNode> getChildren concode_elem_sep O...
RawObjectNode function ( Marshaler < ? > arg0 , Object arg1 ) { return new MarshalingTreeNodeImpl . RawObjectNodeImpl ( arg0 , arg1 ) ; }
16,570
define valor do atributo nomeperfilacesso . concode_field_sep String nomePerfilAcesso concode_elem_sep Collection<PerfilAcessoMenuDTO> acessoMenus concode_elem_sep String aprovaBaseConhecimento concode_elem_sep String permiteLeituraGravacao concode_elem_sep Integer idPerfilAcesso concode_elem_sep Date dataFim concode_e...
void function ( String arg0 ) { this . nomePerfilAcesso = arg0 ; }
16,571
mark a script as trusted . concode_field_sep String NODE_ID concode_elem_sep List<String> PREFERRED_LANGUAGE_NAMES concode_elem_sep List<String> DEFAULT_TRUSTED_HASHES concode_elem_sep Preferences prefs concode_field_sep String getLanguage concode_elem_sep String getLanguage concode_elem_sep String normalize concode_el...
void function ( String arg0 , String arg1 , boolean arg2 ) { arg1 = normalize ( arg1 ) ; String loc0 = loc0 ( arg0 , arg1 ) ; if ( arg2 ) { prefs . getNode ( NODE_ID ) . putBoolean ( loc0 , true ) ; } else { prefs . getNode ( NODE_ID ) . remove ( loc0 ) ; } }
16,572
removes the user groups from the team . concode_field_sep UserGroupService _userGroupService concode_field_sep void deleteUserGroup concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.model.UserGroup addUserGroup concode_elem_sep com.liferay.portal.model.UserGroup addUserGroup...
void function ( long arg0 , long [ ] arg1 ) { _userGroupService . unsetTeamUserGroups ( arg0 , arg1 ) ; }
16,573
print the full message out to debug concode_field_sep MaxCulMsgType msgType concode_elem_sep boolean flgReadyToSend concode_elem_sep int PKT_POS_SRC_ADDR_LEN concode_elem_sep int PKT_CHARS_PER_BYTE concode_elem_sep byte len concode_elem_sep byte[] payload concode_elem_sep byte[] dstAddr concode_elem_sep Logger logger c...
void function ( ) { printMessageHeader ( ) ; printFormattedPayload ( ) ; }
16,574
is encoded concode_field_sep char EQ concode_elem_sep char AMP concode_elem_sep String ENCODING concode_elem_sep MPayment p_mp concode_elem_sep MPaymentProcessor p_mpp concode_elem_sep int m_timeout concode_elem_sep CLogger log concode_elem_sep CLogger s_log concode_elem_sep boolean m_encoded concode_field_sep String v...
boolean function ( ) { return m_encoded ; }
16,575
resolve $ ... placeholders in the given text , replacing them with corresponding servlet context init parameter or system property values . concode_field_sep PropertyPlaceholderHelper nonStrictHelper concode_elem_sep ServletContext servletContext concode_elem_sep String text concode_elem_sep PropertyPlaceholderHelper s...
String function ( String arg0 , ServletContext arg1 ) { return resolvePlaceholders ( arg0 , arg1 , false ) ; }
16,576
gets the component id of the commandbutton , in the map ui , corresponding to this time zone . 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...
String function ( ) { return mapCommandButtonId ; }
16,577
sends a debug message to the user . concode_field_sep PlaceHolder placeHolder concode_field_sep void warning concode_elem_sep void warning concode_elem_sep void error concode_elem_sep void error
void function ( final String arg0 , final String arg1 ) { System . out . print ( arg0 + "srini_string" + "srini_string" + arg1 ) ; }
16,578
make an exception unchecked by wrapping it into a runtimeexception . concode_field_sep Log LOG concode_field_sep void warn concode_elem_sep String getStackTrace concode_elem_sep void ignore
RuntimeException function ( Throwable arg0 ) { return new RuntimeException ( arg0 . getMessage ( ) , arg0 ) ; }
16,579
modify node path . concode_field_sep String path concode_elem_sep String workspace concode_elem_sep String context concode_elem_sep long serialVersionUID concode_elem_sep String repository concode_field_sep void parse2 concode_elem_sep String getRepository concode_elem_sep void setRepository concode_elem_sep String get...
void function ( String arg0 ) { this . path = arg0 ; }
16,580
set a name/attribute map , consisting of method names e.g. `` mymethod '' and cacheoperation instances or strings to be converted to cacheoperation instances . concode_field_sep Log logger concode_elem_sep Map<String,Collection<CacheOperation>> nameMap concode_field_sep Collection<CacheOperation> getCacheOperations con...
void function ( Map < String , Collection < CacheOperation >> arg0 ) { for ( Map . Entry < String , Collection < CacheOperation >> loc0 : arg0 . entrySet ( ) ) { addCacheMethod ( loc0 . getKey ( ) , loc0 . getValue ( ) ) ; } }
16,581
get the subversion url for the root sentry directory . concode_field_sep Package myPackage concode_elem_sep SentryVersionAnnotation version concode_field_sep String getVersion concode_elem_sep Package getPackage concode_elem_sep String getSrcChecksum concode_elem_sep String getCommitHash concode_elem_sep String getUser...
String function ( ) { return version != null ? version . url ( ) : "srini_string" ; }
16,582
gets the managercustomerids value for this pendinginvitationselector . concode_field_sep long[] clientCustomerIds concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep long[] managerCustomerIds concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field...
long [ ] function ( ) { return managerCustomerIds ; }
16,583
gets the value of the adgroupadlabel property . concode_field_sep CampaignCriterion campaignCriterion concode_elem_sep AdGroup adGroup concode_elem_sep Ad ad concode_elem_sep AdGroupCriterionLabel adGroupCriterionLabel concode_elem_sep AdGroupAd adGroupAd concode_elem_sep CampaignAdExtension campaignAdExtension concode...
AdGroupAdLabel function ( ) { return adGroupAdLabel ; }
16,584
makes a simple initializer for the given type and default value . concode_field_sep PlaceHolder placeHolder concode_field_sep CtField.Initializer createInitializerForThirdPartyPackages concode_elem_sep CtField.Initializer createLocaleInitializer concode_elem_sep CtField createField concode_elem_sep CtField.Initializer ...
CtField . Initializer function ( String arg0 , String arg1 ) { return CtField . Initializer . byExpr ( String . format ( "srini_string" , arg0 , arg1 ) ) ; }
16,585
returns the unique event code identifying the type of event this object represents . concode_field_sep int COMPLETED_EVENT_CODE concode_elem_sep int RESET_EVENT_CODE concode_elem_sep int CANCELED_EVENT_CODE concode_elem_sep int PART_FAILED_EVENT_CODE concode_elem_sep long bytes concode_elem_sep int PART_COMPLETED_EVENT...
int function ( ) { Integer loc0 = legacyEventCodes . get ( eventType ) ; return loc0 == null ? - 1 : loc0 ; }
16,586
whether it is empty concode_field_sep boolean compact concode_elem_sep Vector<String> values concode_elem_sep String name concode_field_sep void setHeaders concode_elem_sep void addTop concode_elem_sep String getName concode_elem_sep boolean isCommaSeparated concode_elem_sep boolean isCommaSeparated concode_elem_sep Ve...
boolean function ( ) { return values . isEmpty ( ) ; }
16,587
recursive concode_field_sep PlaceHolder placeHolder concode_field_sep void helper concode_elem_sep void main
ArrayList < ArrayList < Integer >> function ( int arg0 [ ] ) { ArrayList < ArrayList < Integer >> loc0 = new ArrayList < ArrayList < Integer >> ( ) ; if ( arg0 == null || arg0 . length == 0 ) return loc0 ; ArrayList < Integer > loc1 = new ArrayList < Integer > ( ) ; Arrays . sort ( arg0 ) ; helper ( loc0 , loc1 , arg0 ...
16,588
is the client in an error state ? concode_field_sep TAsyncClientManager ___manager concode_elem_sep TNonblockingTransport ___transport concode_elem_sep long ___timeout concode_elem_sep TAsyncMethodCall ___currentMethod concode_elem_sep Exception ___error concode_elem_sep TProtocolFactory ___protocolFactory concode_fiel...
boolean function ( ) { return ___error != null ; }
16,589
persist an instance of enhancedentity . concode_field_sep DataAccessor accessorCF concode_elem_sep DataAccessor accessorDocument concode_elem_sep DataAccessor accessorSCF concode_field_sep E find concode_elem_sep List<E> find concode_elem_sep EnhancedEntity merge concode_elem_sep DataAccessor getDataAccessor concode_el...
void function ( EnhancedEntity arg0 , EntityMetadata arg1 ) { getDataAccessor ( arg1 ) . write ( arg0 , arg1 ) ; }
16,590
sets the group id of this membership request . concode_field_sep MembershipRequest _membershipRequest concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getReplierUserUuid concode_elem_sep ...
void function ( long arg0 ) { _membershipRequest . setGroupId ( arg0 ) ; }
16,591
returns the coefficient of determination r2 . concode_field_sep double R2 concode_elem_sep double svar concode_elem_sep double intercept concode_elem_sep double svar1 concode_elem_sep double svar0 concode_elem_sep double slope concode_elem_sep int N concode_field_sep double intercept concode_elem_sep double predict con...
double function ( ) { return R2 ; }
16,592
called when the current activity has finished its first draw pass . this and the library load has to be completed to start the chromium browser process . concode_field_sep boolean mLibraryLoaded concode_elem_sep boolean mOnResumePending concode_elem_sep boolean mOnStartPending concode_elem_sep Intent data concode_elem_...
void function ( ) { mHasDoneFirstDraw = true ; signalNativeLibraryLoadedIfReady ( ) ; }
16,593
adds the given key . concode_field_sep Map<Integer,Input> keys concode_field_sep boolean isPressed concode_elem_sep int getValue concode_elem_sep void keyPressed concode_elem_sep void clear concode_elem_sep void reset concode_elem_sep void keyReleased concode_elem_sep Input remove
void function ( Input arg0 ) { synchronized ( this . keys ) { this . keys . put ( arg0 . getEvent ( ) , arg0 ) ; } }
16,594
remove all elements concode_field_sep int count_ concode_elem_sep Comparator cmp_ concode_elem_sep Object[] nodes_ concode_field_sep int parent concode_elem_sep int compare concode_elem_sep Object extract concode_elem_sep int size concode_elem_sep int left concode_elem_sep void insert concode_elem_sep int right concode...
void function ( ) { for ( int loc0 = 0 ; loc0 < count_ ; ++ loc0 ) nodes_ [ loc0 ] = null ; count_ = 0 ; }
16,595
does this device have a system navigation bar ? concode_field_sep int mNavigationBarHeight concode_elem_sep float mSmallestWidthDp concode_elem_sep int mNavigationBarWidth concode_elem_sep boolean mInPortrait concode_elem_sep boolean mTranslucentNavBar concode_elem_sep String NAV_BAR_HEIGHT_RES_NAME concode_elem_sep St...
boolean function ( ) { return mHasNavigationBar ; }
16,596
update the presentation . concode_field_sep ISemanticHighlightingCalculator calculator concode_elem_sep XtextStyledText styledText concode_elem_sep ITextAttributeProvider attributeProvider concode_elem_sep HighlightingPresenter presenter concode_elem_sep List<AttributedPosition> removedPositions concode_elem_sep boolea...
void function ( TextPresentation arg0 , List < AttributedPosition > arg1 , List < AttributedPosition > arg2 ) { Runnable loc0 = presenter . createUpdateRunnable ( arg0 , arg1 , arg2 ) ; if ( loc0 == null ) return ; Display loc1 = Display . getDefault ( ) ; loc1 . asyncExec ( loc0 ) ; }
16,597
returns the parameters of this query . concode_field_sep String _filterString concode_elem_sep String _variableString concode_elem_sep String _importString concode_elem_sep boolean _needsCompilation concode_elem_sep Map _variables concode_elem_sep PersistenceManagerImpl _persistenceManager concode_elem_sep Collection _...
Map function ( ) { return _parameters ; }
16,598
gets the value of the cmpfieldorcmrfield 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 cmpfieldorcmrfield property . for example , to ...
List < JAXBElement < String >> function ( ) { if ( cmpFieldOrCmrField == null ) { cmpFieldOrCmrField = new ArrayList < JAXBElement < String >> ( ) ; } return this . cmpFieldOrCmrField ; }
16,599
creates test stocks . concode_field_sep StockService stockService concode_field_sep Stock createStock concode_elem_sep void testGet concode_elem_sep void testGetAll concode_elem_sep Archive createTestArchive concode_elem_sep void assertStock concode_elem_sep void testSave concode_elem_sep void testGetBySymbol concode_e...
List < Stock > function ( ) { List < Stock > loc0 = new ArrayList < Stock > ( ) ; loc0 . add ( createStock ( "srini_string" , "srini_string" , 123.21D , new Date ( ) ) ) ; loc0 . add ( createStock ( "srini_string" , "srini_string" , 59.61D , new Date ( ) ) ) ; return loc0 ; }