idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
31,400
if the supplied exception is not already an instance of runtimeexception , wrap it in a runtimeexception object . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
RuntimeException function ( Throwable arg0 ) { if ( arg0 instanceof RuntimeException ) return ( RuntimeException ) arg0 ; return new RuntimeException ( arg0 ) ; }
31,401
get the number of rows for the provided month concode_field_sep PlaceHolder placeHolder concode_field_sep void nextMonth concode_elem_sep int getMonthDifference concode_elem_sep int getMonthDifference concode_elem_sep void previousMonth concode_elem_sep String[] getWeekDaysList concode_elem_sep Calendar getLocalizedCal...
int function ( int arg0 , int arg1 , int arg2 ) { Calendar loc0 = Calendar . getInstance ( ) ; loc0 . set ( arg0 , arg1 , 1 ) ; MonthDisplayHelper loc1 = new MonthDisplayHelper ( arg0 , arg1 , arg2 ) ; return loc1 . getRowOf ( loc0 . getActualMaximum ( Calendar . DAY_OF_MONTH ) ) + 1 ; }
31,402
gets the set of grant objects in this access control list acl . concode_field_sep Owner owner concode_elem_sep List<Grant> grantList concode_elem_sep long serialVersionUID concode_elem_sep Set<Grant> grantSet concode_field_sep void grantAllPermissions concode_elem_sep void revokeAllPermissions concode_elem_sep void gra...
Set < Grant > function ( ) { checkState ( ) ; if ( grantSet == null ) { if ( grantList == null ) { grantSet = new HashSet < Grant > ( ) ; } else { grantSet = new HashSet < Grant > ( grantList ) ; grantList = null ; } } return grantSet ; }
31,403
indicates the given loader started loading . this is typically called from an android.app.loadermanager.loadercallbacks #oncreateloader int , android.os.bundle . concode_field_sep ResourceCallback mResourceCallback concode_elem_sep Set<Integer> mLoadersLoading concode_elem_sep LoaderManager mLoaderManager concode_elem_...
void function ( Loader arg0 ) { mLoadersLoading . add ( arg0 . getId ( ) ) ; }
31,404
sets the value of the sequencenumber property . concode_field_sep JAXBElement<String> sequenceNumber concode_elem_sep JAXBElement<String> dealerCode concode_elem_sep JAXBElement<BigInteger> monthsToExtend concode_elem_sep JAXBElement<Boolean> isRemoveAllConflictServices concode_elem_sep long serialVersionUID concode_el...
void function ( JAXBElement < String > arg0 ) { this . sequenceNumber = ( ( JAXBElement < String > ) arg0 ) ; }
31,405
returns the measured execution time in milliseconds , divided by the number of runs , and reinitializes the timer . concode_field_sep long time concode_field_sep void sleep concode_elem_sep long memory concode_elem_sep String format concode_elem_sep String format concode_elem_sep String format concode_elem_sep String t...
String function ( final int arg0 ) { final long loc0 = System . nanoTime ( ) ; final String loc1 = getTime ( loc0 - time , arg0 ) ; time = loc0 ; return loc1 ; }
31,406
main concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( String [ ] arg0 ) { new TestEJB ( ) ; }
31,407
append a hexadecimal string representation of the md5 digest of the given bytes to the given stringbuilder . concode_field_sep String MD5_ALGORITHM_NAME concode_elem_sep char[] HEX_CHARS concode_field_sep char[] digestAsHexChars concode_elem_sep char[] digestAsHexChars concode_elem_sep char[] encodeHex concode_elem_sep...
StringBuilder function ( byte [ ] arg0 , StringBuilder arg1 ) { return appendDigestAsHex ( MD5_ALGORITHM_NAME , arg0 , arg1 ) ; }
31,408
set the custom metadata value . concode_field_sep COSDictionary info concode_field_sep String getSubject concode_elem_sep void setModificationDate concode_elem_sep void setSubject concode_elem_sep Object getPropertyStringValue concode_elem_sep String getAuthor concode_elem_sep void setTrapped concode_elem_sep String ge...
void function ( String arg0 , String arg1 ) { info . setString ( arg0 , arg1 ) ; }
31,409
return the stack trace in a string . concode_field_sep String[] unwrapMethods concode_field_sep String getStackTraceUpTo concode_elem_sep void printExceptionStack concode_elem_sep String exceptionFollowedByRootCausesToString concode_elem_sep String getStackTraceLines concode_elem_sep String exceptionToString concode_el...
String function ( Throwable arg0 ) { StringWriter loc0 = new StringWriter ( ) ; arg0 . printStackTrace ( new PrintWriter ( loc0 ) ) ; return loc0 . toString ( ) ; }
31,410
returns the device serial number concode_field_sep int mPortNumber concode_elem_sep UsbDeviceConnection mConnection concode_elem_sep Object mWriteBufferLock concode_elem_sep byte[] mWriteBuffer concode_elem_sep UsbDevice mDevice concode_elem_sep byte[] mReadBuffer concode_elem_sep int DEFAULT_WRITE_BUFFER_SIZE concode_...
String function ( ) { return mConnection . getSerial ( ) ; }
31,411
convert an rgb color value to a grayscale from 0 to 100 . concode_field_sep PlaceHolder placeHolder concode_field_sep BufferedImage convertToMonochrome concode_elem_sep RenderedImage convertToMonochrome concode_elem_sep boolean isZeroBlack concode_elem_sep BufferedImage convertAndScaleImage concode_elem_sep BufferedIma...
int function ( int arg0 , int arg1 , int arg2 ) { return ( arg0 * 30 + arg1 * 59 + arg2 * 11 ) / 100 ; }
31,412
stop a service ; if it is null do nothing . exceptions are caught and logged at warn level . but not throwables . this operation is intended to be used in cleanup operations concode_field_sep Log LOG concode_field_sep void init concode_elem_sep void stop concode_elem_sep void start concode_elem_sep void ensureCurrentSt...
Exception function ( Service arg0 ) { try { stop ( arg0 ) ; } catch ( Exception loc0 ) { LOG . warn ( "srini_string" + arg0 . getName ( ) + "srini_string" + loc0 , loc0 ) ; return loc0 ; } return null ; }
31,413
add all stats in the commandresultstats concode_field_sep String typeName concode_elem_sep int NUM_RESULT_TYPES concode_elem_sep String[] STRING_RESULT_TYPES concode_elem_sep String[] objectives concode_elem_sep int typeID concode_elem_sep String[] entitiesID concode_field_sep void removeScoreBoardStat concode_elem_sep...
void function ( CommandResultStats arg0 ) { for ( CommandResultStats . Type loc0 : CommandResultStats . Type . values ( ) ) { setScoreBoardStat ( this , loc0 , arg0 . entitiesID [ loc0 . getTypeID ( ) ] , arg0 . objectives [ loc0 . getTypeID ( ) ] ) ; } }
31,414
releases resources and frees any memory associated with this pix . you may not modify or access the pix after calling this method . concode_field_sep int INDEX_D concode_elem_sep int mNativePix concode_elem_sep int INDEX_H concode_elem_sep int INDEX_W concode_elem_sep boolean mRecycled concode_field_sep boolean nativeI...
void function ( ) { if ( ! mRecycled ) { nativeDestroy ( mNativePix ) ; mRecycled = true ; } }
31,415
gets the value of the content property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the content property . for example , to add a new item , do as...
List < Object > function ( ) { if ( content == null ) { content = new ArrayList < Object > ( ) ; } return this . content ; }
31,416
return an iteration of the names of the properties concode_field_sep HashMap _mapping concode_elem_sep PropertyContainer _defaults concode_field_sep Object getProperty concode_elem_sep void removeAllProperties concode_elem_sep void setProperty concode_elem_sep Iterator properties
Iterator function ( ) { return _mapping . keySet ( ) . iterator ( ) ; }
31,417
invalid scenario : with null argument value of jobname concode_field_sep String jobName concode_elem_sep String cronExpression concode_elem_sep String date concode_elem_sep BatchValidator batchValidator concode_field_sep void validateSchedulerInputsTest concode_elem_sep void validateSchedulerInputsWithNullJobName conco...
void function ( ) { List < String > loc0 = batchValidator . validateUpdateInputs ( null ) ; assertNotNull ( loc0 ) ; assertEquals ( 1 , loc0 . size ( ) ) ; assertEquals ( "srini_string" , loc0 . get ( 0 ) ) ; }
31,418
tests this instance for equality with an arbitrary object . concode_field_sep long serialVersionUID concode_elem_sep String id concode_field_sep Object clone concode_elem_sep String getID
boolean function ( Object arg0 ) { if ( arg0 == this ) { return true ; } if ( ! ( arg0 instanceof DatasetGroup ) ) { return false ; } DatasetGroup loc0 = ( DatasetGroup ) arg0 ; if ( ! this . id . equals ( loc0 . id ) ) { return false ; } return true ; }
31,419
get state of workflowitem concode_field_sep EPerson owner concode_elem_sep Logger log concode_elem_sep Item item concode_elem_sep Context ourContext concode_elem_sep TableRow wfRow concode_elem_sep Collection collection concode_field_sep void setPublishedBefore concode_elem_sep Collection getCollection concode_elem_sep...
int function ( ) { return wfRow . getIntColumn ( "srini_string" ) ; }
31,420
return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String id concode_field_sep void setName concode_elem_sep java.lang.String ...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
31,421
add a given extension field for the standard extensions tag the value parameter becomes the contents of the octet string associated with the extension . concode_field_sep Hashtable extensions concode_elem_sep DERObjectIdentifier reqPolicy concode_elem_sep Vector extOrdering concode_elem_sep DERBoolean certReq concode_f...
void function ( ASN1ObjectIdentifier arg0 , boolean arg1 , byte [ ] arg2 ) { extensions . put ( arg0 , new X509Extension ( arg1 , new DEROctetString ( arg2 ) ) ) ; extOrdering . addElement ( arg0 ) ; }
31,422
returns the box 's x-coordinate in pixels . concode_field_sep int INDEX_X concode_elem_sep int INDEX_W concode_elem_sep boolean mRecycled concode_elem_sep int INDEX_H concode_elem_sep int mNativeBox concode_elem_sep int INDEX_Y concode_field_sep int nativeGetWidth concode_elem_sep void nativeDestroy concode_elem_sep in...
int function ( ) { return nativeGetX ( mNativeBox ) ; }
31,423
method to be called to relinquish an acquired chunk . all streams open to the chunk are closed , and the chunk-file is deleted . concode_field_sep Log LOG concode_elem_sep Configuration configuration concode_elem_sep SequenceFileRecordReader<K,V> reader concode_elem_sep Path chunkFilePath concode_elem_sep int numChunks...
void function ( ) { close ( ) ; if ( ! fs . delete ( chunkFilePath , false ) ) { LOG . error ( "srini_string" + chunkFilePath ) ; throw new IOException ( "srini_string" + chunkFilePath ) ; } }
31,424
gets the value of the uuidref property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep String title concode_elem_sep MLVerticalC...
String function ( ) { return uuidref ; }
31,425
let t = percentage of max memory . let e = round log_2 t . then , we choose capacity = 2 ^ e / size of reference , unless it is outside the close interval 1 , 2 ^ 30 . concode_field_sep LinkedElement cur concode_elem_sep LinkedElement[] entries concode_elem_sep int MIN_ARRAY_LENGTH concode_elem_sep int iterModification...
int function ( double arg0 , String arg1 ) { return computeCapacity ( Runtime . getRuntime ( ) . maxMemory ( ) , arg0 , arg1 ) ; }
31,426
returns true only if the property is read only . concode_field_sep Field field concode_elem_sep Method readMethod concode_elem_sep String name concode_elem_sep Class<?> type concode_elem_sep Method writeMethod concode_field_sep Object getValue concode_elem_sep String getName concode_elem_sep Class<?> getType concode_el...
boolean function ( ) { return ( writeMethod == null ) ; }
31,427
returns the revision number of this revisionkeylist . concode_field_sep List<K> keys concode_elem_sep long revision concode_elem_sep long revisionTime concode_field_sep int size concode_elem_sep int hashCode concode_elem_sep Date getRevisionTime concode_elem_sep boolean equals concode_elem_sep List<K> getKeys
long function ( ) { return revision ; }
31,428
return true if the user is enabling geo location concode_field_sep HttpResponse res concode_elem_sep ObjectFactory factory concode_elem_sep AccountSettings target concode_field_sep String getLanguage concode_elem_sep boolean isDiscoverableByEmail concode_elem_sep String getSleepEndTime concode_elem_sep TimeZone getTime...
boolean function ( ) { return getTarget ( ) . isGeoEnabled ( ) ; }
31,429
advance to next char in inputstream detect end of line or end of file and substitute ' $ ' as distinguished eot terminal concode_field_sep int curCharInt concode_elem_sep StringBuilder currentSpelling concode_elem_sep boolean incorporatePredefined concode_elem_sep char eolUnix concode_elem_sep ErrorReporter reporter co...
void function ( ) { if ( getCurCharInt ( ) != - 1 ) readChar ( ) ; }
31,430
return all taskdescritions concode_field_sep Map<String,TaskDescription> taskDescriptionMap concode_elem_sep Log log concode_field_sep TaskDescription getTaskDescription concode_elem_sep boolean isUnique concode_elem_sep void clear concode_elem_sep void addTaskDescription concode_elem_sep void validateUniqueness concod...
Iterator < TaskDescription > function ( ) { return taskDescriptionMap . values ( ) . iterator ( ) ; }
31,431
returns the number of bytes that will be written to out in a callto #writeto , or -1 if that count is unknown . concode_field_sep RawHeaders headers concode_elem_sep String method concode_elem_sep RawHeaders headers concode_elem_sep String method concode_elem_sep Object tag concode_elem_sep Body body concode_elem_sep U...
long function ( ) { return - 1 ; }
31,432
returns true if #connect has been attempted on this connection . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode...
boolean function ( ) { return connected ; }
31,433
adds a file to the current zip output stream concode_field_sep int BUFFER_SIZE concode_field_sep void addFolderToZip concode_elem_sep void compressFiles
void function ( File arg0 , ZipOutputStream arg1 ) { arg1 . putNextEntry ( new ZipEntry ( arg0 . getName ( ) ) ) ; BufferedInputStream loc0 = new BufferedInputStream ( new FileInputStream ( arg0 ) ) ; byte [ ] loc1 = new byte [ BUFFER_SIZE ] ; int loc2 = 0 ; while ( ( loc2 = loc0 . loc2 ( loc1 ) ) != - 1 ) { arg1 . wri...
31,434
gets the value of the email property . concode_field_sep String password concode_elem_sep String firstname concode_elem_sep WSDate createdDate concode_elem_sep String phone concode_elem_sep WSDate loginDate concode_elem_sep String project concode_elem_sep String email concode_elem_sep String username concode_elem_sep S...
String function ( ) { return email ; }
31,435
adds a menu item to the context menu . concode_field_sep MenuBar menuBar concode_elem_sep PopupPanel popupPanel concode_field_sep void hide concode_elem_sep void addSeparator concode_elem_sep void show concode_elem_sep void setPopupPositionAndShow concode_elem_sep void setPopupPosition
MenuItem function ( String arg0 , final Command arg1 ) { MenuItem loc0 = new MenuItem ( arg0 , new Command ( ) { @ Override public void execute ( ) { hide ( ) ; arg1 . execute ( ) ; } } ) ; loc0 . setStylePrimaryName ( "srini_string" ) ; menuBar . addItem ( loc0 ) ; return loc0 ; }
31,436
sets the value of the client property . concode_field_sep Survey survey concode_elem_sep Groups groups concode_elem_sep String client concode_elem_sep List<Staff> staff concode_elem_sep String developer concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep List<Category> category concode_fiel...
void function ( String arg0 ) { this . client = arg0 ; }
31,437
initializes a clientfactory which runs the given transportclientbootstraps prior to returning a new client . bootstraps will be executed synchronously , and must run successfully in order to create a client . concode_field_sep boolean closeIdleConnections concode_elem_sep Logger logger concode_elem_sep RpcHandler rpcHa...
TransportClientFactory function ( List < TransportClientBootstrap > arg0 ) { return new TransportClientFactory ( this , arg0 ) ; }
31,438
sets the instancename value for this wsrolespecificationinstance . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String instanceName concode_elem_sep java.lang.String[] parameter concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_e...
void function ( java . lang . String arg0 ) { this . instanceName = arg0 ; }
31,439
make sure the element in jboss-deployment-structure.xml is processed correctly and the exclude/include is honoured concode_field_sep String TO_BE_MISSSING_CLASS_NAME concode_elem_sep Logger logger concode_elem_sep String TO_BE_FOUND_CLASS_NAME concode_elem_sep ClassLoadingEJB ejb concode_field_sep void testUsePhysicalC...
void function ( ) { this . ejb . loadClass ( TO_BE_FOUND_CLASS_NAME ) ; try { this . ejb . loadClass ( TO_BE_MISSSING_CLASS_NAME ) ; Assert . fail ( "srini_string" + TO_BE_MISSSING_CLASS_NAME ) ; } catch ( ClassNotFoundException loc0 ) { } }
31,440
invokes the click handler for this plugin . concode_field_sep AlertDialog mDialog concode_elem_sep String mPath concode_elem_sep String mFileName concode_elem_sep PreferencesClickHandler mHandler concode_elem_sep String mName concode_elem_sep String mDescription concode_field_sep void setName concode_elem_sep void setF...
void function ( Context arg0 ) { if ( mHandler != null ) { mHandler . handleClickEvent ( arg0 ) ; } }
31,441
gets the value of the rmmanager property . concode_field_sep String partyStatus concode_elem_sep String creator concode_elem_sep XMLGregorianCalendar rowUpdateDate concode_elem_sep Integer eddRequired concode_elem_sep String rmManager concode_elem_sep Integer displayEDD concode_field_sep void setPartyStatus concode_ele...
String function ( ) { return rmManager ; }
31,442
gets the value of the resourceadaptortypevendor property . concode_field_sep ResourceAdaptorTypeName resourceAdaptorTypeName concode_elem_sep ResourceAdaptorTypeVersion resourceAdaptorTypeVersion concode_elem_sep String id concode_elem_sep ResourceAdaptorTypeVendor resourceAdaptorTypeVendor concode_field_sep void setRe...
ResourceAdaptorTypeVendor function ( ) { return resourceAdaptorTypeVendor ; }
31,443
sets the constant . concode_field_sep double constant concode_elem_sep double staticPower concode_elem_sep double maxPower concode_field_sep double getMaxPower concode_elem_sep double getPower concode_elem_sep void setMaxPower concode_elem_sep double getConstant concode_elem_sep double getStaticPower concode_elem_sep v...
void function ( double arg0 ) { this . constant = arg0 ; }
31,444
decode and throw away the next object of any type concode_field_sep byte code concode_elem_sep CharsetEncoder utf8encoder concode_elem_sep Charset utf8 concode_field_sep boolean skipByteArray concode_elem_sep IoBufferEx decodeByteArray concode_elem_sep int decodeLength concode_elem_sep int decodeLengthWithLowFlag conco...
boolean function ( IoBufferEx arg0 ) { Type loc0 = Type . values ( ) [ arg0 . get ( ) ] ; return loc0 . skip ( arg0 ) ; }
31,445
check if the manager does not manage any event handlers . concode_field_sep boolean initialized concode_elem_sep EventState first concode_elem_sep List<EventState> states concode_field_sep void stepAccepted concode_elem_sep boolean stop concode_elem_sep boolean evaluateStep concode_elem_sep boolean reset concode_elem_s...
boolean function ( ) { return states . isEmpty ( ) ; }
31,446
retrieves the common sys session . concode_field_sep Session sysLobSession concode_elem_sep long sessionIdCount concode_elem_sep LongKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void removeSession concode_elem_sep Session getSysSessionForScript concode_elem_sep Session newSysSession conco...
Session function ( String arg0 , User arg1 ) { sysSession . currentSchema = sysSession . database . schemaManager . getSchemaHsqlName ( arg0 ) ; sysSession . isProcessingScript = false ; sysSession . isProcessingLog = false ; sysSession . setUser ( arg1 ) ; return sysSession ; }
31,447
get the hold object . the object will be initialized the first time this function is invoked . concode_field_sep T initializedObject concode_elem_sep Supplier<T> initializer concode_field_sep boolean isInitialized concode_elem_sep String toString
T function ( ) { T loc0 = this . initializedObject ; if ( loc0 == null ) { loc0 = this . initializedObject = this . initializer . get ( ) ; } return loc0 ; }
31,448
get id concode_field_sep String password concode_elem_sep String phone concode_elem_sep String lastName concode_elem_sep Integer userStatus concode_elem_sep String username concode_elem_sep Long id concode_elem_sep String firstName concode_elem_sep String email concode_field_sep String getPhone concode_elem_sep User la...
Long function ( ) { return id ; }
31,449
ensures that an object reference passed as a parameter to the calling method is not null . concode_field_sep PlaceHolder placeHolder concode_field_sep void checkState concode_elem_sep String format concode_elem_sep void checkArgument concode_elem_sep void checkArgument concode_elem_sep String checkNotNullNorEmpty conco...
T function ( T arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } return arg0 ; }
31,450
returns a string representation of this object . concode_field_sep HttpServletRequest request concode_field_sep String getCharacterEncoding concode_elem_sep String getContentType concode_elem_sep int getContentLength concode_elem_sep InputStream getInputStream
String function ( ) { return "srini_string" + this . getContentLength ( ) + "srini_string" + this . getContentType ( ) ; }
31,451
sets the value of the role property . concode_field_sep NodeType node concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep java.lang.Boolean owns concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep St...
void function ( String arg0 ) { this . role = arg0 ; }
31,452
sets the user name . concode_field_sep String password concode_elem_sep String userName concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep String getUserName
void function ( String arg0 ) { this . userName = arg0 ; }
31,453
read a com.fasterxml.jackson.databind.jsonnode from a string input concode_field_sep JsonNodeReader READER concode_field_sep JsonNode fromResource concode_elem_sep JsonNode fromReader
JsonNode function ( final String arg0 ) { return fromReader ( new StringReader ( arg0 ) ) ; }
31,454
creates a post request . concode_field_sep List<HandlerAdapter> handlerAdapters concode_elem_sep List<HandlerMapping> handlerMappings concode_elem_sep HttpSession session concode_elem_sep MockHttpServletResponse http concode_elem_sep ModelAndView modelAndView concode_field_sep Response handle concode_elem_sep MockHttpS...
MockHttpServletRequest function ( final String arg0 ) { MockHttpServletRequest loc0 = new MockHttpServletRequest ( "srini_string" , arg0 ) ; return loc0 ; }
31,455
unbinds the activity from the custom tabs service concode_field_sep ConnectionCallback mConnectionCallback concode_elem_sep CustomTabsClient mClient concode_elem_sep CustomTabsSession mCustomTabsSession concode_elem_sep CustomTabsServiceConnection mConnection concode_field_sep void onCustomTabsDisconnected concode_elem...
void function ( Activity arg0 ) { if ( mConnection == null ) return ; arg0 . unbindService ( mConnection ) ; mClient = null ; mCustomTabsSession = null ; }
31,456
gets the minimum corner of the box . that is the corner of smallest coordinates on each axis . note that the returned reference is not cloned for efficiency purposes so care must be taken not to change the coordinates of the point . concode_field_sep Point3 maximum concode_elem_sep Point3 minimum concode_field_sep void...
Point3 function ( ) { return minimum ; }
31,457
check if argument is true concode_field_sep PlaceHolder placeHolder concode_field_sep T notNull concode_elem_sep String format concode_elem_sep boolean isFalse concode_elem_sep T notEmpty concode_elem_sep T notEmpty concode_elem_sep T notEmpty concode_elem_sep T withinRange
boolean function ( final boolean arg0 , final String arg1 , final Object ... arg2 ) { if ( arg0 == false ) { throw new IllegalArgumentException ( format ( arg1 , arg2 ) ) ; } return arg0 ; }
31,458
change current directory to exe location . concode_field_sep String DOWNLOAD_URL concode_elem_sep String errTitle concode_elem_sep String STAY_ALIVE concode_elem_sep File outfile concode_elem_sep String downloadUrl concode_elem_sep String supportUrl concode_elem_sep File icon concode_elem_sep String ICON concode_elem_s...
String function ( ) { return chdir ; }
31,459
encodes a string into base64 format . no blanks or line breaks are inserted . concode_field_sep char[] map1 concode_elem_sep String systemLineSeparator concode_elem_sep byte[] map2 concode_field_sep char[] encode concode_elem_sep char[] encode concode_elem_sep char[] encode concode_elem_sep byte[] decodeLines concode_e...
String function ( String arg0 ) { return new String ( encode ( arg0 . getBytes ( ) ) ) ; }
31,460
to use a custom routeboxdispatchstrategy which allows to use custom dispatching instead of the default . concode_field_sep long connectionTimeout concode_elem_sep int queueSize concode_elem_sep long pollInterval concode_elem_sep Map<String,String> dispatchMap concode_elem_sep URI uri concode_elem_sep String innerProtoc...
void function ( RouteboxDispatchStrategy arg0 ) { this . dispatchStrategy = arg0 ; }
31,461
returns the name of this cluster group . concode_field_sep ClusterGroup _clusterGroup concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_el...
java . lang . String function ( ) { return _clusterGroup . getName ( ) ; }
31,462
verifies that the given array does not contain the given value at the given index . concode_field_sep Arrays arrays concode_elem_sep Failures failures concode_elem_sep CharArrays INSTANCE concode_field_sep void assertEndsWith concode_elem_sep void assertStartsWith concode_elem_sep CharArrays instance concode_elem_sep v...
void function ( AssertionInfo arg0 , char [ ] arg1 , char arg2 , Index arg3 ) { arrays . assertDoesNotContain ( arg0 , failures , arg1 , arg2 , arg3 ) ; }
31,463
insert a new expiring column to the current row and super column if applicable . concode_field_sep DecoratedKey currentKey concode_elem_sep CFMetaData metadata concode_elem_sep ColumnFamily columnFamily concode_elem_sep ByteBuffer currentSuperColumn concode_elem_sep SSTableFormat.Type formatType concode_elem_sep Atomic...
void function ( ByteBuffer arg0 , ByteBuffer arg1 , long arg2 , int arg3 , long arg4 ) { addColumn ( new BufferExpiringCell ( metadata . comparator . cellFromByteBuffer ( arg0 ) , arg1 , arg2 , arg3 , ( int ) ( arg4 / 1000 ) ) ) ; }
31,464
gets the value of the rotwithshape property . concode_field_sep Integer fadeDir concode_elem_sep Integer stA concode_elem_sep Integer sx concode_elem_sep Integer sy concode_elem_sep Integer endA concode_elem_sep Long dist concode_elem_sep Integer dir concode_elem_sep Integer kx concode_elem_sep Integer ky concode_elem_...
boolean function ( ) { if ( rotWithShape == null ) { return true ; } else { return rotWithShape ; } }
31,465
method declaration concode_field_sep Database dDatabase concode_elem_sep HsqlArrayList tTransaction concode_elem_sep int iNestedOldTransIndex concode_elem_sep int iId concode_elem_sep jdbcConnection intConnection concode_elem_sep boolean script concode_elem_sep boolean bAutoCommit concode_elem_sep boolean bReadOnly con...
boolean function ( ) { return bAutoCommit ; }
31,466
called when the process is ready to receive string data on stdin . before this method returns , you must set the buffer 's charbuffer #position position and charbuffer #limit limit for example , byinvoking charbuffer #flip to indicate how much data is in the buffer before returning from this method . you must first cal...
boolean function ( CharBuffer arg0 ) { return false ; }
31,467
returns the raw challenge value . concode_field_sep String opaque concode_elem_sep ChallengeScheme scheme concode_elem_sep String rawValue concode_elem_sep String QUALITY_AUTHENTICATION_INTEGRITY concode_elem_sep String QUALITY_AUTHENTICATION concode_elem_sep String realm concode_elem_sep String digestAlgorithm concode...
String function ( ) { return this . rawValue ; }
31,468
sets the issuer the attribute certificate must have . if null is given any will do . concode_field_sep Date attributeCertificateValid concode_elem_sep Collection targetNames concode_elem_sep BigInteger serialNumber concode_elem_sep X509AttributeCertificateHolder attributeCert concode_elem_sep AttributeCertificateHolder...
void function ( AttributeCertificateIssuer arg0 ) { this . issuer = arg0 ; }
31,469
allocate a connection concode_field_sep long serialVersionUID concode_field_sep placeholderType placeHolder
Object function ( ManagedConnectionFactory arg0 , ConnectionRequestInfo arg1 ) { return null ; }
31,470
create an instance of timebillsearchrow concode_field_sep QName _TimeSheetSearch_QNAME concode_elem_sep QName _TimeEntry_QNAME concode_elem_sep QName _ExpenseReport_QNAME concode_elem_sep QName _TimeEntrySearch_QNAME concode_elem_sep QName _TimeBill_QNAME concode_elem_sep QName _TimeBillSearch_QNAME concode_elem_sep QN...
TimeBillSearchRow function ( ) { return new TimeBillSearchRow ( ) ; }
31,471
invoked when channel #write object is called . concode_field_sep PlaceHolder placeHolder concode_field_sep void closeRequested concode_elem_sep void handleDownstream concode_elem_sep void unbindRequested concode_elem_sep void connectRequested concode_elem_sep void disconnectRequested concode_elem_sep void bindRequested...
void function ( ChannelHandlerContext arg0 , MessageEvent arg1 ) { arg0 . sendDownstream ( arg1 ) ; }
31,472
sets the cloud client . concode_field_sep MonkeyCalendar calendar concode_elem_sep MonkeyRecorder recorder concode_elem_sep Logger LOGGER concode_elem_sep String secret concode_elem_sep MonkeyScheduler scheduler concode_elem_sep Properties properties concode_elem_sep LinkedList<Event> eventReport concode_elem_sep Strin...
void function ( CloudClient arg0 ) { this . client = ( AWSClient ) arg0 ; }
31,473
assertions that should run before the cluster is wiped should be called in this method concode_field_sep Random random concode_elem_sep long seed concode_elem_sep Logger logger concode_elem_sep double transportClientRatio concode_field_sep void assertAfterTest concode_elem_sep void wipeRepositories concode_elem_sep lon...
void function ( ) { }
31,474
returns true if any options are set in this instance . concode_field_sep Map<String,String> options concode_elem_sep String COMMAND_LINE_FLAGS concode_elem_sep String TIMEOUT_IN_SECONDS concode_elem_sep String MULTI_WINDOW concode_elem_sep String PROFILE_NAME concode_elem_sep String BROWSER_EXECUTABLE_PATH concode_elem...
boolean function ( ) { return ! options . isEmpty ( ) ; }
31,475
set the top and bottom offset for this viewoffsethelper 's view . concode_field_sep Property<ViewOffsetHelper,Integer> OFFSET_Y concode_elem_sep int mLayoutTop concode_elem_sep int mLayoutLeft concode_elem_sep int mOffsetLeft concode_elem_sep View mView concode_elem_sep int mOffsetTop concode_field_sep int getTopAndBot...
boolean function ( int arg0 ) { if ( mOffsetTop != arg0 ) { mOffsetTop = arg0 ; updateOffsets ( ) ; return true ; } return false ; }
31,476
bind consumer to channel concode_field_sep String consumerTag concode_elem_sep boolean stopping concode_elem_sep Channel channel concode_elem_sep Logger log concode_elem_sep String tag concode_elem_sep Semaphore lock concode_elem_sep RabbitMQConsumer consumer concode_field_sep void handleShutdownSignal concode_elem_sep...
void function ( ) { if ( channel == null ) { throw new IOException ( "srini_string" ) ; } tag = channel . basicConsume ( consumer . getEndpoint ( ) . getQueue ( ) , consumer . getEndpoint ( ) . isAutoAck ( ) , this ) ; }
31,477
returns a constant indicating the desired bearing accuracy . accuracy may be #accuracy_low , #accuracy_high , or #no_requirement . concode_field_sep int ACCURACY_COARSE concode_elem_sep int mPowerRequirement concode_elem_sep int POWER_HIGH concode_elem_sep int mHorizontalAccuracy concode_elem_sep int ACCURACY_MEDIUM co...
int function ( ) { return mBearingAccuracy ; }
31,478
sets the max idle . concode_field_sep SharedPoolDataSource dataSource concode_field_sep void setMinEvictableIdleTimeMillis concode_elem_sep void setLoginTimeout concode_elem_sep void setTimeBetweenEvictionRunsMillis concode_elem_sep void setTestWhileIdle concode_elem_sep void setDefaultTransactionIsolation concode_elem...
void function ( @ Named ( "srini_string" ) final int arg0 ) { dataSource . setMaxIdle ( arg0 ) ; }
31,479
computes the key that identifies this hudson among other hudsons that the user has a credential for . concode_field_sep FilePath store concode_elem_sep Properties props concode_field_sep void set concode_elem_sep Authentication get concode_elem_sep void save concode_elem_sep void remove
String function ( ) { String loc0 = Jenkins . getInstance ( ) . getRootUrl ( ) ; if ( loc0 != null ) return loc0 ; return Secret . fromString ( "srini_string" ) . toString ( ) ; }
31,480
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 ( ) ) ; }
31,481
gets whether the scale gesture is enabled or not . concode_field_sep Listener mListener concode_elem_sep TransformGestureDetector mGestureDetector concode_elem_sep boolean mIsRotationEnabled concode_elem_sep boolean mIsTranslationEnabled concode_elem_sep float[] mTempValues concode_elem_sep float mMinScaleFactor concod...
boolean function ( ) { return mIsScaleEnabled ; }
31,482
clears this hashtable so that it contains no keys . concode_field_sep Entry table[] concode_elem_sep Entry next concode_elem_sep float loadFactor concode_elem_sep int count concode_elem_sep int threshold concode_elem_sep Object value concode_elem_sep int hash concode_field_sep boolean contains concode_elem_sep int size...
void function ( ) { Entry loc0 [ ] = table ; for ( int loc1 = loc0 . length ; -- loc1 >= 0 ; ) { loc0 [ loc1 ] = null ; } count = 0 ; }
31,483
return the value of the branchcontractedicon property . concode_field_sep String branchContractedIcon concode_elem_sep boolean expanded concode_elem_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep String action concode_elem_sep DefaultMutableTreeNode wrapper c...
String function ( ) { return branchContractedIcon ; }
31,484
gets full path based on the given parts . concode_field_sep String URL_PART_SEPARATOR concode_elem_sep String NAME_VALUE_SEPARATOR concode_elem_sep String PARAMETER_SEPARATOR concode_elem_sep String QUERY_STRING_SEPARATOR concode_field_sep String extractUri concode_elem_sep String encode concode_elem_sep String extract...
String function ( List < String > arg0 ) { if ( arg0 != null ) { StringBuilder loc0 = new StringBuilder ( ) ; for ( String loc1 : arg0 ) { if ( loc0 . length ( ) > 0 ) { loc0 . append ( URL_PART_SEPARATOR ) ; } loc0 . append ( loc1 ) ; } return loc0 . toString ( ) ; } return "srini_string" ; }
31,485
indicates whether this factory can support a row comprised of the identified classes concode_field_sep FormatFactory formatFactory concode_elem_sep Set<Class<?>> models concode_elem_sep Map<String,List<Field>> annotatedLinkFields concode_elem_sep String crlf concode_elem_sep Logger LOG concode_elem_sep Set<String> mode...
boolean function ( Set < String > arg0 ) { return modelClassNames . containsAll ( arg0 ) ; }
31,486
gets the value of the npainfo property . concode_field_sep BigDecimal rateplanPrice concode_elem_sep XMLGregorianCalendar serviceBeginDate concode_elem_sep List<Service> selectedService concode_elem_sep FreeIndicatorEnum myFavesIndicator concode_elem_sep NpaNxx npaInfo concode_elem_sep BigInteger lineId concode_elem_se...
NpaNxx function ( ) { return npaInfo ; }
31,487
apply the xpath expression and assert the resulting content with the given hamcrest matcher . concode_field_sep String expression concode_elem_sep XPathExpression xpathExpression concode_elem_sep boolean hasNamespaces concode_field_sep XPathExpression getXpathExpression concode_elem_sep XPathExpression compileXpathExpr...
void function ( byte [ ] arg0 , String arg1 , Matcher < Integer > arg2 ) { Document loc0 = parseXmlByteArray ( arg0 , arg1 ) ; NodeList loc1 = evaluateXpath ( loc0 , XPathConstants . NODESET , NodeList . class ) ; assertThat ( "srini_string" + this . expression , loc1 . getLength ( ) , arg2 ) ; }
31,488
. concode_field_sep PlaceHolder placeHolder concode_field_sep Executor getSubProjectExecutor
void function ( Project arg0 , String [ ] arg1 ) { arg0 . executeSortedTargets ( arg0 . topoSort ( arg1 , arg0 . getTargets ( ) , false ) ) ; }
31,489
progress condition : blocking concode_field_sep CRWWPLock crwwpLock concode_elem_sep TreeSet<E> treeSet concode_field_sep boolean contains concode_elem_sep boolean addAll concode_elem_sep boolean remove
boolean function ( E arg0 ) { crwwpLock . writeLock ( ) . lock ( ) ; try { return treeSet . add ( arg0 ) ; } finally { crwwpLock . writeLock ( ) . unlock ( ) ; } }
31,490
sets the component list . concode_field_sep SelectItem[] componentList concode_elem_sep NodeUserObject selectedNodeObject concode_elem_sep DefaultMutableTreeNode rootTreeNode concode_elem_sep DefaultTreeModel model concode_elem_sep Integer componentToAdd concode_elem_sep int labelCount concode_elem_sep String selectedN...
void function ( SelectItem [ ] arg0 ) { this . componentList = arg0 ; }
31,491
pipeline close : dn0 throws an outofmemoryexception right after it received a close request from client . client gets an ioexception and determine dn0 bad . concode_field_sep PlaceHolder placeHolder concode_field_sep void pipeline_Fi_38 concode_elem_sep void pipeline_Fi_49 concode_elem_sep void pipeline_Fi_39 concode_e...
void function ( ) { final String loc0 = FiTestUtil . getMethodName ( ) ; runPipelineCloseTest ( loc0 , new OomAction ( loc0 , 0 ) ) ; }
31,492
returns true if the given state is currently active otherwise false . concode_field_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean f concode_elem_sep boolean i1 concode_elem_sep boolean i2 concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep voi...
boolean function ( State arg0 ) { switch ( arg0 ) { case r1_A : return stateVector [ 0 ] == State . r1_A ; case r1_B : return stateVector [ 0 ] == State . r1_B ; case r2_C : return stateVector [ 1 ] == State . r2_C ; case r2_D : return stateVector [ 1 ] == State . r2_D ; default : return false ; } }
31,493
return the address as a string . concode_field_sep String path concode_elem_sep boolean abs concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String getPath concode_elem_sep boolean isAbstract
String function ( ) { return "srini_string" + ( abs ? "srini_string" : "srini_string" ) + "srini_string" + path ; }
31,494
empty concode_field_sep List<Object> EMPTY_LIST concode_field_sep int getLastIndex concode_elem_sep T getFirst concode_elem_sep boolean isLastIndex concode_elem_sep Collection<T> nullSafe concode_elem_sep boolean notEmpty concode_elem_sep int nullSafeSize concode_elem_sep T getLast concode_elem_sep boolean nullSafeSame...
boolean function ( Collection < T > arg0 ) { return arg0 == null || arg0 . isEmpty ( ) ; }
31,495
get the maximum width of the column . a return value of -1 indicates that the column has no maximum width , but the consumer of the data may impose one anyway . concode_field_sep ColumnPropertyManager properties concode_elem_sep CellEditor<ColType> cellEditor concode_elem_sep CellRenderer DEFAULT_CELL_RENDERER concode_...
int function ( ) { return getColumnProperty ( MaximumWidthProperty . TYPE ) . getMaximumColumnWidth ( ) ; }
31,496
get the type of this command . concode_field_sep Logger LOG concode_field_sep int getMaximalArgsCountNeeded concode_elem_sep boolean canExecute concode_elem_sep int getMinimalArgsCountNeeded concode_elem_sep void execute
CmdType function ( ) { return CmdType . COMMAND ; }
31,497
converts a string in jdbc date escape format to a time value . concode_field_sep java.text.SimpleDateFormat sdfts concode_elem_sep String sdfdPattern concode_elem_sep String sdftsPattern concode_elem_sep String sdftPattern concode_field_sep Date dateValue concode_elem_sep String getDateString concode_elem_sep Time getT...
Time function ( String arg0 ) { if ( arg0 == null ) { throw new java . lang . IllegalArgumentException ( "srini_string" ) ; } if ( arg0 . toUpperCase ( ) . equals ( "srini_string" ) || arg0 . toUpperCase ( ) . equals ( "srini_string" ) ) { return new Time ( System . currentTimeMillis ( ) ) ; } return Time . valueOf ( a...
31,498
returns the underlying ptextbuffer model . concode_field_sep int lastValidLineIndex concode_elem_sep ArrayList<PLineListener> listeners concode_elem_sep int start concode_elem_sep int length concode_elem_sep int width concode_elem_sep PTextBuffer text concode_elem_sep ArrayList<Line> lines concode_elem_sep int INVALID_...
PTextBuffer function ( ) { return text ; }
31,499
finds reference to a snapshotted file by its snapshot name concode_field_sep BlobStoreIndexShardSnapshots PROTO concode_elem_sep List<SnapshotFiles> shardSnapshots concode_elem_sep String SNAPSHOTS concode_elem_sep String FILES concode_elem_sep ParseField FILES concode_elem_sep Map<String,FileInfo> files concode_elem_s...
FileInfo function ( String arg0 ) { return files . get ( arg0 ) ; }