idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
22,200
set the maximum thread pool size of the core render service . the default is 15 . this number will need to be adjusted based on the characteristics of the application . note that increasing the number of threads past a certain number based on os , jvm , etc can actually decrease performance as thread context switching ...
void function ( int arg0 ) { this . maxPoolSize = arg0 ; }
22,201
shutdown the services just calls over to destroy concode_field_sep RequestGetterImpl requestGetter concode_elem_sep RequestStorageImpl requestStorage concode_elem_sep EntityBrokerCoreServiceManager instance concode_elem_sep EntityBrokerManagerImpl entityBrokerManager concode_elem_sep EntityTaggingService entityTaggingS...
void function ( ) { destroy ( ) ; }
22,202
the id of the instance . concode_field_sep String output concode_elem_sep String instanceId concode_elem_sep java.util.Date timestamp concode_field_sep GetConsoleOutputResult withInstanceId concode_elem_sep String getDecodedOutput concode_elem_sep GetConsoleOutputResult withTimestamp concode_elem_sep java.util.Date get...
String function ( ) { return this . instanceId ; }
22,203
status concode_field_sep PlaceHolder placeHolder concode_field_sep void init concode_elem_sep void stop concode_elem_sep void start concode_elem_sep int getStatus concode_elem_sep String getStatusText
String function ( ) { return org . opennms . core . fiber . Fiber . STATUS_NAMES [ getStatus ( ) ] ; }
22,204
executes pragma statement . if statement queries pragma value then it will be returned . concode_field_sep ISqlJetOptions options concode_field_sep CommonTree parsePragma concode_elem_sep Object readPragmaValue concode_elem_sep Object toResult concode_elem_sep boolean toBooleanValue concode_elem_sep ISqlJetOptions getO...
Object function ( String arg0 ) { return pragma ( parsePragma ( arg0 ) ) ; }
22,205
create an instance of unicodesequencetype concode_field_sep PlaceHolder placeHolder concode_field_sep MappingType createMappingType concode_elem_sep ConversionTable createConversionTable concode_elem_sep TokenType createTokenType
UnicodeSequenceType function ( ) { return new UnicodeSequenceType ( ) ; }
22,206
returns a unique name for an element to be inserted into the graph . concode_field_sep Queue<Element> queue concode_elem_sep TypeAdapter<T> typeAdapter concode_elem_sep ThreadLocal<Graph> graphThreadLocal concode_elem_sep Element nextCreate concode_elem_sep ConstructorConstructor constructorConstructor concode_elem_sep...
String function ( ) { return "srini_string" + Integer . toHexString ( map . size ( ) + 1 ) ; }
22,207
gets the required boolean value from the current context , if possible/available concode_field_sep int FULL_ALPHA concode_elem_sep int SELECTED_ALPHA concode_elem_sep String SHARED_PREFS_NAME concode_elem_sep int PULSE_ANIMATOR_DURATION concode_elem_sep int SELECTED_ALPHA_THEME_DARK concode_elem_sep int MONDAY_BEFORE_J...
boolean function ( Context arg0 , @ AttrRes int arg1 , boolean arg2 ) { TypedArray loc0 = arg0 . getTheme ( ) . obtainStyledAttributes ( new int [ ] { arg1 } ) ; try { return loc0 . getBoolean ( 0 , arg2 ) ; } finally { loc0 . recycle ( ) ; } }
22,208
returns preferred position of the probe in ui . concode_field_sep int preferredPosition concode_elem_sep String name concode_elem_sep Icon icon concode_elem_sep boolean available concode_elem_sep String description concode_elem_sep String IMAGE_PATH concode_field_sep String getProbeName concode_elem_sep String getProbe...
int function ( ) { return preferredPosition ; }
22,209
sets the node 's parent to the given node concode_field_sep Node<Node<SubNodeType>> parent concode_elem_sep int mutationType concode_elem_sep List<SubNodeType> children concode_elem_sep String mutationDescriptions[][] concode_field_sep Node<?> mutate concode_elem_sep Node<?> getParent concode_elem_sep String prettyPrin...
void function ( Node < Node < SubNodeType >> arg0 ) { parent = arg0 ; }
22,210
gets the value of the startdate property . concode_field_sep String lagUnits concode_elem_sep RecordRef task concode_elem_sep XMLGregorianCalendar endDate concode_elem_sep ManufacturingLagType lagType concode_elem_sep Long lagAmount concode_elem_sep ManufacturingOperationTaskPredecessorPredecessorType type concode_elem...
XMLGregorianCalendar function ( ) { return startDate ; }
22,211
writes input to a json file at path . concode_field_sep KeyMetadata metadata concode_elem_sep Map<Integer,KeyczarKey> keys concode_elem_sep Method getPublicMethod concode_field_sep byte[] decryptWithSession concode_elem_sep String decryptWithSession concode_elem_sep String getKey concode_elem_sep String getKey concode_...
void function ( GenericKeyczar arg0 , String arg1 ) { try { FileOutputStream loc0 = new FileOutputStream ( arg1 ) ; BufferedWriter loc1 = new BufferedWriter ( new OutputStreamWriter ( loc0 , "srini_string" ) ) ; JsonWriter . write ( arg0 , loc1 ) ; loc1 . close ( ) ; } catch ( IOException loc0 ) { throw new RuntimeExce...
22,212
the newly-configured availability options . indicates whether multi-az is enabled for the domain . concode_field_sep AvailabilityOptionsStatus availabilityOptions concode_field_sep AvailabilityOptionsStatus getAvailabilityOptions concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toSt...
void function ( AvailabilityOptionsStatus arg0 ) { this . availabilityOptions = arg0 ; }
22,213
gets the value of the results 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 results property . for example , to add a new item , do as...
List < User > function ( ) { if ( results == null ) { results = new ArrayList < User > ( ) ; } return this . results ; }
22,214
percolates element up heap from from the position given by the index . assume it is a maximum heap . concode_field_sep Comparator comparator concode_elem_sep int size concode_elem_sep Activation[] elements concode_elem_sep Logger log concode_elem_sep int DEFAULT_CAPACITY concode_field_sep void writeExternal concode_ele...
void function ( final int arg0 ) { int loc0 = arg0 ; Activation loc1 = elements [ loc0 ] ; while ( loc0 > 1 && compare ( loc1 , elements [ loc0 / 2 ] ) > 0 ) { final int loc2 = loc0 / 2 ; setElement ( loc0 , elements [ loc2 ] ) ; loc0 = loc2 ; } setElement ( loc0 , loc1 ) ; }
22,215
expectations to assert after every performed request . concode_field_sep List<ResultMatcher> defaultResultMatchers concode_elem_sep List<ResultHandler> defaultResultHandlers concode_elem_sep TestDispatcherServlet servlet concode_elem_sep ServletContext servletContext concode_elem_sep Filter[] filters concode_elem_sep S...
void function ( List < ResultMatcher > arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . defaultResultMatchers = arg0 ; }
22,216
returns the number of keys on this priority queue . concode_field_sep Key[] pq concode_elem_sep Comparator<Key> comparator concode_elem_sep MinPQ<Key> copy concode_elem_sep int N concode_field_sep Key next concode_elem_sep Key delMin concode_elem_sep boolean isMinHeap concode_elem_sep boolean isMinHeap concode_elem_sep...
int function ( ) { return N ; }
22,217
actually activates the user interface . this default implementation assumes that the configuration element passed to initialize has an attribute wizard denoting the wizard class to be used for the given refactoring . subclasses may override to open a different user interface concode_field_sep RefactoringWizard fWizard ...
boolean function ( Refactoring arg0 , Shell arg1 , int arg2 ) { String loc0 = fWizard . getDefaultPageTitle ( ) ; if ( loc0 == null ) loc0 = "srini_string" ; return new RefactoringStarter ( ) . activate ( arg0 , fWizard , arg1 , loc0 , arg2 ) ; }
22,218
implements transformlisthandler #starttransformlist . concode_field_sep TransformListHandler INSTANCE concode_field_sep void rotate concode_elem_sep void rotate concode_elem_sep void endTransformList concode_elem_sep void skewX concode_elem_sep void scale concode_elem_sep void scale concode_elem_sep void skewY concode_...
void function ( ) { }
22,219
lookup a sortorderenum by key . concode_field_sep SortOrderEnum ASCENDING concode_elem_sep SortOrderEnum DESCENDING concode_elem_sep int enumCode concode_elem_sep long serialVersionUID concode_elem_sep String enumName concode_elem_sep SortOrderEnum[] ALL concode_field_sep SortOrderEnum fromIntegerCode concode_elem_sep ...
SortOrderEnum function ( int arg0 ) { for ( int loc0 = 0 ; loc0 < ALL . length ; loc0 ++ ) { if ( arg0 == ALL [ loc0 ] . getCode ( ) ) { return ALL [ loc0 ] ; } } return null ; }
22,220
installs the facesfacet_2_2 facet concode_field_sep FacetFactory facetFactory concode_elem_sep PersistenceOperations persistenceOperations concode_elem_sep ProjectFactory projectFactory concode_elem_sep JavaWebProjectType javaWebProjectType concode_elem_sep JavaProjectType javaProjectType concode_field_sep ValidationFa...
FacesFacet_2_2 function ( Project arg0 ) { return facetFactory . install ( arg0 , FacesFacet_2_2 . class ) ; }
22,221
returns true , if the given datapoint is a standard datapoint . concode_field_sep Map<String,String> descriptions concode_elem_sep ResourceBundle descriptionsBundle concode_elem_sep Map<String,Set<String>> standardDatapoints concode_elem_sep Logger logger concode_field_sep String getParameterName concode_elem_sep Strin...
boolean function ( HmDatapoint arg0 ) { Set < String > loc0 = standardDatapoints . get ( arg0 . getChannel ( ) . getType ( ) ) ; if ( loc0 == null ) { return true ; } return loc0 . contains ( arg0 . getName ( ) ) ; }
22,222
is valid email boolean . concode_field_sep PlaceHolder placeHolder concode_field_sep String makeAvatarUrl concode_elem_sep String getPreStringSplit concode_elem_sep String getFirstName concode_elem_sep String getPostStringSplit
boolean function ( CharSequence arg0 ) { return arg0 != null && android . util . Patterns . EMAIL_ADDRESS . matcher ( arg0 ) . matches ( ) ; }
22,223
stops periodic updates of the textview . should be called from the application 's main thread . concode_field_sep Provider debuggable concode_elem_sep int REFRESH_INTERVAL_MS concode_elem_sep TextView textView concode_field_sep CodecCounters getCodecCounters concode_elem_sep String getBandwidthString concode_elem_sep S...
void function ( ) { textView . removeCallbacks ( this ) ; }
22,224
determines if current trie has any children . concode_field_sep Trie parent concode_elem_sep File file concode_elem_sep int frequency concode_elem_sep ArrayList<Trie> children concode_elem_sep char element concode_field_sep Trie getParent concode_elem_sep int getFrequency concode_elem_sep Trie getChild concode_elem_sep...
boolean function ( ) { boolean loc0 = true ; if ( this . children . isEmpty ( ) ) { loc0 = false ; } return loc0 ; }
22,225
disables the jersey feature with the given name . concode_field_sep JerseyContainerHolder holder concode_elem_sep DropwizardResourceConfig config concode_field_sep T getProperty concode_elem_sep void enable concode_elem_sep void replace concode_elem_sep void property concode_elem_sep DropwizardResourceConfig getResourc...
void function ( String arg0 ) { config . property ( requireNonNull ( arg0 ) , Boolean . FALSE ) ; }
22,226
get the name of the scope . concode_field_sep String scopeName concode_elem_sep ScopedProxyMode scopedProxyMode concode_field_sep ScopedProxyMode getScopedProxyMode concode_elem_sep void setScopeName concode_elem_sep void setScopedProxyMode
String function ( ) { return this . scopeName ; }
22,227
returns the friendly url entry id of this friendly url entry . concode_field_sep FriendlyURLEntry _friendlyURLEntry concode_field_sep boolean isLocalized concode_elem_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpand...
long function ( ) { return _friendlyURLEntry . getFriendlyURLEntryId ( ) ; }
22,228
report the end of an entity . this method is empty . concode_field_sep boolean inDTD concode_elem_sep String OPEN_TAG_COMMENT concode_elem_sep String CLOSE_TAG_COMMENT concode_elem_sep String[] EMPTY_COMMENTS concode_elem_sep ArrayList comment concode_field_sep void startCDATA concode_elem_sep void clearComments concod...
void function ( final String arg0 ) { }
22,229
set the duration of the effect in seconds concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay...
void function ( float arg0 ) { this . duration = arg0 ; ea . add ( "srini_string" , arg0 ) ; }
22,230
clear session details concode_field_sep Editor editor concode_elem_sep String IS_USER_LOGIN concode_elem_sep String MyPREFERENCES concode_elem_sep Context _ctx concode_elem_sep String KEY_EMAIL concode_elem_sep SharedPreferences sharedpreferences concode_field_sep void createUserLoginSession concode_elem_sep HashMap<St...
void function ( ) { resetValues ( ) ; }
22,231
by default , we always remember the containment feature of an object , unless it is an ecore element such as an annotation or it is a detached element . concode_field_sep Map nameFeatureMap concode_elem_sep Object NULL_TOKEN concode_field_sep boolean shouldOverrideCopyOperation concode_elem_sep void setName concode_ele...
boolean function ( EObject arg0 ) { if ( EcorePackage . eINSTANCE == arg0 . eClass ( ) . getEPackage ( ) ) { return false ; } try { arg0 . eResource ( ) . getURIFragment ( arg0 ) ; } catch ( Exception loc0 ) { return false ; } return true ; }
22,232
write an integer to a message , msb first . concode_field_sep int minLength concode_field_sep byte[] decodeByteArray concode_elem_sep byte[] decodeByteArray concode_elem_sep int decodeInt concode_elem_sep int decodeInt concode_elem_sep int decodeInt concode_elem_sep int decodeInt concode_elem_sep byte[] denseDecode con...
int function ( int arg0 , Message arg1 ) { for ( int loc0 = 0 ; loc0 < 4 ; ++ loc0 ) { arg1 . write ( ( byte ) ( ( arg0 >>> 24 ) & 0xff ) ) ; arg0 <<= 8 ; } return 4 ; }
22,233
gets the value of the creativeplaceholders 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 creativeplaceholders property . for example ,...
List < CreativePlaceholder > function ( ) { if ( creativePlaceholders == null ) { creativePlaceholders = new ArrayList < CreativePlaceholder > ( ) ; } return this . creativePlaceholders ; }
22,234
create an instance of jspxpages concode_field_sep QName _ResourceReference_QNAME concode_elem_sep QName _Resource_QNAME concode_field_sep Example createExample concode_elem_sep Content createContent concode_elem_sep JAXBElement<ResourceType> createResource concode_elem_sep Navigation createNavigation concode_elem_sep N...
JspxPages function ( ) { return new JspxPages ( ) ; }
22,235
when we advance in the token navigation we need to re-initialise the class definition with the coordinates of the new portable object in the context of which we will be navigating further . concode_field_sep ClassDefinition cd concode_elem_sep int initFinalPosition concode_elem_sep int offset concode_elem_sep Deque<Nav...
void function ( int arg0 , int arg1 , int arg2 ) { cd = serializer . setupPositionAndDefinition ( in , arg0 , arg1 , arg2 ) ; initFinalPositionAndOffset ( in , cd ) ; }
22,236
this is not really useful in the current usage but may be if this class is used in a different way . concode_field_sep FileAccess.FileSync outDescriptor concode_elem_sep Object timerTask concode_elem_sep int INSERT_WITH_SCHEMA concode_elem_sep boolean needsSync concode_elem_sep int writeDelay concode_elem_sep HsqlName ...
void function ( ) { }
22,237
append a luavalue to the buffer . concode_field_sep int offset concode_elem_sep byte[] NOBYTES concode_elem_sep byte[] bytes concode_elem_sep int length concode_elem_sep int DEFAULT_CAPACITY concode_elem_sep LuaValue value concode_field_sep Buffer concatTo concode_elem_sep Buffer concatTo concode_elem_sep Buffer concat...
Buffer function ( LuaValue arg0 ) { append ( arg0 . strvalue ( ) ) ; return this ; }
22,238
this looks from a given node , so the parameter is always > -1 . concode_field_sep int[] hashTable concode_elem_sep boolean fixedSize concode_elem_sep int newNodePointer concode_elem_sep int elementCount concode_elem_sep int[] linkTable concode_elem_sep int reclaimedNodePointer concode_field_sep void resetTables concod...
int function ( int arg0 ) { return linkTable [ arg0 ] ; }
22,239
returns the finish date of this tasks entry . concode_field_sep TasksEntry _tasksEntry concode_field_sep void setResolverUserId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem...
Date function ( ) { return _tasksEntry . getFinishDate ( ) ; }
22,240
set the meetingid for this particular 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 setModule concode_elem_sep v...
void function ( String arg0 ) { eventMap . put ( MEETING , arg0 ) ; }
22,241
return true if this taglet is an inline tag . concode_field_sep String name concode_field_sep boolean inPackage concode_elem_sep String getName concode_elem_sep boolean inOverview concode_elem_sep boolean inMethod concode_elem_sep boolean inConstructor concode_elem_sep boolean inField concode_elem_sep Content getTaglet...
boolean function ( ) { return false ; }
22,242
two statements on the same line they both are distributed over two lines are illegal . concode_field_sep int l concode_elem_sep int k concode_elem_sep int o concode_elem_sep int m concode_elem_sep int p concode_elem_sep int two concode_elem_sep int n concode_elem_sep int five concode_elem_sep int w concode_elem_sep int...
void function ( ) { toString ( ) ; toString ( ) ; }
22,243
isread concode_field_sep FolderIdWrapper moveFolderId concode_elem_sep boolean processRightAway concode_elem_sep FolderIdWrapper contextFolderId concode_elem_sep ConversationId conversationId concode_elem_sep DeleteMode deleteType concode_elem_sep Boolean isRead concode_elem_sep ConversationActionType action concode_el...
Boolean function ( ) { return this . isRead ; }
22,244
sets the user name of this ratings entry . concode_field_sep RatingsEntry _ratingsEntry concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep com.liferay.portlet.expando.model.ExpandoBridge g...
void function ( java . lang . String arg0 ) { _ratingsEntry . setUserName ( arg0 ) ; }
22,245
used to convert username-value , passwd or realm to 8859_1 encoding if all chars in string are within the 8859_1 latin 1 encoding range . concode_field_sep PlaceHolder placeHolder concode_field_sep void copyDirective concode_elem_sep String copyDirective concode_elem_sep boolean isLws concode_elem_sep void addValueToHe...
String function ( String arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return new String ( arg0 . getBytes ( "srini_string" ) , "srini_string" ) ; }
22,246
sets the absolutexpath . concode_field_sep String absoluteXPath concode_field_sep String getAbsoluteXPath
void function ( String arg0 ) { this . absoluteXPath = arg0 ; }
22,247
if a value is present , apply the provided mapping function to it , and if the result is non-null , return an optional describing theresult . otherwise return an empty optional . concode_field_sep Optional<?> EMPTY concode_elem_sep T value concode_field_sep Optional<T> ofNullable concode_elem_sep boolean isPresent conc...
Optional < U > function ( Function < ? super T , ? extends U > arg0 ) { Objects . requireNonNull ( arg0 ) ; if ( ! isPresent ( ) ) return empty ( ) ; else { return Optional . ofNullable ( arg0 . apply ( value ) ) ; } }
22,248
return this stopwatch 's simple statistics . concode_field_sep long lastStarted concode_elem_sep DetailedStatistics<Duration> detailedStats concode_elem_sep SimpleStatistics<Duration> stats concode_elem_sep String description concode_field_sep Duration getAverageDuration concode_elem_sep void start concode_elem_sep int...
SimpleStatistics < Duration > function ( ) { return this . stats ; }
22,249
returns a new or existing pool for the specified type , stored in a class to pool map . note the max size is ignoredif this is not the first time this pool has been requested . concode_field_sep ObjectMap<Class,Pool> typePools concode_field_sep T obtain concode_elem_sep void set concode_elem_sep void freeAll concode_el...
Pool < T > function ( Class < T > arg0 , int arg1 ) { Pool loc0 = typePools . get ( arg0 ) ; if ( loc0 == null ) { loc0 = new ReflectionPool ( arg0 , 4 , arg1 ) ; typePools . put ( arg0 , loc0 ) ; } return loc0 ; }
22,250
sets the value of the fieldposition property . concode_field_sep Object parent concode_elem_sep Boolean collapsedLevelsAreSubtotals concode_elem_sep CTPivotAreaReferences references concode_elem_sep Boolean labelOnly concode_elem_sep String offset concode_elem_sep CTExtensionList extLst concode_elem_sep STPivotAreaType...
void function ( Long arg0 ) { this . fieldPosition = arg0 ; }
22,251
get the subject of this message . concode_field_sep Map<String,String> headers concode_elem_sep List<Attachment> attachments concode_elem_sep String characterSet concode_elem_sep Map<RecipientType,List<EmailAddress>> recipients concode_elem_sep String subject concode_elem_sep List<EmailAddress> replyTo concode_elem_sep...
String function ( ) { return subject ; }
22,252
header length concode_field_sep String name concode_elem_sep Integer length concode_field_sep void setName concode_elem_sep String getName concode_elem_sep Integer getLength
void function ( Integer arg0 ) { this . length = arg0 ; }
22,253
called whenever the osgi framework starts our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; }
22,254
add a new binding to the end of the bindings list concode_field_sep MappingClass mappingClass concode_elem_sep Collection colParentResultSets concode_elem_sep BindingList bindingList concode_field_sep void init concode_elem_sep void updateMetadata concode_elem_sep InputSet getInputSet concode_elem_sep Collection getRes...
void function ( BindingAdapter arg0 ) { getBindingList ( ) . add ( arg0 ) ; }
22,255
gets the value of the form property . concode_field_sep List<StringPlusDisplayLabelPlusType> note concode_elem_sep List<EnumerationAndChronologyType> enumerationAndChronology concode_elem_sep StringPlusAuthority form concode_elem_sep List<String> shelfLocator concode_elem_sep List<String> electronicLocator concode_elem...
StringPlusAuthority function ( ) { return form ; }
22,256
returns an immutable list containing elements . concode_field_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep Charset UTF_8 concode_elem_sep String[] EMPTY_STRING_ARRAY concode_field_sep void checkOffsetAndCount concode_elem_sep String hostHeader concode_elem_sep boolean discard concode_elem_sep ThreadFactory threadFactor...
List < T > function ( T ... arg0 ) { return Collections . unmodifiableList ( Arrays . asList ( arg0 . clone ( ) ) ) ; }
22,257
example of deleting the acl entry for an entity . concode_field_sep Blob blob concode_field_sep URL signUrlWithSigner concode_elem_sep void reader concode_elem_sep byte[] getContent concode_elem_sep byte[] readContentRange concode_elem_sep Acl createAcl concode_elem_sep Blob update concode_elem_sep URL signUrl concode_...
boolean function ( ) { boolean loc0 = blob . deleteAcl ( User . ofAllAuthenticatedUsers ( ) ) ; if ( loc0 ) { } else { } return loc0 ; }
22,258
is there a link for the given canonical form of metadata i.e. schema.element.qualifier ? concode_field_sep Map<String,String> links concode_field_sep String getLinkType
boolean function ( String arg0 ) { return links . containsKey ( arg0 ) ; }
22,259
gets whether or not this object listing is complete . concode_field_sep boolean isTruncated concode_elem_sep String bucketName concode_elem_sep List<String> commonPrefixes concode_elem_sep String nextMarker concode_elem_sep int maxKeys concode_elem_sep List<NOSObjectSummary> objectSummaries concode_elem_sep String pref...
boolean function ( ) { return isTruncated ; }
22,260
gets the value of the remark property . concode_field_sep String code concode_elem_sep List<Question> question concode_elem_sep Description description concode_elem_sep Remark remark concode_elem_sep List<Section> section concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep Integer position ...
Remark function ( ) { return remark ; }
22,261
gets the height of this tilemap number of tiles down . concode_field_sep Image[][] tiles concode_elem_sep LinkedList sprites concode_elem_sep Sprite player concode_field_sep void setTile concode_elem_sep void removeSprite concode_elem_sep Image getTile concode_elem_sep Sprite getPlayer concode_elem_sep void addSprite c...
int function ( ) { return tiles [ 0 ] . length ; }
22,262
return a textual representation of this money amount . concode_field_sep BigInteger amountInCents concode_elem_sep Currency currency concode_field_sep void add concode_elem_sep Currency getCurrency concode_elem_sep boolean isNegative concode_elem_sep boolean isValidCurrency concode_elem_sep MoneyAmount toCurrency conco...
String function ( ) { return "srini_string" + getAmountInCents ( ) + "srini_string" + getCurrency ( ) + "srini_string" ; }
22,263
tests that javax.ejb.sessionbean #setsessioncontext javax.ejb.sessioncontext was invoked on a statelesssession bean , implementing the javax.ejb.sessionbean interface concode_field_sep InitialContext ctx concode_field_sep T lookup concode_elem_sep void testSessionContextInjectionOnSFSB concode_elem_sep void testWasCanc...
void function ( ) { final SLSBImplementingSessionBean loc0 = lookup ( SLSBImplementingSessionBean . class ) ; Assert . assertTrue ( "srini_string" , loc0 . wasSetSessionContextMethodInvoked ( ) ) ; }
22,264
the id of the lambdafunctionscheduled event that was recorded when this aws lambda function was scheduled . this information can be useful for diagnosing problems by tracing back the chain of events leading up to this event . concode_field_sep String timeoutType concode_elem_sep Long startedEventId concode_elem_sep Lon...
Long function ( ) { return scheduledEventId ; }
22,265
gets the user token . concode_field_sep Class<T> remoteType concode_elem_sep UserToken userToken concode_elem_sep Class<?>[] interfaces concode_elem_sep int hashcode concode_elem_sep long serialVersionUID concode_elem_sep String remoteReferenceId concode_field_sep Class<T> getRemoteType concode_elem_sep int hashCode co...
UserToken function ( ) { return this . userToken ; }
22,266
verify that this class implements publiccloneable . concode_field_sep double EPSILON concode_field_sep void testCloning concode_elem_sep void testFindDomainBounds concode_elem_sep void testSerialization concode_elem_sep void testHashcode concode_elem_sep void testEquals concode_elem_sep DefaultIntervalXYDataset createS...
void function ( ) { ClusteredXYBarRenderer loc0 = new ClusteredXYBarRenderer ( ) ; assertTrue ( loc0 instanceof PublicCloneable ) ; }
22,267
sets the value of the content property . concode_field_sep Navigation navigation concode_elem_sep String name concode_elem_sep Content content concode_field_sep void setName concode_elem_sep String getName concode_elem_sep Content getContent concode_elem_sep Navigation getNavigation concode_elem_sep void setNavigation
void function ( Content arg0 ) { this . content = arg0 ; }
22,268
creates a new xpathsubsetcontentselector object . concode_field_sep ContentManager contentManager concode_elem_sep XBLOMContentElement contentElement concode_elem_sep Element boundElement concode_elem_sep HashMap selectorFactories concode_field_sep NodeList getSelectedContent concode_elem_sep boolean isSelected concode...
AbstractContentSelector function ( ContentManager arg0 , XBLOMContentElement arg1 , Element arg2 , String arg3 ) { return new XPathSubsetContentSelector ( arg0 , arg1 , arg2 , arg3 ) ; }
22,269
removes the given state machine from runtime service . concode_field_sep ReentrantReadWriteLock lock concode_elem_sep TimerTask timerTask concode_elem_sep Timer timer concode_elem_sep List<IStatemachine> statemachineSet concode_field_sep void cancel concode_elem_sep void run concode_elem_sep boolean addStatemachine
boolean function ( IStatemachine arg0 ) { lock . writeLock ( ) . lock ( ) ; boolean loc0 = statemachineSet . remove ( arg0 ) ; lock . writeLock ( ) . unlock ( ) ; return loc0 ; }
22,270
the prefix applied to the log file names . concode_field_sep String bucketName concode_elem_sep String lastFailureMessage concode_elem_sep Boolean loggingEnabled concode_elem_sep java.util.Date lastSuccessfulDeliveryTime concode_elem_sep java.util.Date lastFailureTime concode_elem_sep String s3KeyPrefix concode_field_s...
String function ( ) { return s3KeyPrefix ; }
22,271
sets the dimension related to this data . concode_field_sep Object value concode_elem_sep Dimension dimension concode_field_sep Object getValue concode_elem_sep void setValue concode_elem_sep Dimension getDimension concode_elem_sep SingleData clone
void function ( Dimension arg0 ) { if ( arg0 == null ) { throw new ExplanationException ( "srini_string" ) ; } this . dimension = arg0 ; }
22,272
for internal use only . sets the prefix parameter originally used to request this multipart upload listing . concode_field_sep boolean isTruncated concode_elem_sep String bucketName concode_elem_sep String nextKeyMarker concode_elem_sep List<String> commonPrefixes concode_elem_sep String delimiter concode_elem_sep Stri...
void function ( String arg0 ) { this . prefix = arg0 ; }
22,273
computes the median value for the specified dimension from those coordinates with the specified indices . concode_field_sep int mCount concode_elem_sep int mDim concode_field_sep double[] computeAverage concode_elem_sep double computeAverage concode_elem_sep void checkDimensions concode_elem_sep void checkIndices conco...
double function ( int [ ] arg0 , int arg1 ) { return _computeMedian ( arg0 , arg1 , true ) ; }
22,274
sets the task duration actual or estimated . concode_field_sep TimePeriod duration concode_elem_sep long serialVersionUID concode_elem_sep List subtasks concode_elem_sep String description concode_elem_sep Double percentComplete concode_field_sep void removeSubtask concode_elem_sep void setPercentComplete concode_elem_...
void function ( TimePeriod arg0 ) { this . duration = arg0 ; }
22,275
this method sets time when this point was changed on device concode_field_sep AllocationStatus allocationStatus concode_elem_sep cudaEvent_t writeLane concode_elem_sep boolean constant concode_elem_sep WeakReference<BaseDataBuffer> originalDataBufferReference concode_elem_sep PointersPair pointerInfo concode_elem_sep A...
void function ( ) { tickDeviceRead ( ) ; accessDeviceWrite . set ( timeProvider . getCurrentTime ( ) ) ; }
22,276
extract the table id from the key into the given text concode_field_sep Logger log concode_elem_sep ByteSequence BYTE_SEQ_NAME concode_elem_sep ULongLexicoder longEncoder concode_elem_sep ByteSequence BYTE_SEQ_NAME concode_elem_sep Text NAME concode_elem_sep Text NAME concode_elem_sep Text ROW_SEPARATOR concode_elem_se...
void function ( Key arg0 , Text arg1 ) { Preconditions . checkNotNull ( arg0 ) ; Preconditions . checkNotNull ( arg1 ) ; arg0 . getColumnQualifier ( arg1 ) ; }
22,277
returns the current web driver object concode_field_sep WebDriver driver concode_elem_sep TestConfiguration testCfg concode_elem_sep String serverUrl concode_elem_sep BrowserType browserType concode_field_sep void setupDriver concode_elem_sep void setUp concode_elem_sep void testSleeps concode_elem_sep void tearDown
WebDriver function ( ) { return driver ; }
22,278
indicates if the search text is a regular expression or just text to search . concode_field_sep boolean regexp concode_elem_sep String searchText concode_field_sep String getText concode_elem_sep boolean matches
boolean function ( ) { return regexp ; }
22,279
returns whether the current record should be skipped dropped will be called after read concode_field_sep PlaceHolder placeHolder concode_field_sep T read
boolean function ( ) { return false ; }
22,280
transform a rectangle with all matrices with potential animation phases . concode_field_sep float[] ptsBuffer concode_elem_sep float[] valuePointsForGenerateTransformedValuesBubble concode_elem_sep float[] valuePointsForGenerateTransformedValuesCandle concode_elem_sep Matrix mMatrixValueToPx concode_elem_sep Matrix mMa...
void function ( RectF arg0 , float arg1 ) { arg0 . left *= arg1 ; arg0 . right *= arg1 ; mMatrixValueToPx . mapRect ( arg0 ) ; mViewPortHandler . getMatrixTouch ( ) . mapRect ( arg0 ) ; mMatrixOffset . mapRect ( arg0 ) ; }
22,281
gets the list of filesgrouprecordbean which will be used by the ice : datatable component . concode_field_sep String CHILD_ROW_STYLE_CLASS concode_elem_sep String GROUP_INDENT_STYLE_CLASS concode_elem_sep String EXPAND_IMAGE concode_elem_sep String GROUP_ROW_STYLE_CLASS concode_elem_sep ArrayList inventoryGroupItemBean...
ArrayList function ( ) { return inventoryGroupItemBeans ; }
22,282
sets the spring bean id for this bean . concode_field_sep MBCategoryService _mbCategoryService concode_field_sep int getSubscribedCategoriesCount concode_elem_sep void subscribeCategory concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portlet.messageboards.model.MBCategory moveCategoryFromTrash conc...
void function ( java . lang . String arg0 ) { _mbCategoryService . setBeanIdentifier ( arg0 ) ; }
22,283
returns the bytes per frame of this wav . concode_field_sep int numChannels concode_elem_sep int bitsPerSample concode_elem_sep int sampleRateHz concode_elem_sep long dataSize concode_elem_sep long dataStartPosition concode_elem_sep int encoding concode_elem_sep int averageBytesPerSecond concode_elem_sep int blockAlign...
int function ( ) { return blockAlignment ; }
22,284
adds top concode_field_sep boolean compact concode_elem_sep Vector values concode_elem_sep String name concode_field_sep void setHeaders concode_elem_sep String getName concode_elem_sep boolean isCommaSeparated concode_elem_sep boolean isCommaSeparated concode_elem_sep Vector getValues concode_elem_sep Vector getHeader...
void function ( Header arg0 ) { values . insertElementAt ( arg0 . getValue ( ) , 0 ) ; }
22,285
extract the simp session attributes from the given message , wrap them in a simpattributes instance and bind it to the current thread , concode_field_sep ThreadLocal<SimpAttributes> attributesHolder concode_field_sep SimpAttributes getAttributes concode_elem_sep void setAttributes concode_elem_sep SimpAttributes curren...
void function ( Message < ? > arg0 ) { setAttributes ( SimpAttributes . fromMessage ( arg0 ) ) ; }
22,286
this method is deprecated , use #operation same parameter . concode_field_sep PlaceHolder placeHolder concode_field_sep void result concode_elem_sep void set_exception concode_elem_sep Context ctx concode_elem_sep void set_result concode_elem_sep void arguments concode_elem_sep void except concode_elem_sep void params ...
String function ( ) { throw new NO_IMPLEMENT ( ) ; }
22,287
this method was generated by mybatis generator . this method returns the value of the database column public.questionstablesfields.name concode_field_sep String textC concode_elem_sep Integer columnId concode_elem_sep String textA concode_elem_sep Integer controlledList concode_elem_sep String defaultValue concode_elem...
String function ( ) { return name ; }
22,288
obtains the sound bank that contains this soundbankresource . concode_field_sep Soundbank soundBank concode_elem_sep Class dataClass concode_elem_sep String name concode_field_sep String getName concode_elem_sep Class<?> getDataClass concode_elem_sep Object getData
Soundbank function ( ) { return soundBank ; }
22,289
transform the given attribute name , eg : `` foo '' to `` foo '' , `` firstname '' to `` firstname '' concode_field_sep PlaceHolder placeHolder concode_field_sep String integerToString concode_elem_sep String buildGetter concode_elem_sep String buildGetter concode_elem_sep String bigDecimalToString concode_elem_sep Str...
String function ( String arg0 ) { return arg0 . substring ( 0 , 1 ) . toUpperCase ( ) + arg0 . substring ( 1 , arg0 . length ( ) ) ; }
22,290
set the pan of the oscillator , but do n't smoothly transition from whatever the current pan value is to this new one . concode_field_sep float leftScale concode_elem_sep float portStep concode_elem_sep AudioSignal ampMod concode_elem_sep float amp concode_elem_sep float newPan concode_elem_sep float freq concode_elem_...
void function ( float arg0 ) { setPan ( arg0 ) ; pan = constrain ( arg0 , - 1 , 1 ) ; }
22,291
the id for the origin access identity . for example : e74fte3ajfj256a . concode_field_sep String comment concode_elem_sep String id concode_elem_sep String s3CanonicalUserId concode_field_sep CloudFrontOriginAccessIdentitySummary withComment concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep...
void function ( String arg0 ) { this . id = arg0 ; }
22,292
creates a griddatafactory initialized with defaults . initial values are : align swt.fill , swt.fill exclude false grab false , false span 1,1 concode_field_sep GridData data concode_field_sep GridDataFactory fillDefaultsInternal concode_elem_sep GridDataFactory align concode_elem_sep GridDataFactory grab concode_elem_...
GridDataFactory function ( ) { return new GridDataFactory ( ) . fillDefaultsInternal ( ) ; }
22,293
a base64-encoded amazon s3 upload policy that gives amazon ec2 permission to upload items into amazon s3 on your behalf . concode_field_sep String bucket concode_elem_sep String aWSAccessKeyId concode_elem_sep String uploadPolicySignature concode_elem_sep String prefix concode_elem_sep String uploadPolicy concode_field...
void function ( String arg0 ) { this . uploadPolicy = arg0 ; }
22,294
lets the referenced class accept the given visitor . concode_field_sep int u2index concode_elem_sep int u2startPC concode_elem_sep Clazz referencedClass concode_elem_sep int u2nameIndex concode_elem_sep int u2length concode_elem_sep int u2descriptorIndex concode_field_sep placeholderType placeHolder
void function ( ClassVisitor arg0 ) { if ( referencedClass != null ) { referencedClass . accept ( arg0 ) ; } }
22,295
returns e the base of natural logarithms raised to a power . concode_field_sep PlaceHolder placeHolder concode_field_sep double Tan concode_elem_sep double Acosh concode_elem_sep double Cosh concode_elem_sep double Rnd concode_elem_sep double Rnd concode_elem_sep double Acsc concode_elem_sep void Randomize concode_elem...
double function ( double arg0 ) { return java . lang . Math . exp ( arg0 ) ; }
22,296
specify the destroy annotation to check for , indicating destruction methods to call when the context is shutting down . any custom annotation can be used , since there are no required annotation attributes . there is no default , although a typical choice is the jsr-250 javax.annotation.predestroy annotation . concode...
void function ( Class < ? extends Annotation > arg0 ) { this . destroyAnnotationType = arg0 ; }
22,297
indicate whether the given uri matches this template . concode_field_sep UriComponents uriComponents concode_elem_sep String uriTemplate concode_elem_sep Pattern pattern concode_elem_sep List<String> variableNames concode_elem_sep Pattern matchPattern concode_field_sep URI expand concode_elem_sep URI expand concode_ele...
boolean function ( String arg0 ) { if ( arg0 == null ) { return false ; } Matcher loc0 = this . matchPattern . loc0 ( arg0 ) ; return loc0 . matches ( ) ; }
22,298
threadsafe factory that provides an authorized bigquery service . concode_field_sep Object serviceLock concode_elem_sep Bigquery service concode_field_sep Bigquery createAuthorizedClient
Bigquery function ( ) { if ( service == null ) { synchronized ( serviceLock ) { if ( service == null ) { service = createAuthorizedClient ( ) ; } } } return service ; }
22,299
set the list of ids for taggable people to tag with this content . concode_field_sep Uri contentUrl concode_elem_sep String ref concode_elem_sep List<String> peopleIds concode_elem_sep String placeId concode_field_sep List<String> readUnmodifiableStringList concode_elem_sep E setContentUrl concode_elem_sep E setRef con...
E function ( @ Nullable final List < String > arg0 ) { this . peopleIds = ( arg0 == null ? null : Collections . unmodifiableList ( arg0 ) ) ; return ( E ) this ; }