idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
6,400
gets the includedescendants value for this adunittargeting . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Boolean includeDescendants concode_elem_sep java.lang.String adUnitId concode_fie...
java . lang . Boolean function ( ) { return includeDescendants ; }
6,401
validates values are not empty . concode_field_sep ImmutableSet<FlowEntry> current concode_elem_sep InternalFlowRuleListener listener concode_elem_sep ImmutableSet<FlowEntry> previous concode_elem_sep Logger log concode_elem_sep StatisticStore statisticStore concode_elem_sep FlowRuleService flowRuleService concode_fiel...
boolean function ( ) { return ! ( current . isEmpty ( ) || previous . isEmpty ( ) ) ; }
6,402
tracks connecting to the target . concode_field_sep boolean connected concode_elem_sep HttpHost targetHost concode_elem_sep TunnelType tunnelled concode_elem_sep InetAddress localAddress concode_elem_sep HttpHost[] proxyChain concode_elem_sep boolean secure concode_elem_sep LayerType layered concode_field_sep void conn...
void function ( boolean arg0 ) { if ( this . connected ) { throw new IllegalStateException ( "srini_string" ) ; } this . connected = true ; this . secure = arg0 ; }
6,403
method to move the user 's view to the top of the log if necessary concode_field_sep String color concode_elem_sep String DEFAULT_NICK concode_elem_sep String buttonImage concode_elem_sep Log log concode_elem_sep boolean minimized concode_elem_sep String autoLoad concode_elem_sep String MAXIMIZE_IMAGE concode_elem_sep ...
String function ( ) { if ( position >= NUM_MESSAGES ) { position = ( NUM_MESSAGES - 1 ) ; } return ( "srini_string" ) ; }
6,404
get the no-op state . concode_field_sep String filetype concode_elem_sep boolean noOp concode_elem_sep boolean checksumError concode_elem_sep String filepath concode_elem_sep String destination concode_elem_sep String onBehalfOf concode_elem_sep String packaging concode_elem_sep String userAgent concode_elem_sep boolea...
boolean function ( ) { return noOp ; }
6,405
returns the collection that this basicdatum was constructed with . concode_field_sep List<FEAT> features concode_elem_sep long serialVersionUID concode_elem_sep LAB label concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep LAB label
List < FEAT > function ( ) { return features ; }
6,406
logs a message with the debug level . concode_field_sep ALogger logger concode_elem_sep play.api.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep v...
void function ( String arg0 ) { logger . underlyingLogger ( ) . debug ( arg0 ) ; }
6,407
sets the user name of this projects entry . concode_field_sep ProjectsEntry _projectsEntry concode_field_sep Date getStartDate concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concod...
void function ( java . lang . String arg0 ) { _projectsEntry . setUserName ( arg0 ) ; }
6,408
returns the manufacturer of this definition . concode_field_sep Definition _definition concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem...
java . lang . String function ( ) { return _definition . getManufacturer ( ) ; }
6,409
put / states : updates an existing state . concode_field_sep StateRepository stateRepository concode_elem_sep Logger log concode_field_sep List<State> getAllStates concode_elem_sep ResponseEntity<State> getState concode_elem_sep ResponseEntity<State> createState concode_elem_sep ResponseEntity<Void> deleteState
ResponseEntity < State > function ( @ Valid @ RequestBody State arg0 ) { log . debug ( "srini_string" , arg0 ) ; if ( arg0 . getId ( ) == null ) { return createState ( arg0 ) ; } State loc0 = stateRepository . save ( arg0 ) ; return ResponseEntity . ok ( ) . headers ( HeaderUtil . createEntityUpdateAlert ( "srini_strin...
6,410
bind the sub systems to the controller called once during the init phase . concode_field_sep BoundingBox boundingBox concode_elem_sep ParticleControllerRenderer<?,?> renderer concode_elem_sep Matrix4 transform concode_elem_sep float deltaTime concode_elem_sep String name concode_elem_sep Array<Influencer> influencers c...
void function ( ) { emitter . set ( this ) ; for ( Influencer loc0 : influencers ) loc0 . set ( this ) ; renderer . set ( this ) ; }
6,411
appends the least-significant bits , from value , in order from most-significant to least-significant . for example , appending 6 bits from 0x000001e will append the bits 0 , 1 , 1 , 1 , 1 , 0 in that order . concode_field_sep int size concode_elem_sep int[] bits concode_field_sep void set concode_elem_sep void toBytes...
void function ( int arg0 , int arg1 ) { if ( arg1 < 0 || arg1 > 32 ) { throw new IllegalArgumentException ( "srini_string" ) ; } ensureCapacity ( size + arg1 ) ; for ( int loc0 = arg1 ; loc0 > 0 ; loc0 -- ) { appendBit ( ( ( arg0 >> ( loc0 - 1 ) ) & 0x01 ) == 1 ) ; } }
6,412
web browsers may set the ` origin ' request header to ` null ' if a resource is loaded from the local file system . calling this method will enable a successful cors response with a wildcard for the cors response header ` access-control-allow-origin ' . concode_field_sep boolean noPreflightHeaders concode_elem_sep bool...
Netty4CorsConfigBuilder function ( ) { allowNullOrigin = true ; return this ; }
6,413
read event data as a given generic type . concode_field_sep MultivaluedMap<String,String> headers concode_elem_sep byte[] data concode_elem_sep MessageBodyWorkers messageBodyWorkers concode_elem_sep ByteArrayOutputStream dataStream concode_elem_sep GenericType<String> STRING_AS_GENERIC_TYPE concode_elem_sep String name...
T function ( GenericType < T > arg0 ) { return readData ( arg0 , null ) ; }
6,414
add or update a cookie . this method adds a cookie , serializing its value using xml . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean checkAutoLogin concode_elem_sep void configureUserSession concode_elem_sep void refreshSession concode_elem_sep void addCookieTemplate concode_elem_sep void prepareT...
void function ( String arg0 , String arg1 ) { int loc0 = 3600 * 24 * 365 ; if ( arg1 == null ) { loc0 = 0 ; arg1 = "srini_string" ; } Cookie loc1 = new Cookie ( arg0 , arg1 ) ; loc1 . setMaxAge ( loc0 ) ; loc1 . setPath ( "srini_string" ) ; JForumExecutionContext . getResponse ( ) . addCookie ( loc1 ) ; }
6,415
enable tracing . concode_field_sep int[] jj_la1 concode_elem_sep int[] jj_expentry concode_elem_sep SimpleCharStream jj_input_stream concode_elem_sep Token jj_nt concode_elem_sep int jj_ntk concode_elem_sep int[] jj_la1_0 concode_elem_sep boolean jj_initialized_once concode_elem_sep int jj_gen concode_elem_sep java.uti...
void function ( ) { }
6,416
fieldtypesignature : : = classtypesignature | arraytypesignature | typevariablesignature . concode_field_sep StringBuilder sb concode_elem_sep String JAVA_OBJECT_SIGNATURE concode_field_sep void genClassTypeSignature concode_elem_sep String createMethodTypeSignature concode_elem_sep void genMethodTypeSignature concode_...
void function ( ITypeBinding arg0 ) { if ( arg0 . isArray ( ) ) { sb . append ( '[' ) ; genTypeSignature ( arg0 . getComponentType ( ) ) ; } else if ( arg0 . isTypeVariable ( ) ) { genTypeVariableSignature ( arg0 ) ; } else { genClassTypeSignature ( arg0 ) ; } }
6,417
dequeue message from queue entries for transactions concode_field_sep boolean configured concode_elem_sep Log log concode_elem_sep AndesSubscriptionManager subscriptionManager concode_field_sep boolean isConfigured concode_elem_sep Transaction newTransaction concode_elem_sep void recover concode_elem_sep void updateQue...
void function ( final TransactionLogResource arg0 , Long arg1 ) { }
6,418
creates a dictionary from a . plist file . concode_field_sep PlaceHolder placeHolder concode_field_sep NSArray arrayFromFile concode_elem_sep NSDictionary dictionaryFromInputStream concode_elem_sep NSDictionary dictionaryFromString concode_elem_sep NSArray arrayFromInputStream concode_elem_sep NSArray arrayFromString
NSDictionary function ( File arg0 ) { return dictionaryFromString ( StringUtilities . stringFromFile ( arg0 ) ) ; }
6,419
if the external connection pool supports interceptors this method should be overwritten concode_field_sep ExternalConnectionPool instance concode_elem_sep Logger log concode_field_sep Connection getConnection concode_elem_sep ExternalConnectionPool getInstance
void function ( List < PoolInterceptorProvider > arg0 ) { }
6,420
get context concode_field_sep String name concode_elem_sep String description concode_elem_sep String lifeCycleStatus concode_elem_sep String context concode_elem_sep String provider concode_elem_sep String workflowStatus concode_elem_sep String id concode_elem_sep String version concode_field_sep void setName concode_...
String function ( ) { return context ; }
6,421
return the input block size . the largest message we can process is key_size_in_bits + 3 / 16 , which in our world comes to key_size_in_bytes / 2 . concode_field_sep byte[] shadows concode_elem_sep BigInteger SIX concode_elem_sep int padBits concode_elem_sep AsymmetricBlockCipher engine concode_elem_sep BigInteger SIXT...
int function ( ) { int loc0 = engine . getInputBlockSize ( ) ; if ( forEncryption ) { return ( loc0 + 1 ) / 2 ; } else { return loc0 ; } }
6,422
nicely formats xml into a string concode_field_sep XMLInputFactory xmlInputFactory concode_elem_sep Logger LOGGER concode_field_sep Result transform concode_elem_sep Result transform concode_elem_sep String getRootNamespace concode_elem_sep String format concode_elem_sep String format concode_elem_sep void initializeXM...
String function ( Source arg0 ) { TransformerProperties loc0 = new TransformerProperties ( ) ; loc0 . addOutputProperty ( OutputKeys . INDENT , "srini_string" ) ; loc0 . addOutputProperty ( "srini_string" , "srini_string" ) ; return format ( arg0 , loc0 ) ; }
6,423
return vaultsession for further vault manipulation when needed . concode_field_sep String keyStoreType concode_elem_sep String salt concode_elem_sep String keyStorePassword concode_elem_sep String FILE_SEPARATOR concode_elem_sep int keySize concode_elem_sep String VAULT_DAT_FILE concode_elem_sep String SHARED_DAT_FILE ...
VaultSession function ( ) { return vaultSession ; }
6,424
obtains value of the coreprotocolpnames #http_element_charset parameter.if not set , defaults to us-ascii . concode_field_sep PlaceHolder placeHolder concode_field_sep ProtocolVersion getVersion concode_elem_sep boolean useExpectContinue concode_elem_sep void setHttpElementCharset concode_elem_sep void setVersion conco...
String function ( final HttpParams arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } String loc0 = ( String ) arg0 . getParameter ( CoreProtocolPNames . HTTP_ELEMENT_CHARSET ) ; if ( loc0 == null ) { loc0 = HTTP . DEFAULT_PROTOCOL_CHARSET ; } return loc0 ; }
6,425
test method for org.apache.niolex.network.demo.stuff.rpcserviceimpl #throwex . concode_field_sep PlaceHolder placeHolder concode_field_sep void testTestMe
void function ( ) { RpcService loc0 = new RpcServiceImpl ( ) ; loc0 . throwEx ( ) ; }
6,426
whether to base64-encode byte properties when reading andwriting json . when set to true , a custom com.google.gson.typeadapter will beregistered via gsonbuilder #registertypehierarchyadapter class , object which serializes a byte property to and from a base64-encoded stringinstead of a json array . note : use of this ...
void function ( boolean arg0 ) { this . base64EncodeByteArrays = arg0 ; }
6,427
returns the next lognode in the chain . concode_field_sep LogNode mNext concode_field_sep void println concode_elem_sep void setNext
LogNode function ( ) { return mNext ; }
6,428
converts the given surrogate pair into a 32-bit ucs-4 character . concode_field_sep int character concode_elem_sep boolean isPair concode_elem_sep char MIN concode_elem_sep char MIN_HIGH concode_elem_sep char MAX_HIGH concode_elem_sep char MIN_LOW concode_elem_sep CoderResult error concode_elem_sep char MAX concode_ele...
int function ( char arg0 , char arg1 ) { return ( ( ( arg0 & 0x3ff ) << 10 ) | ( arg1 & 0x3ff ) ) + 0x10000 ; }
6,429
getter method concode_field_sep Integer workFlRlId concode_elem_sep Integer workFlLevel concode_elem_sep String workFlModifiedBy concode_elem_sep Date workFlModifiedDate concode_elem_sep Integer deptId concode_elem_sep String workFlCreatedBy concode_elem_sep long serialVersionUID concode_elem_sep Integer workFlTat conc...
Integer function ( ) { return deptId ; }
6,430
returns a cached instance of the sorter as described in the extension 's xml . the sorter is #createsorter created the first time that this method is called and then cached . concode_field_sep String NAME concode_elem_sep String fId concode_elem_sep String fName concode_elem_sep String fClass concode_elem_sep String CL...
AbstractProposalSorter function ( ) { if ( fSorter == null ) fSorter = createSorter ( ) ; return fSorter ; }
6,431
checks whether the color mode for a marker is true / random concode_field_sep MarkerOptions mMarkerOptions concode_elem_sep float mMarkerColor concode_elem_sep int HSV_VALUES concode_elem_sep HashSet<String> mStylesSet concode_elem_sep String mStyleId concode_elem_sep HashMap<String,String> mBalloonOptions concode_elem...
boolean function ( ) { return mIconRandomColorMode ; }
6,432
return type metadata object concode_field_sep com.omniture.www.Settings settings concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String rsid concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String site_title conco...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
6,433
ispreventcombatdamagethisturn . concode_field_sep boolean assignedFirstStrikeDamageThisCombat concode_elem_sep boolean preventCombatDamageThisTurn concode_elem_sep boolean humanMulliganedToZero concode_elem_sep boolean resolvedFirstStrikeDamageThisCombat concode_elem_sep ArrayList<Card_Color> globalColorChanges concode...
boolean function ( ) { return preventCombatDamageThisTurn ; }
6,434
creates a new user tracker with the primary key . does not add the user tracker to the database . concode_field_sep UserTrackerLocalService _service concode_field_sep int getUserTrackersCount concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.model.UserTracker fetchUse...
com . liferay . portal . kernel . model . UserTracker function ( long arg0 ) { return getService ( ) . createUserTracker ( arg0 ) ; }
6,435
calculates the statistics required for a boxandwhiskeritem from a list of number objects . any items in the list that are null , not an instance of number , or equivalent to double.nan , will be ignored . concode_field_sep PlaceHolder placeHolder concode_field_sep double calculateQ3 concode_elem_sep double calculateQ1
BoxAndWhiskerItem function ( List arg0 ) { return calculateBoxAndWhiskerStatistics ( arg0 , true ) ; }
6,436
append a long value . concode_field_sep Mode mode concode_elem_sep boolean comma concode_elem_sep Stack<Mode> stack concode_elem_sep Writer writer concode_field_sep void pop concode_elem_sep void comma concode_elem_sep JSONWriter array concode_elem_sep JSONWriter end concode_elem_sep JSONWriter endArray concode_elem_se...
JSONWriter function ( long arg0 ) { return append ( Long . toString ( arg0 ) ) ; }
6,437
sets the name of the ship strategy for the represented input . concode_field_sep IntermediateDataSetID sourceId concode_elem_sep String preProcessingOperationName concode_elem_sep String shipStrategyName concode_elem_sep String operatorLevelCachingDescription concode_elem_sep long serialVersionUID concode_elem_sep Inte...
void function ( String arg0 ) { this . shipStrategyName = arg0 ; }
6,438
set whether or not messages for this resource should be batch processed concode_field_sep Map<String,Partition> _partitionMap concode_elem_sep String _stateModelFactoryName concode_elem_sep boolean _batchMessageMode concode_elem_sep String _resourceName concode_elem_sep String _stateModelDefRef concode_elem_sep int _bu...
void function ( boolean arg0 ) { _batchMessageMode = arg0 ; }
6,439
check whether the byte passed in is the `` closed socket '' byte note , i put this in here just as an example , but you could just extend the org.springframework.integration.ip.tcp.serializer.abstractbytearrayserializer classwhich has this method concode_field_sep int SENDER_NAME_LENGTH concode_elem_sep Log logger conc...
void function ( int arg0 ) { if ( arg0 < 0 ) { logger . debug ( "srini_string" ) ; throw new IOException ( "srini_string" ) ; } }
6,440
visit a constant node . the value of the constant is pushed onto the stack . concode_field_sep Stack stack concode_elem_sep Vector errorList concode_elem_sep SymbolTable symTab concode_elem_sep boolean debug concode_elem_sep boolean errorFlag concode_field_sep Object getValue concode_elem_sep void addToErrorList
Object function ( ASTConstant arg0 , Object arg1 ) { stack . push ( arg0 . getValue ( ) ) ; return arg1 ; }
6,441
called after plugin construction and fields have been initialized . prefer to use plugininitialize instead since there is no value in having parameters on the initialize function . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_...
void function ( CordovaInterface arg0 , CordovaWebView arg1 ) { }
6,442
gets the value of the promotion property . concode_field_sep long serialVersionUID concode_elem_sep DataPassType dataPass concode_elem_sep PrepaidPromotionType promotion concode_field_sep DataPassType getDataPass concode_elem_sep void setDataPass concode_elem_sep void setPromotion
PrepaidPromotionType function ( ) { return promotion ; }
6,443
the disk image format . concode_field_sep String importManifestUrl concode_elem_sep Long size concode_elem_sep String format concode_elem_sep String checksum concode_field_sep DiskImageDescription withChecksum concode_elem_sep void setChecksum concode_elem_sep DiskImageDescription withSize concode_elem_sep void setImpo...
DiskImageDescription function ( DiskImageFormat arg0 ) { setFormat ( arg0 ) ; return this ; }
6,444
returns the actual check in date of this checkout . concode_field_sep Checkout _checkout concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel conc...
Date function ( ) { return _checkout . getActualCheckInDate ( ) ; }
6,445
record the fact that a session has been created . concode_field_sep ServletContext context concode_field_sep void sessionDestroyed concode_elem_sep void log concode_elem_sep void contextInitialized concode_elem_sep void attributeReplaced concode_elem_sep void contextDestroyed concode_elem_sep void attributeAdded concod...
void function ( HttpSessionEvent arg0 ) { log ( "srini_string" + arg0 . getSession ( ) . getId ( ) + "srini_string" ) ; }
6,446
adds a datapoint to the channel . concode_field_sep String number concode_elem_sep List<HmDatapoint> datapoints concode_elem_sep HmDevice device concode_field_sep String getNumber concode_elem_sep List<HmDatapoint> getDatapoints concode_elem_sep String getAddress concode_elem_sep HmDevice getDevice concode_elem_sep voi...
void function ( HmDatapoint arg0 ) { arg0 . setChannel ( this ) ; datapoints . add ( arg0 ) ; }
6,447
gets the name value for this user_token_usage . concode_field_sep int used_tokens concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String login concode_f...
java . lang . String function ( ) { return name ; }
6,448
returns the parent of the current graphicsnode . if the current graphics node has no parent , returns null and retains the current node . concode_field_sep GraphicsNode gvtRoot concode_elem_sep GraphicsNode currentNode concode_elem_sep GraphicsNode treeRoot concode_field_sep GraphicsNode getPreviousSibling concode_elem...
GraphicsNode function ( ) { if ( currentNode == treeRoot ) return null ; GraphicsNode loc0 = currentNode . getParent ( ) ; if ( loc0 != null ) { currentNode = loc0 ; } return loc0 ; }
6,449
gets the value of the comment property . concode_field_sep String address concode_elem_sep String faxPhone concode_elem_sep DateTime lastModifiedDateTime concode_elem_sep List<AppliedLabel> appliedLabels concode_elem_sep String externalId concode_elem_sep CompanyCreditStatus creditStatus concode_elem_sep Integer thirdP...
String function ( ) { return comment ; }
6,450
info log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setL...
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . INFO >= LOGLEVEL ) Log . i ( arg0 , arg1 , arg2 ) ; }
6,451
removes the attribute with the given name from the list . concode_field_sep String XML_NAMESPACE concode_elem_sep AttributeEntry lookupKey concode_elem_sep String namespace concode_elem_sep String name concode_elem_sep LinkedMap entryList concode_elem_sep String XMLNS_NAMESPACE concode_elem_sep String value concode_ele...
void function ( final String arg0 , final String arg1 ) { lookupKey . update ( arg0 , arg1 , "srini_string" ) ; entryList . remove ( lookupKey ) ; this . arrayCache = null ; }
6,452
sets the value of the id property . concode_field_sep Boolean metadataComplete concode_elem_sep List<JAXBElement<?>> descriptionAndDisplayNameAndIcon concode_elem_sep java.lang.String id concode_elem_sep java.lang.String version concode_field_sep java.lang.String getVersion concode_elem_sep void setVersion concode_elem...
void function ( java . lang . String arg0 ) { this . id = arg0 ; }
6,453
return the directory containing the source files of the test project . concode_field_sep File sourceDir concode_elem_sep File buildFile concode_elem_sep String DEFAULT_BUILD_TOOL_VERSION concode_elem_sep File sdkDir concode_elem_sep int DEFAULT_COMPILE_SDK_VERSION concode_elem_sep File testDir concode_elem_sep String A...
File function ( ) { return sourceDir ; }
6,454
warning - the name returned by this method may be ambiguous and is not sql safe - it may need quoted/escaped concode_field_sep Collection<AbstractMetadataRecord> EMPTY_INCOMING concode_elem_sep String annotation concode_elem_sep String DATA_TTL concode_elem_sep String nameInSource concode_elem_sep AtomicLong UUID_SEQUE...
String function ( ) { AbstractMetadataRecord loc0 = getParent ( ) ; if ( loc0 != null ) { String loc1 = loc0 . getFullName ( ) + NAME_DELIM_CHAR + getName ( ) ; return loc1 ; } return name ; }
6,455
add an unchanged metadata value concode_field_sep boolean reinstated concode_elem_sep Item item concode_elem_sep List<DCValue> constant concode_elem_sep boolean newItem concode_elem_sep boolean withdrawn concode_elem_sep boolean empty concode_elem_sep Collection oldOwningCollection concode_elem_sep boolean deleted conc...
void function ( DCValue arg0 ) { constant . add ( arg0 ) ; complete . add ( arg0 ) ; }
6,456
returns the ternary . concode_field_sep List components concode_elem_sep One one concode_elem_sep List manyToMany concode_elem_sep Foo foo concode_elem_sep int count concode_elem_sep Collection bag concode_elem_sep Simple simple concode_elem_sep Many many concode_elem_sep Set composites concode_elem_sep Collection lazy...
Map function ( ) { return ternaryMap ; }
6,457
calls the connection 's connection #rollback method . concode_field_sep Connection connection concode_field_sep void start concode_elem_sep void commit concode_elem_sep Connection wrapped
void function ( ) { connection . rollback ( ) ; connection . setAutoCommit ( true ) ; }
6,458
set the messageconverter to use to convert the payload of incomingand outgoing messages to and from byte based on object typeand the `` content-type '' header . by default , simplemessageconverter is configured . concode_field_sep long[] defaultHeartbeat concode_elem_sep long receiptTimeLimit concode_elem_sep MessageCo...
void function ( MessageConverter arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . messageConverter = arg0 ; }
6,459
increase the amount of might by points . will not increase beyond the units maxmight . concode_field_sep int maxMight concode_elem_sep int currentMight concode_field_sep void setMax concode_elem_sep int get concode_elem_sep void update concode_elem_sep String toString
void function ( int arg0 ) { currentMight += arg0 ; if ( currentMight > maxMight ) { currentMight = maxMight ; } }
6,460
adds a listener that is notified when the default locale has been changed . concode_field_sep WeakReference reference concode_elem_sep List localeChangeListeners concode_elem_sep List i18ns concode_elem_sep I18nManager instance concode_field_sep void add concode_elem_sep void localeChanged concode_elem_sep void setDefa...
void function ( LocaleChangeListener arg0 ) { synchronized ( localeChangeListeners ) { localeChangeListeners . add ( arg0 ) ; } }
6,461
gets the value of the langs property . concode_field_sep String image concode_elem_sep String code concode_elem_sep Boolean visible concode_elem_sep Langs langs concode_elem_sep String style concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep String label concode_elem_sep Integer position c...
Langs function ( ) { return langs ; }
6,462
sets the value of the arg0 property . concode_field_sep double arg1 concode_elem_sep int arg0 concode_field_sep void setArg1 concode_elem_sep double getArg1 concode_elem_sep int getArg0
void function ( int arg2 ) { this . arg0 = arg2 ; }
6,463
performs a dynamic query on the database and returns an ordered range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator < T > arg3 ) { return _jiraActionLocalService . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; }
6,464
set the subjectuniqueid - note : it is very rare that it is correct to do this . concode_field_sep V3TBSCertificateGenerator tbsGen concode_elem_sep ExtensionsGenerator extGenerator concode_field_sep X509v3CertificateBuilder setIssuerUniqueID concode_elem_sep X509CertificateHolder build concode_elem_sep X509v3Certifica...
X509v3CertificateBuilder function ( boolean [ ] arg0 ) { tbsGen . setSubjectUniqueID ( CertUtils . booleanToBitString ( arg0 ) ) ; return this ; }
6,465
store binary data into local disk . shortcut of #setbinaryfilecontenttofilesystem string , byte concode_field_sep Logger LOG concode_field_sep String getStr concode_elem_sep String getCharacterFileContentFromFileSystem concode_elem_sep byte[] getBinaryFileContentFromFileSystem concode_elem_sep byte[] getBinaryFileConte...
boolean function ( String arg0 , byte [ ] arg1 ) { return setBinaryFileContentToFileSystem ( arg0 , arg1 ) ; }
6,466
returns true if the driver thinks that it can open a connection to the given url . typically drivers will return true if they understand the subprotocol specified in the url and false if they do n't . concode_field_sep String VERSION concode_elem_sep String sStartURL concode_elem_sep int MINOR concode_elem_sep int REVI...
boolean function ( String arg0 ) { if ( Trace . TRACE ) { Trace . trace ( arg0 ) ; } return arg0 . startsWith ( sStartURL ) ; }
6,467
returns a function that invokes #escape string on this escaper . concode_field_sep Function<String,String> asFunction concode_field_sep String apply concode_elem_sep String escape
Function < String , String > function ( ) { return asFunction ; }
6,468
return the current roles bound to the current thread by spring security . concode_field_sep String ANONYMOUS_USER concode_field_sep UserDetails getUserDetails concode_elem_sep boolean hasRole concode_elem_sep List<String> toStringList concode_elem_sep String getId concode_elem_sep Locale getLocale concode_elem_sep Stri...
List < String > function ( ) { Authentication loc0 = SecurityContextHolder . getContext ( ) . getAuthentication ( ) ; if ( loc0 != null ) { return toStringList ( loc0 . getAuthorities ( ) ) ; } return emptyList ( ) ; }
6,469
sets the ma xa of this user huyen . concode_field_sep UserHuyen _userHuyen concode_field_sep void setName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getMaHuyen concode_elem_sep java....
void function ( java . lang . String arg0 ) { _userHuyen . setMaXa ( arg0 ) ; }
6,470
gets the size of this object in byte . note : this object size is not the actual file size . moreover , this size is used for transferring this object over a network . concode_field_sep int NOT_REGISTERED concode_elem_sep int TYPE_RAW_DATA concode_elem_sep int TYPE_TAG_DATA concode_elem_sep String name concode_elem_sep...
int function ( ) { return attribute . getAttributeSize ( ) ; }
6,471
return the facescontext associated with this instance . concode_field_sep Lifecycle lifecycle concode_elem_sep ClassLoader renderableClassLoader concode_elem_sep Log log concode_elem_sep ExecutorService executorService concode_elem_sep BridgeFacesContext facesContext concode_elem_sep Collection viewListeners concode_el...
FacesContext function ( ) { return facesContext ; }
6,472
maximum value of the interval concode_field_sep double upperBound concode_elem_sep double midPoint concode_elem_sep int PRECISION concode_elem_sep double range concode_elem_sep double lowerBound concode_field_sep double getMidPoint concode_elem_sep double getRange concode_elem_sep double getRandomElement concode_elem_s...
double function ( ) { return upperBound ; }
6,473
return the body text associated with this node if any . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_elem_sep String findAttribute concode_elem_sep String g...
String function ( ) { return ( this . body ) ; }
6,474
gets the icefaces id of this response . concode_field_sep long sequenceNumber concode_elem_sep String entityBody concode_elem_sep String viewNumber concode_elem_sep String iceFacesId concode_field_sep String getViewNumber concode_elem_sep long getSequenceNumber concode_elem_sep String getEntityBody concode_elem_sep boo...
String function ( ) { return iceFacesId ; }
6,475
sets the legal id of this account . concode_field_sep Account _account concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_elem_sep bo...
void function ( java . lang . String arg0 ) { _account . setLegalId ( arg0 ) ; }
6,476
retrieve the url where the user should be redirected to start the openid authentication process concode_field_sep play.api.libs.openid.OpenIdClient client concode_field_sep F.Promise<UserInfo> verifiedId concode_elem_sep F.Promise<UserInfo> verifiedId
F . Promise < String > function ( String arg0 , String arg1 , Map < String , String > arg2 , Map < String , String > arg3 ) { return redirectURL ( arg0 , arg1 , arg2 , arg3 , null ) ; }
6,477
return the format of this rich text . concode_field_sep CharSequence mRTText concode_elem_sep RTFormat mRTFormat concode_field_sep CharSequence getText concode_elem_sep RTText convertTo
RTFormat function ( ) { return mRTFormat ; }
6,478
returns true if the given state is currently active otherwise false . concode_field_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean f concode_elem_sep boolean i1 concode_elem_sep boolean i2 concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep voi...
boolean function ( State arg0 ) { switch ( arg0 ) { case r1_A : return stateVector [ 0 ] == State . r1_A ; case r1_B : return stateVector [ 0 ] == State . r1_B ; case r2_C : return stateVector [ 1 ] == State . r2_C ; case r2_D : return stateVector [ 1 ] == State . r2_D ; default : return false ; } }
6,479
get the root cause from the exception chain . concode_field_sep String FIELD_SEPARATOR concode_field_sep String throwableToString concode_elem_sep Throwable strToThrowable
Throwable function ( Throwable arg0 ) { Throwable loc0 = arg0 . getCause ( ) ; int loc1 = 0 ; while ( loc0 != null && ++ loc1 < 1024 ) { arg0 = loc0 ; loc0 = arg0 . getCause ( ) ; } return arg0 ; }
6,480
sets the value of the type property . concode_field_sep String role concode_elem_sep LEProcessingType leProcessing concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_s...
void function ( String arg0 ) { this . type = arg0 ; }
6,481
string representation of the secuencedatabase concode_field_sep PatternCreator patternCreator concode_elem_sep AbstractionCreator abstractionCreator concode_elem_sep Map<Item,BitSet> frequentItems concode_elem_sep ItemFactory<Integer> itemFactory concode_elem_sep List<Sequence> sequences concode_field_sep Map<Item,BitS...
String function ( ) { }
6,482
sets displayname concode_field_sep String firstName concode_elem_sep String lastName concode_elem_sep String temporaryPassword concode_elem_sep String displayName concode_elem_sep Date validUntil concode_elem_sep String description concode_elem_sep List<Group> groups concode_elem_sep long serialVersionUID concode_elem_...
void function ( final String arg0 ) { this . displayName = arg0 ; }
6,483
this method gets the requireschemaauthz attribute value . concode_field_sep String roleBaseUrl concode_elem_sep String requireSchemaAuthz concode_elem_sep ArrayList<Ace> aceList concode_field_sep void setRequireSchemaAuthz concode_elem_sep void addAce concode_elem_sep ArrayList<Ace> getAceList concode_elem_sep String t...
String function ( ) { return this . requireSchemaAuthz ; }
6,484
adds a request representing the `` delete blob '' operation to this batch . calling storagebatchresult #get on the return value yields true upon successful deletion , false if the blob was not found , or throws a storageexception if the operationfailed . concode_field_sep StorageRpc storageRpc concode_elem_sep RpcBatch...
StorageBatchResult < Boolean > function ( String arg0 , String arg1 , BlobSourceOption ... arg2 ) { return delete ( BlobId . of ( arg0 , arg1 ) , arg2 ) ; }
6,485
returns the current stack of enclosing methods . the first element is the top of the stack , that is to say the last visited method . concode_field_sep Set<MethodNode> methodsToBeVisited concode_elem_sep Set<Long> reportedErrors concode_elem_sep LinkedList<BinaryExpression> enclosingBinaryExpressions concode_elem_sep L...
List < MethodNode > function ( ) { return Collections . unmodifiableList ( enclosingMethods ) ; }
6,486
initializes the default union filesystem instance as a unionfilesystem . if it 's not initialized , then initialize it , otherwise verify if the type of the instance is correct . concode_field_sep FileSystem defaultNativeFileSystem concode_elem_sep FileSystem defaultJavaIoFileSystem concode_elem_sep FileSystem defaultU...
FileSystem function ( Map < PathFragment , FileSystem > arg0 , FileSystem arg1 ) { if ( defaultUnionFileSystem == null ) { defaultUnionFileSystem = new UnionFileSystem ( arg0 , arg1 ) ; } else { Verify . verify ( defaultUnionFileSystem instanceof UnionFileSystem ) ; } return defaultUnionFileSystem ; }
6,487
adds a boolean property . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder beginArray concode_elem_sep JSONBuilder beginMap concode_elem_sep JSONBuilder beginMap concode_elem_sep JSONBuilder endMap concode_elem_sep String escapeString concode_elem_sep JSONBuilder cr...
JSONBuilder function ( String arg0 , boolean arg1 ) { appendCommaAndKey ( arg0 ) ; params . append ( arg1 ) ; return this ; }
6,488
adds the favorite site to the database . also notifies the appropriate model listeners . concode_field_sep FavoriteSiteLocalService _service concode_field_sep int getFavoriteSitesCount concode_elem_sep int getFavoriteSitesCount concode_elem_sep int getFavoriteSitesCount concode_elem_sep java.lang.String getOSGiServiceI...
com . liferay . so . model . FavoriteSite function ( com . liferay . so . model . FavoriteSite arg0 ) { return getService ( ) . addFavoriteSite ( arg0 ) ; }
6,489
returns true if the stack is empty , and false otherwise . concode_field_sep int size concode_elem_sep Object[] contents concode_elem_sep int initialSize concode_field_sep Object pop concode_elem_sep int size concode_elem_sep Object get concode_elem_sep Object clone concode_elem_sep void clear concode_elem_sep void pus...
boolean function ( ) { return this . size == 0 ; }
6,490
returns a `` java hash code '' for this hashcode instance ; this is well-defined so , for example , you can safely put hashcode instances into a hashset but is otherwise probably not what you want to use . concode_field_sep char[] hexDigits concode_field_sep long asLong concode_elem_sep int asInt concode_elem_sep long ...
int function ( ) { return asInt ( ) ; }
6,491
gets the value of the result property . concode_field_sep int result concode_field_sep void setResult
int function ( ) { return result ; }
6,492
sets this item to a float item . concode_field_sep Item next concode_elem_sep int intVal concode_elem_sep int hashCode concode_elem_sep int index concode_elem_sep int type concode_elem_sep long longVal concode_elem_sep String strVal1 concode_elem_sep String strVal3 concode_elem_sep String strVal2 concode_field_sep bool...
void function ( final float arg0 ) { this . type = ClassWriter . FLOAT ; this . intVal = Float . floatToRawIntBits ( arg0 ) ; this . hashCode = 0x7FFFFFFF & ( type + ( int ) arg0 ) ; }
6,493
returns population of village . concode_field_sep Villager mayor concode_elem_sep Villager[] villager concode_elem_sep int MAX_NUM_VILLAGER concode_elem_sep String name concode_elem_sep int amountHouses concode_elem_sep int population concode_field_sep void addInhabitant concode_elem_sep void addInhabitant concode_elem...
int function ( ) { return population ; }
6,494
returns the current auditing traces for this clusterrecord concode_field_sep long serialVersionUID concode_elem_sep TraceRecord currTrace concode_elem_sep TreeMap<String,String> md2 concode_elem_sep Set<TraceRecord> prevTraces concode_elem_sep boolean input concode_elem_sep TreeMap<String,String> md1 concode_field_sep ...
TraceRecord function ( ) { return currTrace ; }
6,495
foreground color specified for this textcharacter concode_field_sep char character concode_elem_sep TextColor backgroundColor concode_elem_sep TextColor foregroundColor concode_elem_sep EnumSet<SGR> modifiers concode_elem_sep TextCharacter DEFAULT_CHARACTER concode_field_sep TextCharacter withBackgroundColor concode_el...
TextColor function ( ) { return foregroundColor ; }
6,496
return the names of the variables in the template , in order . 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 con...
List < String > function ( ) { return this . variableNames ; }
6,497
get the drop table statement for this table . concode_field_sep boolean temporary concode_elem_sep Column[] primaryKeys concode_elem_sep Column[] columns concode_elem_sep ArrayList<Index> indexes concode_elem_sep String name concode_elem_sep TestSynth config concode_elem_sep boolean globalTemporary concode_field_sep Co...
String function ( ) { return "srini_string" + name ; }
6,498
returns a reader object that reads the inputstream with the encoding . this method is same with `` getencoding encoding . gettextreader in '' . concode_field_sep String serviceClass concode_field_sep Encoding getEncoding concode_elem_sep Writer getTextWriter concode_elem_sep Set<String> getAvailableNames concode_elem_s...
Reader function ( InputStream arg0 , String arg1 ) { return getEncoding ( arg1 ) . getTextReader ( arg0 ) ; }
6,499
get the ubl 2.2 document type matching the passed implementation class . concode_field_sep ICommonsMap<String,EUBL22DocumentType> s_aNamespace2DocType concode_elem_sep ICommonsMap<String,EUBL22DocumentType> s_aLocalName2DocType concode_elem_sep UBL22DocumentTypes s_aInstance concode_field_sep Schema getSchemaOfLocalNam...
EUBL22DocumentType function ( @ Nullable final Class < ? > arg0 ) { if ( arg0 == null ) return null ; return ArrayHelper . findFirst ( EUBL22DocumentType . values ( ) , eDocType -> eDocType . getImplementationClass ( ) . equals ( arg0 ) ) ; }