idx
int64
0
25k
question
stringlengths
68
5.61k
target
stringlengths
21
500
3,400
load job token from a file concode_field_sep String JOB_TOKENS_FILENAME concode_elem_sep Text JOB_TOKEN concode_elem_sep String JOB_TOKEN_HDFS_FILE concode_elem_sep Text ENC_SPILL_KEY concode_elem_sep Log LOG concode_elem_sep Text SHUFFLE_TOKEN concode_field_sep byte[] getSecretKey concode_elem_sep byte[] getShuffleSec...
Credentials function ( String arg0 , Configuration arg1 ) { return loadTokens ( arg0 , new JobConf ( arg1 ) ) ; }
3,401
saves parameters for startactivityforresult . concode_field_sep Activity activity concode_elem_sep CordovaPlugin permissionResultCallback concode_elem_sep int resultCode concode_elem_sep int activityResultRequestCode concode_elem_sep Intent intent concode_elem_sep Bundle savedPluginState concode_elem_sep String TAG con...
void function ( Bundle arg0 ) { if ( activityResultCallback != null ) { String loc0 = activityResultCallback . getServiceName ( ) ; arg0 . putString ( "srini_string" , loc0 ) ; } if ( pluginManager != null ) { arg0 . putBundle ( "srini_string" , pluginManager . onSaveInstanceState ( ) ) ; } }
3,402
get value for a given metadata key . concode_field_sep IPADictionarySPI impl concode_elem_sep ExtensionSupport extSupport concode_elem_sep Logger LOGGER concode_field_sep String[] lookup concode_elem_sep void removeEntry concode_elem_sep Language getLanguage concode_elem_sep T removeExtension concode_elem_sep Iterator<...
String function ( String arg0 ) { String loc0 = null ; Metadata loc1 = getExtension ( Metadata . class ) ; if ( loc1 != null ) { loc0 = loc1 . getMetadataValue ( arg0 ) ; } return loc0 ; }
3,403
converts the given distance from the given distanceunit , to the given 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 doubl...
double function ( double arg0 , DistanceUnit arg1 , DistanceUnit arg2 ) { if ( arg1 == arg2 ) { return arg0 ; } else { return arg0 * arg1 . meters / arg2 . meters ; } }
3,404
returns the vertical advance value . concode_field_sep String orientation concode_elem_sep TextPaintInfo cacheTPI concode_elem_sep GraphicsNode glyphChildrenNode concode_elem_sep int glyphCode concode_elem_sep TextPaintInfo tpi concode_elem_sep Point2D vertOrigin concode_elem_sep AffineTransform transform concode_elem_...
float function ( ) { return vertAdvY ; }
3,405
computes the display string for any value . concode_field_sep FormattingConversionService conversion concode_field_sep T parse concode_elem_sep T parse concode_elem_sep T parse concode_elem_sep T parse concode_elem_sep void register concode_elem_sep void register
String function ( T arg0 ) { if ( arg0 == null ) { return "srini_string" ; } if ( conversion . canConvert ( arg0 . getClass ( ) , String . class ) ) { return conversion . convert ( arg0 , String . class ) ; } else { return arg0 . toString ( ) ; } }
3,406
run a target then verify the named file gets created concode_field_sep String TASKDEFS_DIR concode_elem_sep BuildFileRule buildRule concode_field_sep void testJasperNameManglerSelection concode_elem_sep void testUriroot concode_elem_sep void assertJavaFileCreated concode_elem_sep void assertMapped concode_elem_sep void...
void function ( String arg0 , String arg1 ) { buildRule . executeTarget ( arg0 ) ; assertJavaFileCreated ( arg1 ) ; }
3,407
get items count concode_field_sep int count concode_elem_sep int first concode_field_sep boolean contains concode_elem_sep int getFirst concode_elem_sep int getLast
int function ( ) { return count ; }
3,408
returns the usage info for the location with the given id , or null if unknown . concode_field_sep Logger log concode_elem_sep List<UsageListener> listeners concode_elem_sep String LOCATION_USAGE_KEY concode_elem_sep Object mutex concode_elem_sep ListeningExecutorService listenerExecutor concode_elem_sep String APPLICA...
ApplicationUsage function ( String arg0 ) { BrooklynStorage loc0 = managementContext . getStorage ( ) ; Map < String , ApplicationUsage > loc1 = loc0 . getMap ( APPLICATION_USAGE_KEY ) ; return loc1 . get ( arg0 ) ; }
3,409
delete the object with id concode_field_sep SessionFactory sessionFactory concode_elem_sep Class<T> persistentClass concode_field_sep Optional<T> get concode_elem_sep void save concode_elem_sep void create
void function ( long arg0 ) { Optional < T > loc0 = get ( arg0 ) ; if ( loc0 . isPresent ( ) ) sessionFactory . getCurrentSession ( ) . delete ( loc0 . get ( ) ) ; ; }
3,410
closes the specified stream . concode_field_sep String PREFERENCES_EULA concode_elem_sep String PREFERENCE_EULA_ACCEPTED concode_field_sep void showDisclaimer concode_elem_sep void refuse concode_elem_sep void showEula concode_elem_sep CharSequence readFile concode_elem_sep void accept
void function ( Closeable arg0 ) { if ( arg0 != null ) { try { arg0 . close ( ) ; } catch ( IOException loc0 ) { } } }
3,411
create an instance of identifier concode_field_sep QName _SubjectList_QNAME concode_field_sep Subject createSubject concode_elem_sep Log createLog concode_elem_sep ReplicationPolicy createReplicationPolicy concode_elem_sep ObjectLocationList createObjectLocationList concode_elem_sep Checksum createChecksum concode_elem...
Identifier function ( ) { return new Identifier ( ) ; }
3,412
get the type of this message concode_field_sep int COLOR_DEFAULT concode_elem_sep int TYPE_MISC concode_elem_sep SpannableString canvas concode_elem_sep int COLOR_GREY concode_elem_sep int type concode_elem_sep int NO_TYPE concode_elem_sep int COLOR_GREEN concode_elem_sep int TYPE_MESSAGE concode_elem_sep int NO_ICON c...
int function ( ) { return type ; }
3,413
check the interviewer 's verification when logging in and assign the attributes . concode_field_sep Logger LOGGER concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep String loginTime concode_elem_sep StudySpace studySpace concode_elem_sep String id concode_elem_sep String salutation conc...
Interviewer function ( StudySpace arg0 , String arg1 , String arg2 ) { return arg0 . verifyInterviewer ( arg1 , arg2 ) ; }
3,414
this is the method used to send the leader publish message concode_field_sep PlaceHolder placeHolder concode_field_sep void sendPing concode_elem_sep LeaderInterface getLeaderInterface concode_elem_sep void sendRequestNotAccepted concode_elem_sep void main concode_elem_sep void unregisterListenerWithLeader concode_elem...
void function ( String arg0 ) { LeaderInterface loc0 = getLeaderInterface ( arg0 ) ; loc0 . electedLeader ( Message . getInstance ( ) . getLeaderPublishMessage ( ) ) ; System . out . println ( loc0 . getStatus ( ) ) ; System . out . println ( "srini_string" + arg0 ) ; }
3,415
returns the data store ` config ' value . concode_field_sep String resource concode_elem_sep String location concode_elem_sep String config concode_elem_sep int version concode_elem_sep boolean enabled concode_field_sep int getVersion concode_elem_sep void setEnabled concode_elem_sep String getResource concode_elem_sep...
String function ( ) { return config ; }
3,416
get the platformfaultdomain value . concode_field_sep List<VirtualMachineExtensionInstanceView> extensions concode_elem_sep List<DiskInstanceView> disks concode_elem_sep List<InstanceViewStatus> statuses concode_elem_sep BootDiagnosticsInstanceView bootDiagnostics concode_elem_sep Integer platformUpdateDomain concode_e...
Integer function ( ) { return this . platformFaultDomain ; }
3,417
generate a link and text for a reference to a particular location in a source file . selecting the link should take the programmer to a browsable version of the file . concode_field_sep NameReferenceGraph graph concode_field_sep void generateType concode_elem_sep int compare concode_elem_sep void generateDeclarationRep...
void function ( StringBuilder arg0 , String arg1 , int arg2 , int arg3 ) { assert ( arg1 != null ) ; arg0 . append ( "srini_string" ) ; arg0 . append ( arg1 + "srini_string" + arg2 + "srini_string" + arg3 ) ; arg0 . append ( "srini_string" ) ; }
3,418
sets the title of this announcements entry . concode_field_sep AnnouncementsEntry _announcementsEntry concode_field_sep long getClassNameId concode_elem_sep boolean getAlert concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep v...
void function ( java . lang . String arg0 ) { _announcementsEntry . setTitle ( arg0 ) ; }
3,419
produce a jsonobject from a row of comma delimited text , using a parallel jsonarray of strings to provides the names of the elements . concode_field_sep PlaceHolder placeHolder concode_field_sep String getValue concode_elem_sep JSONArray toJSONArray concode_elem_sep JSONArray toJSONArray concode_elem_sep JSONArray toJ...
JSONObject function ( JSONArray arg0 , JSONTokener arg1 ) { JSONArray loc0 = rowToJSONArray ( arg1 ) ; return loc0 != null ? loc0 . toJSONObject ( arg0 ) : null ; }
3,420
here , we attempt to get the password from the private alias/passwords map . concode_field_sep Map<String,String> passwords concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep String getPasswordType concode_elem_sep String getIdentifier concode_elem_sep void setAliasPassword
void function ( Callback [ ] arg0 ) { String loc0 = "srini_string" ; for ( Callback loc1 : arg0 ) { String loc2 = passwords . get ( getIdentifier ( loc1 ) ) ; if ( loc2 != null ) { setPassword ( loc1 , loc2 ) ; return ; } } throw new IOException ( "srini_string" + loc0 ) ; }
3,421
invoked when the view has been hidden . this might happen because another view is placed over the top of it , or because an internal frame is iconified . concode_field_sep PlaceHolder placeHolder concode_field_sep void viewClosed concode_elem_sep void viewMoved concode_elem_sep void viewShown concode_elem_sep void view...
void function ( ViewEvent arg0 ) { }
3,422
gets the shared slot into which this constraint 's tasks are places . concode_field_sep boolean locationLocked concode_elem_sep SharedSlot sharedSlot concode_elem_sep CoLocationGroup group concode_field_sep Instance getLocation concode_elem_sep boolean isAssigned concode_elem_sep void lockLocation concode_elem_sep bool...
SharedSlot function ( ) { return sharedSlot ; }
3,423
loads a class from the specified classloader without throwing @classnotfoundexception . concode_field_sep PlaceHolder placeHolder concode_field_sep Class<?> loadClass concode_elem_sep Class<?> loadClass concode_elem_sep Class<?> loadClass
Class < ? > function ( ClassLoader arg0 , String arg1 ) { Class < ? > loc0 = null ; if ( arg0 != null && arg1 != null ) { try { loc0 = arg0 . loadClass ( arg1 ) ; } catch ( ClassNotFoundException loc1 ) { } } return loc0 ; }
3,424
gets the value of the clazz property . concode_field_sep MimeTypeDefinitionsDto mimeTypeDefinitions concode_elem_sep String clazz concode_field_sep void setClazz concode_elem_sep MimeTypeDefinitionsDto getMimeTypeDefinitions concode_elem_sep void setMimeTypeDefinitions
String function ( ) { return clazz ; }
3,425
get boolean preferences , default is false concode_field_sep String PREFERENCE_NAME concode_field_sep long getLong concode_elem_sep long getLong concode_elem_sep int getInt concode_elem_sep int getInt concode_elem_sep boolean putFloat concode_elem_sep boolean putInt concode_elem_sep boolean putString concode_elem_sep S...
boolean function ( Context arg0 , String arg1 ) { return getBoolean ( arg0 , arg1 , false ) ; }
3,426
hash code is valid only until a modification to the cache concode_field_sep Node nPrimaryNode concode_elem_sep Object[] oData concode_elem_sep int iPos concode_field_sep int getRealSize concode_elem_sep int getStorageSize concode_elem_sep void keepInMemory concode_elem_sep void setInMemory concode_elem_sep void delete ...
int function ( ) { return iPos ; }
3,427
converts long representation to bytes . uses provided byte with length at least 4 . lsb in long will be 1st bit in byte 0 . concode_field_sep double BIG_ENOUGH_ROUND concode_elem_sep int BIG_ENOUGH_INT concode_elem_sep double BIG_ENOUGH_FLOOR concode_field_sep String toBinaryString concode_elem_sep long byte2long conco...
void function ( byte [ ] arg0 , long arg1 ) { arg0 [ 0 ] = ( byte ) ( arg1 & 0xFF ) ; arg0 [ 1 ] = ( byte ) ( ( arg1 >>> 8 ) & 0xFF ) ; arg0 [ 2 ] = ( byte ) ( ( arg1 >>> 16 ) & 0xFF ) ; arg0 [ 3 ] = ( byte ) ( ( arg1 >>> 24 ) & 0xFF ) ; }
3,428
sets the value in the cell at columnindex and rowindex to avalue . ignored . concode_field_sep HashSet m_Listeners concode_elem_sep Object[][] m_Data concode_elem_sep ResultSetHelper m_Helper concode_field_sep boolean isNumericAt concode_elem_sep boolean isNullAt concode_elem_sep void addTableModelListener concode_elem...
void function ( Object arg0 , int arg1 , int arg2 ) { }
3,429
create a new font formatting structure if it does not exist , otherwise just return existing object . concode_field_sep HSSFWorkbook workbook concode_elem_sep byte CELL_COMPARISON concode_elem_sep CFRuleRecord cfRuleRecord concode_field_sep byte getConditionType concode_elem_sep HSSFFontFormatting getFontFormatting con...
HSSFFontFormatting function ( ) { return getFontFormatting ( true ) ; }
3,430
gets the pe map . concode_field_sep List<? extends Pe> peList concode_elem_sep List<String> vmsMigratingIn concode_elem_sep double availableMips concode_elem_sep List<String> vmsMigratingOut concode_elem_sep Map<String,List<Pe>> peMap concode_elem_sep Map<String,List<Double>> mipsMap concode_field_sep List<T> getPeList...
Map < String , List < Pe >> function ( ) { return peMap ; }
3,431
return true if there is another next page with more results . you can iterate to the next page and get more results by calling to #getnext method . concode_field_sep Cursor<T> mCursor concode_field_sep Cursor<T> getCursor concode_elem_sep void onFail concode_elem_sep boolean hasPrev concode_elem_sep int getPageNum conc...
boolean function ( ) { if ( mCursor != null ) { return mCursor . hasNext ( ) ; } return false ; }
3,432
adapts a btcchinaorder to a limitorder concode_field_sep int ORDERS_MARKET_KEY_PREFIX_LENGTH concode_elem_sep int TICKER_MARKET_KEY_PREFIX_LENGTH concode_field_sep Trade adaptTrade concode_elem_sep Wallet adaptWallet concode_elem_sep AccountInfo adaptAccountInfo concode_elem_sep Ticker adaptTicker concode_elem_sep Tick...
LimitOrder function ( BigDecimal arg0 , BigDecimal arg1 , CurrencyPair arg2 , OrderType arg3 ) { return new LimitOrder ( arg3 , arg0 , arg2 , "srini_string" , null , arg1 ) ; }
3,433
create an instance of arrayofkeyvalueoffeaturevendorserverarrayofkeyvaluepairofslimdatetimeintbqsusewpudm6eh4v.keyvalueoffeaturevendorserverarrayofkeyvaluepairofslimdatetimeintbqsusewpudm6eh4v concode_field_sep QName _ArrayOfstring_QNAME concode_elem_sep QName _ArrayOfKeyValueOfFeatureVendorServerArrayOfSessionsAggrega...
ArrayOfKeyValueOfFeatureVendorServerArrayOfKeyValuePairOfSlimDateTimeintbqsusEwPUdM6Eh4V . KeyValueOfFeatureVendorServerArrayOfKeyValuePairOfSlimDateTimeintbqsusEwPUdM6Eh4V function ( ) { return new ArrayOfKeyValueOfFeatureVendorServerArrayOfKeyValuePairOfSlimDateTimeintbqsusEwPUdM6Eh4V . KeyValueOfFeatureVendorServerA...
3,434
check if logging is enabled for the passed class based on the error level provider by the passed object concode_field_sep LogHelper s_aInstance concode_field_sep void log concode_elem_sep void log concode_elem_sep void log concode_elem_sep void log concode_elem_sep void log concode_elem_sep void log concode_elem_sep vo...
boolean function ( @ Nonnull final Class < ? > arg0 , @ Nonnull final IHasErrorLevel arg1 ) { return isEnabled ( LoggerFactory . getLogger ( arg0 ) , arg1 . getErrorLevel ( ) ) ; }
3,435
gets the rootid property . concode_field_sep String rootId concode_elem_sep String name concode_elem_sep String isSynthetic concode_elem_sep String id concode_elem_sep String parentId concode_elem_sep String syntheticSource concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String getId con...
String function ( ) { return this . rootId ; }
3,436
parses a block command like foreach/if . concode_field_sep Pattern foreachPattern concode_elem_sep SqlFileScanner y concode_field_sep void process concode_elem_sep TokenList seekTokenSource concode_elem_sep void main concode_elem_sep void processBlock concode_elem_sep boolean isNestingCommand
TokenList function ( String arg0 ) { if ( arg0 . trim ( ) . startsWith ( "srini_string" ) ) { return seekTokenSource ( "srini_string" ) ; } throw new RuntimeException ( "srini_string" + arg0 ) ; }
3,437
sets the value of the chf property . concode_field_sep Long chf concode_elem_sep Long che concode_elem_sep Object parent concode_elem_sep Long cff concode_elem_sep Long cfe concode_elem_sep Long lhe concode_elem_sep Long lfe concode_elem_sep Long lhf concode_elem_sep Long cho concode_elem_sep Long lff concode_elem_sep ...
void function ( Long arg0 ) { this . chf = arg0 ; }
3,438
retrieves the map object that represents the rights that have been granted on database objects . the map has keys and values with the following interpretation : the keys are generally but not limited to objects having an attribute or value equal to the name of an actual database object . specifically , the keys act as ...
IntValueHashMap function ( ) { return grantee . getRights ( ) ; }
3,439
returns the underlying outputstream . concode_field_sep EnumSet<Mode> MODES concode_elem_sep OutputStream stream concode_elem_sep Pattern PATTERN concode_elem_sep String MODE_PATTERN concode_elem_sep String MODE_PREFIX concode_elem_sep Logger LOG concode_elem_sep PrintWriter writer concode_elem_sep AnsiTerminal termina...
OutputStream function ( ) { return stream ; }
3,440
returns the frame checksum as contained in the frame . the returned checksum is taken from the frame `` as is '' , it is not recalculated for validation nor checked for correctness . the length and structure of the returned checksum depends on the communication medium . concode_field_sep boolean ext concode_elem_sep Pr...
int function ( ) { return fcs ; }
3,441
gets the value of the description property . concode_field_sep String entityBean concode_elem_sep List<Extension> extensions concode_elem_sep List<ContainerManagedEntity> entityBeans concode_elem_sep String description concode_elem_sep String id concode_elem_sep String href concode_elem_sep String label concode_elem_se...
String function ( ) { return description ; }
3,442
private helper method to access the level object . concode_field_sep String GAME_STATE_KEY concode_elem_sep Game game concode_elem_sep Point hoverPoint concode_elem_sep Point start concode_elem_sep long timeStarted_sec concode_elem_sep Point end concode_elem_sep Stack<Move> undoStack concode_elem_sep User user concode_...
Level function ( ) { LevelManager loc0 = LevelManager . getInstance ( ) ; return loc0 . getLevel ( game . getLevel ( ) ) ; }
3,443
sets the state machine reference of the event . concode_field_sep boolean periodic concode_elem_sep int index concode_elem_sep ITimedStatemachine statemachine concode_field_sep boolean isPeriodic concode_elem_sep ITimedStatemachine getStatemachine concode_elem_sep int getIndex
void function ( ITimedStatemachine arg0 ) { this . statemachine = arg0 ; }
3,444
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 ; }
3,445
getter for servicename1 concode_field_sep String lastName concode_elem_sep AddressType address concode_elem_sep String pageStyle concode_elem_sep String serviceDefReq1 concode_elem_sep String serviceName2 concode_elem_sep String initFlowType concode_elem_sep String serviceName1 concode_elem_sep String serviceDefReq2 co...
String function ( ) { return serviceName1 ; }
3,446
check whether rserve is currently running on local machine and default port . concode_field_sep String DEFAULT_REPOS concode_elem_sep Logger logger concode_elem_sep Process rProcess concode_field_sep boolean checkLocalRserve concode_elem_sep boolean doInR concode_elem_sep boolean isRserveInstalled concode_elem_sep void...
boolean function ( ) { try { RConnection loc0 = new RConnection ( ) ; logger . debug ( "srini_string" ) ; loc0 . close ( ) ; return true ; } catch ( Exception loc0 ) { logger . debug ( "srini_string" + loc0 . getMessage ( ) ) ; } return false ; }
3,447
generate select where columns = ? cql . concode_field_sep PlaceHolder placeHolder concode_field_sep int size concode_elem_sep boolean isWhereClause concode_elem_sep T applyConsistencyLevel concode_elem_sep boolean isEmpty concode_elem_sep boolean isEmpty concode_elem_sep Delete generateDelete concode_elem_sep Delete ge...
Select function ( String arg0 , String [ ] arg1 , String [ ] arg2 ) { return generateSelect ( arg0 , arg1 , arg2 , size ( arg2 ) ) ; }
3,448
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...
HsqlProperties function ( String arg0 ) { if ( StringUtil . isEmpty ( arg0 ) ) { return null ; } HsqlProperties loc0 = new HsqlProperties ( arg0 ) ; try { loc0 . load ( ) ; } catch ( Exception loc1 ) { } return loc0 ; }
3,449
returns the transition end of the input arc concode_field_sep PlaceHolder placeHolder concode_field_sep List<Transition> getIncomingTransitions concode_elem_sep LinkedList<Node> getOutgoingNodesOfOutgoingNodes concode_elem_sep Vector<Place> getOutgoingPlaces concode_elem_sep LinkedList<Node> getOutgoingNodes concode_el...
Transition function ( Edge arg0 ) { if ( arg0 . getHead ( ) instanceof Transition ) return ( Transition ) arg0 . getHead ( ) ; return ( Transition ) arg0 . getTail ( ) ; }
3,450
gets the value of the displayname property . concode_field_sep List<EntryType> entries concode_elem_sep DisplayNameType displayName concode_elem_sep List<ListType> lists concode_elem_sep String name concode_elem_sep List<ExternalType> externals concode_elem_sep Map<QName,String> anyAttributes concode_elem_sep List<Elem...
DisplayNameType function ( ) { return displayName ; }
3,451
returns auto increment sql template . concode_field_sep String aliasHeaderSuffix concode_elem_sep JDBCFunctionMappingMetaData pkConstraint concode_elem_sep String[] PRIMITIVE_CLASSES concode_elem_sep String LENGTH concode_elem_sep String CONCAT concode_elem_sep JDBCFunctionMappingMetaData rowLocking concode_elem_sep St...
JDBCFunctionMappingMetaData function ( ) { return autoIncrement ; }
3,452
the textual error message . concode_field_sep WorkspaceRequest workspaceRequest concode_elem_sep String errorMessage concode_elem_sep String errorCode concode_field_sep void setErrorMessage concode_elem_sep WorkspaceRequest getWorkspaceRequest concode_elem_sep FailedCreateWorkspaceRequest withErrorCode concode_elem_sep...
FailedCreateWorkspaceRequest function ( String arg0 ) { setErrorMessage ( arg0 ) ; return this ; }
3,453
returns all rwesmarthomebindingproviders . concode_field_sep boolean bindingChanged concode_elem_sep RWESmarthomeContext instance concode_elem_sep StateHolder stateHolder concode_elem_sep Logger logger concode_elem_sep RWESmarthomeConfig config concode_elem_sep EventPublisher eventPublisher concode_elem_sep RWESmarthom...
Collection < RWESmarthomeBindingProvider > function ( ) { return providers ; }
3,454
number of entries including those with same key concode_field_sep CBuffer value concode_elem_sep Enumeration<String> EMPTY concode_elem_sep CBuffer key concode_elem_sep CBuffer tmpKey concode_elem_sep BBuffer valueB concode_elem_sep List<Entry> entries concode_elem_sep int count concode_elem_sep Iterator keyI concode_e...
int function ( ) { return count ; }
3,455
returns the number of non-null values in a , b . concode_field_sep PlaceHolder placeHolder concode_field_sep void checkElementsNotNull concode_elem_sep void checkElementsNotNull concode_elem_sep IllegalStateException missingRequiredFields concode_elem_sep List<T> newMutableList concode_elem_sep Map<K,V> newMutableMap c...
int function ( Object arg0 , Object arg1 ) { return ( arg0 != null ? 1 : 0 ) + ( arg1 != null ? 1 : 0 ) ; }
3,456
should the pointcut apply to the given interface or target class ? concode_field_sep TypePatternMatcher aspectJTypePatternMatcher concode_elem_sep String typePattern concode_field_sep String getTypePattern concode_elem_sep String replaceBooleanOperators concode_elem_sep void setTypePattern
boolean function ( Class < ? > arg0 ) { if ( this . aspectJTypePatternMatcher == null ) { throw new IllegalStateException ( "srini_string" ) ; } return this . aspectJTypePatternMatcher . matches ( arg0 ) ; }
3,457
replace a random part of the string with another text . concode_field_sep Random random concode_field_sep int[] getPermutation concode_elem_sep int getInt concode_elem_sep int getNonUniform concode_elem_sep BigDecimal getBigDecimal concode_elem_sep boolean[] getBoolean concode_elem_sep String[] getAddress concode_elem_...
String function ( String arg0 , String arg1 ) { int loc0 = getInt ( 0 , arg0 . length ( ) - arg1 . length ( ) ) ; StringBuilder loc1 = new StringBuilder ( arg0 ) ; loc1 . replace ( loc0 , loc0 + 7 , arg1 ) ; return loc1 . toString ( ) ; }
3,458
writes a data-record to the file . note that data must have same number of elements as the header had . concode_field_sep int nbrCols concode_elem_sep int nbrRows concode_elem_sep String newline concode_elem_sep OutputStreamWriter writer concode_field_sep void writeHeader concode_elem_sep String toCsvValue concode_elem...
void function ( String [ ] arg0 ) { doWriteData ( arg0 ) ; }
3,459
gets the value of the returncode property . concode_field_sep BigInteger returnCode concode_elem_sep String returnReason concode_elem_sep String cardType concode_elem_sep Boolean creditCardEligible concode_elem_sep long serialVersionUID concode_elem_sep String category concode_elem_sep Boolean pinEligible concode_field...
BigInteger function ( ) { return returnCode ; }
3,460
allows plugins to handle a link being clicked . return true here to cancel the navigation . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode...
boolean function ( String arg0 ) { return false ; }
3,461
test if a field has the provided annotation concode_field_sep ClassPool classPool concode_field_sep void createAnnotation concode_elem_sep void createAnnotation concode_elem_sep CtClass makeClass concode_elem_sep URL find concode_elem_sep boolean isAnon concode_elem_sep boolean isScala concode_elem_sep ClassPool newCla...
boolean function ( CtField arg0 , String arg1 ) { for ( Object loc0 : arg0 . getAvailableAnnotations ( ) ) { Annotation loc1 = ( Annotation ) loc0 ; if ( loc1 . annotationType ( ) . getName ( ) . equals ( arg1 ) ) { return true ; } } return false ; }
3,462
return the weight of the minimum cut concode_field_sep double bestCutWeight concode_elem_sep Set<V> vertex concode_elem_sep WeightedGraph<Set<V>,DefaultWeightedEdge> workingGraph concode_elem_sep Set<V> bestCut concode_elem_sep Double weight concode_elem_sep boolean active concode_field_sep double vertexWeight concode_...
double function ( ) { return bestCutWeight ; }
3,463
gets called by the sveventhandler of the window to actually show the content of the popup menu . concode_field_sep SVWindow svWindow concode_elem_sep JPopupMenu root concode_elem_sep HashMap<String,SVAbstractMenuItem> items concode_field_sep void add concode_elem_sep void add concode_elem_sep void actionPerformed
void function ( Component arg0 , int arg1 , int arg2 ) { root . show ( arg0 , arg1 , arg2 ) ; }
3,464
returns methods annotated by a given annotation concode_field_sep PlaceHolder placeHolder concode_field_sep Filter<T> all concode_elem_sep Filter<T> not concode_elem_sep Filter<T> or concode_elem_sep Filter<Field> fieldsAccepting concode_elem_sep Filter<Field> fieldsAnnotatedBy concode_elem_sep Filter<T> and concode_el...
Filter < Method > function ( final Class < ? extends Annotation > arg0 ) { notNull ( "srini_string" , arg0 ) ; return new Filter < Method > ( ) { @ Override public boolean accept ( Method arg1 ) { return arg1 . isAnnotationPresent ( arg0 ) ; } } ; }
3,465
adds semantic checks to the default deserialization method . this method must have the standard signature for a readobject method , and the body of the method must begin with `` s.defaultreadobject ; '' . other than that , any semantic checks can be specified and do not need to stay the same from version to version . a...
void function ( ObjectInputStream arg0 ) { arg0 . defaultReadObject ( ) ; if ( bayesIm == null ) { throw new NullPointerException ( ) ; } if ( evidence == null ) { throw new NullPointerException ( ) ; } }
3,466
this implementation returns null concode_field_sep PlaceHolder placeHolder concode_field_sep void configureDefaultServletHandling concode_elem_sep void configureViewResolvers concode_elem_sep void configureContentNegotiation concode_elem_sep void addFormatters concode_elem_sep void extendMessageConverters concode_elem_...
Validator function ( ) { return null ; }
3,467
sets the value of the t property . concode_field_sep String val concode_elem_sep Object parent concode_elem_sep STDdeValueType t concode_field_sep Object getParent concode_elem_sep String getVal concode_elem_sep void afterUnmarshal concode_elem_sep void setParent concode_elem_sep void setVal concode_elem_sep STDdeValue...
void function ( STDdeValueType arg0 ) { this . t = arg0 ; }
3,468
the class of the panel to be shown in the playlist window concode_field_sep ResourceBundle i18n concode_elem_sep float relevanceSum concode_elem_sep SongGroup[] chanceArray concode_elem_sep Song[] recentSongs concode_elem_sep int ARRAY_SIZE concode_elem_sep boolean DEBUG concode_elem_sep PropertyChangeSupport propertyL...
Class function ( ) { return DynamicPlaylistEditPanel . class ; }
3,469
return the configured logging period frequency in milliseconds . concode_field_sep ThreadPoolExecutor outboundChannelExecutor concode_elem_sep StompBrokerRelayMessageHandler stompBrokerRelay concode_elem_sep SubProtocolWebSocketHandler webSocketHandler concode_elem_sep ScheduledThreadPoolExecutor sockJsTaskScheduler co...
long function ( ) { return this . loggingPeriod ; }
3,470
decrements the quqntity count and resets the effect to fire on the next render pass . concode_field_sep int quantity concode_elem_sep double price concode_elem_sep String name concode_elem_sep Effect changeQuantityEffect concode_elem_sep int id concode_elem_sep String pictureName concode_field_sep void incrementQuantit...
void function ( ) { quantity -- ; changeQuantityEffect . setFired ( false ) ; }
3,471
set the next aggregation value . concode_field_sep Object aggregationValue concode_elem_sep LeafSearchLookup lookup concode_elem_sep Map<String,Object> variables concode_elem_sep Scorer scorer concode_elem_sep LeafDocLookup doc concode_elem_sep Executable executable concode_field_sep void setSource concode_elem_sep voi...
void function ( Object arg0 ) { this . aggregationValue = arg0 ; }
3,472
hex encode the byte data writing it to the given output stream . concode_field_sep Encoder encoder concode_field_sep byte[] decode concode_elem_sep byte[] decode concode_elem_sep int decode
int function ( byte [ ] arg0 , OutputStream arg1 ) { return encoder . encode ( arg0 , 0 , arg0 . length , arg1 ) ; }
3,473
return the possibly true predicate concode_field_sep Predicate next concode_elem_sep List<Expression> premises concode_field_sep List<Expression> getPremises concode_elem_sep String toString
Predicate function ( ) { return next ; }
3,474
returns the algorithm id to be used with this key . concode_field_sep long serialVersionUID concode_elem_sep BigInteger version concode_elem_sep byte[] encodedKey concode_elem_sep AlgorithmId algid concode_elem_sep byte[] key concode_field_sep PrivateKey parseKey concode_elem_sep void encode concode_elem_sep byte[] enc...
AlgorithmId function ( ) { return algid ; }
3,475
getter . concode_field_sep File m_file concode_elem_sep boolean m_snapshotsEnabled concode_elem_sep URL m_repositoryURL concode_elem_sep String m_id concode_elem_sep boolean m_releasesEnabled concode_field_sep URL getURL concode_elem_sep boolean isReleasesEnabled concode_elem_sep String getId concode_elem_sep String to...
boolean function ( ) { return m_file != null ; }
3,476
add a new namespace binding for this deployment . this will return a boolean that can be used to determine if this is the authoritative binding the first , and should actually be performed . concode_field_sep ConcurrentMap<JndiName,Object> bindings concode_elem_sep AttachmentKey<NamespaceBindings> ATTACHMENT_KEY concod...
boolean function ( final JndiName arg0 , final Object arg1 ) { final Object loc0 = bindings . putIfAbsent ( arg0 , arg1 ) ; if ( loc0 != null && ! loc0 . equals ( arg1 ) ) { throw new DuplicateBindingException ( NamingLogger . ROOT_LOGGER . duplicateBinding ( arg0 , loc0 , arg1 ) ) ; } return loc0 == null ; }
3,477
wrap the tokenstream according to the provided informations of contextconfig and a related document . concode_field_sep char SEPARATOR concode_elem_sep SortedMap<String,ContextMapping> EMPTY_MAPPING concode_elem_sep String FIELD_VALUE concode_elem_sep String FIELD_MISSING concode_elem_sep SortedMap<String,ContextConfig...
TokenStream function ( TokenStream arg0 ) { for ( ContextConfig loc0 : contexts . values ( ) ) { arg0 = loc0 . wrapTokenStream ( doc , arg0 ) ; } return arg0 ; }
3,478
removes all contacts from the storage . concode_field_sep AtomicLong contactCounter concode_elem_sep Map<Long,ContactCard> contacts concode_field_sep ContactCard get concode_elem_sep List<ContactCard> findByPhone concode_elem_sep List<ContactCard> findByName concode_elem_sep ContactCard addContact concode_elem_sep List...
List < ContactCard > function ( ) { final Collection < ContactCard > loc0 = contacts . loc0 ( ) ; contacts . clear ( ) ; return new ArrayList < ContactCard > ( loc0 ) ; }
3,479
as a secondary responsibility , the renderhub also maintains a thread pool for render calls that should occur in the future . this service is used by renderers such as the intervalrenderer and delayrenderer to delay the eventual render calls . all the rendering isstill handled by the renderhubs core thread pool/queue ....
ScheduledThreadPoolExecutor function ( ) { if ( scheduledService == null ) { createScheduledService ( ) ; } return scheduledService ; }
3,480
returns the targe data source . concode_field_sep boolean controlConnection concode_elem_sep ThreadLocal connectionHolders concode_elem_sep DataSource dataSource concode_elem_sep Connection target concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep void setLoginTimeout ...
DataSource function ( ) { return dataSource ; }
3,481
return the content type to use for sending http invoker requests . concode_field_sep boolean acceptGzipEncoding concode_elem_sep String HTTP_HEADER_CONTENT_TYPE concode_elem_sep String contentType concode_elem_sep Log logger concode_elem_sep String HTTP_METHOD_POST concode_elem_sep String HTTP_HEADER_CONTENT_ENCODING c...
String function ( ) { return this . contentType ; }
3,482
filters the given list of reactionproperty to return only a listof exitpointspec . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isNamedExitTransition concode_elem_sep List<Transition>[] getExitSpecSortedTransitions concode_elem_sep boolean isDefault concode_elem_sep Map<Region,List<Entry>> getReg...
List < ExitPointSpec > function ( List < ReactionProperty > arg0 ) { List < ExitPointSpec > loc0 = new ArrayList < ExitPointSpec > ( ) ; for ( ReactionProperty loc1 : arg0 ) { if ( loc1 instanceof ExitPointSpec ) { loc0 . add ( ( ExitPointSpec ) loc1 ) ; } } return loc0 ; }
3,483
gets the sleuthkitcase handle associated with this object concode_field_sep String artifactTypeName concode_elem_sep String displayName concode_elem_sep long objID concode_elem_sep int typeID concode_elem_sep long artifactID concode_elem_sep String label concode_elem_sep int artifactTypeID concode_elem_sep SleuthkitCas...
SleuthkitCase function ( ) { return Case ; }
3,484
get the resource adapter concode_field_sep Reference reference concode_elem_sep String property concode_elem_sep long serialVersionUID concode_elem_sep ResourceAdapter ra concode_field_sep void setResourceAdapter concode_elem_sep String getProperty concode_elem_sep void setReference concode_elem_sep int hashCode concod...
ResourceAdapter function ( ) { return ra ; }
3,485
commit concode_field_sep boolean m_locked concode_elem_sep Trx m_trx concode_elem_sep Properties m_ctx concode_elem_sep ProcessInfo m_pi concode_elem_sep PO m_lockedObject concode_elem_sep String MSG_InvalidArguments concode_elem_sep CLogger log concode_elem_sep String MSG_SaveErrorRowNotFound concode_field_sep void ro...
void function ( ) { if ( m_trx != null ) m_trx . commit ( ) ; }
3,486
indicates whether some other reference object is `` equal to '' this one . concode_field_sep int objf concode_elem_sep int genf concode_field_sep int hashCode concode_elem_sep int getGenerationNumber concode_elem_sep String toString concode_elem_sep int getObjectNumber
boolean function ( Object arg0 ) { if ( arg0 == this ) return true ; if ( arg0 != null && arg0 instanceof Reference ) { Reference loc0 = ( Reference ) arg0 ; return ( loc0 . objf == objf ) && ( loc0 . genf == genf ) ; } return false ; }
3,487
sets the value of the level property . concode_field_sep String indicator concode_elem_sep String code concode_elem_sep ServiceLevelEnum level concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep ServiceTypeEnum type concode_elem_sep ServiceClassification classification concode_el...
void function ( ServiceLevelEnum arg0 ) { this . level = arg0 ; }
3,488
creates an arraytype by specifying the data type of elements elementtype and whether the array contains null values containsnull . concode_field_sep DataType StringType concode_elem_sep DataType DateType concode_elem_sep DataType BooleanType concode_elem_sep DataType BinaryType concode_elem_sep DataType TimestampType c...
ArrayType function ( DataType arg0 , boolean arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return new ArrayType ( arg0 , arg1 ) ; }
3,489
creates a new kaleo notification with the primary key . does not add the kaleo notification to the database . concode_field_sep KaleoNotificationLocalService _kaleoNotificationLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.po...
com . liferay . portal . workflow . kaleo . model . KaleoNotification function ( long arg0 ) { return _kaleoNotificationLocalService . createKaleoNotification ( arg0 ) ; }
3,490
auto generated method comment concode_field_sep Log log concode_elem_sep SessionFactory sessionFactory concode_field_sep List<Cohort> getCohortsContainingPatientId concode_elem_sep List<Cohort> getCohorts concode_elem_sep Cohort getCohortByUuid concode_elem_sep List<Cohort> getAllCohorts concode_elem_sep Cohort deleteC...
void function ( SessionFactory arg0 ) { this . sessionFactory = arg0 ; }
3,491
sets the rememberpassword value of this yahoo account registration . concode_field_sep String password concode_elem_sep boolean rememberPassword concode_elem_sep String uin concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep boolean isRememberPassword concode_elem_sep String getUin c...
void function ( boolean arg0 ) { this . rememberPassword = arg0 ; }
3,492
returns the contained panel to the parent session container so that it can be included in the main frame . concode_field_sep JPanel panel concode_field_sep placeholderType placeHolder
Component function ( ) { return this . panel ; }
3,493
a list of command line arguments passed to the jar file 's main function when executed . concode_field_sep com.amazonaws.internal.SdkInternalList<String> args concode_elem_sep String mainClass concode_elem_sep String jar concode_elem_sep com.amazonaws.internal.SdkInternalList<KeyValue> properties concode_field_sep void...
java . util . List < String > function ( ) { if ( args == null ) { args = new com . amazonaws . internal . SdkInternalList < String > ( ) ; } return args ; }
3,494
adds view to specified cache . creates a cache list if it is null . concode_field_sep AbstractWheel wheel concode_elem_sep String LOG_TAG concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep View getItem concode_...
List < View > function ( View arg0 , List < View > arg1 ) { if ( arg1 == null ) { arg1 = new LinkedList < View > ( ) ; } arg1 . add ( arg0 ) ; return arg1 ; }
3,495
count number of pieces of a certain type . concode_field_sep long hashKey concode_elem_sep boolean whiteMove concode_elem_sep int A8_CASTLE concode_elem_sep long[] castleHashKeys concode_elem_sep int[] squares concode_elem_sep long whiteHashKey concode_elem_sep int castleMask concode_elem_sep int epSquare concode_elem_...
int function ( int arg0 ) { int loc0 = 0 ; for ( int loc1 = 0 ; loc1 < 64 ; loc1 ++ ) if ( squares [ loc1 ] == arg0 ) loc0 ++ ; return loc0 ; }
3,496
returns the ddl string sequence that creates this user . concode_field_sep HsqlName initialSchema concode_elem_sep String sName concode_elem_sep Grantee grantee concode_elem_sep boolean isPublic concode_elem_sep boolean isSys concode_elem_sep String sPassword concode_field_sep void setPassword concode_elem_sep boolean ...
String function ( ) { StringBuffer loc0 = new StringBuffer ( 64 ) ; loc0 . append ( Token . T_CREATE ) . append ( ' ' ) ; loc0 . append ( Token . T_USER ) . append ( ' ' ) ; loc0 . append ( sName ) . append ( ' ' ) ; loc0 . append ( Token . T_PASSWORD ) . append ( ' ' ) ; loc0 . append ( '"' ) . append ( sPassword ) . ...
3,497
getter for shipping concode_field_sep String itemNumber concode_elem_sep BasicAmountType amount concode_elem_sep String custom concode_elem_sep String memo concode_elem_sep String softDescriptor concode_elem_sep BasicAmountType tax concode_elem_sep String mpID concode_elem_sep String emailSubject concode_elem_sep Strin...
BasicAmountType function ( ) { return shipping ; }
3,498
sets the costinordercurrency value for this lineitemcreativeassociationstats . concode_field_sep com.google.api.ads.dfp.axis.v201408.Stats stats concode_elem_sep com.google.api.ads.dfp.axis.v201408.Long_StatsMapEntry[] creativeSetStats concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCa...
void function ( com . google . api . ads . dfp . axis . v201408 . Money arg0 ) { this . costInOrderCurrency = arg0 ; }
3,499
sets the value of the lineitemid property . concode_field_sep String siteUrl concode_elem_sep Long lineItemId concode_elem_sep Long creativeId concode_field_sep Long getLineItemId concode_elem_sep Long getCreativeId concode_elem_sep void setCreativeId concode_elem_sep String getSiteUrl concode_elem_sep void setSiteUrl
void function ( Long arg0 ) { this . lineItemId = arg0 ; }