idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
17,600
returns the user name of this asset tag . concode_field_sep AssetTag _assetTag 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 void setGroupId concode_elem_sep b...
java . lang . String function ( ) { return _assetTag . getUserName ( ) ; }
17,601
returns true if the file does n't exist , false if it is not a directory . otherwise checks if directory has any files/subdirs . concode_field_sep String NEW_LINE concode_field_sep String compressPath concode_elem_sep String getExtension concode_elem_sep IStatus createSymlink concode_elem_sep boolean isDirectoryAccessi...
boolean function ( File arg0 ) { if ( ! arg0 . exists ( ) ) { return true ; } if ( ! arg0 . isDirectory ( ) ) { return false ; } return arg0 . listFiles ( ) . length == 0 ; }
17,602
creategeomseries creates a list built from listnodes in which each item is a double containing one term in the geometric series n sum r ^ i . i = 0 concode_field_sep PlaceHolder placeHolder concode_field_sep double listSum concode_elem_sep void main
ListNode function ( double arg0 , int arg1 ) { ListNode loc0 = new ListNode ( null , null ) ; if ( arg1 == 0 ) { loc0 . item = new Double ( 1.0 ) ; loc0 . next = null ; } else { loc0 . next = createGeomSeries ( arg0 , arg1 - 1 ) ; loc0 . item = new Double ( ( ( Double ) loc0 . next . item ) . doubleValue ( ) * arg0 ) ;...
17,603
function : public static int getnumdate int nmonth , int nyear description : get the number of dates in month/year parameters : - nmonth in : month - nyear in : year return : int author : duong thanh nhan created date : 2001 concode_field_sep Calendar m_CreateDate concode_elem_sep String m_strTime concode_elem_sep Deci...
int function ( int arg0 , int arg1 ) { if ( arg0 == 4 || arg0 == 6 || arg0 == 9 || arg0 == 11 ) { return 30 ; } if ( arg0 == 2 ) { if ( ( arg1 % 4 == 0 ) && ( arg1 % 100 != 0 ) ) { return 29 ; } else return 28 ; } return 31 ; }
17,604
returns the name of the scheduling policy used by this queue . concode_field_sep FairSchedulerQueueInfoList childQueues concode_elem_sep float fractionMemMaxShare concode_elem_sep ResourceInfo fairResources concode_elem_sep float fractionMemUsed concode_elem_sep ResourceInfo minResources concode_elem_sep float fraction...
String function ( ) { return schedulingPolicy ; }
17,605
disable trust management and hostname verification . note this is a security hole , so only set this option if you can not or do not want to verify the identity of the host you are communicating with . concode_field_sep TimeUnit socketTimeoutUnits concode_elem_sep boolean disableCookies concode_elem_sep TimeUnit establ...
HttpClientBuilder function ( ) { this . disableTrustManager = true ; return this ; }
17,606
check if targeted column value in the row indexed i is less than the search target object . concode_field_sep int[][] data concode_elem_sep int count concode_elem_sep int targetSearchValue concode_elem_sep int sortedColumn concode_elem_sep int targetSearchColumn concode_field_sep void putPair concode_elem_sep void add ...
boolean function ( int arg0 ) { return targetSearchValue > data [ targetSearchColumn ] [ arg0 ] ; }
17,607
send an error log message and log the exception . concode_field_sep boolean DEBUG concode_field_sep void d concode_elem_sep void d concode_elem_sep String buildTag concode_elem_sep void v concode_elem_sep void v concode_elem_sep void w concode_elem_sep void w concode_elem_sep void w concode_elem_sep void w concode_elem...
void function ( String arg0 , Throwable arg1 ) { if ( DEBUG ) android . util . Log . e ( buildTag ( ) , buildMessage ( arg0 ) , arg1 ) ; }
17,608
information about one or more vpn connections . concode_field_sep com.amazonaws.internal.ListWithAutoConstructFlag<VpnConnection> vpnConnections concode_field_sep DescribeVpnConnectionsResult withVpnConnections concode_elem_sep DescribeVpnConnectionsResult withVpnConnections concode_elem_sep void setVpnConnections conc...
java . util . List < VpnConnection > function ( ) { if ( vpnConnections == null ) { vpnConnections = new com . amazonaws . internal . ListWithAutoConstructFlag < VpnConnection > ( ) ; vpnConnections . setAutoConstruct ( true ) ; } return vpnConnections ; }
17,609
devuelve los puntos del segundo puesto concode_field_sep int ironPoints concode_elem_sep int bronzePoints concode_elem_sep int umpirePoints concode_elem_sep int goldPoints concode_elem_sep int silverPoints concode_field_sep int getGoldPoints concode_elem_sep int getBronzePoints concode_elem_sep void setIronPoints conco...
int function ( ) { return silverPoints ; }
17,610
get custom deserializer concode_field_sep com.netsuite.webservices.platform.core_2014_2.RecordRef contact concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef company concode_elem_sep org.apache.axis.description.T...
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 ) ; }
17,611
a collections of the schema files . concode_field_sep String JBOSS_DIST_PROP_NAME concode_elem_sep LSResourceResolver DEFAULT_RESOURCE_RESOLVER concode_elem_sep Set<String> EXCLUDED_SCHEMA_FILES concode_elem_sep Pattern PATTERN concode_elem_sep EntityResolver DEFAULT_ENTITY_RESOLVER concode_elem_sep String SCHEMAS_LOCA...
Collection < File > function ( boolean arg0 ) { return getSchemas ( arg0 ) . values ( ) ; }
17,612
get the timestamps of the archives . used by internal distributedcache and mapreduce code . concode_field_sep JobID jobId concode_elem_sep Credentials credentials concode_elem_sep UserGroupInformation ugi concode_elem_sep org.apache.hadoop.mapred.JobConf conf concode_field_sep String[] toTimestampStrs concode_elem_sep ...
String [ ] function ( ) { return toTimestampStrs ( DistributedCache . getArchiveTimestamps ( conf ) ) ; }
17,613
sets the value of the datetimezone property . concode_field_sep String companyName concode_elem_sep Boolean testAccount concode_elem_sep String name concode_elem_sep Long customerId concode_elem_sep String dateTimeZone concode_elem_sep String currencyCode concode_elem_sep List<AccountLabel> accountLabels concode_elem_s...
void function ( String arg0 ) { this . dateTimeZone = arg0 ; }
17,614
sets the value of the startindex property . concode_field_sep Integer startIndex concode_elem_sep Integer totalResultSetSize concode_elem_sep List<LineItemCreativeAssociation> results concode_field_sep void setTotalResultSetSize concode_elem_sep Integer getStartIndex concode_elem_sep List<LineItemCreativeAssociation> g...
void function ( Integer arg0 ) { this . startIndex = arg0 ; }
17,615
gets the value of the trafficlights property . concode_field_sep Template template concode_elem_sep Role role concode_elem_sep Test test concode_elem_sep Templates templates concode_elem_sep Surveys surveys concode_elem_sep Staff staff concode_elem_sep long serialVersionUID concode_elem_sep Type type concode_elem_sep T...
TrafficLights function ( ) { return trafficLights ; }
17,616
generate a session id to store the fe session beans concode_field_sep FESessionManager sessionManager concode_elem_sep MessageDigest messageDigest concode_elem_sep Log log concode_elem_sep SecureRandom secureRandomInstance concode_elem_sep ConcurrentHashMap<String,FESessionBean> sessionMap concode_field_sep void remove...
String function ( ) { String loc0 = new Integer ( secureRandomInstance . nextInt ( ) ) . toString ( ) ; byte [ ] loc1 = messageDigest . digest ( loc0 . getBytes ( ) ) ; return hexEncode ( loc1 ) ; }
17,617
it returns a pair indicanting the appearance of an item in the itemset given as parameter . the starting point where the method takes the search up is given as parameter concode_field_sep int numberOfItems concode_elem_sep List<Itemset> itemsets concode_elem_sep int id concode_field_sep int numberOfItemsAfterPositionIt...
int [ ] function ( Item arg0 , int arg1 , int arg2 ) { if ( arg1 < size ( ) ) { Itemset loc0 = itemsets . get ( arg1 ) ; int loc1 = loc0 . binarySearch ( arg0 ) ; if ( loc1 >= arg2 ) { return new int [ ] { arg1 , loc1 } ; } } return null ; }
17,618
since 4.1 concode_field_sep Log log concode_elem_sep ClientConnectionOperator connOperator concode_elem_sep ConnPoolByRoute pool concode_elem_sep AbstractConnPool connectionPool concode_elem_sep SchemeRegistry schemeRegistry concode_elem_sep ConnPerRouteBean connPerRoute concode_field_sep ClientConnectionOperator creat...
void function ( int arg0 ) { pool . setMaxTotalConnections ( arg0 ) ; }
17,619
sets the value of the lastmodifieddatetime property . concode_field_sep Long totalEstimatedConcurrentUsers concode_elem_sep List<String> adTags concode_elem_sep DateTime lastModifiedDateTime concode_elem_sep DateTime startDateTime concode_elem_sep List<String> contentUrls concode_elem_sep String liveStreamEventCode con...
void function ( DateTime arg0 ) { this . lastModifiedDateTime = arg0 ; }
17,620
creates a new jaxb model from classes represented in java.lang.reflect . this version reads annotations from the classes directly , and throw any error reported as an exception concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
RuntimeTypeInfoSet function ( Class ... arg0 ) { IllegalAnnotationsException . Builder loc0 = new IllegalAnnotationsException . Builder ( ) ; RuntimeTypeInfoSet loc1 = create ( loc0 , arg0 ) ; loc0 . check ( ) ; return loc1 ; }
17,621
adds a data input item reference on this multi-instance . a data input item reference must be used when the instance is initialized using a collection : activitydefinitionbuilder #addmultiinstance boolean , string . it represents the collection element related to each instance . for instance , if the collection used to...
MultiInstanceLoopCharacteristicsBuilder function ( final String arg0 ) { entity . setDataInputItemRef ( arg0 ) ; return this ; }
17,622
returns a list of view elements of the given edit parts . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_elem_sep ArrayList<IGraphicalEditPart> getOrderedTreeChildren concode_elem_s...
List < View > function ( List < IGraphicalEditPart > arg0 ) { final List < View > loc0 = new ArrayList < View > ( ) ; for ( final IGraphicalEditPart loc1 : arg0 ) { loc0 . add ( loc1 . getNotationView ( ) ) ; } return loc0 ; }
17,623
loads and returns the node this iterator points to . this method may only be called after movenext was invoked and returned true . concode_field_sep BracketFilter filter concode_elem_sep OpenMode OPEN_MODE concode_elem_sep XTCdeweyID currentKey concode_elem_sep DeweyIDBuffer deweyIDBuffer concode_elem_sep XTCdeweyID st...
BracketNode function ( ) { try { return page . load ( locator . bracketNodeLoader ) ; } catch ( IndexOperationException loc0 ) { page . cleanup ( ) ; page = null ; throw new DocumentException ( "srini_string" , loc0 ) ; } }
17,624
adds a target group criterion for the attribute certificate to the target information extension criteria . the x509attributecertificate must contain at least one of the specified target groups . each attribute certificate may contain a target information extension limiting the servers where this attribute certificate c...
void function ( byte [ ] arg0 ) { addTargetGroup ( GeneralName . getInstance ( ASN1Primitive . fromByteArray ( arg0 ) ) ) ; }
17,625
returns the next id in the block . concode_field_sep long size concode_elem_sep AtomicLong currentId concode_elem_sep long start concode_field_sep long getSize concode_elem_sep long getStart concode_elem_sep String toString concode_elem_sep long getEnd
long function ( ) { final long loc0 = currentId . getAndIncrement ( ) ; if ( loc0 > getEnd ( ) ) { throw new UnavailableIdException ( String . format ( "srini_string" , size , getEnd ( ) , loc0 ) ) ; } return loc0 ; }
17,626
replace the content of this builder with the provided bytes . equivalent to calling #clear and then #append bytesref . concode_field_sep BytesRef ref concode_field_sep byte byteAt concode_elem_sep void grow concode_elem_sep void copyChars concode_elem_sep void copyChars concode_elem_sep void copyChars concode_elem_sep ...
void function ( BytesRef arg0 ) { clear ( ) ; append ( arg0 ) ; }
17,627
stub . see implementation comment in the method for why this is not implemented yet . concode_field_sep boolean originalAutoCommitMode concode_elem_sep int XA_STATE_INITIAL concode_elem_sep int XA_STATE_DISPOSED concode_elem_sep int XA_STATE_PREPARED concode_elem_sep JDBCXADataSource xaDataSource concode_elem_sep JDBCC...
boolean function ( XAResource arg0 ) { if ( ! ( arg0 instanceof JDBCXAResource ) ) { return false ; } return xaDataSource == ( ( JDBCXAResource ) arg0 ) . getXADataSource ( ) ; }
17,628
define el valor de la propiedad j. concode_field_sep byte[] p concode_elem_sep byte[] q concode_elem_sep byte[] seed concode_elem_sep byte[] g concode_elem_sep byte[] pgenCounter concode_elem_sep byte[] y concode_elem_sep byte[] j concode_field_sep byte[] getG concode_elem_sep void setY concode_elem_sep byte[] getSeed ...
void function ( byte [ ] arg0 ) { this . j = arg0 ; }
17,629
test if the size method is working correctly . concode_field_sep DictionaryLL smallDict concode_elem_sep DictionaryLL emptyDict concode_elem_sep DictionaryLL largeDict concode_elem_sep String dictFile concode_field_sep void addWord concode_elem_sep void testIsWord concode_elem_sep void setUp
void function ( ) { assertEquals ( "srini_string" , 0 , emptyDict . size ( ) ) ; assertEquals ( "srini_string" , 4 , smallDict . size ( ) ) ; assertEquals ( "srini_string" , 4438 , largeDict . size ( ) ) ; }
17,630
removes all entries from the priorityqueue . concode_field_sep int size concode_elem_sep int maxSize concode_elem_sep T[] heap concode_field_sep T pop concode_elem_sep T top concode_elem_sep int size concode_elem_sep void upHeap concode_elem_sep void downHeap concode_elem_sep boolean lessThan concode_elem_sep boolean i...
void function ( ) { for ( int loc0 = 0 ; loc0 <= size ; loc0 ++ ) heap [ loc0 ] = null ; size = 0 ; }
17,631
return total time spent in #flushandsync boolean concode_field_sep long numSync concode_elem_sep long totalTimeSync concode_field_sep void flushAndSync concode_elem_sep long getNumSync concode_elem_sep void flush concode_elem_sep void flush concode_elem_sep void abort concode_elem_sep String generateReport concode_elem...
long function ( ) { return totalTimeSync ; }
17,632
sets the value of the quantity property . concode_field_sep String componentNumbers concode_elem_sep RecordRef item concode_elem_sep Double quantity concode_elem_sep InventoryDetail componentInventoryDetail concode_elem_sep Double quantityOnHand concode_elem_sep String binNumbers concode_field_sep String getBinNumbers ...
void function ( Double arg0 ) { this . quantity = arg0 ; }
17,633
build a serializabletype from the given serializable class . concode_field_sep SessionFactoryImplementor factory concode_elem_sep Properties EMPTY_PROPERTIES concode_elem_sep CoreMessageLogger LOG concode_elem_sep String sessionFactoryUuid concode_elem_sep TypeScopeImpl typeScope concode_elem_sep String sessionFactoryN...
SerializableType < T > function ( Class < T > arg0 ) { return new SerializableType < T > ( arg0 ) ; }
17,634
creates a new data item in the current location . this method must never return null . this method will fail if an entity with the same name exists in this location . concode_field_sep ContentLocation parent concode_elem_sep ContentEntity[] EMPTY_CONTENT_ENTITY concode_elem_sep String name concode_elem_sep Repository r...
ContentItem function ( final String arg0 ) { return new DummyContentItem ( this , arg0 ) ; }
17,635
represents response parameters that can be sent back to the caller by amazon api gateway . response parameters are represented as a key/value map , with a destination as the key and a boolean flag as the value , which is used to specify whether the parameter is required . a destination must match the pattern method.res...
void function ( java . util . Map < String , Boolean > arg0 ) { this . responseParameters = arg0 ; }
17,636
gets the value of the subjectarea property . concode_field_sep Boolean isSecureCode concode_elem_sep Boolean isCalculated concode_elem_sep Date lastUpdateDate concode_elem_sep String dataType concode_elem_sep String lastUpdateUser concode_elem_sep String createUser concode_elem_sep String subjectArea concode_elem_sep B...
String function ( ) { return subjectArea ; }
17,637
tests if there are more points to read . concode_field_sep QuadCurve2D quad concode_elem_sep int index concode_elem_sep AffineTransform affine concode_field_sep void next concode_elem_sep int getWindingRule concode_elem_sep int currentSegment concode_elem_sep int currentSegment
boolean function ( ) { return ( index > 1 ) ; }
17,638
set date . concode_field_sep String date concode_elem_sep String UML_DESIGNER_PROFILE_COMMENT_KEY concode_elem_sep String copyright concode_elem_sep String UML_DESIGNER_PROFILE_VERSION_KEY concode_elem_sep String UML_DESIGNER_PROFILE_DATE_KEY concode_elem_sep String UML_DESIGNER_PROFILE_AUTHOR_KEY concode_elem_sep Stri...
void function ( final String arg0 ) { this . date = arg0 ; }
17,639
returns true if more elements exist . concode_field_sep LRUEnumeratorElement fElementQueue concode_elem_sep LRUEnumeratorElement fNext concode_elem_sep Object fValue concode_field_sep Object nextElement
boolean function ( ) { return fElementQueue != null ; }
17,640
get the simple char type concode_field_sep int BYTE_TYPE concode_elem_sep int DOUBLE_TYPE concode_elem_sep int SEQUENCE_TYPE concode_elem_sep int FLOAT_TYPE concode_elem_sep int SHORT_TYPE concode_elem_sep int BOOLEAN_TYPE concode_elem_sep int STRING_TYPE concode_elem_sep int CHAR_TYPE concode_elem_sep int iType concod...
char function ( TypeObject arg0 ) { if ( arg0 . iType != CHAR_TYPE ) { throw new com . sun . star . lang . IllegalArgumentException ( "srini_string" ) ; } return ( ( Character ) arg0 . aValue ) . charValue ( ) ; }
17,641
sets the name of this account . concode_field_sep Account _account concode_field_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int compareTo concode_elem_sep Account getWrappedModel concode_el...
void function ( java . lang . String arg0 ) { _account . setName ( arg0 ) ; }
17,642
converts an address from its string representation to an ip address in a particular family . concode_field_sep int IPv6 concode_elem_sep int IPv4 concode_field_sep int addressLength concode_elem_sep Record[] lookupHostName concode_elem_sep InetAddress[] getAllByName concode_elem_sep String getHostName concode_elem_sep ...
InetAddress function ( String arg0 , int arg1 ) { if ( arg1 != IPv4 && arg1 != IPv6 ) throw new IllegalArgumentException ( "srini_string" ) ; byte [ ] loc0 ; loc0 = toByteArray ( arg0 , arg1 ) ; if ( loc0 != null ) return InetAddress . getByAddress ( arg0 , loc0 ) ; throw new UnknownHostException ( "srini_string" + arg...
17,643
test of getlabelresource method , of class consolestatusloggergui . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCreateTestElement concode_elem_sep void testGetStaticLabel concode_elem_sep void setUpClass concode_elem_sep void setUp concode_elem_sep void tearDownClass concode_elem_sep void testM...
void function ( ) { System . out . println ( "srini_string" ) ; ConsoleStatusLoggerGui loc0 = new ConsoleStatusLoggerGui ( ) ; String loc1 = loc0 . getLabelResource ( ) ; assertTrue ( loc1 . length ( ) > 0 ) ; }
17,644
setter method for emailid concode_field_sep String ticketNo concode_elem_sep String MSISDN concode_elem_sep String loggedInUser concode_elem_sep String emailId concode_elem_sep Integer TemplateId concode_elem_sep String callbackType concode_field_sep Integer getTemplateId concode_elem_sep void setTicketNo concode_elem_...
void function ( String arg0 ) { this . emailId = arg0 ; }
17,645
determines whether or not all the strings in an array are empty or not . concode_field_sep PlaceHolder placeHolder concode_field_sep String modify concode_elem_sep String squeeze concode_elem_sep String keep concode_elem_sep boolean containsAny concode_elem_sep int count concode_elem_sep String delete
boolean function ( final String [ ] arg0 ) { if ( arg0 != null ) { for ( final String loc0 : arg0 ) { if ( StringUtils . isNotEmpty ( loc0 ) ) { return false ; } } } return true ; }
17,646
sets the value of the page property . concode_field_sep String screensavePage concode_elem_sep BigDecimal maxMobileScreenWidth concode_elem_sep BigDecimal defaultColumns concode_elem_sep Meta meta concode_elem_sep String design concode_elem_sep Boolean bindClickToWidget concode_elem_sep String backend concode_elem_sep ...
void function ( Page arg0 ) { this . page = arg0 ; }
17,647
open a read-only connection . concode_field_sep PlaceHolder placeHolder concode_field_sep void onCreate concode_elem_sep void onUpgrade concode_elem_sep void onOpen concode_elem_sep H2Database getWritableDatabase concode_elem_sep void close
H2Database function ( ) { return null ; }
17,648
called whenever the osgi framework starts our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; }
17,649
sets the optional acl entry name . concode_field_sep AclEntryScope scope concode_elem_sep String name concode_elem_sep FsAction permission concode_elem_sep AclEntryType type concode_elem_sep AclEntryScope scope concode_field_sep String getName concode_elem_sep FsAction getPermission concode_elem_sep AclEntry parseAclEn...
Builder function ( String arg0 ) { if ( arg0 != null && ! arg0 . isEmpty ( ) ) { this . name = arg0 ; } return this ; }
17,650
returns message key for title of the `` login '' page , to use in a menu showing the choice of multiple login methods . concode_field_sep Logger log concode_field_sep boolean isImplicit concode_elem_sep int authenticate concode_elem_sep boolean allowSetPassword concode_elem_sep boolean canSelfRegister concode_elem_sep ...
String function ( Context arg0 ) { return "srini_string" ; }
17,651
get the eis product version concode_field_sep HornetQRAManagedConnection mc concode_elem_sep boolean trace concode_field_sep int getMaxConnections concode_elem_sep String getUserName concode_elem_sep String getEISProductName
String function ( ) { if ( HornetQRAMetaData . trace ) { HornetQRALogger . LOGGER . trace ( "srini_string" ) ; } return "srini_string" ; }
17,652
returns name of the user associated with the managedconnection instance concode_field_sep Logger log concode_field_sep int getMaxConnections concode_elem_sep String getEISProductVersion concode_elem_sep String getEISProductName
String function ( ) { log . trace ( "srini_string" ) ; return null ; }
17,653
return 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 long serialVersionUID concode_elem_sep String omittedMethods[] concode_elem_sep boolean isFromDescriptor concod...
String function ( ) { return ( this . description ) ; }
17,654
get the job id . concode_field_sep JobID jobid concode_elem_sep String queueName concode_elem_sep String name concode_elem_sep String user concode_elem_sep String jobFile concode_elem_sep String url concode_field_sep void readFields concode_elem_sep String getJobFile concode_elem_sep URL getURL concode_elem_sep String ...
JobID function ( ) { return jobid ; }
17,655
returns snapshot name concode_field_sep String reason concode_elem_sep XContentBuilderString VERSION_ID concode_elem_sep XContentBuilderString NAME concode_elem_sep XContentBuilderString STATE concode_elem_sep ImmutableList<SnapshotShardFailure> shardFailures concode_elem_sep XContentBuilderString START_TIME concode_el...
String function ( ) { return name ; }
17,656
formats an int as a 2-byte unsigned hex value . concode_field_sep PlaceHolder placeHolder concode_field_sep String uNibble concode_elem_sep String s4 concode_elem_sep String u8 concode_elem_sep String s8 concode_elem_sep String dump concode_elem_sep String u1 concode_elem_sep String u2or4 concode_elem_sep String u3 con...
String function ( int arg0 ) { char [ ] loc0 = new char [ 4 ] ; for ( int loc1 = 0 ; loc1 < 4 ; loc1 ++ ) { loc0 [ 3 - loc1 ] = Character . forDigit ( arg0 & 0x0f , 16 ) ; arg0 >>= 4 ; } return new String ( loc0 ) ; }
17,657
returns the source address of this outbound socket binding if one is configured . if no explicit source address is specified for this binding , then this method returns null . use #getsourceaddress instead to obtain the default interface of the socket binding manager if none is specified for this binding . concode_fiel...
InetAddress function ( ) { return sourceNetworkInterface != null ? sourceNetworkInterface . getAddress ( ) : null ; }
17,658
set the thread pool size of the scheduled render service . the default is 5 and unless you have a lot of renderers that use the scheduling service , it should really be more than enough . concode_field_sep RejectionHandler rejectionHandler concode_elem_sep RenderThreadFactory threadFactory concode_elem_sep int corePool...
void function ( int arg0 ) { this . schedulePoolSize = arg0 ; }
17,659
gets the login value for this infoauthentication . concode_field_sep java.lang.String designator concode_elem_sep java.lang.String domain concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String login concode_elem_sep org.apache.axis.description.TypeDesc t...
java . lang . String function ( ) { return login ; }
17,660
get types directly annotated with a given annotation , both classes and annotations concode_field_sep Supplier<List<String>> listSupplier concode_elem_sep Map<String,Multimap<String,String>> storeMap concode_elem_sep boolean concurrent concode_elem_sep Predicate<String> isConstructor concode_field_sep Set<String> getFi...
Set < String > function ( final String arg0 ) { return get ( TypeAnnotationsScanner . class , arg0 ) ; }
17,661
a complex type that contains the http methods that you want cloudfront to process and forward to your origin . concode_field_sep Integer quantity concode_elem_sep CachedMethods cachedMethods concode_elem_sep com.amazonaws.internal.SdkInternalList<String> items concode_field_sep Integer getQuantity concode_elem_sep void...
java . util . List < String > function ( ) { if ( items == null ) { items = new com . amazonaws . internal . SdkInternalList < String > ( ) ; } return items ; }
17,662
gets the value of the label property . concode_field_sep Boolean date concode_elem_sep Boolean snippet concode_elem_sep String src concode_elem_sep Boolean link concode_elem_sep BigInteger refresh concode_elem_sep Boolean showerror concode_elem_sep Label label concode_elem_sep String linktarget concode_elem_sep Boolean...
Label function ( ) { return label ; }
17,663
convert a string to a distanceunit concode_field_sep DistanceUnit unit concode_elem_sep String[] names concode_elem_sep double value concode_elem_sep DistanceUnit DEFAULT concode_elem_sep double meters concode_field_sep double getEarthCircumference concode_elem_sep double toMeters concode_elem_sep double fromMeters con...
DistanceUnit function ( String arg0 ) { for ( DistanceUnit loc0 : values ( ) ) { for ( String loc1 : loc0 . names ) { if ( loc1 . equals ( arg0 ) ) { return loc0 ; } } } throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; }
17,664
return type metadata object concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep com.gvt.www.ws.eai.oss.gpon.ManobraDe manobraDe concode_elem_sep com.gvt.www.ws.eai.oss.gpon.ManobraPara manobaPara concode_...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
17,665
returns true if the given object is also a resolvedserverinfo with an equal addressand equal attribute values . note that if a resolver includes mutable values in the attributes , it is possible for two objects to be considered equal at one point in time and not equal at another due to concurrent mutation of attribute ...
boolean function ( Object arg0 ) { if ( this == arg0 ) { return true ; } if ( arg0 == null || getClass ( ) != arg0 . getClass ( ) ) { return false ; } ResolvedServerInfo loc0 = ( ResolvedServerInfo ) arg0 ; return Objects . equal ( address , loc0 . address ) && Objects . equal ( attributes , loc0 . attributes ) ; }
17,666
set the name attribute . concode_field_sep String name concode_elem_sep String type concode_elem_sep String value concode_field_sep String getValue concode_elem_sep String getName concode_elem_sep String getType concode_elem_sep void setValue concode_elem_sep void setType
void function ( final String arg0 ) { this . name = arg0 ; }
17,667
this method works around the bizarre semantics of bufferedinputstream 's read method . concode_field_sep PlaceHolder placeHolder concode_field_sep void decodeBufferPrefix concode_elem_sep ByteBuffer decodeBufferToByteBuffer concode_elem_sep ByteBuffer decodeBufferToByteBuffer concode_elem_sep void decodeBuffer concode_...
int function ( InputStream arg0 , byte arg1 [ ] , int arg2 , int arg3 ) { for ( int loc0 = 0 ; loc0 < arg3 ; loc0 ++ ) { int loc1 = arg0 . read ( ) ; if ( loc1 == - 1 ) return ( ( loc0 == 0 ) ? - 1 : loc0 ) ; arg1 [ loc0 + arg2 ] = ( byte ) loc1 ; } return arg3 ; }
17,668
zeros accumulated running time and restarts this object . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeToMessage concode_elem_se...
void function ( ) { total = 0 ; start ( ) ; }
17,669
gets the value of the startdate property . concode_field_sep ReportQueryAdUnitView adUnitView concode_elem_sep List<Long> customFieldIds concode_elem_sep List<DimensionFilter> dimensionFilters concode_elem_sep Date endDate concode_elem_sep List<Column> columns concode_elem_sep List<Long> contentMetadataKeyHierarchyCust...
Date function ( ) { return startDate ; }
17,670
returns the osgi service identifier . concode_field_sep KaleoNotificationLocalService _kaleoNotificationLocalService concode_field_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep com.liferay.portal.workflow.kaleo.model.Kaleo...
java . lang . String function ( ) { return _kaleoNotificationLocalService . getOSGiServiceIdentifier ( ) ; }
17,671
hardcoded to only return password concode_field_sep KeycloakSession session concode_elem_sep Set<String> supportedCredentialTypes concode_elem_sep UserFederationProviderModel model concode_elem_sep Properties properties concode_field_sep UserModel getUserByEmail concode_elem_sep UserFederationProviderModel getModel con...
Set < String > function ( UserModel arg0 ) { return supportedCredentialTypes ; }
17,672
returns user credentials selected for authentication if available concode_field_sep Credentials credentials concode_elem_sep AuthScheme authScheme concode_elem_sep AuthScope authScope concode_field_sep AuthScheme getAuthScheme concode_elem_sep AuthScope getAuthScope concode_elem_sep boolean isValid concode_elem_sep voi...
Credentials function ( ) { return this . credentials ; }
17,673
does a search for a bundle with a matching symbolic name . note that if there two bundles installed with the same symbolic name , the first one found will be returned . concode_field_sep PlaceHolder placeHolder concode_field_sep List<String> getSymbolicNames concode_elem_sep Bundle findBundleByName concode_elem_sep Str...
Bundle function ( BundleContext arg0 , String arg1 ) { if ( StringUtils . isBlank ( arg1 ) ) { throw new IllegalArgumentException ( "srini_string" ) ; } for ( Bundle loc0 : arg0 . getBundles ( ) ) { if ( StringUtils . equals ( arg1 , loc0 . getSymbolicName ( ) ) ) { return loc0 ; } } return null ; }
17,674
gets the number of tabulations for this line concode_field_sep String line concode_elem_sep Optional<AnalysisResult> analysisResult concode_elem_sep String line concode_elem_sep int tabulations concode_elem_sep RawScript rawScript concode_elem_sep Integer lineNumber concode_elem_sep Integer tabulations concode_elem_sep...
int function ( ) { return tabulations ; }
17,675
retrieves the clob value designated by this clob object as a java.io.reader object or as a stream of characters . concode_field_sep ClobDataID clob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep Writer setCharacterStream concode_elem_sep int setString concode_elem_sep int ...
Reader function ( ) { return new ClobInputStream ( this , 0 , length ( ) , session . getStreamBlockSize ( ) ) ; }
17,676
adds a new control point concode_field_sep List<Vector3> controlPoints concode_elem_sep Vector3 T2 concode_elem_sep Vector3 T1 concode_elem_sep long serialVersionUID concode_field_sep List<Vector3> getTangentNormals concode_elem_sep List<Vector3> getTangentNormals concode_elem_sep List<Vector3> getControlPoints concode...
void function ( Vector3 arg0 ) { controlPoints . add ( arg0 ) ; }
17,677
returns the name of this property . concode_field_sep int CAP_LIST concode_elem_sep int _capabilities concode_elem_sep Object _default concode_elem_sep Class<Object> _TYPE_DEFAULT concode_elem_sep int CAP_TRANSIENT concode_elem_sep int _CAPS_DEFAULT concode_elem_sep String _name concode_elem_sep int _index concode_elem...
String function ( ) { return _name ; }
17,678
get the user data that was assigned in the fixture definition . use this to store your application specific data . concode_field_sep boolean m_isSensor concode_elem_sep Shape m_shape concode_elem_sep Object m_userData concode_elem_sep float m_density concode_elem_sep Fixture m_next concode_elem_sep float m_restitution ...
Object function ( ) { return m_userData ; }
17,679
get the type of the object , i.e element_declaration . concode_field_sep XSModelGroupImpl fModelGroup concode_elem_sep XSObjectList fAnnotations concode_elem_sep XSNamespaceItem fNamespaceItem concode_elem_sep String fTargetNamespace concode_elem_sep String fName concode_field_sep void setNamespaceItem concode_elem_sep...
short function ( ) { return XSConstants . MODEL_GROUP_DEFINITION ; }
17,680
removed the mocked std-out printstream again from the system class concode_field_sep PrintStream stdOutOrig concode_elem_sep PrintStream stdOutMock concode_field_sep void testTrollActions concode_elem_sep void setUp
void function ( ) { System . setOut ( this . stdOutOrig ) ; }
17,681
this method removes listeners from the list of observers . concode_field_sep List<GameListener> UIWindows concode_elem_sep GameState gameState concode_elem_sep GameVsPlayer uniqueInstance concode_field_sep GameState updateState concode_elem_sep void endGame concode_elem_sep void gameController concode_elem_sep boolean ...
void function ( GameListener arg0 ) { if ( UIWindows . indexOf ( arg0 ) > 0 ) { UIWindows . remove ( UIWindows . indexOf ( arg0 ) ) ; } else { throw new IllegalArgumentException ( "srini_string" ) ; } }
17,682
selection in the workbench has been changed . we can change the state of the ` real ' action here if we want , but this can only happen after the delegate has been created . concode_field_sep IWorkbenchWindow window concode_field_sep void init concode_elem_sep void run concode_elem_sep void dispose
void function ( IAction arg0 , ISelection arg1 ) { }
17,683
creates a user and sets it to the threadlocal variable . concode_field_sep ThreadLocal<User> sUserThreadLocal concode_field_sep User get concode_elem_sep void remove
void function ( String arg0 ) { sUserThreadLocal . set ( new User ( arg0 ) ) ; }
17,684
draws the chart with a null info object to make sure that no exceptions are thrown a problem that was occurring at one point . concode_field_sep boolean flag concode_elem_sep JFreeChart chart concode_field_sep void chartChanged concode_elem_sep void testSetSeriesURLGenerator concode_elem_sep JFreeChart createChart conc...
void function ( ) { try { BufferedImage loc0 = new BufferedImage ( 200 , 100 , BufferedImage . TYPE_INT_RGB ) ; Graphics2D loc1 = loc0 . createGraphics ( ) ; this . chart . draw ( loc1 , new Rectangle2D . Double ( 0 , 0 , 200 , 100 ) , null , null ) ; loc1 . dispose ( ) ; } catch ( Exception loc0 ) { fail ( "srini_stri...
17,685
the ogis geometry type number of this geometry . concode_field_sep int LINEARRING concode_elem_sep int MULTILINESTRING concode_elem_sep String[] ALLTYPES concode_elem_sep long serialVersionUID concode_elem_sep boolean haveMeasure concode_elem_sep int UNKNOWN_SRID concode_elem_sep int type concode_elem_sep int POINT con...
int function ( ) { return this . srid ; }
17,686
not supported - throws unsupportedoperationexception concode_field_sep long serialVersionUID concode_field_sep List<String> getFormatCommentsPre concode_elem_sep List<? extends IResource> getContainedResources concode_elem_sep boolean hasFormatComment
List < String > function ( ) { throw new UnsupportedOperationException ( ) ; }
17,687
a job name that will be synchronized . concode_field_sep JobExplorer jobExplorer concode_elem_sep Set<String> jobNames concode_elem_sep Log logger concode_elem_sep JobRepository jobRepository concode_field_sep void setJobExplorer concode_elem_sep void checkJobBeforeLaunch concode_elem_sep void afterPropertiesSet concod...
void function ( String arg0 ) { this . jobNames . add ( arg0 ) ; }
17,688
gets the wrapped scheduledthreadpoolexecutor concode_field_sep ScheduledThreadPoolExecutor delegate concode_elem_sep long queueSize concode_elem_sep Logger LOG concode_field_sep Future<T> submit concode_elem_sep Future<?> submit concode_elem_sep Future<T> submit concode_elem_sep boolean isTerminated concode_elem_sep vo...
ScheduledThreadPoolExecutor function ( ) { return delegate ; }
17,689
return the full stack trace for a throwable . concode_field_sep ObjectReader reader concode_elem_sep MapBytesUtility mapBytesUtility concode_elem_sep StripPathConverter stripPathConverter concode_elem_sep ObjectWriter writer concode_field_sep RuntimeException wrapThrowable concode_elem_sep RuntimeException wrapThrowabl...
String function ( Throwable arg0 ) { StringWriter loc0 = new StringWriter ( ) ; PrintWriter loc1 = new PrintWriter ( loc0 ) ; arg0 . printStackTrace ( loc1 ) ; return loc0 . toString ( ) ; }
17,690
call public.inventory _ in_stock concode_field_sep PlaceHolder placeHolder concode_field_sep BigDecimal getCustomerBalance concode_elem_sep Field<BigDecimal> getCustomerBalance concode_elem_sep Field<BigDecimal> getCustomerBalance concode_elem_sep Integer inventoryHeldByCustomer concode_elem_sep Field<Integer> inventor...
Boolean function ( Configuration arg0 , Integer arg1 ) { InventoryInStock loc0 = new InventoryInStock ( ) ; loc0 . setPInventoryId ( arg1 ) ; loc0 . execute ( arg0 ) ; return loc0 . getReturnValue ( ) ; }
17,691
hand in the object to share concode_field_sep ConcurrentMap<String,BlockingQueue<V>> mediations concode_field_sep V get concode_elem_sep BlockingQueue<V> retrieveSharedQueue concode_elem_sep V getAndRemove concode_elem_sep void remove
void function ( String arg0 , V arg1 ) { if ( ! retrieveSharedQueue ( arg0 ) . offer ( arg1 ) ) { throw new RuntimeException ( "srini_string" ) ; } }
17,692
the state of the spot instance request . concode_field_sep String spotInstanceRequestId concode_elem_sep String state concode_field_sep String getSpotInstanceRequestId concode_elem_sep String getState concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CancelledSpotInstanceRequest clone conco...
CancelledSpotInstanceRequest function ( CancelSpotInstanceRequestState arg0 ) { setState ( arg0 ) ; return this ; }
17,693
list the configuration options to render and display in the admin console 's generic management page for this plugin concode_field_sep ConcurrentHashMap<String,Properties> files concode_elem_sep Set<String> configOptions concode_field_sep void init concode_elem_sep UserFederationSyncResult syncChangedUsers concode_elem...
Set < String > function ( ) { return configOptions ; }
17,694
closes the output stream . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_el...
void function ( ) { out . close ( ) ; }
17,695
returns the live version add or delete for this uid . concode_field_sep long BASE_BYTES_PER_CHM_ENTRY concode_elem_sep Map<BytesRef,VersionValue> current concode_elem_sep AtomicLong ramBytesUsedTombstones concode_elem_sep Map<BytesRef,VersionValue> old concode_elem_sep Map<BytesRef,DeleteVersionValue> tombstones concod...
VersionValue function ( final Term arg0 ) { Maps loc0 = maps ; VersionValue loc1 = loc0 . current . get ( arg0 . bytes ( ) ) ; if ( loc1 != null ) { return loc1 ; } loc1 = loc0 . old . get ( arg0 . bytes ( ) ) ; if ( loc1 != null ) { return loc1 ; } return tombstones . get ( arg0 . bytes ( ) ) ; }
17,696
inserts an entity and commits concode_field_sep EntityManagerFactory emFactory concode_elem_sep Class<T> entityClass concode_elem_sep EntityManager _entityManager concode_field_sep EntityManagerFactory entityManagerFactory concode_elem_sep EntityManager entityManager concode_elem_sep String persistenceUnitName concode_...
T function ( T arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( ) ; } EntityManager loc0 = entityManager ( ) ; EntityTransaction loc1 = loc0 . getTransaction ( ) ; loc1 . begin ( ) ; loc0 . persist ( arg0 ) ; loc1 . commit ( ) ; loc0 . close ( ) ; return arg0 ; }
17,697
returns the number of key-value mappings that this fieldarray currently stores . concode_field_sep boolean mGarbage concode_elem_sep FieldData[] mData concode_elem_sep int mSize concode_elem_sep FieldData DELETED concode_elem_sep int[] mFieldNumbers concode_field_sep int idealByteArraySize concode_elem_sep int hashCode...
int function ( ) { if ( mGarbage ) { gc ( ) ; } return mSize ; }
17,698
override this to indicate that this controller is processing some animated scroll concode_field_sep Builder.Config config concode_field_sep boolean onScrollStateChanged concode_elem_sep boolean onGlobalLayout concode_elem_sep boolean onScrolled
boolean function ( ) { return false ; }
17,699
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 ; }