idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
89,700
returns the created date of this vcms attached message . concode_field_sep VcmsAttachedMessage _vcmsAttachedMessage concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setContent concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep java.lang.String getContent con...
java . util . Date function ( ) { return _vcmsAttachedMessage . getCreatedDate ( ) ; }
89,701
check if the set includes a given character concode_field_sep boolean mutable concode_elem_sep boolean[] chars concode_elem_sep String name concode_elem_sep File source concode_field_sep void setName concode_elem_sep void set concode_elem_sep boolean isMutable concode_elem_sep String getName concode_elem_sep File getSo...
boolean function ( char arg0 ) { return chars [ arg0 ] ; }
89,702
get the validation status - always valid concode_field_sep ErrorType theInstance concode_field_sep boolean isNamespaceSensitive concode_elem_sep boolean isSimpleType concode_elem_sep ValidationFailure validateContent concode_elem_sep String getSystemId concode_elem_sep String getName concode_elem_sep AtomicType getComm...
int function ( ) { return VALIDATED ; }
89,703
replaces the enumeration from the stream with a real one . this ensures that the correct flag is set for system . concode_field_sep long serialVersionUID concode_elem_sep String name concode_elem_sep IOCase SYSTEM concode_elem_sep IOCase INSENSITIVE concode_elem_sep boolean sensitive concode_elem_sep IOCase SENSITIVE c...
Object function ( ) { return forName ( name ) ; }
89,704
sets odometer . concode_field_sep Object stockNumber concode_elem_sep String odometer concode_elem_sep String groundingMileage concode_elem_sep String year concode_elem_sep String keys concode_elem_sep String intType concode_elem_sep String bodyStyle concode_elem_sep String intColor concode_elem_sep String odor concode...
void function ( String arg0 ) { this . odometer = arg0 ; }
89,705
ensures that creating adapters for match can be done through the adapterfactory . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCreateResourceAttachmentChangeAdapter concode_elem_sep void testCreateAttributeChangeAdapter concode_elem_sep void testCreateComparisonAdapter concode_elem_sep void test...
void function ( ) { CompareAdapterFactory loc0 = new CompareAdapterFactory ( ) ; assertNull ( loc0 . createMatchAdapter ( ) ) ; assertNull ( loc0 . createAdapter ( CompareFactory . eINSTANCE . createMatch ( ) ) ) ; }
89,706
gets the value of the nodereplicationpolicy property . concode_field_sep NodeReference identifier concode_elem_sep boolean replicate concode_elem_sep NodeReplicationPolicy nodeReplicationPolicy concode_elem_sep Ping ping concode_elem_sep List<Subject> subjects concode_elem_sep String description concode_elem_sep Servic...
NodeReplicationPolicy function ( ) { return nodeReplicationPolicy ; }
89,707
returns a new bytesource instance representing the specified bytesource . concode_field_sep PlaceHolder placeHolder concode_field_sep String toBase64 concode_elem_sep String toHex concode_elem_sep boolean isEmpty concode_elem_sep byte[] getBytes concode_elem_sep boolean isCompatible
ByteSource function ( ByteSource arg0 ) { return new SimpleByteSource ( arg0 ) ; }
89,708
gets the path to the resource 's directory . this method returns the directory name where the config files are stored . caso queira saber o caminho absoluto do diretorio , voce precisa usar note that this method does not return the complete path . if you want the full path , you must use systemglobals.getapplicationpat...
String function ( ) { return getValue ( ConfigKeys . RESOURCE_DIR ) ; }
89,709
controls whether incoming text message payload is verified to be valid utf-8 . default : true concode_field_sep int mSocketReceiveTimeout concode_elem_sep boolean mValidateIncomingUtf8 concode_elem_sep int mMaxMessagePayloadSize concode_elem_sep int mSocketConnectTimeout concode_elem_sep int mReconnectInterval concode_...
void function ( boolean arg0 ) { mValidateIncomingUtf8 = arg0 ; }
89,710
call transmitter to check for sender socket status concode_field_sep String info concode_elem_sep MultiPointSender transport concode_elem_sep StringManager sm concode_elem_sep org.apache.juli.logging.Log log concode_field_sep void add concode_elem_sep MultiPointSender getTransport concode_elem_sep void setTransport con...
void function ( ) { if ( getTransport ( ) != null ) getTransport ( ) . keepalive ( ) ; }
89,711
returns a real number uniformly in a , b . concode_field_sep Random random concode_elem_sep long seed concode_field_sep double cauchy concode_elem_sep long getSeed concode_elem_sep int poisson concode_elem_sep void main concode_elem_sep int discrete concode_elem_sep double random concode_elem_sep boolean bernoulli conc...
double function ( double arg0 , double arg1 ) { if ( ! ( arg0 < arg1 ) ) throw new IllegalArgumentException ( "srini_string" ) ; return arg0 + uniform ( ) * ( arg1 - arg0 ) ; }
89,712
starts up the channel . this can be called multiple times for individual services to start the svc parameter can be the logical or value of any constants concode_field_sep ChannelInterceptor next concode_elem_sep org.apache.juli.logging.Log log concode_elem_sep ChannelInterceptor previous concode_elem_sep int optionFla...
void function ( int arg0 ) { if ( getNext ( ) != null ) getNext ( ) . start ( arg0 ) ; }
89,713
call me concode_field_sep Logger log concode_elem_sep AnnoManagedConnectionFactory mcf concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep AnnoConnectionImpl connection concode_elem_sep PrintWriter logwriter concode_field_sep void associateConnection concode_elem_sep Object getConnection concode_e...
void function ( ) { log . trace ( "srini_string" ) ; }
89,714
sets the read preference for this command . see the documentation for readpreference for more information . concode_field_sep DBObject _query concode_elem_sep int _limit concode_elem_sep Map<String,Object> _scope concode_elem_sep OutputType _outputType concode_elem_sep long _maxTimeMS concode_elem_sep DBObject _sort co...
void function ( ReadPreference arg0 ) { _readPref = arg0 ; }
89,715
pushes the 3 coordinates onto the stack concode_field_sep int[] array concode_elem_sep int stackPointer concode_field_sep IntVector3 pop concode_elem_sep int popSingle concode_elem_sep void clear
boolean function ( int arg0 , int arg1 , int arg2 ) { array [ stackPointer ++ ] = arg2 ; array [ stackPointer ++ ] = arg1 ; array [ stackPointer ++ ] = arg0 ; return stackPointer == array . length ; }
89,716
returns a new byte array containing the bytes corresponding to the given characters , encoded in iso-8859-1 . unrepresentable characters are replaced by byte ' ? ' . concode_field_sep Charset US_ASCII concode_elem_sep Charset UTF_8 concode_elem_sep Charset ISO_8859_1 concode_field_sep byte[] toAsciiBytes concode_elem_s...
byte [ ] function ( char [ ] arg0 , int arg1 , int arg2 ) { CharBuffer loc0 = CharBuffer . allocate ( arg2 ) ; loc0 . put ( arg0 , arg1 , arg2 ) ; return ISO_8859_1 . encode ( loc0 ) . array ( ) ; }
89,717
evaluates an xpath expression and returns a single matching node . concode_field_sep String TEENUS_NS_PREFIX concode_field_sep void addArrayAnyTypeAttribute concode_elem_sep void addArrayAnyTypeAttribute concode_elem_sep void addArrayTypeAttribute concode_elem_sep void addArrayTypeAttribute concode_elem_sep void addArr...
Node function ( Object arg0 , String arg1 ) { return ( Node ) XPathFactory . newInstance ( ) . newXPath ( ) . evaluate ( arg1 , arg0 , XPathConstants . NODE ) ; }
89,718
gets the object number represented by this reference . concode_field_sep int objf concode_elem_sep int genf concode_field_sep int hashCode concode_elem_sep int getGenerationNumber concode_elem_sep boolean equals concode_elem_sep String toString
int function ( ) { return objf ; }
89,719
gets the value of the creditcardeligible property . concode_field_sep BigInteger returnCode concode_elem_sep Boolean pinLessEligible concode_elem_sep String returnReason concode_elem_sep String cardType concode_elem_sep Boolean creditCardEligible concode_elem_sep long serialVersionUID concode_elem_sep String category c...
Boolean function ( ) { return creditCardEligible ; }
89,720
returns the id of the request . concode_field_sep int instanceId concode_elem_sep long requestId concode_elem_sep int retryCount concode_elem_sep long msecClockTime concode_elem_sep String serviceName concode_elem_sep StatusCode statusCode concode_field_sep int getInstanceId concode_elem_sep StatusCode getStatusCode co...
long function ( ) { return requestId ; }
89,721
creates a new module with the primary key . does not add the module to the database . concode_field_sep ModuleLocalService _service concode_field_sep com.liferay.marketplace.model.Module getModule concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep java.u...
com . liferay . marketplace . model . Module function ( long arg0 ) { return getService ( ) . createModule ( arg0 ) ; }
89,722
sets the value of the executioncontextid property . concode_field_sep IdentifierType instanceID concode_elem_sep IdentifierType executionContextID concode_elem_sep long serialVersionUID concode_elem_sep IdentifierType id concode_elem_sep ImplementationCodeType implementationCode concode_field_sep IdentifierType getInst...
void function ( IdentifierType arg0 ) { this . executionContextID = arg0 ; }
89,723
the method response 's status code . concode_field_sep java.util.Map<String,Boolean> responseParameters concode_elem_sep java.util.Map<String,String> responseModels concode_elem_sep String statusCode concode_field_sep void setStatusCode concode_elem_sep java.util.Map<String,Boolean> getResponseParameters concode_elem_s...
MethodResponse function ( String arg0 ) { setStatusCode ( arg0 ) ; return this ; }
89,724
sets the issuenumber value for this issuerelatedissues . concode_field_sep com.netsuite.webservices.platform.core_2014_2.RecordRef issueNumber concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.netsui...
void function ( com . netsuite . webservices . platform . core_2014_2 . RecordRef arg0 ) { this . issueNumber = arg0 ; }
89,725
returns a new spannedstringbuilder from the specified charsequence . you can override this to provide a different kind of spanned . concode_field_sep Editable.Factory sInstance concode_field_sep void setFilters concode_elem_sep Editable replace concode_elem_sep Editable replace concode_elem_sep void clear concode_elem_...
Editable function ( CharSequence arg0 ) { return new SpannableStringBuilder ( arg0 ) ; }
89,726
returns the account with the primary key or throws a nosuchaccountexception if it could not be found . concode_field_sep AccountPersistence _persistence concode_field_sep int countAll concode_elem_sep void cacheResult concode_elem_sep void cacheResult concode_elem_sep List<Account> findWithDynamicQuery concode_elem_sep...
Account function ( long arg0 ) { return getPersistence ( ) . findByPrimaryKey ( arg0 ) ; }
89,727
sets the result value for this successgettags . concode_field_sep com.marketo.www.mktows.ResultGetTags result concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.apache.axis.description.TypeDesc getTy...
void function ( com . marketo . www . mktows . ResultGetTags arg0 ) { this . result = arg0 ; }
89,728
assign an eperson to this policy concode_field_sep Group epersonGroup concode_elem_sep String TYPE_INHERITED concode_elem_sep EPerson eperson concode_elem_sep Date endDate concode_elem_sep String TYPE_WORKFLOW concode_elem_sep DSpaceObject dSpaceObject concode_elem_sep String rpname concode_elem_sep String rptype conco...
void function ( EPerson arg0 ) { this . eperson = arg0 ; }
89,729
the position of the `` dot '' -- this indicates the part of the production that the marker is before , so 0 indicates a dot at the beginning of the rhs . concode_field_sep production _the_production concode_elem_sep int _core_hash_cache concode_elem_sep symbol _symbol_after_dot concode_elem_sep int _dot_pos concode_fie...
int function ( ) { return _dot_pos ; }
89,730
sets the value of the linetype property . concode_field_sep boolean protectDescription concode_elem_sep String accountCode concode_elem_sep BigDecimal amount concode_elem_sep boolean protectAmount concode_elem_sep String userStatus concode_elem_sep boolean protectInterCmpDest concode_elem_sep ProtectedElements protectE...
void function ( TypeCtDocLineTypeB arg0 ) { this . lineType = arg0 ; }
89,731
returns true if the authenticated user error is visible on the page and false otherwise . concode_field_sep String LOGIN_FORM_ID concode_elem_sep String LOGIN_ERROR_ALERT_ID concode_elem_sep WebDriver browser concode_elem_sep String AUTHENTICATED_USER_ERROR_ID concode_elem_sep String pageUrl concode_elem_sep String PAS...
boolean function ( ) { return ! browser . findElements ( By . id ( AUTHENTICATED_USER_ERROR_ID ) ) . isEmpty ( ) ; }
89,732
returns the internal method id for this method concode_field_sep long _methodId concode_elem_sep Class _class concode_elem_sep int SIZE concode_field_sep Class getDeclaringClass concode_elem_sep void writeId concode_elem_sep String getName concode_elem_sep VMMethod readId concode_elem_sep boolean equals concode_elem_se...
long function ( ) { return _methodId ; }
89,733
returns true if there 's another socket address to try . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> proxySelectorProxies concode_elem_sep ConnectionPool pool concode_elem...
boolean function ( ) { return socketAddresses != null ; }
89,734
print a boolean to standard output and flush standard output . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println conc...
void function ( boolean arg0 ) { out . print ( arg0 ) ; out . flush ( ) ; }
89,735
returns a user concode_field_sep HashSet<User> users concode_field_sep void setUsers concode_elem_sep HashSet<User> getUsers concode_elem_sep void registerUser concode_elem_sep void deleteUser concode_elem_sep void loadUsersFromDB concode_elem_sep void saveUser
User function ( int arg0 ) { System . out . println ( "srini_string" ) ; for ( User loc0 : users ) { if ( loc0 . getIduser ( ) == arg0 ) { System . out . println ( "srini_string" ) ; return loc0 ; } } System . out . println ( "srini_string" ) ; return null ; }
89,736
retrieves the network protocol of the data source . concode_field_sep String description concode_elem_sep String dataSourceName concode_elem_sep String password concode_elem_sep String serverName concode_elem_sep int loginTimeout concode_elem_sep String user concode_elem_sep String networkProtocol concode_elem_sep Prin...
String function ( ) { return networkProtocol ; }
89,737
restores the provider to its original state . concode_field_sep TelegramService service concode_elem_sep TelegramServiceProvider INSTANCE concode_elem_sep TelegramService telegramService concode_field_sep TelegramServiceProvider get concode_elem_sep void setAlternativeService concode_elem_sep TelegramService getAlterna...
void function ( ) { this . telegramService = null ; }
89,738
reverses the given comparator and returns the resulting comparator . concode_field_sep Comparator<T> comparator concode_field_sep int compare
Comparator < T > function ( Comparator < T > arg0 ) { if ( arg0 instanceof ReverseOrderComparator ) { return ( ( ReverseOrderComparator < T > ) arg0 ) . arg0 ; } return new ReverseOrderComparator < T > ( arg0 ) ; }
89,739
writes the device descriptor of the device that is the owner of this eeprom . concode_field_sep Device device concode_elem_sep DeviceDescriptor deviceDescriptor concode_field_sep void writeUserArea concode_elem_sep void writeUserArea concode_elem_sep void erase concode_elem_sep void erase concode_elem_sep DeviceDescrip...
void function ( DeviceDescriptor arg0 ) { checkIsOpen ( ) ; arg0 . validate ( ) ; writeDeviceDescriptor ( device . getHandle ( ) , arg0 ) ; deviceDescriptor = arg0 ; }
89,740
the active context object is what unqualified references to properties/etc are resolved against . concode_field_sep Stack<TypedValue> scopeRootObjects concode_elem_sep SpelParserConfiguration configuration concode_elem_sep Stack<VariableScope> variableScopes concode_elem_sep Map<String,Object> vars concode_elem_sep Sta...
TypedValue function ( ) { if ( this . contextObjects == null || this . contextObjects . isEmpty ( ) ) { return this . rootObject ; } return this . contextObjects . peek ( ) ; }
89,741
store the given values for injection . concode_field_sep List<SkyKey> valuesToInvalidate concode_elem_sep Map<SkyKey,SkyValue> valuesToInject concode_field_sep Diff getDiff concode_elem_sep void invalidateTransientErrors concode_elem_sep void clear concode_elem_sep void invalidate
void function ( Map < SkyKey , ? extends SkyValue > arg0 ) { valuesToInject . putAll ( arg0 ) ; }
89,742
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep Map<String,Map<String,String>> mapMapOfString concode_elem_sep Map<String,InnerEnum> mapOfEnumString concode_elem_sep String value concode_field_sep void setMapMapOfString concode_elem_sep MapTest mapOfEnumS...
String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
89,743
write the #value field to the given stream.this method first writes the array size as corba long and then calls the org.omg.corba.portable.outputstream #write_ulong_array . concode_field_sep ArrayTypeCode typecode concode_elem_sep int[] value concode_field_sep void _read concode_elem_sep TypeCode _type
void function ( OutputStream arg0 ) { arg0 . write_long ( value . length ) ; arg0 . write_ulong_array ( value , 0 , value . length ) ; }
89,744
return type metadata object concode_field_sep com.marketo.www.mktows.ResultGetChannels result concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.apache.axis.encoding.Serializer getSerializer concode_...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
89,745
tests that jenkinsawaregerrithandler notifies gerriteventlistener . concode_field_sep JenkinsAwareGerritHandler gerritHandler concode_field_sep void setUp concode_elem_sep void shouldNotifyLifecycleListener concode_elem_sep void shutDown
void function ( ) { GerritEventListener loc0 = mock ( GerritEventListener . class ) ; gerritHandler . addListener ( loc0 ) ; PatchsetCreated loc1 = Setup . createPatchsetCreated ( ) ; gerritHandler . notifyListeners ( loc1 ) ; verify ( loc0 ) . gerritEvent ( loc1 ) ; }
89,746
sets the value of the type property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep String title concode_elem_sep String uuidref...
void function ( String arg0 ) { this . type = arg0 ; }
89,747
returns an array of image descriptors for the given property , or null . the property value should be a comma separated list of image paths . each path should either be absolute or relative to the optional bundle parameter . concode_field_sep PlaceHolder placeHolder concode_field_sep URL getUrl concode_elem_sep ImageDe...
ImageDescriptor [ ] function ( String arg0 , Bundle arg1 ) { URL [ ] loc0 = getURLs ( arg0 , arg1 ) ; if ( loc0 == null || loc0 . length <= 0 ) { return null ; } ImageDescriptor [ ] loc1 = new ImageDescriptor [ loc0 . length ] ; for ( int loc2 = 0 ; loc2 < loc1 . length ; ++ loc2 ) { loc1 [ loc2 ] = ImageDescriptor . c...
89,748
wrap this firewallruleupdate to a builder concode_field_sep String destinationPort concode_elem_sep Boolean shared concode_elem_sep String sourcePort concode_elem_sep NeutronFirewallRuleUpdate f concode_elem_sep String description concode_elem_sep String sourceIpAddress concode_elem_sep long serialVersionUID concode_el...
FirewallRuleUpdateBuilder function ( ) { return new FirewallRuleUpdateConcreteBuilder ( this ) ; }
89,749
add a module . concode_field_sep ContentItemFilter itemFilter concode_field_sep T modifyBundle concode_elem_sep MiscContentItem createMiscItem concode_elem_sep T removeModule concode_elem_sep void setContentItemFilter concode_elem_sep T removeBundle concode_elem_sep T modifyModule concode_elem_sep T internalAddModifica...
T function ( final String arg0 , final String arg1 , final byte [ ] arg2 ) { final ContentItem loc0 = createModuleItem ( arg0 , arg1 , arg2 ) ; addContentModification ( createContentModification ( loc0 , ModificationType . ADD , NO_CONTENT ) ) ; return returnThis ( ) ; }
89,750
checks if the specified array is empty null or zero length array concode_field_sep Pattern DEF_VALUE_PATTERN concode_elem_sep Pattern EXPRESSION_PATTERN concode_elem_sep Map<Class<?>,Class<?>> primitiveToWrapper concode_elem_sep Logger logger concode_elem_sep Map<Class<?>,Class<?>> wrapperToPrimitive concode_field_sep ...
boolean function ( Object ... arg0 ) { if ( arg0 == null ) { return true ; } if ( arg0 . length == 0 ) { return true ; } return false ; }
89,751
dumps the metrics content as a string . concode_field_sep Map<Class<? extends Metric>,Metric> metricsMap concode_field_sep T get
String function ( ) { return metricsMap . values ( ) . stream ( ) . map ( Metric :: toString ) . collect ( Collectors . joining ( "srini_string" ) ) + "srini_string" ; }
89,752
returns the requested bucket or null if not found . concode_field_sep boolean throwIfOption concode_elem_sep Map<String,byte[]> futureContents concode_elem_sep Map<String,byte[]> contents concode_elem_sep Map<String,StorageObject> metadata concode_field_sep RewriteResponse continueRewrite concode_elem_sep boolean delet...
Bucket function ( Bucket arg0 , Map < Option , ? > arg1 ) { potentiallyThrow ( arg1 ) ; return null ; }
89,753
debug . concode_field_sep boolean isDebug concode_elem_sep int MAX_STACK_TRACE_SIZE concode_elem_sep String debugTag 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 startMethodTracing concode_elem_sep String to...
void function ( Object arg0 , String arg1 ) { debug ( arg0 . getClass ( ) . getSimpleName ( ) , arg1 ) ; }
89,754
returns an ordered range of all the accounts . 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 to queryutil #all_pos will return the full re...
List < Account > function ( int arg0 , int arg1 , OrderByComparator < Account > arg2 , boolean arg3 ) { return getPersistence ( ) . findAll ( arg0 , arg1 , arg2 , arg3 ) ; }
89,755
sets the homematic valueitem . concode_field_sep Object newValue concode_elem_sep Item item concode_elem_sep HomematicBindingConfig bindingConfig concode_elem_sep HmValueItem hmValueItem concode_elem_sep Type type concode_field_sep HomematicBindingConfig getBindingConfig concode_elem_sep double getDelay concode_elem_se...
void function ( HmValueItem arg0 ) { this . hmValueItem = arg0 ; }
89,756
this method adds a new attribute that will cover the specified subrange of the string . concode_field_sep int begin_index concode_elem_sep StringCharacterIterator sci concode_elem_sep int end_index concode_elem_sep AttributeRange[] attribs concode_field_sep AttributedCharacterIterator getIterator concode_elem_sep Attri...
void function ( AttributedCharacterIterator . Attribute arg0 , Object arg1 , int arg2 , int arg3 ) { if ( arg0 == null ) throw new IllegalArgumentException ( "srini_string" ) ; HashMap loc0 = new HashMap ( ) ; loc0 . put ( arg0 , arg1 ) ; addAttributes ( loc0 , arg2 , arg3 ) ; }
89,757
returns the default action . concode_field_sep PropertyChangeSupport propertyChangeSupport_ concode_elem_sep VObjectEventSupport objectEventSupport_ concode_elem_sep String copyright concode_elem_sep WorkingEventSupport workingEventSupport_ concode_elem_sep User user_ concode_elem_sep ErrorEventSupport errorEventSuppor...
VAction function ( ) { return null ; }
89,758
gets the value of the requestedattribute property . objects of the following type s are allowed in the list requestedattributetype concode_field_sep List<LocalizedNameType> serviceName concode_elem_sep List<RequestedAttributeType> requestedAttribute concode_elem_sep int index concode_elem_sep Boolean isDefault concode_...
List < RequestedAttributeType > function ( ) { return Collections . unmodifiableList ( this . requestedAttribute ) ; }
89,759
sets the created by user . concode_field_sep boolean required concode_elem_sep String updatedBy concode_elem_sep String createdBy concode_elem_sep String name concode_elem_sep Long id concode_elem_sep String label concode_elem_sep Date updatedOn concode_elem_sep ExtensionFieldType type concode_elem_sep Date createdOn c...
void function ( String arg0 ) { this . createdBy = arg0 ; }
89,760
set the number of results per page concode_field_sep int nrOfResultsPerPage concode_elem_sep int nrOfResults concode_elem_sep long serialVersionUID concode_elem_sep long qTime concode_elem_sep StringBuffer sb concode_elem_sep String info concode_field_sep int getResultsPerPage concode_elem_sep StringBuffer getBuffer co...
void function ( int arg0 ) { nrOfResultsPerPage = arg0 ; }
89,761
deserialize a pattern . concode_field_sep String LOCKOUT_ATTEMPT_DEADLINE concode_elem_sep int MIN_LOCK_PATTERN_SIZE concode_elem_sep int FAILED_ATTEMPTS_BEFORE_TIMEOUT concode_elem_sep long FAILED_ATTEMPT_COUNTDOWN_INTERVAL_MS concode_elem_sep String LOCK_PATTERN_FILE concode_elem_sep String LOCKOUT_PERMANENT_KEY conc...
List < LockPatternView . Cell > function ( String arg0 ) { List < LockPatternView . Cell > loc0 = Lists . newArrayList ( ) ; final byte [ ] loc1 = arg0 . getBytes ( ) ; for ( int loc2 = 0 ; loc2 < loc1 . length ; loc2 ++ ) { byte loc3 = loc1 [ loc2 ] ; loc0 . add ( LockPatternView . Cell . of ( loc3 / 3 , loc3 % 3 ) ) ...
89,762
marks the current user session as `` logged '' out concode_field_sep String ANONYMOUS_COUNT concode_elem_sep CacheEngine cache concode_elem_sep String LOGGED_COUNT concode_elem_sep Logger logger concode_elem_sep String FQN_COUNT concode_elem_sep String FQN concode_elem_sep String FQN_USER_ID concode_elem_sep String FQN...
void function ( ) { SessionFacade . removeAttribute ( ConfigKeys . LOGGED ) ; }
89,763
return true if this index is considered loaded meaningall of its entries are available in memory . concode_field_sep Map<Composite,Entry> entries concode_elem_sep String file concode_elem_sep int NO_ENTRY concode_elem_sep int CONSTANT_SIZE concode_elem_sep ReentrantReadWriteLock masterLock concode_elem_sep boolean muta...
boolean function ( ) { masterLock . readLock ( ) . lock ( ) ; try { return mutable || ( softEntries != null && softEntries . get ( ) != null ) ; } finally { masterLock . readLock ( ) . unlock ( ) ; } }
89,764
returns the current time separator . concode_field_sep int TIME_FORMAT_HMS concode_elem_sep int DATE_FORMAT_YMD concode_elem_sep int TIME_FORMAT_USA concode_elem_sep String timeSeparator_ concode_elem_sep String dateSeparator_ concode_elem_sep SQLConversionSettings cachedConversionSettings_ concode_elem_sep boolean bid...
String function ( ) { return timeSeparator_ ; }
89,765
implements svgmatrix #seta float . concode_field_sep AffineTransform FLIP_X_TRANSFORM concode_elem_sep AffineTransform FLIP_Y_TRANSFORM concode_field_sep float getF concode_elem_sep SVGMatrix inverse concode_elem_sep SVGMatrix rotate concode_elem_sep SVGMatrix scaleNonUniform concode_elem_sep SVGMatrix rotateFromVector...
void function ( float arg0 ) { AffineTransform loc0 = getAffineTransform ( ) ; loc0 . setTransform ( arg0 , loc0 . getShearY ( ) , loc0 . getShearX ( ) , loc0 . getScaleY ( ) , loc0 . getTranslateX ( ) , loc0 . getTranslateY ( ) ) ; }
89,766
ignore toute fin de ligne commencant par ' # ' concode_field_sep Scanner scanner concode_field_sep Incendie lireIncendie concode_elem_sep DonneesSimulation lire concode_elem_sep ArrayList<Incendie> lireIncendies concode_elem_sep Case lireCase concode_elem_sep ArrayList<Robot> lireRobots concode_elem_sep Robot lireRobot...
void function ( ) { while ( scanner . hasNext ( "srini_string" ) ) { scanner . nextLine ( ) ; } }
89,767
returns the optional input stream . concode_field_sep WrappedInputStream inputStream concode_elem_sep WrappedOutputStream outputStream concode_elem_sep MimeRegistry mimeRegistry concode_elem_sep StreamContentLocation rootLocation concode_elem_sep String contentName concode_field_sep MimeRegistry getMimeRegistry concode...
WrappedInputStream function ( ) { return inputStream ; }
89,768
groovy scripts do not need a config interface , since they expose their setters as public methods . concode_field_sep Class[] scriptInterfaces concode_elem_sep GroovyClassLoader groovyClassLoader concode_elem_sep String scriptSourceLocator concode_elem_sep Object scriptClassMonitor concode_elem_sep Class<?> scriptClass...
boolean function ( ) { return false ; }
89,769
are there more child elements to process ? concode_field_sep PlaceHolder placeHolder concode_field_sep void read concode_elem_sep T unsupportedOperation concode_elem_sep boolean isMapKey concode_elem_sep JsonElement getCurrentChild concode_elem_sep TField getTFieldByName concode_elem_sep void write
boolean function ( ) { return ( Boolean ) unsupportedOperation ( ) ; }
89,770
create from inside an xml document . called on a parser positioned at a tag in an xml document , tries to create a colorstatelist from that tag . concode_field_sep int DEFAULT_COLOR concode_field_sep ColorStateList inflate concode_elem_sep int modulateColorAlpha concode_elem_sep ColorStateList createFromXml concode_ele...
ColorStateList function ( @ NonNull Resources arg0 , @ NonNull XmlPullParser arg1 , @ NonNull AttributeSet arg2 , @ Nullable Resources . Theme arg3 ) { final String loc0 = arg1 . getName ( ) ; if ( ! loc0 . equals ( "srini_string" ) ) { throw new XmlPullParserException ( arg1 . getPositionDescription ( ) + "srini_strin...
89,771
id used only when debuging . concode_field_sep String address concode_elem_sep MuleCookBookClient client concode_field_sep void disconnect concode_elem_sep void setClient concode_elem_sep void setAddress concode_elem_sep boolean isConnected concode_elem_sep String getAddress concode_elem_sep MuleCookBookClient getClien...
String function ( ) { return "srini_string" ; }
89,772
gets the isprimary value for this opportunitysalesteam . concode_field_sep java.lang.Double contribution concode_elem_sep java.lang.Boolean isPrimary concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef salesRole concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc ...
java . lang . Boolean function ( ) { return isPrimary ; }
89,773
adds a new color to the colors array of the dataset . concode_field_sep String mLabel concode_elem_sep float mValueTextSize concode_elem_sep boolean mVisible concode_elem_sep List<Integer> mValueColors concode_elem_sep ValueFormatter mValueFormatter concode_elem_sep YAxis.AxisDependency mAxisDependency concode_elem_sep...
void function ( int arg0 ) { if ( mColors == null ) mColors = new ArrayList < Integer > ( ) ; mColors . add ( arg0 ) ; }
89,774
description of the job flow last changed state . concode_field_sep java.util.Date startDateTime concode_elem_sep String lastStateChangeReason concode_elem_sep String state concode_elem_sep java.util.Date readyDateTime concode_elem_sep java.util.Date endDateTime concode_elem_sep java.util.Date creationDateTime concode_f...
JobFlowExecutionStatusDetail function ( String arg0 ) { setLastStateChangeReason ( arg0 ) ; return this ; }
89,775
define el valor de la propiedad return . concode_field_sep Result _return concode_field_sep Result getReturn
void function ( Result arg0 ) { this . _return = arg0 ; }
89,776
participant #ipaddress concode_field_sep String ipAddress concode_elem_sep State state concode_field_sep State getState concode_elem_sep void setState
String function ( ) { return ipAddress ; }
89,777
logs the user out . concode_field_sep String password concode_elem_sep String username concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep void setUsername concode_elem_sep String login concode_elem_sep String getUsername
String function ( ) { HttpSession loc0 = SessionBean . getSession ( ) ; loc0 . invalidate ( ) ; return "srini_string" ; }
89,778
a new instance of the default implementation . if it important to note that if you want to use the default storage you may be required to use this exact implementation . refer to the owning api of the capability in question . concode_field_sep Callable<? extends T> factory concode_elem_sep String name concode_elem_sep ...
T function ( ) { try { return this . factory . call ( ) ; } catch ( Exception loc0 ) { Throwables . propagate ( loc0 ) ; } return null ; }
89,779
common test setup . concode_field_sep boolean flag concode_elem_sep JFreeChart chart concode_field_sep void chartChanged concode_elem_sep JFreeChart createChart concode_elem_sep void testReplaceDataset concode_elem_sep void testDrawWithNullInfo concode_elem_sep void testSetSeriesToolTipGenerator
void function ( ) { this . chart = createChart ( ) ; }
89,780
builds a csv list from the specified string , separator string and quote string . all arguments are assumed to be non-null . separates each list element with the value of the separator argument . prepends and appends each element with the value of the quote argument . no attempt is made to escape the quote character se...
String function ( String [ ] arg0 , String arg1 , String arg2 ) { StringBuffer loc0 = new StringBuffer ( arg0 . length * 16 ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 . append ( arg2 ) ; loc0 . append ( arg0 [ loc1 ] ) ; loc0 . append ( arg2 ) ; loc0 . append ( arg1 ) ; } loc0 . setLength ( loc0 ....
89,781
returns a gvtlinemetrics object created with the specified arguments . concode_field_sep float size concode_elem_sep Map fontCache concode_elem_sep float scale concode_elem_sep Font awtFont concode_elem_sep float FONT_SIZE concode_field_sep int canDisplayUpTo concode_elem_sep int canDisplayUpTo concode_elem_sep int can...
GVTLineMetrics function ( String arg0 , int arg1 , int arg2 , FontRenderContext arg3 ) { return new GVTLineMetrics ( awtFont . getLineMetrics ( arg0 , arg1 , arg2 , arg3 ) , scale ) ; }
89,782
return true if this tokenvalidator implementation is capable of validating the receivedtoken argument . the realm is ignored in this token validator . concode_field_sep UsernameTokenRealmCodec usernameTokenRealmCodec concode_elem_sep Logger LOG concode_elem_sep Validator validator concode_elem_sep SubjectRoleParser rol...
boolean function ( ReceivedToken arg0 , String arg1 ) { if ( arg0 . getToken ( ) instanceof UsernameTokenType ) { return true ; } return false ; }
89,783
sets the name of the filler thread . concode_field_sep Connection conn concode_elem_sep List listeners concode_elem_sep JasperReport jasperReport concode_elem_sep boolean started concode_elem_sep Integer priority concode_elem_sep String threadName concode_elem_sep boolean running concode_elem_sep Thread fillThread conc...
void function ( String arg0 ) { synchronized ( lock ) { this . threadName = arg0 ; if ( fillThread != null ) { fillThread . setName ( arg0 ) ; } } }
89,784
this method allows the deserialization of an instance of this enumeration type to return the actual instance that will be the singleton for the jvm in which the current thread is running . doing this will allow users to safely use the equality operator == for enumerations because a regular deserialized object is always...
Object function ( ) { return FactorType . fromString ( this . value ) ; }
89,785
create an instance of supportcasesearchadvanced concode_field_sep QName _Solution_QNAME concode_elem_sep QName _IssueSearch_QNAME concode_elem_sep QName _SupportCaseType_QNAME concode_elem_sep QName _SupportCaseIssue_QNAME concode_elem_sep QName _SolutionSearch_QNAME concode_elem_sep QName _SupportCase_QNAME concode_el...
SupportCaseSearchAdvanced function ( ) { return new SupportCaseSearchAdvanced ( ) ; }
89,786
pings the user 's server with the packetreplytimeout as defined in smackconfiguration . concode_field_sep int pingInterval concode_elem_sep long lastPingStamp concode_elem_sep String ELEMENT concode_elem_sep Set<PingFailedListener> pingFailedListeners concode_elem_sep long pingMinDelta concode_elem_sep long lastSuccess...
boolean function ( ) { return pingMyServer ( SmackConfiguration . getPacketReplyTimeout ( ) ) ; }
89,787
gets the value of the signatureinformationextension 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 signatureinformationextension proper...
List < ExtensionComplexType > function ( ) { if ( signatureInformationExtension == null ) { signatureInformationExtension = new ArrayList < ExtensionComplexType > ( ) ; } return this . signatureInformationExtension ; }
89,788
returns the modified date of this social request . concode_field_sep SocialRequest _socialRequest concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId conc...
long function ( ) { return _socialRequest . getModifiedDate ( ) ; }
89,789
get a logfile from the given spring environment . concode_field_sep String path concode_elem_sep String file concode_elem_sep String PATH_PROPERTY concode_elem_sep String FILE_PROPERTY concode_field_sep void applyTo concode_elem_sep void applyToSystemProperties concode_elem_sep String toString concode_elem_sep void put
LogFile function ( PropertyResolver arg0 ) { String loc0 = arg0 . getProperty ( FILE_PROPERTY ) ; String loc1 = arg0 . getProperty ( PATH_PROPERTY ) ; if ( StringUtils . hasLength ( loc0 ) || StringUtils . hasLength ( loc1 ) ) { return new LogFile ( loc0 , loc1 ) ; } return null ; }
89,790
sets the label for the fixture . concode_field_sep String label concode_field_sep String toDSL concode_elem_sep String toString concode_elem_sep F label
F function ( String arg0 ) { Assert . hasText ( arg0 , "srini_string" ) ; this . label = arg0 ; return ( F ) this ; }
89,791
retrieve the url where the user should be redirected to start the openid authentication process concode_field_sep PlaceHolder placeHolder concode_field_sep F.Promise<UserInfo> verifiedId concode_elem_sep OpenIdClient client
F . Promise < String > function ( String arg0 , String arg1 ) { return client ( ) . redirectURL ( arg0 , arg1 ) ; }
89,792
set the yaml . concode_field_sep boolean exceptionIfInvalid concode_elem_sep Log logger concode_elem_sep Resource resource concode_elem_sep T configuration concode_elem_sep Validator validator concode_elem_sep MessageSource messageSource concode_elem_sep Class<?> type concode_elem_sep Map<Class<?>,Map<String,String>> p...
void function ( String arg0 ) { this . yaml = arg0 ; }
89,793
ensures that an object reference is not null , with an error message . concode_field_sep String EMPTY_ARGUMENTS concode_elem_sep boolean sStrictMode concode_field_sep boolean checkUiThreadInternal concode_elem_sep void checkState concode_elem_sep void checkState concode_elem_sep void checkState concode_elem_sep boolean...
void function ( Object arg0 , String arg1 ) { checkNotNullInternal ( arg0 , true , arg1 , EMPTY_ARGUMENTS ) ; }
89,794
get a token stream by un-inverting the term vector . this method returns null if tvfields is nullor if the field has no term vector , or if the term vector does n't have offsets . positions are recommended on the term vector but it is n't strictly required . concode_field_sep PlaceHolder placeHolder concode_field_sep T...
TokenStream function ( String arg0 , Fields arg1 , int arg2 ) { if ( arg1 == null ) { return null ; } final Terms loc0 = arg1 . terms ( arg0 ) ; if ( loc0 == null || ! loc0 . hasOffsets ( ) ) { return null ; } return new TokenStreamFromTermVector ( loc0 , arg2 ) ; }
89,795
sets the lognode data will be sent to . . concode_field_sep LogNode mNext concode_field_sep void println concode_elem_sep LogNode getNext
void function ( LogNode arg0 ) { mNext = arg0 ; }
89,796
given a block of rrule , exrule , rdate , and exdate content lines , parse them into a single local date iterator . concode_field_sep RecurrenceIterator it concode_field_sep LocalDate next concode_elem_sep LocalDate dateValueToLocalDate concode_elem_sep LocalDateIterator iterator concode_elem_sep void advanceTo concode...
LocalDateIterator function ( String arg0 , LocalDate arg1 , boolean arg2 ) { return createLocalDateIterator ( arg0 , arg1 , DateTimeZone . UTC , arg2 ) ; }
89,797
resets the the thread local class loader to its previous value . concode_field_sep ThreadLocalStack localFileResolverStack concode_elem_sep FileResolver globalFileResolver concode_elem_sep URLStreamHandlerFactory globalURLHandlerFactory concode_elem_sep ThreadLocalStack localClassLoaderStack concode_elem_sep ClassLoade...
void function ( ) { localClassLoaderStack . pop ( ) ; }
89,798
gets the target folder path as a file that includes the project location concode_field_sep PlaceHolder placeHolder concode_field_sep IProject getTargetProject concode_elem_sep void refreshTargetProject concode_elem_sep boolean createEmptyProject concode_elem_sep FeatureConfiguration getOutletFeatureConfiguration concod...
File function ( GeneratorEntry arg0 ) { String loc0 = getOutletFeatureConfiguration ( arg0 ) . getParameterValue ( ICoreFeatureConstants . OUTLET_FEATURE_TARGET_FOLDER ) . getStringValue ( ) ; return new File ( getTargetProject ( arg0 ) . getLocation ( ) . toFile ( ) . getPath ( ) + File . separator + loc0 ) ; }
89,799
an extension over system.getproperty method that additionally produces an int value . handles security restrictions , and returns the default value if the access to the property is restricted . concode_field_sep PlaceHolder placeHolder concode_field_sep String getProperty concode_elem_sep String getProperty concode_ele...
int function ( String arg0 , int arg1 ) { try { return Integer . parseInt ( System . getProperty ( arg0 , String . valueOf ( arg1 ) ) ) ; } catch ( SecurityException loc0 ) { return arg1 ; } }