idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
12,300
dispense the specified stack , play the dispense sound and spawn particles . concode_field_sep PlaceHolder placeHolder concode_field_sep ItemStack dispense concode_elem_sep int func_82488_a concode_elem_sep void doDispense concode_elem_sep void playDispenseSound concode_elem_sep void spawnDispenseParticles
ItemStack function ( IBlockSource arg0 , ItemStack arg1 ) { return arg1 ; }
12,301
is the database connection available , i. e. properly configured ? concode_field_sep Log log concode_elem_sep DbType type concode_elem_sep int onErrorRetryCount concode_elem_sep DataSource datasource concode_field_sep Connection getConnection concode_elem_sep int getOnErrorRetryCount concode_elem_sep DbType getType con...
boolean function ( ) { return ( this . datasource != null ) ; }
12,302
is this writing a base directory ? should only be used by the compactor , or when implementing insert overwrite . concode_field_sep boolean isCompressed concode_elem_sep boolean oldStyle concode_elem_sep int recIdCol concode_elem_sep int statementId concode_elem_sep Configuration configuration concode_elem_sep long min...
Options function ( boolean arg0 ) { this . writingBase = arg0 ; return this ; }
12,303
return the currently active taskcontext . this can be called inside of user functions to access contextual information about running tasks . concode_field_sep ThreadLocal<TaskContext> taskContext concode_field_sep void setTaskContext concode_elem_sep boolean isInterrupted concode_elem_sep int partitionId concode_elem_s...
TaskContext function ( ) { return taskContext . get ( ) ; }
12,304
calculates the preferred size dimensions for the specified container , given the components it contains . concode_field_sep CLogger log concode_elem_sep Dimension m_size concode_field_sep void invalidateLayout concode_elem_sep void removeLayoutComponent concode_elem_sep boolean needLayout concode_elem_sep Dimension min...
Dimension function ( Container arg0 ) { if ( m_size == null ) layoutContainer ( arg0 ) ; return m_size ; }
12,305
the number of docidset s that are in the cache . concode_field_sep long cacheCount concode_elem_sep long hitCount concode_elem_sep long cacheSize concode_elem_sep XContentBuilderString CACHE_SIZE concode_elem_sep XContentBuilderString EVICTIONS concode_elem_sep XContentBuilderString HIT_COUNT concode_elem_sep XContentB...
long function ( ) { return cacheSize ; }
12,306
set the maximum age in hours relative to the request time concode_field_sep boolean m_bPublic concode_elem_sep Long m_aSharedMaxAgeSeconds concode_elem_sep boolean m_bNoTransform concode_elem_sep ICommonsList<String> m_aExtensions concode_elem_sep boolean m_bProxyRevalidate concode_elem_sep boolean m_bMustRevalidate co...
CacheControlBuilder function ( @ Nonnegative final long arg0 ) { return setMaxAgeSeconds ( arg0 * CGlobal . SECONDS_PER_HOUR ) ; }
12,307
returns a string representing the object . concode_field_sep RangeType FULL concode_elem_sep RangeType POSITIVE concode_elem_sep String name concode_elem_sep RangeType NEGATIVE concode_elem_sep long serialVersionUID concode_field_sep Object readResolve concode_elem_sep int hashCode concode_elem_sep boolean equals
String function ( ) { return this . name ; }
12,308
given a user , determines if this user has an active session . concode_field_sep Map<String,Session> sessions concode_elem_sep Logger logger concode_field_sep void removeSession concode_elem_sep String generateUniqueSessionId concode_elem_sep void clearSessions concode_elem_sep int sessionCount concode_elem_sep String ...
boolean function ( String arg0 ) { return sessions . containsKey ( arg0 ) ; }
12,309
bindkeyspaceidquery creates a boundkeyspaceidquery . concode_field_sep Function<byte[],ByteString> BYTE_ARRAY_TO_BYTE_STRING concode_elem_sep int MAX_DECIMAL_UNIT concode_elem_sep Function<Map.Entry<byte[],?>,EntityId> MAP_ENTRY_TO_ENTITY_KEYSPACE_ID concode_elem_sep Query.Type type concode_elem_sep ByteString value co...
BoundKeyspaceIdQuery function ( String arg0 , Iterable < byte [ ] > arg1 , String arg2 , Map < String , ? > arg3 ) { return bindKeyspaceIdQuery ( arg0 , arg1 , bindQuery ( arg2 , arg3 ) ) ; }
12,310
used to check if there were warnings during file analysis and handling . concode_field_sep ProgressIndicator progressIndicator concode_elem_sep OpenCmsPlugin plugin concode_elem_sep Logger LOG concode_elem_sep StringBuilder warnings concode_elem_sep HashSet<String> handledPaths concode_elem_sep List<File> files concode...
boolean function ( ) { return warnings . length ( ) > 0 ; }
12,311
for cascade operations concode_field_sep HashMappedList tableUpdateList concode_elem_sep HsqlArrayList stack concode_elem_sep LongDeque savepointTimestamps concode_elem_sep Session session concode_elem_sep Object[] routineArguments concode_elem_sep HashSet constraintPath concode_elem_sep Object[] dynamicArguments conco...
HashMappedList function ( ) { if ( tableUpdateList == null ) { tableUpdateList = new HashMappedList ( ) ; } return tableUpdateList ; }
12,312
set the module that generated the event . concode_field_sep String TIMESTAMP concode_elem_sep HashMap<String,String> eventMap concode_elem_sep String EVENT concode_elem_sep String MODULE concode_elem_sep String MEETING concode_field_sep HashMap<String,String> toMap concode_elem_sep void setMeetingId concode_elem_sep vo...
void function ( String arg0 ) { eventMap . put ( MODULE , arg0 ) ; }
12,313
implements lengthhandler #em . concode_field_sep short HORIZONTAL_LENGTH concode_elem_sep double SQRT2 concode_elem_sep short unit concode_elem_sep short VERTICAL_LENGTH concode_elem_sep float value concode_elem_sep short OTHER_LENGTH concode_field_sep float userSpaceToSVG concode_elem_sep void lengthValue concode_elem...
void function ( ) { this . unit = SVGLength . SVG_LENGTHTYPE_EMS ; }
12,314
advances the cursor to the next block of content . the next block of content may be valid which yields a non-null buffer returned by #getbytebuffer , but may also be deferred which yields a null buffer returned by #getbytebuffer . if the block of content pointed by the new cursor position is valid , this method returns...
boolean function ( ) { if ( iterator instanceof Synchronizable ) { synchronized ( ( ( Synchronizable ) iterator ) . getLock ( ) ) { return advance ( iterator ) ; } } else { return advance ( iterator ) ; } }
12,315
loads the deputies from the database concode_field_sep HashMap<String,Senator> senators concode_elem_sep Pattern senatorLinePattern concode_elem_sep Logger log concode_elem_sep Pattern senatorLink concode_field_sep void crawlFromSite concode_elem_sep int getIdForIdm concode_elem_sep Senator get concode_elem_sep void co...
void function ( String arg0 ) { DbManager . loadSenators ( arg0 , senators ) ; log . info ( "srini_string" + senators . size ( ) ) ; }
12,316
sets the viewport 's width in screen coordinates . this is typically set by #update int , int , boolean . concode_field_sep Vector3 tmp concode_elem_sep float worldWidth concode_elem_sep int screenWidth concode_elem_sep float worldHeight concode_elem_sep int screenHeight concode_elem_sep Camera camera concode_elem_sep ...
void function ( int arg0 ) { this . screenWidth = arg0 ; }
12,317
returns an id for a given bundle for internal use . this is the context-path header value , or the symbolic name if the former is not defined . concode_field_sep PlaceHolder placeHolder concode_field_sep List<String> getSymbolicNames concode_elem_sep Bundle findBundleBySymbolicName concode_elem_sep Bundle findBundleByN...
String function ( Bundle arg0 ) { final String loc0 = getHeaderValue ( "srini_string" , arg0 ) ; return ( ( loc0 != null ) ? loc0 : arg0 . getSymbolicName ( ) ) ; }
12,318
method for decrypting meg , encrypted with one key . concode_field_sep String ALPHABET concode_field_sep int getKey concode_elem_sep int maxIndex concode_elem_sep int[] countLetters concode_elem_sep String decryptTwoKeys concode_elem_sep String decryptFileTwoKeys concode_elem_sep String decrypt concode_elem_sep char de...
String function ( String arg0 ) { return decrypt ( arg0 , getKey ( arg0 ) ) ; }
12,319
return the set of all keys stored in this mchash object concode_field_sep int versionStamp concode_elem_sep int count concode_elem_sep float growFactor concode_elem_sep int threshold concode_elem_sep IntHashMapEntry slots[] concode_elem_sep Set keySet concode_field_sep Object lookup concode_elem_sep IntHashMapEntry rem...
Set function ( ) { return keySet ; }
12,320
returns the typecode , corresponding the corba type that is stored using this holder . concode_field_sep ArrayTypeCode typecode concode_elem_sep float[] value concode_field_sep void _read concode_elem_sep void _write
TypeCode function ( ) { return typecode ; }
12,321
the maximum number of writes consumed per second before dynamodb returns a throttlingexception . for more information , see specifying read and write requirements in the amazon dynamodb developer guide . concode_field_sep Long writeCapacityUnits concode_elem_sep Long readCapacityUnits concode_field_sep Long getReadCapa...
void function ( Long arg0 ) { this . writeCapacityUnits = arg0 ; }
12,322
sets the value of the perspective property . concode_field_sep CTBoolean rAngAx concode_elem_sep CTRotX rotX concode_elem_sep CTHPercent hPercent concode_elem_sep CTExtensionList extLst concode_elem_sep CTRotY rotY concode_elem_sep CTPerspective perspective concode_elem_sep CTDepthPercent depthPercent concode_field_sep...
void function ( CTPerspective arg0 ) { this . perspective = arg0 ; }
12,323
test of add method , of class listeners . concode_field_sep String name concode_elem_sep TestEvent event concode_elem_sep Listeners<TestListener> listeners concode_field_sep void setUpClass concode_elem_sep void process concode_elem_sep String getName concode_elem_sep void testRemove concode_elem_sep TestEvent getSourc...
void function ( ) { listeners . add ( new TestListener ( ) ) ; listeners . dispatch ( new TestEvent ( "srini_string" ) ) ; assertEquals ( "srini_string" , event . getName ( ) ) ; }
12,324
get custom serializer concode_field_sep int g_Count concode_elem_sep org.eclipse.birt.report.soapengine.api.TableRowInfo CH_Row concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep org.eclipse.birt.report.soapengine.api.TableRowInfo TC_Row concod...
org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; }
12,325
forces a linebreak on the next call to writetag or writeclosetag . concode_field_sep int OPEN_TAG_INCREASE concode_elem_sep int CLOSE_TAG_DECREASE concode_elem_sep int indentLevel concode_elem_sep boolean OPEN concode_elem_sep int INDENT_ONLY concode_elem_sep String lineSeparator concode_elem_sep String indentString co...
void function ( ) { this . newLineOk = true ; }
12,326
returns whether the matrix a has full rank . concode_field_sep Matrix qr concode_elem_sep int originalRows concode_elem_sep int originalColumns concode_elem_sep Vector rDiag concode_field_sep Matrix solve concode_elem_sep String toString concode_elem_sep Matrix getQ concode_elem_sep Matrix getR
boolean function ( ) { for ( int loc0 = 0 ; loc0 < originalColumns ; loc0 ++ ) { if ( rDiag . getQuick ( loc0 ) == 0 ) { return false ; } } return true ; }
12,327
return the shard that the explanation is about concode_field_sep String assignedNodeId concode_elem_sep Map<DiscoveryNode,NodeExplanation> nodeExplanations concode_elem_sep ClusterInfo clusterInfo concode_elem_sep boolean hasPendingAsyncFetch concode_elem_sep long remainingDelayMillis concode_elem_sep ShardId shard con...
ShardId function ( ) { return this . shard ; }
12,328
determines if this set contains a permission that is equal to the read permission . concode_field_sep PermissionsSet EMPTY_SET concode_elem_sep Set<Permission> permissions concode_elem_sep Set<Permission> permissions concode_field_sep PermissionsSet emptySet concode_elem_sep Builder removeAllPermissions concode_elem_se...
boolean function ( ) { return permissions . contains ( Permission . getCommentPermission ( ) ) ; }
12,329
returns the normalized path of a path . concode_field_sep String volume concode_elem_sep SimpleDateFormat format concode_elem_sep String TOBEDELETED concode_elem_sep String pathToBeDeleted concode_elem_sep String[] volumes concode_elem_sep FileSystem localFileSystem concode_elem_sep String originalPath concode_elem_sep...
String function ( String arg0 ) { return ( new Path ( arg0 ) ) . makeQualified ( this . localFileSystem ) . toUri ( ) . getPath ( ) ; }
12,330
sets the attendee type . concode_field_sep MeetingAttendeeType attendeeType concode_elem_sep String smtpAddress concode_elem_sep boolean excludeConflicts concode_field_sep MeetingAttendeeType getAttendeeType concode_elem_sep AttendeeInfo getAttendeeInfoFromString concode_elem_sep boolean isExcludeConflicts concode_elem...
void function ( MeetingAttendeeType arg0 ) { this . attendeeType = arg0 ; }
12,331
return the initial interval in milliseconds . concode_field_sep long DEFAULT_INITIAL_INTERVAL concode_elem_sep double DEFAULT_MULTIPLIER concode_elem_sep long DEFAULT_MAX_INTERVAL concode_elem_sep long maxInterval concode_elem_sep long currentElapsedTime concode_elem_sep long maxElapsedTime concode_elem_sep long DEFAUL...
long function ( ) { return initialInterval ; }
12,332
center the window relative to it 's parent . if the parent is null , or not showing , the window will be centered on the screen concode_field_sep PlaceHolder placeHolder concode_field_sep void centerOnParentAndSetVisible concode_elem_sep void centerOnScreen concode_elem_sep void centerOnScreenAndSetVisible concode_elem...
void function ( Window arg0 , Component arg1 ) { if ( arg1 == null || ! arg1 . isShowing ( ) ) { centerOnScreen ( arg0 ) ; } else { arg0 . setLocationRelativeTo ( arg1 ) ; } }
12,333
get double value . concode_field_sep Map<String,Object> mMap concode_field_sep JSONObject getObject concode_elem_sep Iterator<String> keys concode_elem_sep JSONArray getArray concode_elem_sep float getFloat concode_elem_sep String getString concode_elem_sep void put concode_elem_sep void writeJSON concode_elem_sep long...
double function ( String arg0 , double arg1 ) { Object loc0 = mMap . get ( arg0 ) ; return loc0 != null && loc0 instanceof Number ? ( ( Number ) loc0 ) . doubleValue ( ) : arg1 ; }
12,334
indicates whether the specified aws resource complies each aws config rule . concode_field_sep com.amazonaws.internal.SdkInternalList<EvaluationResult> evaluationResults concode_elem_sep String nextToken concode_field_sep void setNextToken concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep G...
java . util . List < EvaluationResult > function ( ) { if ( evaluationResults == null ) { evaluationResults = new com . amazonaws . internal . SdkInternalList < EvaluationResult > ( ) ; } return evaluationResults ; }
12,335
specifies where the repository will store data concode_field_sep long storageCapacity concode_elem_sep int compressionBlockBytes concode_elem_sep List<File> storageDirectories concode_elem_sep boolean allowRollover concode_elem_sep int maxAttributeChars concode_elem_sep long eventFileMillis concode_elem_sep long desire...
List < File > function ( ) { return Collections . unmodifiableList ( storageDirectories ) ; }
12,336
gets the value of the mtu property . concode_field_sep String peerNetworkAddress concode_elem_sep String peerIpAddress concode_elem_sep boolean isEnabled concode_elem_sep Boolean isOperational concode_elem_sep String name concode_elem_sep String description concode_elem_sep String encryptionProtocol concode_elem_sep Ip...
int function ( ) { return mtu ; }
12,337
is null returned when we ask for a datatype property that is n't in the file ? concode_field_sep JenaVocabService objectUnderTest concode_elem_sep String owlFileLocation concode_field_sep void testGetLabelForPropertyCode01 concode_elem_sep OntModel owlModel concode_elem_sep void testGetLabelForPropertyCode03 concode_el...
void function ( ) { String loc0 = objectUnderTest . getLabelForPropertyCode ( "srini_string" ) ; assertNull ( "srini_string" , loc0 ) ; }
12,338
return the service document in its xml form . concode_field_sep Service service concode_field_sep void setService concode_elem_sep String marshall concode_elem_sep void unmarshall concode_elem_sep SwordValidationInfo unmarshall concode_elem_sep void unmarshall concode_elem_sep SwordValidationInfo unmarshall concode_ele...
String function ( ) { return marshall ( ) ; }
12,339
returns the blob field of this test blob entry . concode_field_sep TestBlobEntry _testBlobEntry concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEsc...
Blob function ( ) { return _testBlobEntry . getBlobField ( ) ; }
12,340
deletes the p2p activity with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep P2pActivityLocalService _p2pActivityLocalService concode_field_sep void setWrappedService concode_elem_sep java.util.List<com.liferay.lms.model.P2pActivity> findByActIdOrderByP2pId concode...
com . liferay . lms . model . P2pActivity function ( long arg0 ) { return _p2pActivityLocalService . deleteP2pActivity ( arg0 ) ; }
12,341
what to do when user clicks on this item . concode_field_sep String name concode_elem_sep int id concode_elem_sep JMenuItem mi concode_field_sep void add concode_elem_sep void add concode_elem_sep String getValue
void function ( SVWindow arg0 , SVEventType arg1 ) { }
12,342
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" ) ; }
12,343
sets the value of the unlimiteddata property . concode_field_sep Boolean unlimitedMinutes concode_elem_sep DataBalanceType data concode_elem_sep String featureName concode_elem_sep BigInteger minutes concode_elem_sep String chargeType concode_elem_sep String description concode_elem_sep Boolean unlimitedMessages concod...
void function ( Boolean arg0 ) { this . unlimitedData = arg0 ; }
12,344
change block out of service state . this method only return after all tasks and asynchronous events to finish concode_field_sep RepositoriesNexusRestClient REPOSITORY_NRC concode_elem_sep String SERVICE_PART concode_elem_sep Logger LOG concode_elem_sep RepositoriesNexusRestClient repositoryNRC concode_field_sep Reposit...
void function ( final String arg0 , final boolean arg1 ) { repositoryNRC . setOutOfServiceProxy ( arg0 , arg1 ) ; }
12,345
compare on names to permit sorting . concode_field_sep Property p concode_elem_sep boolean multivalued concode_elem_sep String name concode_elem_sep boolean structured concode_elem_sep String type concode_elem_sep boolean hidden concode_elem_sep String uri concode_field_sep void setName concode_elem_sep boolean isMulti...
int function ( ContextPropertyInfo arg0 ) { return name . compareTo ( arg0 . name ) ; }
12,346
remove listener who no longer want to know our configured state concode_field_sep ExecutorService executorService concode_elem_sep Map<String,HarmonyHubInstance> hubs concode_elem_sep String NOQUALIFIER concode_elem_sep HarmonyClient client concode_elem_sep List<HarmonyHubGatewayListener> hubListener concode_elem_sep P...
void function ( HarmonyHubGatewayListener arg0 ) { hubListener . remove ( arg0 ) ; }
12,347
execute an operation synchronously using the context classloader used to load this class , instead of the currently-set context classloader of the current thread . this allows loading dynamically-loaded classes and configuration files using the same classloader used to load the rest of the jdbc driver . the context cla...
T function ( Callable < T > arg0 ) { ClassLoader loc0 = Thread . currentThread ( ) . getContextClassLoader ( ) ; try { Thread . currentThread ( ) . setContextClassLoader ( PhoenixContextExecutor . class . getClassLoader ( ) ) ; return arg0 . call ( ) ; } finally { Thread . currentThread ( ) . setContextClassLoader ( lo...
12,348
sends a message to a slack channel concode_field_sep Logger logger concode_elem_sep PRConfiguration prProperties concode_field_sep void checkPullRequests concode_elem_sep List<String> getPullRequests
void function ( List < String > arg0 , String arg1 , String arg2 ) { SlackSession loc0 = SlackSessionFactory . createWebSocketSlackSession ( arg1 ) ; loc0 . connect ( ) ; SlackChannel loc1 = loc0 . findChannelByName ( arg2 ) ; for ( String loc2 : arg0 ) { logger . info ( "srini_string" + loc2 ) ; loc0 . sendMessage ( l...
12,349
sets the objectpool in which to pool connection s. concode_field_sep boolean poolStatements concode_elem_sep AtomicLong connectionIndex concode_elem_sep String _validationQuery concode_elem_sep int _validationQueryTimeout concode_elem_sep Boolean _defaultAutoCommit concode_elem_sep int maxOpenPreparedStatements concode...
void function ( ObjectPool < PoolableConnection > arg0 ) { if ( null != _pool && arg0 != _pool ) { try { _pool . close ( ) ; } catch ( Exception loc0 ) { } } _pool = arg0 ; }
12,350
return a copy . concode_field_sep Map<Table,DataMapTableView> swtTableToView concode_elem_sep ArrayList<OutputTable> listOutputsTables concode_elem_sep ArrayList<InputTable> listInputsTables concode_elem_sep Map<IMetadataTable,AbstractInOutTable> metadataTableToIDataMapTable concode_elem_sep ArrayList<VarsTable> listVa...
Collection < DataMapTableView > function ( ) { return abstractDataMapTableToView . values ( ) ; }
12,351
set the duration of the session credentials created by this client in seconds . values must be supported by assumerolewithwebidentityrequest . concode_field_sep AWSSecurityTokenService securityTokenService concode_elem_sep String wifProvider concode_elem_sep AWSSessionCredentials sessionCredentials concode_elem_sep Str...
void function ( int arg0 ) { this . sessionDuration = arg0 ; }
12,352
returns true if o is a domain with the same source file , and false otherwise . concode_field_sep List<Model> models concode_elem_sep Settings settings concode_elem_sep Logger log concode_elem_sep DialogueState initState concode_elem_sep File xmlFile concode_elem_sep List<File> importedFiles concode_elem_sep BNetwork p...
boolean function ( Object arg0 ) { if ( arg0 instanceof Domain ) { File loc0 = ( ( Domain ) arg0 ) . getSourceFile ( ) ; if ( loc0 == xmlFile ) { return true ; } return ( loc0 != null && xmlFile != null && loc0 . equals ( xmlFile ) ) ; } return false ; }
12,353
returns an array that indicates whether a column is numeric or nor . concode_field_sep boolean[] m_NumericColumns concode_elem_sep int m_RowCount concode_elem_sep int m_ColumnCount concode_elem_sep String[] m_ColumnNames concode_elem_sep int m_MaxRows concode_elem_sep ResultSet m_ResultSet concode_elem_sep boolean m_In...
boolean [ ] function ( ) { initialize ( ) ; return m_NumericColumns ; }
12,354
returns a copy of this device configuration but with a different size of the scrollback buffer concode_field_sep boolean cursorBlinking concode_elem_sep SwingTerminalDeviceConfiguration DEFAULT concode_elem_sep int blinkLengthInMilliSeconds concode_elem_sep int lineBufferScrollbackSize concode_elem_sep CursorStyle curs...
SwingTerminalDeviceConfiguration function ( int arg0 ) { if ( this . lineBufferScrollbackSize == arg0 ) { return this ; } else { return new SwingTerminalDeviceConfiguration ( arg0 , blinkLengthInMilliSeconds , cursorStyle , cursorColor , cursorBlinking ) ; } }
12,355
add a faculty member into the faculty . concode_field_sep ArrayList<Course> courses concode_elem_sep ArrayList<FacultyMember> facultyMembers concode_elem_sep String name concode_elem_sep ArrayList<Student> students concode_field_sep void addStudent concode_elem_sep ArrayList<Student> getStudents concode_elem_sep String...
void function ( FacultyMember arg0 ) { if ( ! facultyMembers . contains ( arg0 ) ) facultyMembers . add ( arg0 ) ; }
12,356
increments the sequence number . concode_field_sep long duration concode_elem_sep long mCacheSize concode_elem_sep float m concode_elem_sep int TRANSPORT_UDP concode_elem_sep DatagramPacket[] mPackets concode_elem_sep long mClock concode_elem_sep int mTotal concode_elem_sep int mSeq concode_elem_sep int mCount concode_...
void function ( ) { setLong ( mBuffers [ mBufferIn ] , ++ mSeq , 2 , 4 ) ; }
12,357
default connect timeout in milliseconds . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connectionPool concode_elem_sep List<String> DEFAULT_TRANSPORTS concode_elem_sep RouteDatabase routeDatabase concode_elem_sep ProxySelector proxy...
int function ( ) { return connectTimeout ; }
12,358
returns the attachment 's description . concode_field_sep Part part concode_elem_sep int num concode_field_sep boolean hasMimeType concode_elem_sep String getFilename concode_elem_sep String getContent concode_elem_sep String getNum concode_elem_sep boolean hasFilename concode_elem_sep boolean hasDescription concode_el...
String function ( ) { String loc0 ; if ( ( loc0 = part . getDescription ( ) ) != null ) return loc0 ; else return "srini_string" ; }
12,359
whether to use the default model or the redirect model . concode_field_sep boolean requestHandled concode_elem_sep Object view concode_elem_sep boolean redirectModelScenario concode_elem_sep ModelMap defaultModel concode_elem_sep SessionStatus sessionStatus concode_elem_sep ModelMap redirectModel concode_elem_sep boole...
boolean function ( ) { return ( ! this . redirectModelScenario || ( this . redirectModel == null && ! this . ignoreDefaultModelOnRedirect ) ) ; }
12,360
find the counter for the given enum . the same enum will always return the same counter . concode_field_sep Log LOG concode_elem_sep Map<String,G> fgroups concode_elem_sep Map<String,String> legacyMap concode_elem_sep Limits limits concode_elem_sep Map<String,G> groups concode_elem_sep Map<Enum<?>,C> cache concode_elem...
C function ( Enum < ? > arg0 ) { C loc0 = cache . get ( arg0 ) ; if ( loc0 == null ) { loc0 = findCounter ( arg0 . getDeclaringClass ( ) . getName ( ) , arg0 . name ( ) ) ; cache . put ( arg0 , loc0 ) ; } return loc0 ; }
12,361
disable stream concode_field_sep RPC cli concode_elem_sep String fname concode_elem_sep long expireDays concode_elem_sep int data concode_elem_sep int bps concode_elem_sep long disabledTill concode_elem_sep FPSStatus fps concode_elem_sep long start concode_elem_sep String format concode_elem_sep int video concode_elem_...
void function ( long arg0 ) { setDisabledTill ( arg0 ) ; }
12,362
delegate config verification to the corresponding type of class concode_field_sep HashMap<String,Class<?>> prefixClasses concode_elem_sep String CONFIG_SEPARATOR concode_elem_sep int POS_ID concode_elem_sep int POS_VALUES concode_elem_sep Logger logger concode_elem_sep String[] values concode_elem_sep int POS_TYPE conc...
boolean function ( String arg0 ) { String [ ] loc0 = StringUtils . split ( arg0 , ZibaseBindingConfig . CONFIG_SEPARATOR ) ; ZibaseBindingConfig loc1 = ZibaseBindingConfig . factory ( loc0 ) ; if ( loc1 == null ) { return false ; } else { return loc1 . isItemConfigValid ( ) ; } }
12,363
see path #rcubicto float , float , float , float , float , float . concode_field_sep Path mPath concode_elem_sep float[] mLastPoint concode_field_sep void rMoveTo concode_elem_sep void cubicTo concode_elem_sep void rAdjustLastPoint concode_elem_sep boolean isEmpty concode_elem_sep void lineTo concode_elem_sep void rQua...
void function ( float arg0 , float arg1 , float arg2 , float arg3 , float arg4 , float arg5 ) { mPath . rCubicTo ( arg0 , arg1 , arg2 , arg3 , arg4 , arg5 ) ; rAdjustLastPoint ( arg4 , arg5 ) ; }
12,364
wasicon concode_field_sep String HAS_BEEN_ICONIFIED_PROPERTY concode_elem_sep int dragMode concode_elem_sep int DEFAULT_DRAG_MODE concode_elem_sep int FASTER_DRAG_MODE concode_elem_sep int OUTLINE_DRAG_MODE concode_field_sep void setWasIcon concode_elem_sep void removeIconFor concode_elem_sep Rectangle getBoundsForIcon...
boolean function ( JInternalFrame arg0 ) { return false ; }
12,365
test of writestring method , of class s3util . concode_field_sep PlaceHolder placeHolder concode_field_sep void testDomainControllerDataToByteBuffer
void function ( ) { String loc0 = "srini_string" ; ByteArrayOutputStream loc1 = new ByteArrayOutputStream ( ) ; S3Util . writeString ( loc0 , new DataOutputStream ( loc1 ) ) ; String loc2 = S3Util . readString ( new DataInputStream ( new ByteArrayInputStream ( loc1 . toByteArray ( ) ) ) ) ; assertThat ( loc2 , is ( loc...
12,366
add a page for later commit or rollback . concode_field_sep Database database concode_elem_sep SSDatabaseMetaData metadata concode_elem_sep boolean readonly concode_elem_sep Logger log concode_elem_sep int isolationLevel concode_elem_sep List commitPages concode_elem_sep boolean autoCommit concode_elem_sep long transac...
void function ( TransactionStep arg0 ) { testClosedConnection ( ) ; synchronized ( getMonitor ( ) ) { commitPages . add ( arg0 ) ; } }
12,367
equals method that checks if the other object matches in dimensions and content . concode_field_sep MazePanel.GWColor col concode_elem_sep boolean partition concode_elem_sep int dx concode_elem_sep int dy concode_elem_sep int[] neededValues concode_elem_sep int x concode_elem_sep int y concode_elem_sep int dist concode...
boolean function ( Object arg0 ) { if ( this == arg0 ) return true ; if ( null == arg0 ) return false ; if ( getClass ( ) != arg0 . getClass ( ) ) return false ; final Seg loc0 = ( Seg ) arg0 ; if ( ( x != loc0 . x ) || ( dx != loc0 . dx ) || ( y != loc0 . y ) || ( dy != loc0 . dy ) ) return false ; return true ; }
12,368
indicates if the inflater has inflated the entire deflatedstream . if deflated bytes remain and #needsinput returns true this method will return false . this method should be called after all deflated input is supplied to the inflater . concode_field_sep boolean needsDictionary concode_elem_sep int inLength concode_ele...
boolean function ( ) { return finished ; }
12,369
metodo que compara dos nodos ordenados , verifica si la lista es ascendente o no , y en base a eso devuelve el orden de comparacion concode_field_sep NodoOrdenado<T> primero concode_elem_sep int longitud concode_elem_sep boolean ascendente concode_field_sep void print concode_elem_sep boolean isAscendente concode_elem_...
int function ( NodoOrdenado < T > arg0 , NodoOrdenado < T > arg1 ) { int loc0 = arg0 . comparar ( arg1 ) ; if ( ! isAscendente ( ) ) { loc0 = - loc0 ; } return loc0 ; }
12,370
sets the value of the earlyupgraded property . concode_field_sep XMLGregorianCalendar date concode_elem_sep Service ratePlan concode_elem_sep String description concode_elem_sep Integer migrationFeeTenureThreshold concode_elem_sep Boolean earlyUpgraded concode_elem_sep Integer accruedTenure concode_elem_sep Integer tie...
void function ( Boolean arg0 ) { this . earlyUpgraded = arg0 ; }
12,371
called for entries that have been evicted or removed . this method is invoked when a value is evicted to make space , removed by a call to #remove , or replaced by a call to #put . the default implementation does nothing . the method is called without synchronization : other threads may access the cache while this meth...
void function ( boolean arg0 , K arg1 , V arg2 , V arg3 ) { }
12,372
removes the log message from the log4j ndc after the request is processed . concode_field_sep Logger log4jLogger concode_elem_sep boolean includeClientInfo concode_field_sep boolean isIncludeClientInfo concode_elem_sep String getNestedDiagnosticContextMessage concode_elem_sep void postHandle concode_elem_sep void preHa...
void function ( WebRequest arg0 , Exception arg1 ) { NDC . pop ( ) ; if ( NDC . getDepth ( ) == 0 ) { NDC . remove ( ) ; } }
12,373
returns the name of the process variable . concode_field_sep String name concode_elem_sep int location concode_elem_sep boolean write concode_field_sep int getLocation concode_elem_sep boolean isWrite
String function ( ) { return name ; }
12,374
get / update -- > update the email and the name for the meal_products in the database having the passed id . concode_field_sep Meal_productsDao meal_productsDao concode_field_sep String create concode_elem_sep String delete
String function ( long arg0 , String arg1 ) { try { Meal_products loc0 = meal_productsDao . findOne ( arg0 ) ; meal_productsDao . save ( loc0 ) ; } catch ( Exception loc0 ) { return "srini_string" + loc0 . toString ( ) ; } return "srini_string" ; }
12,375
enable or disable printing of debug information during the building of the classifier . concode_field_sep Classifier m_classifier concode_elem_sep double m_LastRunPercentCorrect concode_field_sep void BuildClassifier concode_elem_sep void PrintInformation concode_elem_sep String[] Classify concode_elem_sep void PrintSo...
void function ( Boolean arg0 ) { m_classifier . setDebug ( arg0 ) ; }
12,376
wrapped json object . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep String getText concode_elem_sep long getRepeatInterval concode_elem_sep int ge...
JSONObject function ( ) { return options ; }
12,377
disables the current thread for thread scheduling purposes , for up to the specified waiting time , unless the permit is available . if the permit is available then it is consumed and the call returns immediately ; otherwise the current thread becomes disabled for thread scheduling purposes and lies dormant until one o...
void function ( Object arg0 , long arg1 ) { if ( arg1 > 0 ) { Thread loc0 = Thread . currentThread ( ) ; setBlocker ( loc0 , arg0 ) ; unsafe . park ( false , arg1 ) ; setBlocker ( loc0 , null ) ; } }
12,378
unbinds a name from ctx , and removes parents if they are empty concode_field_sep PlaceHolder placeHolder concode_field_sep Context createSubcontext concode_elem_sep void rebind concode_elem_sep void rebind concode_elem_sep boolean isEmpty concode_elem_sep NameNotFoundException nameNotFoundException concode_elem_sep St...
void function ( Context arg0 , Name arg1 ) { arg0 . unbind ( arg1 ) ; int loc0 = arg1 . size ( ) ; while ( -- loc0 > 0 ) { Name loc1 = arg1 . getPrefix ( loc0 ) ; try { arg0 . destroySubcontext ( loc1 ) ; } catch ( NamingException loc2 ) { break ; } } }
12,379
creates a new instance of testcase for the worker service . concode_field_sep String MASTER_SERVICE concode_elem_sep String WORKER_SERVICE concode_field_sep TestCase newMasterTestCase
TestCase function ( String arg0 , Map < String , String > arg1 , String arg2 , Object arg3 , LocalAlluxioClusterResource arg4 ) { return new TestCase ( arg0 , arg1 , arg2 , arg3 , WORKER_SERVICE , arg4 ) ; }
12,380
identifies which shard in the stream the data record is assigned to . concode_field_sep String sequenceNumber concode_elem_sep java.nio.ByteBuffer data concode_elem_sep String partitionKey concode_elem_sep java.util.Date approximateArrivalTimestamp concode_field_sep void setApproximateArrivalTimestamp concode_elem_sep ...
String function ( ) { return this . partitionKey ; }
12,381
returns a summary version of the critical path stats that omits stats that are not useful to the user . concode_field_sep ImmutableList<T> criticalPathComponents concode_elem_sep long totalTime concode_field_sep ImmutableList<T> components concode_elem_sep long totalTime concode_elem_sep String toString concode_elem_se...
String function ( ) { return toString ( true ) ; }
12,382
getting of image metadata concode_field_sep ImageMetadata imageMetadata concode_field_sep Bitmap loadBitmap concode_elem_sep Bitmap loadBitmap concode_elem_sep ReuseResult loadBitmap concode_elem_sep ImageMetadata loadMetadata
ImageMetadata function ( ) { if ( imageMetadata == null ) { imageMetadata = loadMetadata ( ) ; } return imageMetadata ; }
12,383
initialize wsrealm by carbon concode_field_sep WSUserStoreManager userStoreMan concode_elem_sep WSProfileConfigurationManager profileManager concode_elem_sep Log log concode_elem_sep WSAuthorizationManager authzMan concode_elem_sep WSClaimManager claimManager concode_elem_sep int tenantId concode_elem_sep String sessio...
void function ( RealmConfiguration arg0 , Map < String , ClaimMapping > arg1 , Map < String , ProfileConfiguration > arg2 , int arg3 ) { ConfigurationContext loc0 = ( ConfigurationContext ) UserMgtWSAPIDSComponent . getCcServiceInstance ( ) . getClientConfigContext ( ) ; init ( arg0 , loc0 ) ; }
12,384
restore the default locale after the tests complete . concode_field_sep Locale savedLocale concode_field_sep void testCloning concode_elem_sep void setUp concode_elem_sep void testFormat concode_elem_sep void testHashCode concode_elem_sep void testNegative concode_elem_sep void test2033092 concode_elem_sep void testEqu...
void function ( ) { Locale . setDefault ( this . savedLocale ) ; }
12,385
sets the max size of cache . concode_field_sep Cache<Object,Object> cache concode_elem_sep long maxCacheSize concode_elem_sep int entryExpiryDurationInMillis concode_elem_sep ExpiryType entryExpiryStrategy concode_elem_sep int cacheCleanupIntervalInMillis concode_elem_sep ScheduledExecutorService cleanupScheduler conco...
void function ( long arg0 ) { this . maxCacheSize = arg0 ; }
12,386
returns the height of a view . concode_field_sep int dateAscent concode_elem_sep int dateY concode_elem_sep int dateFontSize concode_elem_sep int starX concode_elem_sep int subjectX concode_elem_sep int starY concode_elem_sep int subjectY concode_elem_sep int dateXEnd concode_elem_sep int NORMAL_MODE concode_elem_sep i...
int function ( View arg0 , boolean arg1 ) { ViewGroup . MarginLayoutParams loc0 = ( ViewGroup . MarginLayoutParams ) arg0 . getLayoutParams ( ) ; return arg0 . getHeight ( ) + ( arg1 ? loc0 . topMargin + loc0 . bottomMargin : 0 ) ; }
12,387
make an empty regex . concode_field_sep PlaceHolder placeHolder concode_field_sep void testMakeDigitRangeRegex concode_elem_sep void testMakeDigitCountRegex concode_elem_sep void testAddingSingleString concode_elem_sep void testEmptyRegex concode_elem_sep void testMakeDigitRegex concode_elem_sep void testConstruction
void function ( ) { final String loc0 = "srini_string" ; final String loc1 = "srini_string" ; final String loc2 = RegexBuilder . make ( ) . addString ( loc0 ) . addString ( loc1 ) . build ( ) ; assertThat ( loc2 , equalTo ( loc0 + loc1 ) ) ; }
12,388
get the y distance . concode_field_sep PlanarEdge next concode_elem_sep PlanarVertex orig concode_elem_sep PlanarEdge prev concode_elem_sep boolean realedge concode_elem_sep double angle concode_elem_sep PlanarEdge twin concode_field_sep double getDX concode_elem_sep PlanarVertex getOrigin concode_elem_sep PlanarVertex...
double function ( ) { return twin . orig . point . y - orig . point . y ; }
12,389
sets the value of the channelinformation property . concode_field_sep JAXBElement<ChannelInformation> channelInformation concode_elem_sep JAXBElement<String> phoneNumber concode_elem_sep JAXBElement<String> newAccountNumber concode_field_sep JAXBElement<String> getNewAccountNumber concode_elem_sep void setPhoneNumber c...
void function ( JAXBElement < ChannelInformation > arg0 ) { this . channelInformation = arg0 ; }
12,390
known children contains code . concode_field_sep int SUBCHILDREN_LEVELS concode_elem_sep String MORE_CHILDREN_INDICATOR concode_elem_sep int MAX_CHILDREN concode_elem_sep String PAGE concode_elem_sep long serialVersionUID concode_field_sep List<LexEvsTreeNode> buildEvsTreePathFromRootTree concode_elem_sep List<LexEvsTr...
boolean function ( List < LexEvsTreeNode > arg0 , String arg1 ) { for ( LexEvsTreeNode loc0 : arg0 ) { if ( loc0 . getCode ( ) . equals ( arg1 ) ) { return true ; } } return false ; }
12,391
gets the sipprovider . concode_field_sep SipProvider sip_provider concode_elem_sep SipInterfaceListener listener concode_elem_sep Identifier id concode_field_sep void onReceivedMessage concode_elem_sep ConnectionIdentifier sendMessage concode_elem_sep ConnectionIdentifier sendMessage concode_elem_sep ConnectionIdentifi...
SipProvider function ( ) { return sip_provider ; }
12,392
gets the value of the invokerproxybindingname property . concode_field_sep List<EjbRef> ejbRef concode_elem_sep String invokerProxyBindingName concode_elem_sep JndiName jndiName concode_field_sep List<EjbRef> getEjbRef concode_elem_sep void setInvokerProxyBindingName concode_elem_sep void setJndiName concode_elem_sep J...
String function ( ) { return invokerProxyBindingName ; }
12,393
return shardsallocator implementations added by this plugin.the key of the returned map is the name of the allocator , and the valueis a function to construct the allocator . concode_field_sep PlaceHolder placeHolder concode_field_sep Collection<AllocationDecider> createAllocationDeciders
Map < String , Supplier < ShardsAllocator >> function ( Settings arg0 , ClusterSettings arg1 ) { return Collections . emptyMap ( ) ; }
12,394
gets the value of the streetaddress property . concode_field_sep String cityName concode_elem_sep String streetAddress concode_elem_sep String provinceCode concode_elem_sep String countryCode concode_elem_sep String postalCode concode_elem_sep String streetAddress2 concode_elem_sep String provinceName concode_field_sep...
String function ( ) { return streetAddress ; }
12,395
get current test user 's password according to the automation context concode_field_sep AutomationContext mbServer concode_elem_sep ServerConfigurationManager serverManager concode_elem_sep WebDriver driver concode_elem_sep Log log concode_elem_sep LoginLogoutClient loginLogoutClient concode_elem_sep String sessionCook...
String function ( ) { return mbServer . getContextTenant ( ) . getContextUser ( ) . getPassword ( ) ; }
12,396
removes all targets and sources . concode_field_sep ObjectMap<Source,DragListener> sourceListeners concode_elem_sep Actor validDragActor concode_elem_sep Actor dragActor concode_elem_sep int dragTime concode_elem_sep boolean keepWithinStage concode_elem_sep Array<Target> targets concode_elem_sep Actor invalidDragActor ...
void function ( ) { targets . clear ( ) ; for ( Entry < Source , DragListener > loc0 : sourceListeners . entries ( ) ) loc0 . key . actor . removeCaptureListener ( loc0 . value ) ; sourceListeners . clear ( ) ; }
12,397
returns a hash code . concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listeners concode_elem_sep VetoableChangeSupport vetoableChangeSupport concode_elem_sep String description concode_elem_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep Comparable key concode_elem_sep boolea...
int function ( ) { int loc0 ; loc0 = this . key . hashCode ( ) ; loc0 = 29 * loc0 + ( this . description != null ? this . description . hashCode ( ) : 0 ) ; return loc0 ; }
12,398
get the body of this message concode_field_sep int CHUNK_SIZE concode_elem_sep byte[] data concode_field_sep LongUDPFragment[] fragment concode_elem_sep LongUDPMessage defragment concode_elem_sep boolean checkFragments
byte [ ] function ( ) { return data ; }
12,399
adds all the groups from the provided set to the builder 's set of groups . concode_field_sep String identifier concode_elem_sep Set<String> groups concode_elem_sep boolean fromPolicy concode_elem_sep String resource concode_elem_sep Set<String> groups concode_elem_sep RequestAction action concode_elem_sep Set<String> ...
Builder function ( final Set < String > arg0 ) { if ( arg0 != null ) { this . groups . addAll ( arg0 ) ; } return this ; }