idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
20,500
gets the value of the premiumratevalues 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 premiumratevalues property . for example , to ad...
List < PremiumRateValue > function ( ) { if ( premiumRateValues == null ) { premiumRateValues = new ArrayList < PremiumRateValue > ( ) ; } return this . premiumRateValues ; }
20,501
assign the mappings to receive events from the given joystick axis . concode_field_sep InputManager inputManager concode_elem_sep Joystick parent concode_elem_sep String logicalId concode_elem_sep boolean isAnalog concode_elem_sep String name concode_elem_sep float deadZone concode_elem_sep boolean isRelative concode_e...
void function ( String arg0 , String arg1 ) { if ( axisIndex != - 1 ) { inputManager . addMapping ( arg0 , new JoyAxisTrigger ( parent . getJoyId ( ) , axisIndex , false ) ) ; inputManager . addMapping ( arg1 , new JoyAxisTrigger ( parent . getJoyId ( ) , axisIndex , true ) ) ; } }
20,502
a text description of the hsm configuration . concode_field_sep String hsmPartitionName concode_elem_sep String description concode_elem_sep String hsmConfigurationIdentifier concode_elem_sep String hsmIpAddress concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Tag> tags concode_field_sep String getHsmC...
String function ( ) { return description ; }
20,503
deserialize the thrift object from a java string , using a specified character set for decoding . concode_field_sep TProtocolFactory protocolFactory_ concode_field_sep void toString
void function ( TBase arg0 , String arg1 , String arg2 ) { try { deserialize ( arg0 , arg1 . getBytes ( arg2 ) ) ; } catch ( UnsupportedEncodingException loc0 ) { throw new TException ( "srini_string" + arg2 ) ; } }
20,504
convenience method that can decode a pdf417 code represented as a 2d array of booleans . `` true '' is taken to mean a black module . concode_field_sep int MAX_EC_CODEWORDS concode_elem_sep ErrorCorrection errorCorrection concode_elem_sep int MAX_ERRORS concode_field_sep void correctErrors concode_elem_sep void verifyC...
DecoderResult function ( boolean [ ] [ ] arg0 ) { int loc0 = arg0 . length ; BitMatrix loc1 = new BitMatrix ( loc0 ) ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { for ( int loc3 = 0 ; loc3 < loc0 ; loc3 ++ ) { if ( arg0 [ loc3 ] [ loc2 ] ) { loc1 . set ( loc3 , loc2 ) ; } } } return decode ( loc1 ) ; }
20,505
put method for updating or creating an instance of genericresource concode_field_sep UriInfo context concode_elem_sep Map<String,String> names concode_field_sep String postResult concode_elem_sep String getXml concode_elem_sep Map<String,String> getJson
void function ( String arg0 ) { }
20,506
returns true if the given set has the same number of attributes as this set and containsattributes attr returns true . concode_field_sep AttributeSet EMPTY concode_elem_sep long serialVersionUID concode_elem_sep Hashtable tab concode_field_sep boolean containsAttributeLocally concode_elem_sep void addAttributes concode...
boolean function ( AttributeSet arg0 ) { return getAttributeCount ( ) == arg0 . getAttributeCount ( ) && this . containsAttributes ( arg0 ) ; }
20,507
sets the value of the wday property . concode_field_sep String wDay concode_elem_sep String typeReminder concode_elem_sep String sDate concode_elem_sep Long idReminder concode_elem_sep String description concode_elem_sep String mDay concode_elem_sep String dateRegistered concode_elem_sep String status concode_field_sep...
void function ( String arg0 ) { this . wDay = arg0 ; }
20,508
sets the category value for this product . concode_field_sep java.lang.String description concode_elem_sep boolean __hashCodeCalc concode_elem_sep long serialVersionUID concode_elem_sep com.openbravo.ws.externalsales.Tax tax concode_elem_sep double purchasePrice concode_elem_sep org.apache.axis.description.TypeDesc typ...
void function ( com . openbravo . ws . externalsales . Category arg0 ) { this . category = arg0 ; }
20,509
sets the left . concode_field_sep int m_height concode_elem_sep int m_left concode_elem_sep int m_width concode_elem_sep int m_top concode_field_sep CmsPositionBean getInnerDimensions concode_elem_sep boolean isOverElement concode_elem_sep int getWidth concode_elem_sep CmsPositionBean generatePositionInfo concode_elem_...
void function ( int arg0 ) { m_left = arg0 ; }
20,510
should transfer progress be logged ? default is false . concode_field_sep boolean logCommands concode_elem_sep StringBuffer log concode_elem_sep boolean logConnectionIdentifiers concode_elem_sep boolean logTransferProgress concode_elem_sep boolean logTransferStartComplete concode_field_sep void setLogCommands concode_e...
void function ( boolean arg0 ) { this . logTransferProgress = arg0 ; }
20,511
stop the refresher timer if it was started concode_field_sep ScheduledExecutorService _scheduler concode_elem_sep ScheduledFuture<?> _refresherTask concode_elem_sep ResourceManager _rm concode_field_sep Map<String,QueueSet> saveQueueSets concode_elem_sep void reattachQueueSets concode_elem_sep void refresh concode_elem...
List < Runnable > function ( ) { if ( _refresherTask != null ) { _refresherTask . cancel ( true ) ; return _scheduler . shutdownNow ( ) ; } return null ; }
20,512
see if the new path is in the active path . concode_field_sep int[] ADDRESS_TO_TYPE concode_elem_sep String[] DEFAULT_NAMES concode_field_sep List<T> sparseArrayToList concode_elem_sep int threeBytesToInt concode_elem_sep List<Integer> asImmutableList concode_elem_sep List<T> mergeToUnmodifiableList concode_elem_sep in...
boolean function ( int arg0 , int arg1 ) { for ( int loc0 = 12 ; loc0 >= 0 ; loc0 -= 4 ) { int loc1 = ( arg0 >> loc0 ) & 0xF ; if ( loc1 == 0 ) { break ; } int loc2 = ( arg1 >> loc0 ) & 0xF ; if ( loc2 == 0 ) { break ; } if ( loc1 != loc2 ) { return false ; } } return true ; }
20,513
returns the output base directory associated with this blaze server process . this is the base directory for shared blaze state as well as tool and strategy specific subdirectories . concode_field_sep SkyframeExecutor skyframeExecutor concode_elem_sep String outputBaseFilesystemTypeName concode_elem_sep Range<Long> las...
Path function ( ) { return directories . getOutputBase ( ) ; }
20,514
update #exponent_length to match a supposedly changed #base_length . concode_field_sep Reference<Integer> exponent_length concode_elem_sep Reference<Boolean> exponent_length_set concode_elem_sep Reference<Boolean> base_length_set concode_elem_sep int security_year concode_elem_sep Reference<Calibration> security_calibr...
void function ( ) { exponent_length . ref = make_exponent_length ( base_length . ref ) ; }
20,515
sets the value of the path property . concode_field_sep String path concode_elem_sep TCloudProtocol protocol concode_elem_sep BigInteger port concode_elem_sep String registerProcedure concode_elem_sep String domain concode_field_sep String getDomain concode_elem_sep void setRegisterProcedure concode_elem_sep BigInteger...
void function ( String arg0 ) { this . path = arg0 ; }
20,516
atomically sets the element at position i to the givenupdated value if the current value == the expected value . concode_field_sep Object[] array concode_elem_sep long serialVersionUID concode_field_sep void set concode_elem_sep boolean weakCompareAndSet concode_elem_sep E get concode_elem_sep int length concode_elem_s...
boolean function ( int arg0 , E arg1 , E arg2 ) { return compareAndSetRaw ( arg0 , arg1 , arg2 ) ; }
20,517
called whenever the osgi framework stops our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void start concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; }
20,518
this pointer/object is reachable if its enclosing method is reachable . pleas always call this method to check the status before querying points-to information . concode_field_sep int id concode_elem_sep int Qpos concode_elem_sep IVarAbstraction parent concode_elem_sep IFigureManager stubManager concode_elem_sep int lr...
boolean function ( ) { return id != - 1 ; }
20,519
returns true if null is a legal value for this dependency . concode_field_sep boolean nullable concode_elem_sep int parameterIndex concode_elem_sep Key<T> key concode_elem_sep InjectionPoint injectionPoint concode_field_sep Key<T> getKey concode_elem_sep InjectionPoint getInjectionPoint concode_elem_sep int getParamete...
boolean function ( ) { return nullable ; }
20,520
produce a comma delimited text from a jsonarray of jsonobjects using a provided list of names . the list of names is not included in the output . concode_field_sep PlaceHolder placeHolder concode_field_sep String getValue concode_elem_sep JSONObject rowToJSONObject concode_elem_sep JSONArray toJSONArray concode_elem_se...
String function ( JSONArray arg0 , JSONArray arg1 ) { if ( arg0 == null || arg0 . length ( ) == 0 ) { return null ; } StringBuffer loc0 = new StringBuffer ( ) ; for ( int loc1 = 0 ; loc1 < arg1 . length ( ) ; loc1 += 1 ) { JSONObject loc2 = arg1 . optJSONObject ( loc1 ) ; if ( loc2 != null ) { loc0 . append ( rowToStri...
20,521
reverses all bits in the array . concode_field_sep int size concode_elem_sep int[] bits concode_field_sep void set concode_elem_sep void toBytes concode_elem_sep void clear concode_elem_sep boolean isRange concode_elem_sep int getSize concode_elem_sep void appendBit concode_elem_sep int getSizeInBytes concode_elem_sep ...
void function ( ) { int [ ] loc0 = new int [ bits . length ] ; int loc1 = this . size ; for ( int loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) { if ( get ( loc1 - loc2 - 1 ) ) { loc0 [ loc2 >> 5 ] |= 1 << ( loc2 & 0x1F ) ; } } bits = loc0 ; }
20,522
sets whether this directive has expired . concode_field_sep long bytesNeeded concode_elem_sep boolean hasExpired concode_elem_sep long filesCached concode_elem_sep long filesNeeded concode_elem_sep long bytesCached concode_field_sep Builder setFilesCached concode_elem_sep boolean hasExpired concode_elem_sep Builder set...
Builder function ( boolean arg0 ) { this . hasExpired = arg0 ; return this ; }
20,523
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 ( ) ; }
20,524
returns the namespace prefix matching the requested namespace uri . if no such declaration is found , returns the default `` android '' prefix for the android uri , and `` app '' for other uri 's . concode_field_sep PlaceHolder placeHolder concode_field_sep void appendXmlTextValue concode_elem_sep String toXmlTextValue...
String function ( @ NonNull Node arg0 , @ NonNull String arg1 ) { String loc0 = ANDROID_URI . equals ( arg1 ) ? ANDROID_NS_NAME : APP_PREFIX ; return lookupNamespacePrefix ( arg0 , arg1 , loc0 ) ; }
20,525
adds all specified models to the arraylist . concode_field_sep List<TModel> models concode_elem_sep InternalAdapter<TModel> internalAdapter concode_elem_sep List<TModel> models concode_elem_sep ProcessModelList<TModel> processModelList concode_field_sep Builder<TModel> saveBuilder concode_elem_sep Builder<TModel> add c...
Builder < TModel > function ( TModel ... arg0 ) { this . models . addAll ( Arrays . asList ( arg0 ) ) ; return this ; }
20,526
metoda koja kreira novi primjerak razreda . realni dio broja je nula . concode_field_sep double imagPart concode_elem_sep double realPart concode_field_sep ComplexNumber add concode_elem_sep ComplexNumber sub concode_elem_sep ComplexNumber mul concode_elem_sep ComplexNumber fromReal concode_elem_sep ComplexNumber fromM...
ComplexNumber function ( double arg0 ) { return new ComplexNumber ( 0 , arg0 ) ; }
20,527
method declaration concode_field_sep User uPublic concode_elem_sep String sName concode_elem_sep Hashtable hRight concode_elem_sep boolean bAdministrator concode_elem_sep String sPassword concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep String getName concode_elem_sep void checkPa...
boolean function ( ) { return bAdministrator ; }
20,528
resolves the date and time based based on a three byte encoded within a max!cube l message . date decoding two byte hex binary 9d0b 1001110100001011 mmmdddddm yyyyyy 100 0 = 1000b = 8d = month 11101 = 11101b = 29d = day 001011 = 1011b = 11d = year-2000 time decoding one byte hex decimal 1f 31 0.5 hours = 15:30 concode_...
Date function ( int arg0 , int arg1 ) { int loc0 = ( ( arg0 & 0xE000 ) >> 12 ) + ( ( arg0 & 0x80 ) >> 7 ) ; int loc1 = ( arg0 & 0x1F00 ) >> 8 ; int loc2 = ( arg0 & 0x0F ) + 2000 ; int loc3 = ( int ) ( arg1 * 0.5 ) ; int loc4 = ( int ) ( 60 * ( ( arg1 * 0.5 ) - loc3 ) ) ; return new Date ( loc2 , loc0 , loc1 , loc3 , lo...
20,529
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String reason concode_elem_sep String arn concode_field_sep Failure withArn concode_elem_sep String getReason concode_elem_sep int hashCode concode_elem_sep void setReason concode_elem_sep boolean equals concode_elem_s...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getArn ( ) != null ) loc0 . append ( "srini_string" + getArn ( ) + "srini_string" ) ; if ( getReason ( ) != null ) loc0 . append ( "srini_string" + getReason ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 ...
20,530
whether the error happened due to the sender 's fault . returns a reference to this object so that method calls can be chained together . concode_field_sep String code concode_elem_sep Boolean senderFault concode_elem_sep String id concode_elem_sep String message concode_field_sep void setCode concode_elem_sep String g...
BatchResultErrorEntry function ( Boolean arg0 ) { this . senderFault = arg0 ; return this ; }
20,531
include finding route builder from these java package names . concode_field_sep List<String> excludes concode_elem_sep Boolean includeNonSingletons concode_elem_sep List<String> includes concode_field_sep void setExcludes concode_elem_sep Boolean getIncludeNonSingletons concode_elem_sep void setIncludeNonSingletons con...
void function ( List < String > arg0 ) { this . includes = arg0 ; }
20,532
called when md-sal closes the active session . cleanup is performed , i.e. all active registrations with md-sal are closed , concode_field_sep DisplayString TOASTER_MANUFACTURER concode_elem_sep DataBroker dataService concode_elem_sep InstanceIdentifier<Toaster> TOASTER_IID concode_elem_sep ProviderContext providerCont...
void function ( ) { dcReg . close ( ) ; LOG . info ( "srini_string" ) ; }
20,533
if true , messages will be compressed . concode_field_sep SpelExpressionParser spelExpressionParser concode_elem_sep Properties properties concode_field_sep String getProperty concode_elem_sep String getProperty concode_elem_sep boolean getProperty concode_elem_sep int getProperty concode_elem_sep long getProperty conc...
boolean function ( boolean arg0 ) { return getProperty ( COMPRESS , arg0 ) ; }
20,534
sets the owner id of this portal preferences . concode_field_sep PortalPreferences _portalPreferences concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean...
void function ( long arg0 ) { _portalPreferences . setOwnerId ( arg0 ) ; }
20,535
returns the password tracker with the primary key . concode_field_sep PasswordTrackerLocalService _passwordTrackerLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void trackPassword concode_elem_sep void setWrappedService concode_elem_sep boolean isValidPassword concode_elem_sep...
com . liferay . portal . kernel . model . PasswordTracker function ( long arg0 ) { return _passwordTrackerLocalService . getPasswordTracker ( arg0 ) ; }
20,536
names must begin with a letter and can contain the following characters : a-z lowercase , 0-9 , and _ underscore . constraints : length : 1 - 64 pattern : a-z a-z0-9 _ concode_field_sep DocumentSuggesterOptions documentSuggesterOptions concode_elem_sep String suggesterName concode_field_sep Suggester withDocumentSugges...
void function ( String arg0 ) { this . suggesterName = arg0 ; }
20,537
it returns the number of items that compose the itemset . concode_field_sep List<Item> items concode_elem_sep long timestamp concode_field_sep void addItem concode_elem_sep void addItem concode_elem_sep void removeItem concode_elem_sep Item removeItem concode_elem_sep List<Item> getItems concode_elem_sep Itemset cloneI...
int function ( ) { return items . size ( ) ; }
20,538
sends an outgoing sms . concode_field_sep Logger LOGGER concode_elem_sep SmsService smsService concode_field_sep String handleException
String function ( @ RequestBody OutgoingSms arg0 ) { smsService . send ( arg0 ) ; return String . format ( "srini_string" , arg0 . getRecipients ( ) . toString ( ) , arg0 . getConfig ( ) ) ; }
20,539
clears the contents of the queue . concode_field_sep Vector _queue concode_field_sep void add concode_elem_sep Object next concode_elem_sep int size concode_elem_sep boolean hasNext concode_elem_sep void addFront
void function ( ) { synchronized ( _queue ) { _queue . removeAllElements ( ) ; } }
20,540
sets the value of the target property . concode_field_sep SignedPropertiesType signedProperties concode_elem_sep UnsignedPropertiesType unsignedProperties concode_elem_sep String id concode_elem_sep String target concode_field_sep UnsignedPropertiesType getUnsignedProperties concode_elem_sep void setUnsignedProperties ...
void function ( String arg0 ) { this . target = arg0 ; }
20,541
the absolute path of the root that contains this directory , root #getpath . concode_field_sep Set<Artifact> idlGeneratedJavaFiles concode_elem_sep Set<SourceDirectory> idlDirs concode_elem_sep ImmutableCollection<SourceDirectory> assetDirs concode_elem_sep Artifact generatedManifest concode_elem_sep Set<Artifact> idlS...
PathFragment function ( ) { return rootPath ; }
20,542
returns the value of the isettingspage #key_show_update_only setting . concode_field_sep UpdaterData mUpdaterData concode_elem_sep ISettingsPage mSettingsPage concode_elem_sep String SETTINGS_FILENAME concode_elem_sep Properties mProperties concode_field_sep boolean getForceHttp concode_elem_sep int getMonitorDensity c...
boolean function ( ) { String loc0 = mProperties . getProperty ( ISettingsPage . KEY_SHOW_UPDATE_ONLY ) ; if ( loc0 == null ) { return true ; } return Boolean . parseBoolean ( loc0 ) ; }
20,543
hashcode method declaration this method returns the hashcode for the data stored in this instance of the bytearray class . concode_field_sep byte data[] concode_field_sep byte[] serialize concode_elem_sep String serializeToString concode_elem_sep String createString concode_elem_sep String toString concode_elem_sep int...
int function ( ) { return data . hashCode ( ) ; }
20,544
sets the ' city #getname name ' feature . concode_field_sep String name concode_elem_sep String reis concode_field_sep void setReis concode_elem_sep String getName concode_elem_sep String getReis concode_elem_sep String toString
void function ( String arg0 ) { name = arg0 ; }
20,545
aligns the left edge of the widget to the left edge of the draw region concode_field_sep HorizontalInfo positionLeft concode_elem_sep HorizontalInfo positionRight concode_elem_sep int width concode_elem_sep HorizontalInfo positionCenter concode_field_sep HorizontalHint alignLeftRelativeTo concode_elem_sep HorizontalHin...
HorizontalHint function ( ) { return alignLeftRelativeTo ( "srini_string" , HorizontalAlign . LEFT , 0 ) ; }
20,546
is there one question per page ? concode_field_sep String itemNumbering concode_elem_sep String submissionMessage concode_elem_sep java.util.Date dueDate concode_elem_sep java.util.Date feedbackDate concode_elem_sep boolean formatByAssessment concode_elem_sep boolean autoSave concode_elem_sep boolean unlimitedAttempts ...
void function ( boolean arg0 ) { this . formatByQuestion = arg0 ; }
20,547
the number of custom error responses for this distribution . concode_field_sep Integer quantity concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<CustomErrorResponse> items concode_field_sep java.util.List<CustomErrorResponse> getItems concode_elem_sep Integer getQuantity concode_elem_sep int hashCode c...
void function ( Integer arg0 ) { this . quantity = arg0 ; }
20,548
sets the size of the fragment to return from the beginning of the field if there are no matches to highlight and the field does n't also define nomatchsize . concode_field_sep SearchSourceBuilder sourceBuilder concode_field_sep T addFieldDataField concode_elem_sep T setExplain concode_elem_sep T setHighlighterPreTags c...
T function ( Integer arg0 ) { highlightBuilder ( ) . arg0 ( arg0 ) ; return ( T ) this ; }
20,549
gets the value of the xmlsimplereport property . concode_field_sep String xmlDiagnosticData concode_elem_sep String xmlDetailedReport concode_elem_sep String xmlSimpleReport concode_field_sep void setXmlDiagnosticData concode_elem_sep String getXmlDiagnosticData concode_elem_sep void setXmlSimpleReport concode_elem_sep...
String function ( ) { return xmlSimpleReport ; }
20,550
adds semantic checks to the default deserialization method . this method must have the standard signature for a readobject method , and the body of the method must begin with `` s.defaultreadobject ; '' . other than that , any semantic checks can be specified and do not need to stay the same from version to version . a...
void function ( ObjectInputStream arg0 ) { arg0 . defaultReadObject ( ) ; if ( initializer == null ) { throw new NullPointerException ( ) ; } if ( updateFunction == null ) { throw new NullPointerException ( ) ; } if ( updatePeriods == null ) { throw new NullPointerException ( ) ; } }
20,551
get the hash code of this vmid . concode_field_sep boolean areWeUnique concode_elem_sep UID uid concode_elem_sep long serialVersionUID concode_elem_sep byte[] addr concode_elem_sep byte[] localAddr concode_elem_sep int hash concode_field_sep boolean equals concode_elem_sep boolean isUnique concode_elem_sep String toStr...
int function ( ) { if ( hash == 0 ) { for ( int loc0 = 0 ; loc0 < localAddr . length ; loc0 ++ ) hash += addr [ loc0 ] ; hash = hash ^ uid . hashCode ( ) ; } return hash ; }
20,552
gets the value of the memosystemcreationdate property . concode_field_sep XMLGregorianCalendar memoSystemCreationDate concode_elem_sep long serialVersionUID concode_elem_sep String accountHistorySystemText concode_elem_sep String userName concode_elem_sep String ban concode_elem_sep String accountHistoryType concode_el...
XMLGregorianCalendar function ( ) { return memoSystemCreationDate ; }
20,553
get value concode_field_sep String displayName concode_elem_sep long serialVersionUID concode_elem_sep String name concode_elem_sep String value concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String getDisplayName concode_elem_sep void setValue concode_elem_sep void setDisplayName
String function ( ) { return value ; }
20,554
emulates ctrl key up . concode_field_sep Control m_control concode_elem_sep int m_stateMask concode_elem_sep int m_lastDragX concode_elem_sep int m_lastDragY concode_elem_sep int m_dragButton concode_field_sep void endDrag concode_elem_sep void postModifiers concode_elem_sep void keyUp concode_elem_sep void keyUp conco...
void function ( ) { setStateMask ( SWT . NONE ) ; }
20,555
sets the typeevaluator to be used when calculating animated values . this object is required only for keyframesets that are not either intkeyframeset or floatkeyframeset , both of which assume their own evaluator to speed up calculations with those primitive types . concode_field_sep int mNumKeyframes concode_elem_sep ...
void function ( TypeEvaluator arg0 ) { mEvaluator = arg0 ; }
20,556
called by the inputmanager when this inputsource is registered with the application . this method should not be invoked directly ! concode_field_sep ArrayDeque<MTInputEvent> eventQueue concode_elem_sep AbstractMTApplication app concode_elem_sep ArrayList<IinputSourceListener> inputListeners concode_elem_sep ArrayList<I...
void function ( ) { app . registerPreDrawAction ( this ) ; }
20,557
formats nanoseconds to seconds . concode_field_sep DecimalFormat intFormat concode_elem_sep DecimalFormat millisFormat concode_elem_sep DecimalFormat doubleUnspecificFormat concode_elem_sep DecimalFormat nanosFormat concode_elem_sep DecimalFormat cpuFormat concode_elem_sep DateFormat dateMillisFormat concode_elem_sep D...
String function ( long arg0 ) { double loc0 = arg0 / 1000000000d ; return nanosFormat . format ( loc0 ) + "srini_string" ; }
20,558
locates a custom propertyproxy for the given class . the entire class hierarchy is searched . if a match is found in the class heirarchy the propertyproxy is registered for the given class . concode_field_sep boolean preregistered concode_elem_sep PropertyProxyRegistry registry concode_elem_sep Map classRegistry concod...
PropertyProxy function ( Class arg0 ) { return getProxy ( arg0 , true , true ) ; }
20,559
generates the `` result '' json object for commentactivity moment . concode_field_sep String[] ACTIONS concode_elem_sep ArrayList<String> MOMENT_LIST concode_elem_sep HashMap<String,String> MOMENT_TYPES concode_field_sep ItemScope getReviewActivityResult concode_elem_sep ItemScope getResultFor concode_elem_sep ItemScop...
ItemScope function ( ) { return new ItemScope . Builder ( ) . setType ( "srini_string" ) . setUrl ( "srini_string" ) . setName ( "srini_string" ) . setText ( "srini_string" ) . build ( ) ; }
20,560
returns the java class instance that has the annotations for the cloudkeeper plug-in declaration.the returned class instance may be the same as #getpluginclass , or it may be a class whose name is the concatenation of #mixin_prefix and the class name of #getpluginclass . concode_field_sep List<Class<? extends Annotatio...
Class < ? > function ( ) { return classWithAnnotation ; }
20,561
initializes a path object given the scheme , authority and path string . concode_field_sep char SEPARATOR_CHAR concode_elem_sep String SEPARATOR concode_elem_sep String CUR_DIR concode_elem_sep long serialVersionUID concode_elem_sep URI uri concode_field_sep Path getParent concode_elem_sep String getName concode_elem_s...
void function ( String arg0 , String arg1 , String arg2 ) { try { this . uri = new URI ( arg0 , arg1 , normalizePath ( arg2 ) , null , null ) . normalize ( ) ; } catch ( URISyntaxException loc2 ) { throw new IllegalArgumentException ( loc2 ) ; } }
20,562
returns the navigationcase annotation that was located . concode_field_sep Object owner concode_elem_sep Log logger concode_elem_sep FoundNavigationCaseType type concode_elem_sep NavigationRequestEvent event concode_elem_sep NavigationCase navigationCase concode_field_sep FoundNavigationCaseType getType concode_elem_se...
NavigationCase function ( ) { return navigationCase ; }
20,563
returns whether or not the sprite has been found . concode_field_sep ImageView image concode_elem_sep String QRCode concode_elem_sep boolean found concode_elem_sep int spriteFragmentID concode_elem_sep int imageResourceID concode_elem_sep String name concode_field_sep void found concode_elem_sep FoundMonsterFragment ch...
boolean function ( ) { return found ; }
20,564
gets the descriptor encoding for a class . concode_field_sep PlaceHolder placeHolder concode_field_sep String getEncodingOfMember concode_elem_sep Class getClassForEncoding concode_elem_sep Class getClassForEncoding concode_elem_sep Class getClassForEncoding concode_elem_sep String getEncodingOfConstructor concode_elem...
String function ( Class arg0 , boolean arg1 ) { return getEncodingOfClass ( arg0 . getName ( ) , arg1 ) ; }
20,565
if the amount of information that is returned is significantly large , an identifier will also be returned , which can be used in a subsequent list deployments call to return the next set of deployments in the list . concode_field_sep com.amazonaws.internal.SdkInternalList<String> deployments concode_elem_sep String ne...
ListDeploymentsResult function ( String arg0 ) { setNextToken ( arg0 ) ; return this ; }
20,566
set the jax-ws handlerresolver to use for all proxies and dispatchers created through this factory . concode_field_sep WebServiceFeature[] serviceFeatures concode_elem_sep Executor executor concode_elem_sep String namespaceUri concode_elem_sep String serviceName concode_elem_sep URL wsdlDocumentUrl concode_elem_sep Han...
void function ( HandlerResolver arg0 ) { this . handlerResolver = arg0 ; }
20,567
checks whether the current underlying operating system is a 32-bit microsoft windows . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isLinux concode_elem_sep boolean isSolaris concode_elem_sep boolean isWindows concode_elem_sep boolean isWindows64 concode_elem_sep boolean isLinux64 concode_elem_se...
boolean function ( ) { String loc0 = System . getProperty ( "srini_string" ) ; String loc1 = System . getProperty ( "srini_string" ) ; return loc1 . startsWith ( "srini_string" ) && loc0 . equals ( "srini_string" ) ; }
20,568
updates the role 's permissions at the scope , setting the actions that can be performed on resources of the type . existing actions are replaced . this method can be used to set permissions at any scope , but it is generally only used at the individual scope . for example , it could be used to set the guest permission...
void function ( long arg0 , long arg1 , java . lang . String arg2 , java . lang . String arg3 , java . util . Map < java . lang . Long , java . lang . String [ ] > arg4 ) { getService ( ) . setIndividualResourcePermissions ( arg0 , arg1 , arg2 , arg3 , arg4 ) ; }
20,569
scales down dimensions in samplesize times . returns new object . concode_field_sep int TO_STRING_MAX_LENGHT concode_elem_sep String SEPARATOR concode_elem_sep int width concode_elem_sep int height concode_field_sep int getHeight concode_elem_sep ImageSize scale concode_elem_sep String toString concode_elem_sep int get...
ImageSize function ( int arg0 ) { return new ImageSize ( width / arg0 , height / arg0 ) ; }
20,570
sets is this effect should fire partial submit when finished . transitory also needs to be set to true . default is false 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_...
void function ( boolean arg0 ) { this . submit = arg0 ; ea . add ( "srini_string" , arg0 ) ; }
20,571
returns a bean expression value builder concode_field_sep PlaceHolder placeHolder concode_field_sep ValueBuilder faultBodyAs concode_elem_sep ValueBuilder constant concode_elem_sep ValueBuilder sendTo concode_elem_sep ValueBuilder systemProperty concode_elem_sep ValueBuilder systemProperty concode_elem_sep ValueBuilder...
ValueBuilder function ( Class < ? > arg0 , String arg1 ) { Expression loc0 = new MethodCallExpression ( arg0 , arg1 ) ; return new ValueBuilder ( loc0 ) ; }
20,572
get the parameters associated with the action concode_field_sep String user concode_elem_sep String level concode_elem_sep String action concode_elem_sep Date date concode_elem_sep String params concode_field_sep boolean isLevel concode_elem_sep String getLevel concode_elem_sep boolean afterDate concode_elem_sep String...
String function ( ) { return this . params ; }
20,573
emits a tuple to the specified output stream with a null message id . storm will not track this message so ack and fail will never be called for this tuple . the emitted values must be immutable . concode_field_sep ISpoutOutputCollector _delegate concode_field_sep void reportError concode_elem_sep void emitDirect conco...
List < Integer > function ( String arg0 , List < Object > arg1 ) { return emit ( arg0 , arg1 , null ) ; }
20,574
sets the host_rq value for this bodyrq . concode_field_sep java.lang.String OPCION concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String ME concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String HOST_RQ concode_...
void function ( java . lang . String arg0 ) { this . HOST_RQ = arg0 ; }
20,575
get the sockets to the connection concode_field_sep List<ClientObject> clients concode_field_sep void userDisconnect concode_elem_sep ArrayList<ObjectOutputStream> getUserOutStreams concode_elem_sep void userConnect
ArrayList < Socket > function ( List < String > arg0 ) { ArrayList < Socket > loc0 = new ArrayList < Socket > ( ) ; for ( ClientObject loc1 : clients ) { for ( String loc2 : arg0 ) if ( loc1 . getUsername ( ) . equals ( loc2 ) ) { loc0 . add ( loc1 . getSocket ( ) ) ; } } return loc0 ; }
20,576
should not be used for external use of the api . concode_field_sep int expires concode_elem_sep String displayName concode_elem_sep int primaryKey concode_elem_sep String ACTIVE concode_elem_sep String PRIORITY concode_elem_sep String STATUS_TEXT concode_elem_sep Comparator<SipProfileState> ACC_INFO_COMPARATOR concode_...
void function ( int arg0 ) { this . statusCode = arg0 ; }
20,577
this method resets the outgoing events . concode_field_sep long j1 concode_elem_sep long a concode_elem_sep long b concode_elem_sep long c concode_elem_sep long d concode_elem_sep long e concode_elem_sep long f concode_elem_sep long k1 concode_elem_sep long g concode_elem_sep long h concode_elem_sep long i1 concode_ele...
void function ( ) { }
20,578
returns a list of vertices that are the direct successors of a specified vertex . if the graph is a multigraph vertices may appear more than once in the returned list . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean addAllEdges concode_elem_sep void addGraphReversed concode_elem_sep List<V> predece...
List < V > function ( DirectedGraph < V , E > arg0 , V arg1 ) { List < V > loc0 = new ArrayList < V > ( ) ; Set < ? extends E > loc1 = arg0 . outgoingEdgesOf ( arg1 ) ; for ( E loc2 : loc1 ) { loc0 . add ( getOppositeVertex ( arg0 , loc2 , arg1 ) ) ; } return loc0 ; }
20,579
utility method to compute the allocated size in bytes of a yuv420sp image of the given dimensions . concode_field_sep Logger LOGGER concode_field_sep Matrix getTransformationMatrix concode_elem_sep void convertARGB8888ToYUV420SP concode_elem_sep void saveBitmap concode_elem_sep void saveBitmap concode_elem_sep void con...
int function ( final int arg0 , final int arg1 ) { final int loc0 = arg0 * arg1 ; final int loc1 = ( ( arg0 + 1 ) / 2 ) * ( ( arg1 + 1 ) / 2 ) * 2 ; return loc0 + loc1 ; }
20,580
sets the verifier used to confirm that response certificates apply to requested hostnames for https connections . if unset , the httpsurlconnection #getdefaulthostnameverifier system-wide default hostname verifier will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnam...
OkHttpClient function ( HostnameVerifier arg0 ) { this . hostnameVerifier = arg0 ; return this ; }
20,581
loads all resources indicated by #data . concode_field_sep Data data concode_elem_sep HashMap<FileReference,R> resources concode_elem_sep String root concode_elem_sep boolean disposed concode_field_sep R loadResource concode_elem_sep void beginLoading concode_elem_sep R get concode_elem_sep boolean isDisposed concode_e...
void function ( java . io . File arg0 ) { this . load ( arg0 . getParent ( ) ) ; }
20,582
signals that a task has finished . this event will still be fired if an error occurred during the build . concode_field_sep GrailsConsole ui concode_field_sep void buildFinished concode_elem_sep void targetFinished concode_elem_sep void taskStarted concode_elem_sep void messageLogged concode_elem_sep void buildStarted ...
void function ( final BuildEvent arg0 ) { ui . indicateProgress ( ) ; }
20,583
marks this producercontext as cancelled . this method does not call any callbacks . instead , caller of this method is responsible for iterating over returned list and calling appropriate method on each callback object . @see #calloncancellationrequested concode_field_sep ProducerListener mProducerListener concode_elem...
List < ProducerContextCallbacks > function ( ) { if ( mIsCancelled ) { return null ; } mIsCancelled = true ; return new ArrayList < > ( mCallbacks ) ; }
20,584
sets the value of the nexthref property . concode_field_sep List<Build> build concode_elem_sep Integer count concode_elem_sep String prevHref concode_elem_sep String href concode_elem_sep String nextHref concode_field_sep List<Build> getBuild concode_elem_sep String getHref concode_elem_sep void setHref concode_elem_se...
void function ( String arg0 ) { this . nextHref = arg0 ; }
20,585
called when an update was completed . concode_field_sep PlaceHolder placeHolder concode_field_sep void updateFailed concode_elem_sep void managerStarted concode_elem_sep void updateStarted concode_elem_sep void managerStopped concode_elem_sep void managerResumed concode_elem_sep void managerSuspended
void function ( UpdateManagerEvent arg0 ) { }
20,586
stock not_supported_err . concode_field_sep PlaceHolder placeHolder concode_field_sep DOMException noModErr concode_elem_sep DOMException badImportErr concode_elem_sep boolean hasFeature concode_elem_sep Document createDocument concode_elem_sep DocumentType createDocumentType concode_elem_sep Object getFeature concode_...
DOMException function ( ) { return new DOMException ( DOMException . NOT_SUPPORTED_ERR , "srini_string" ) ; }
20,587
converts a func3 to a funcn to allow heterogeneous handling of functions with different arities . concode_field_sep PlaceHolder placeHolder concode_field_sep FuncN<Void> fromAction concode_elem_sep FuncN<Void> fromAction concode_elem_sep FuncN<Void> fromAction concode_elem_sep FuncN<Void> fromAction
FuncN < R > function ( final Func3 < ? super T0 , ? super T1 , ? super T2 , ? extends R > arg0 ) { return new FuncN < R > ( ) { @ SuppressWarnings ( "srini_string" ) @ Override public R call ( Object ... arg1 ) { if ( arg1 . length != 3 ) { throw new RuntimeException ( "srini_string" ) ; } return arg0 . call ( ( T0 ) a...
20,588
the method validate the size concode_field_sep DictionaryChunksWrapper dictionaryChunksWrapper concode_elem_sep List<List<byte[]>> dictionaryChuncks concode_elem_sep List<byte[]> expectedData concode_field_sep List<byte[]> prepareExpectedData concode_elem_sep void testNext concode_elem_sep void setUp concode_elem_sep L...
void function ( ) { int loc0 = dictionaryChunksWrapper . getSize ( ) ; Assert . assertEquals ( "srini_string" , 4 , loc0 ) ; }
20,589
merges fields specified by a fieldmask from one message to another . concode_field_sep String FIELD_SEPARATOR_REGEX concode_elem_sep String FIELD_PATH_SEPARATOR concode_elem_sep String FIELD_PATH_SEPARATOR_REGEX concode_elem_sep boolean replaceMessageFields concode_elem_sep boolean replaceRepeatedFields concode_field_s...
void function ( FieldMask arg0 , Message arg1 , Message . Builder arg2 ) { merge ( arg0 , arg1 , arg2 , new MergeOptions ( ) ) ; }
20,590
split a file name into path and filename . nulls returned if do n't make sense . concode_field_sep PlaceHolder placeHolder concode_field_sep String fullPath concode_elem_sep void clearDirectory concode_elem_sep String extension concode_elem_sep String fullDirectoryPath concode_elem_sep String basename concode_elem_sep ...
Tuple < String > function ( String arg0 ) { String loc0 = null ; String loc1 = arg0 ; int loc2 = arg0 . lastIndexOf ( '/' ) ; if ( loc2 < 0 ) loc2 = arg0 . lastIndexOf ( '|' ) ; if ( loc2 >= 0 ) { loc0 = arg0 . substring ( 0 , loc2 ) ; loc1 = arg0 . substring ( loc2 + 1 ) ; } return Tuple . create ( loc0 , loc1 ) ; }
20,591
create an instance of downloadimage concode_field_sep QName _UploadImage_QNAME concode_elem_sep QName _DownloadImageResponse_QNAME concode_elem_sep QName _DownloadImage_QNAME concode_elem_sep QName _UploadImageResponse_QNAME concode_field_sep UploadImageResponse createUploadImageResponse concode_elem_sep JAXBElement<Up...
DownloadImage function ( ) { return new DownloadImage ( ) ; }
20,592
get the name of this road . an alias for #getname . concode_field_sep Road dual concode_elem_sep String name concode_elem_sep List<Lane> lanes concode_elem_sep BasicMap map concode_field_sep void addTheRightMostLane concode_elem_sep String getName concode_elem_sep boolean hasDual concode_elem_sep void setDual concode_e...
String function ( ) { return getName ( ) ; }
20,593
requests cancellation of this test run . concode_field_sep String PACKAGE_ARG_NAME concode_elem_sep String DEBUG_ARG_NAME concode_elem_sep IDevice mRemoteDevice concode_elem_sep String LOG_TAG concode_elem_sep String CLASS_ARG_NAME concode_elem_sep String COVERAGE_ARG_NAME concode_elem_sep String mRunnerName concode_el...
void function ( ) { if ( mParser != null ) { mParser . cancel ( ) ; } }
20,594
returns the version of quartz that is running . concode_field_sep boolean isRemote concode_elem_sep boolean isInStandbyMode concode_elem_sep long serialVersionUID concode_elem_sep boolean jsPersistent concode_elem_sep Class<?> tpClass concode_elem_sep String schedInst concode_elem_sep Class<?> schedClass concode_elem_s...
String function ( ) { return version ; }
20,595
gets the value of the expiration property . concode_field_sep XMLGregorianCalendar timeFrom concode_elem_sep Integer riskLevelID concode_elem_sep XMLGregorianCalendar timeTo concode_elem_sep XMLGregorianCalendar expiration concode_elem_sep String userID concode_field_sep Integer getRiskLevelID concode_elem_sep void set...
XMLGregorianCalendar function ( ) { return expiration ; }
20,596
add a command to be processed with no line number association . concode_field_sep int maxCommandLength concode_elem_sep int truncateDecimalLength concode_elem_sep double smallArcThreshold concode_elem_sep boolean inAbsoluteMode concode_elem_sep Point3d currentPoint concode_elem_sep int commandNumber concode_elem_sep Li...
PointSegment function ( String arg0 ) { return addCommand ( arg0 , this . commandNumber ++ ) ; }
20,597
get custom deserializer concode_field_sep java.lang.String field concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String[] values concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.google.api.ads.adwords.axis.v201502.cm.Pr...
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; }
20,598
obtains the thread context classloader concode_field_sep PlaceHolder placeHolder concode_field_sep String getProperty concode_elem_sep void setFieldValue concode_elem_sep List<Method> getMethodsWithAnnotation concode_elem_sep Class<?> loadClass concode_elem_sep List<Field> getFieldsWithAnnotation concode_elem_sep T new...
ClassLoader function ( ) { return AccessController . doPrivileged ( GetTcclAction . INSTANCE ) ; }
20,599
creates a new genericselectassert for the given genericselect . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
GenericSelectAssert function ( GenericSelect arg0 ) { return new GenericSelectAssert ( arg0 , GenericSelectAssert . class ) ; }