code
stringlengths
20
663
nl
stringlengths
68
7.19k
double function ( Link arg0 , LinkResourceService arg1 ) { return isValid ( arg0 , arg1 ) ? + 1 : - 1 ; }
negative return value means the specified link does not satisfy this constraint . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isValid concode_elem_sep boolean validate
List < DatabaseTable > function ( ) { return insertTables ; }
this method gets list of databasetable object that will be inserted concode_field_sep List<DatabaseTableRecord> selectRecords concode_elem_sep List<DatabaseTableRecord> insertRecords concode_elem_sep List<DatabaseTableRecord> updateRecords concode_elem_sep List<DatabaseTable> selectTables concode_elem_sep List<Database...
ApplicationReport function ( ) { return yarnClient . getApplicationReport ( applicationId ) ; }
get the application report of this application concode_field_sep SliderYarnClientImpl yarnClient concode_elem_sep ApplicationId applicationId concode_field_sep ApplicationId getApplicationId concode_elem_sep boolean forceKill concode_elem_sep ApplicationReport monitorAppToState concode_elem_sep KillApplicationResponse ...
void function ( Creditor arg0 ) { this . creditor = arg0 ; }
sets the value of the creditor property . concode_field_sep String returnCode concode_elem_sep MandateInfo mandateInfo concode_elem_sep Creditor creditor concode_elem_sep DirectDebitInfo directDebitInfo concode_elem_sep String returnDesc concode_field_sep void setReturnDesc concode_elem_sep Creditor getCreditor concode...
void function ( ) { if ( isRedo ( ) ) { cursor = cursor + 1 ; Memento loc0 = mementoStateHistory . get ( cursor ) ; loc0 . restore ( ) ; } }
redo the last state change . only possible if there have been previous undo call . concode_field_sep int cursor concode_elem_sep ArrayList<Memento> mementoStateHistory concode_elem_sep int maxHistorySize concode_field_sep boolean isRedo concode_elem_sep void undo concode_elem_sep boolean isUndo concode_elem_sep void ad...
String function ( ) { return conf . get ( SPARK_NETWORK_IO_MODE_KEY , "srini_string" ) . toUpperCase ( ) ; }
io mode : nio or epoll concode_field_sep String SPARK_NETWORK_IO_NUMCONNECTIONSPERPEER_KEY concode_elem_sep String SPARK_NETWORK_IO_LAZYFD_KEY concode_elem_sep String SPARK_NETWORK_IO_SERVERTHREADS_KEY concode_elem_sep String module concode_elem_sep String SPARK_NETWORK_IO_CLIENTTHREADS_KEY concode_elem_sep String SPAR...
void function ( Graphics arg0 , Rectangle arg1 , Color arg2 , Color arg3 ) { arg0 . pushState ( ) ; arg0 . setForegroundColor ( arg3 ) ; arg0 . setBackgroundColor ( arg2 ) ; arg0 . fillGradient ( arg1 . x , arg1 . y , arg1 . width , arg1 . height , true ) ; arg0 . popState ( ) ; }
this function fills a rectangle with a vertical gradient . this implementation does not use the gradient mechanism based on background patterns since they do not work stable on all systems . concode_field_sep PlaceHolder placeHolder concode_field_sep void fillVerticalGradientRoundedRectangle concode_elem_sep Color mixC...
boolean function ( Collection < ? > arg0 , Object arg1 ) { if ( arg0 != null ) { for ( Object loc0 : arg0 ) { if ( loc0 == arg1 ) { return true ; } } } return false ; }
check whether the given collection contains the given element instance . enforces the given instance to be present , rather than returning true for an equal element as well . concode_field_sep Enumeration<E> enumeration concode_elem_sep Map<K,List<V>> map concode_field_sep Iterator<E> toIterator concode_elem_sep E next...
long function ( String arg0 ) { if ( p1 . schema ( ) . hasField ( arg0 ) ) return p1 . distinctValues ( arg0 ) ; else return p2 . distinctValues ( arg0 ) ; }
estimates the distinct number of field values in the product . since the product does not increase or decrease field values , the estimate is the same as in the appropriate underlying query . concode_field_sep Iterator<Plan> rightIter concode_elem_sep Plan p1 concode_elem_sep Plan p2 concode_elem_sep Iterator<Plan> lef...
void function ( java . lang . String arg0 ) { _ddmStructureLayout . setDefinition ( arg0 ) ; }
sets the definition of this d d m structure layout . concode_field_sep DDMStructureLayout _ddmStructureLayout concode_field_sep java.lang.String getDefinition concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_s...
void function ( JsonStreamToken arg0 ) { if ( arg0 != peek ( ) ) { throw new IOException ( "srini_string" + peek ( ) ) ; } lineNumber = scanner . getLineNumber ( ) ; columnNumber = scanner . getColumnNumber ( ) ; charOffset = scanner . getCharOffset ( ) ; peeked = false ; }
make the next token the current token . save location info from scanner to prevent changing location by peek concode_field_sep String name concode_elem_sep JsonStreamToken token concode_elem_sep int charOffset concode_elem_sep int columnNumber concode_elem_sep Scanner scanner concode_elem_sep Scanner.Symbol symbol conc...
void function ( java . io . InputStream arg0 , String arg1 , int arg2 , int arg3 , int arg4 ) { ReInit ( arg1 == null ? new java . io . InputStreamReader ( arg0 ) : new java . io . InputStreamReader ( arg0 , arg1 ) , arg2 , arg3 , arg4 ) ; }
reinitialise . concode_field_sep int bufpos concode_elem_sep boolean prevCharIsLF concode_elem_sep int bufsize concode_elem_sep int available concode_elem_sep int tabSize concode_elem_sep java.io.Reader inputStream concode_elem_sep char[] nextCharBuf concode_elem_sep int line concode_elem_sep boolean staticFlag concode...
State function ( ) { if ( defaults != null ) return defaults ; return this ; }
returns the default state , or this state if it corresponds to the defaults for a given action subclass . concode_field_sep int depth concode_elem_sep State defaults concode_elem_sep Element topElement concode_elem_sep int curStateIndex concode_elem_sep List<Element> elements concode_field_sep void pop concode_elem_sep...
T function ( String arg0 ) { return this . runtimeContext . < T > getIterationAggregator ( arg0 ) ; }
gets the iteration aggregator registered under the given name . the iteration aggregator combines all aggregates globally once per superstep and makes them available in the next superstep . concode_field_sep K vertexId concode_elem_sep EdgesIterator<K,EV> edgeIterator concode_elem_sep long numberOfVertices concode_elem...
boolean function ( int arg0 ) { Entry loc0 [ ] = table ; int loc1 = arg0 ; int loc2 = ( loc1 & 0x7FFFFFFF ) % loc0 . length ; for ( Entry loc3 = loc0 [ loc2 ] ; loc3 != null ; loc3 = loc3 . next ) { if ( loc3 . loc1 == loc1 ) { return true ; } } return false ; }
tests if the specified object is a key in this hashtable . concode_field_sep Entry table[] concode_elem_sep Entry next concode_elem_sep float loadFactor concode_elem_sep int count concode_elem_sep int threshold concode_elem_sep Object value concode_elem_sep int hash concode_elem_sep int key concode_field_sep boolean co...
void function ( EObject arg0 , Node arg1 ) { if ( arg1 . hasAttribute ( "srini_string" ) ) { String loc0 = ( String ) arg1 . getAttributeValue ( "srini_string" ) ; List loc1 = ( List ) wfsSqlViewKvpParser . parse ( loc0 ) ; WFSBindingUtils . set ( arg0 , "srini_string" , loc1 ) ; } }
set the viewparams in the binding class manually concode_field_sep ViewParamsKvpParser wfsSqlViewKvpParser concode_field_sep void fixNodeObject concode_elem_sep ViewParamsKvpParser getWfsSqlViewKvpParser concode_elem_sep void setWfsSqlViewKvpParser
JAXBElement < PersonType > function ( PersonType arg0 ) { return new JAXBElement < PersonType > ( personQNAME , PersonType . class , null , arg0 ) ; }
create an instance of jaxbelement concode_field_sep QName personQNAME concode_field_sep PersonType createPersonType
T function ( long arg0 ) { int loc0 = loc0 ( arg0 ) ; lock . lock ( ) ; try { return loc0 < 0 ? null : buf [ loc0 ] ; } finally { lock . unlock ( ) ; } }
only used for testing !! concode_field_sep Lock lock concode_elem_sep AtomicBoolean processing concode_elem_sep T[] buf concode_elem_sep long offset concode_elem_sep long current concode_elem_sep long low concode_elem_sep Condition buffer_full concode_elem_sep boolean running concode_elem_sep long hr concode_elem_sep T...
FoodProcurementActivity function ( ) { return foodProcurementProcessActivity ; }
gets the food procurement process activity . concode_field_sep FoodProcurementActivity foodProcurementProcessActivity concode_elem_sep FoodProcurementActivityStatus foodProcurementActivityStatus concode_elem_sep Integer foodProcurementAppplicantId concode_elem_sep RevisionType revisionType concode_elem_sep String chang...
int function ( ) { return length ; }
return length in bytes . concode_field_sep byte[] EMPTY concode_elem_sep String string concode_elem_sep int length concode_elem_sep Utf8Converter UTF8_CONVERTER concode_elem_sep byte[] bytes concode_elem_sep Charset UTF8 concode_field_sep byte[] getBytesFor concode_elem_sep int getByteLength concode_elem_sep Utf8 set c...
void function ( String arg0 ) { this . awardCategory = arg0 ; }
sets the value of the awardcategory property . concode_field_sep PromotionAward.Duration duration concode_elem_sep Boolean expires concode_elem_sep List<Classification> awardClassification concode_elem_sep List<SpecificationGroup> awardSpecification concode_elem_sep String awardCategory concode_elem_sep Description des...
void function ( java . lang . Integer arg0 ) { this . startIndex = arg0 ; }
sets the startindex value for this adunitpage . concode_field_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer totalResultSetSize concode_elem_sep com....
void function ( int arg0 ) { packetCollectorSize = arg0 ; }
sets the default max size of a stanza / packet collector before it will delete the older packets . concode_field_sep List<XMPPInputOutputStream> compressionHandlers concode_elem_sep ParsingExceptionCallback defaultCallback concode_elem_sep SmackDebuggerFactory debuggerFactory concode_elem_sep List<String> defaultMechs ...
CharacterDataSelector function ( final String arg0 ) { return new CSSCharacterDataSelector ( arg0 ) ; }
creates a cdata section node selector . concode_field_sep PlaceHolder placeHolder concode_field_sep CharacterDataSelector createTextNodeSelector concode_elem_sep SimpleSelector createRootNodeSelector concode_elem_sep DescendantSelector createChildSelector concode_elem_sep SimpleSelector createAnyNodeSelector concode_el...
S2LatLng function ( ) { return new S2LatLng ( Math . max ( - S2 . M_PI_2 , Math . min ( S2 . M_PI_2 , lat ( ) . radians ( ) ) ) , Math . IEEEremainder ( lng ( ) . radians ( ) , 2 * S2 . M_PI ) ) ; }
returns a new s2latlng based on this instance for which #isvalid will be true . latitude is clipped to the range -90 , 90 longitude is normalized to be in the range -180 , 180 if the current point is valid then the returned point will have the same coordinates . concode_field_sep S2LatLng CENTER concode_elem_sep double...
String function ( String arg0 ) { if ( s_engine == null ) init ( System . getProperties ( ) ) ; return s_engine . implementation . getDigest ( arg0 ) ; }
convert string to digest . javascript version see - http://pajhome.org.uk/crypt/md5/index.html concode_field_sep String TEST concode_elem_sep SecureInterface implementation concode_elem_sep SecureEngine s_engine concode_elem_sep Logger log concode_field_sep void init concode_elem_sep void init concode_elem_sep String t...
boolean function ( ) { if ( presentation != null ) { if ( ( presentation . getParticipantsSize ( ) < VIEW_SIZE ) || ( position == 0 ) ) { return true ; } } return false ; }
method to determine if the scroll up button for this view is enabled or disabled , based on how big the list is concode_field_sep Presentation presentation concode_elem_sep int position concode_elem_sep int VIEW_SIZE concode_elem_sep Participant[] participantView concode_field_sep int getPosition concode_elem_sep void ...
int function ( ) { return 31 * Arrays . hashCode ( getMaxBytes ( ) ) + 17 * Arrays . hashCode ( getMinBytes ( ) ) + Long . valueOf ( this . getNumNulls ( ) ) . hashCode ( ) ; }
hash code for the statistics object concode_field_sep long num_nulls concode_elem_sep boolean hasNonNullValue concode_field_sep boolean isSmallerThan concode_elem_sep T genericGetMin concode_elem_sep void setNumNulls concode_elem_sep boolean isEmpty concode_elem_sep byte[] getMaxBytes concode_elem_sep long getNumNulls ...
MonitoringLevel function ( String arg0 ) { if ( OFF . toString ( ) . equalsIgnoreCase ( arg0 ) ) return ( OFF ) ; else if ( LOW . toString ( ) . equalsIgnoreCase ( arg0 ) ) return ( LOW ) ; else if ( HIGH . toString ( ) . equalsIgnoreCase ( arg0 ) ) return ( HIGH ) ; return ( null ) ; }
returns an instance of monitoringlevel for the given string . the given string has to correspond to one of the public fields declared in this class . concode_field_sep String name concode_elem_sep MonitoringLevel HIGH concode_elem_sep MonitoringLevel LOW concode_elem_sep MonitoringLevel OFF concode_field_sep int hashCo...
void function ( IdleHandler arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( "srini_string" ) ; } synchronized ( this ) { mIdleHandlers . add ( arg0 ) ; } }
add a new idlehandler to this message queue . this may beremoved automatically for you by returning false from idlehandler #queueidle idlehandler.queueidle when it isinvoked , or explicitly removing it with #removeidlehandler . this method is safe to call from any thread . concode_field_sep boolean mQuitAllowed concode...
Notification function ( JSONObject arg0 , Class < ? > arg1 ) { return schedule ( new Options ( context ) . parse ( arg0 ) , arg1 ) ; }
schedule local notification specified by json object . concode_field_sep Context context concode_field_sep Notification cancel concode_elem_sep void cancelAll concode_elem_sep List<Integer> getIdsByType concode_elem_sep List<Notification> getAll concode_elem_sep List<Notification> getByType concode_elem_sep Notificatio...
void function ( FacesContext arg0 , UIComponent arg1 ) { ArrayList loc0 = ( ArrayList ) arg0 . getAttributes ( ) . get ( FormEndRendering . class . getName ( ) ) ; if ( loc0 != null ) { Iterator loc1 = loc0 . iterator ( ) ; while ( loc1 . hasNext ( ) ) { FormEndRenderer loc2 = ( FormEndRenderer ) loc1 . next ( ) ; loc2...
method used by form renderers to invoke all the registered renderers before encodeend is executed . concode_field_sep PlaceHolder placeHolder concode_field_sep void addRenderer
void function ( PluginManager arg0 ) { this . pluginManager = arg0 ; if ( savedResult != null ) { onActivityResult ( savedResult . requestCode , savedResult . resultCode , savedResult . intent ) ; } }
dispatches any pending onactivityresult callbacks . concode_field_sep String TAG concode_elem_sep PluginManager pluginManager concode_elem_sep Activity activity concode_elem_sep CordovaPlugin activityResultCallback concode_elem_sep String initCallbackService concode_elem_sep ActivityResultHolder savedResult concode_ele...
int function ( ) { return current ; }
returns the current character value . concode_field_sep int current concode_elem_sep LocalizableSupport localizableSupport concode_elem_sep NormalizingReader reader concode_elem_sep String BUNDLE_CLASSNAME concode_elem_sep ErrorHandler errorHandler concode_field_sep String formatMessage concode_elem_sep void skipCommaS...
void function ( IUIControlListener arg0 ) { controlListener = arg0 ; }
set the ui control listener that listens to the changes initialed by this ui control . concode_field_sep String PROP_HOSTNAME concode_elem_sep String newTextValue concode_elem_sep IUIControlListener controlListener concode_elem_sep boolean isEnabled concode_elem_sep Map<String,UIControlEntry> controlMap concode_elem_se...
void function ( ) { generator . writeEndObject ( ) ; }
writes the end of object string to the jsongenerator . concode_field_sep JsonGenerator generator concode_elem_sep Map<String,List<String>> conditionsByKey concode_elem_sep Log log concode_elem_sep Writer writer concode_field_sep boolean isNotNull concode_elem_sep void writeResources concode_elem_sep void writeActions c...
AutomatonPane function ( ) { return parent ; }
returns the parent component of this transition creator . concode_field_sep AutomatonPane parent concode_field_sep Automaton getAutomaton concode_elem_sep boolean editTransition concode_elem_sep void editTransition concode_elem_sep TransitionCreator creatorForAutomaton concode_elem_sep Transition createTransition conco...
String function ( ) { return openSLASR ; }
getter method to get the all nonftr open ticket concode_field_sep String ART concode_elem_sep String l1 concode_elem_sep String l2 concode_elem_sep String l3 concode_elem_sep String l4 concode_elem_sep String l5 concode_elem_sep String SLA concode_elem_sep String type concode_elem_sep String percentSLAMet concode_elem_...
void function ( ServerLocatorInternal arg0 ) { arg0 . connect ( ) ; }
connects to the cluster concode_field_sep SharedNothingBackupQuorum backupQuorum concode_field_sep String getNodeID concode_elem_sep void notifyRegistrationFailed concode_elem_sep void locateNode concode_elem_sep void locateNode concode_elem_sep Pair<TransportConfiguration,TransportConfiguration> getLiveConfiguration
short [ ] function ( Any arg0 ) { ShortSeqHolder loc0 = ( ShortSeqHolder ) arg0 . extract_Streamable ( ) ; return loc0 . value ; }
extract the short from the given any . this implementation expects the any to hold the instance of shortseqholder that is returned by any #extract_streamable . concode_field_sep PlaceHolder placeHolder concode_field_sep short[] read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type ...
int function ( ) { return ( int ) getPeProvisioner ( ) . getMips ( ) ; }
gets the mips rating of this pe . concode_field_sep int FREE concode_elem_sep int BUSY concode_elem_sep int FAILED concode_elem_sep int id concode_elem_sep PeProvisioner peProvisioner concode_elem_sep int status concode_field_sep void setStatusFailed concode_elem_sep void setPeProvisioner concode_elem_sep PeProvisioner...
int function ( ) { return count ; }
gets the number of times this node has been entered concode_field_sep FlowPanel content concode_elem_sep LinkedHashMap<String,Node> children concode_elem_sep double enterTime concode_elem_sep HorizontalPanel controls concode_elem_sep int count concode_elem_sep double maxTime concode_elem_sep String name concode_elem_se...
int [ ] function ( int [ ] arg0 , int arg1 , int arg2 ) { assert ( arg2 > arg1 ) ; int [ ] loc0 = new int [ arg2 ] ; if ( arg0 != null ) { System . arraycopy ( arg0 , 0 , loc0 , 0 , arg1 ) ; } return loc0 ; }
reallocate a buffer . concode_field_sep PlaceHolder placeHolder concode_field_sep void rotate concode_elem_sep void rotate concode_elem_sep void rotate
void function ( SessionNode arg0 , SessionNode arg1 ) { SessionEvent loc0 = new SessionEvent ( this . source , arg0 , arg1 , SessionEvent . PARENT_REMOVED ) ; fireSessionEvent ( loc0 ) ; }
fires an event indicating that a parent has been removed from the given parent to the given child session node in the session . concode_field_sep List sessionListeners concode_elem_sep Object source concode_field_sep void fireNodeRemoved concode_elem_sep void fireParentAdded concode_elem_sep void fireNodeAdded concode_...
ClassDoc [ ] function ( String arg0 ) { return getArray ( enums , arg0 ) ; }
return all of the enums specified on the command-line that belong to the given package . concode_field_sep Map<String,Set<ClassDoc>> enums concode_elem_sep Map<String,Set<ClassDoc>> interfaces concode_elem_sep Set<String> packageSet concode_elem_sep Configuration configuration concode_elem_sep Map<String,Set<ClassDoc>>...
SWbemSink function ( ) { return new SWbemSink ( com . linar . jintegra . Dispatch . getActiveObject ( CLSID ) ) ; }
getactiveobject . get a reference to a running instance of this class on the current machine using native code . uses native code see getactiveobject in ms doc and thus can only be used on ms windows concode_field_sep String CLSID concode_elem_sep wbemdisp.ISWbemSinkProxy d_ISWbemSinkProxy concode_field_sep void cancel...
com . liferay . shopping . model . ShoppingOrderItem function ( long arg0 ) { return getService ( ) . deleteShoppingOrderItem ( arg0 ) ; }
deletes the shopping order item with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep ServiceTracker<ShoppingOrderItemLocalService,ShoppingOrderItemLocalService> _serviceTracker concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay....
boolean function ( Node arg0 ) { if ( nodes . contains ( arg0 ) ) { return ( true ) ; } return ( false ) ; }
check for the item . concode_field_sep ArrayList<Edge> edges concode_elem_sep ArrayList<Node> nodes concode_elem_sep Graph graph concode_field_sep ArrayList<Node> getNodes concode_elem_sep boolean addNode concode_elem_sep void addNodes concode_elem_sep void addEdges concode_elem_sep Graph getGraph concode_elem_sep void...
boolean function ( ) { return lastUpdated != null ; }
indicates whether this params specifies last updated . concode_field_sep Set<OrganisationUnit> organisationUnits concode_elem_sep TrackedEntity trackedEntity concode_elem_sep int DEFAULT_PAGE_SIZE concode_elem_sep Integer pageSize concode_elem_sep Program program concode_elem_sep TrackedEntityInstance trackedEntityInst...
String function ( String arg0 ) { FacesContext loc0 = FacesContext . getCurrentInstance ( ) ; HttpServletRequest loc1 = ( HttpServletRequest ) loc0 . getExternalContext ( ) . getRequest ( ) ; HttpSession loc2 = loc1 . getSession ( ) ; return loc1 . getParameter ( arg0 ) ; }
gest parameter value from the the session scope . concode_field_sep Logger log concode_elem_sep Properties buildProperties concode_field_sep String getRequestParameter concode_elem_sep UIComponent findComponent concode_elem_sep ServletContext getServletContext concode_elem_sep void redirectBrowser concode_elem_sep Obje...
Integer function ( ) { return ValuePool . getInt ( bestRowNotPseudo ) ; }
retrieves whether the best row identifier column is a pseudo column , like an oracle rowid . currently , this always returns an integer whose value is databasemetadata.bestrownotpseudo , as hsqldb does not support pseudo columns such as rowid . concode_field_sep short tableIndexOther concode_elem_sep int HALF_MAX_INT c...
long function ( ) { return encodedSize ; }
returns the encoded size of the article . concode_field_sep long encodedSQLSize concode_elem_sep String articleName concode_elem_sep int diffPartCounter concode_elem_sep int readRevisionCounter concode_elem_sep long processingTimeDiff concode_elem_sep int articleId concode_elem_sep long enteringTime concode_elem_sep lo...
void function ( String arg0 ) { setEventOrdering ( EventOrdering . valueOf ( arg0 ) ) ; }
set the the delivery mode ordered , unordered concode_field_sep EventOrdering eventOrdering concode_elem_sep CacheConfiguration<?,?> configuration concode_elem_sep String configUri concode_elem_sep Class<?> keyType concode_elem_sep CacheManager cacheManager concode_elem_sep String PREFIX_POOL concode_elem_sep String ca...
boolean function ( OutputChart arg0 ) { if ( axisChart == null || arg0 . getChart ( ) == null ) buildAxisChart ( ) ; arg0 . setChart ( axisChart ) ; return ! initialzed && ( initialzed = true ) ; }
method to tell the page to render or not based on the initialized flag concode_field_sep boolean initialzed concode_elem_sep AxisChart axisChart concode_elem_sep String clickedValue concode_field_sep void buildAxisChart concode_elem_sep String getClickedValue concode_elem_sep void action concode_elem_sep void setClicke...
Map < QName , String > function ( ) { return otherAttributes ; }
gets a map that contains attributes that are n't bound to any typed property on this class . the map is keyed by the name of the attribute and the value is the string value of the attribute . the map returned by this method is live , and you can add new attribute by updating the map directly . because of this design , ...
boolean function ( final Date arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return ( cookieExpiryDate != null && cookieExpiryDate . getTime ( ) <= arg0 . getTime ( ) ) ; }
returns true if this cookie has expired . concode_field_sep String cookieDomain concode_elem_sep Date cookieExpiryDate concode_elem_sep int cookieVersion concode_elem_sep String name concode_elem_sep boolean isSecure concode_elem_sep String cookiePath concode_elem_sep String value concode_elem_sep long serialVersionUID...
JAXBElement < ? extends AbstractGeometryType > function ( ) { return abstractGeometry ; }
gets the value of the abstractgeometry property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep JAXBElement<? extends AbstractGeometryType> abstractGeometry concode_elem_sep String show concode_elem_sep java.lang.Boolean owns concode_elem_sep String actuate concode_elem_sep List<String>...
ResponseEntity < Void > function ( @ PathVariable Long arg0 ) { log . debug ( "srini_string" , arg0 ) ; osiResponsibilityService . delete ( arg0 ) ; return ResponseEntity . ok ( ) . build ( ) ; }
delete / osi-responsibilities / : id : delete the `` id '' osiresponsibility . concode_field_sep Logger log concode_elem_sep OsiResponsibilityService osiResponsibilityService concode_field_sep ResponseEntity<List<OsiResponsibilitiesDTO>> getAllOsiResponsibilities concode_elem_sep ResponseEntity<OsiResponsibilitiesDTO> ...
void function ( final String arg0 ) { this . value = arg0 ; }
sets the value concode_field_sep String cookieDomain concode_elem_sep Date cookieExpiryDate concode_elem_sep int cookieVersion concode_elem_sep String name concode_elem_sep boolean isSecure concode_elem_sep String cookiePath concode_elem_sep String value concode_elem_sep long serialVersionUID concode_elem_sep Map<Strin...
void function ( Object arg0 , Object arg1 ) { if ( isMap ( arg0 ) ) ( ( Map ) arg0 ) . remove ( arg1 . toString ( ) ) ; else { List loc0 = ( List ) arg0 ; int loc1 = arg1 instanceof Integer ? ( Integer ) arg1 : Integer . parseInt ( arg1 . toString ( ) ) ; loc0 . remove ( loc1 ) ; } }
removes a value in an object or array concode_field_sep Logger logger concode_field_sep Object getMapValue concode_elem_sep Iterable<? extends Object> toIterable concode_elem_sep void setProperty concode_elem_sep Collection<String> getPropertyKeys concode_elem_sep int length concode_elem_sep boolean isArray concode_ele...
boolean function ( Ingredient arg0 ) { String loc0 = arg0 . name ; if ( listOfIngredients . get ( loc0 ) == null ) { listOfIngredients . put ( loc0 , arg0 ) ; return true ; } return false ; }
adds ingredient to this dishdata concode_field_sep HashMap<String,Double> amtOfIngredient concode_elem_sep double price concode_elem_sep HashMap<String,Ingredient> listOfIngredients concode_elem_sep String name concode_field_sep String[] getListOfIngredients concode_elem_sep double getAmount
void function ( String arg0 ) { this . content = arg0 ; }
this method sets the contents of a file in string . concode_field_sep String content concode_elem_sep String fileName concode_elem_sep FilePrivacy privacyLevel concode_elem_sep FileLifeSpan lifeSpan concode_elem_sep UUID ownerId concode_elem_sep String directoryName concode_field_sep String getDirectoryName concode_ele...
String function ( String arg0 , Object ... arg1 ) { int loc0 = arg1 . length ; String [ ] loc1 = new String [ loc0 ] ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 [ loc2 ] = taint ( arg1 [ loc2 ] ) ; } return compose ( arg0 , ( Object [ ] ) loc1 ) ; }
a convenience method for calling #compose string , object with an array ofarguments that will be automatically tainted see #taint . concode_field_sep String TAINT_CHAR concode_elem_sep String QUAL_SEP concode_elem_sep String QUAL_PREFIX concode_field_sep String taint concode_elem_sep boolean isTainted concode_elem_sep ...
Map < String , List < String >> function ( ) { return settings ; }
getter for the field settings . concode_field_sep Map<String,List<String>> settings concode_elem_sep String description concode_elem_sep SecuritySchemeDescriptor describedBy concode_elem_sep String type concode_field_sep void setSettings concode_elem_sep String getType concode_elem_sep SecuritySchemeDescriptor getDescr...
void function ( ) { if ( delayBetweenRuns == 0 ) { return ; } Runnable loc0 = new RegistryCleanUpTask ( ) ; scheduler . scheduleWithFixedDelay ( loc0 , initialDelay , delayBetweenRuns , TimeUnit . MINUTES ) ; }
activate clean up task . concode_field_sep ScheduledExecutorService scheduler concode_elem_sep long delayBetweenRuns concode_elem_sep String CONFIRMATION_REGISTRY_RESOURCE_PATH concode_elem_sep int NUM_THREADS concode_elem_sep long initialDelay concode_elem_sep Log log concode_elem_sep String EXPIRE_TIME_PROPERTY conco...
String function ( @ WebParam ( name = "srini_string" ) String arg0 ) { return "srini_string" + arg0 + "srini_string" ; }
this is a sample web service operation concode_field_sep pl.edu.pk.azu.magazyn.Magazyn_Service service concode_field_sep String zamowSurowiec concode_elem_sep String dostarczonoPrzesylke concode_elem_sep String przygotujNaprawe concode_elem_sep String nadajPrzesylke concode_elem_sep String przygotujSklep
CodeSource function ( ) { Certificate [ ] loc0 = getCertificates ( ) ; if ( loc0 == null ) return loader . noCertCodeSource ; else return new CodeSource ( loader . baseURL , loc0 ) ; }
returns the non-null codesource associated with this resource . concode_field_sep URLLoader loader concode_field_sep URL getURL concode_elem_sep URLLoader getLoader concode_elem_sep Certificate[] getCertificates concode_elem_sep int getLength concode_elem_sep InputStream getInputStream
void function ( Boolean arg0 ) { this . isTruncated = arg0 ; }
a flag that indicates whether there are more items to return . if your results were truncated , you can make a subsequent pagination request using the marker request parameter to retrieve more items . note that iam might return fewer than the maxitems number of results even when there are more results available . we re...
HsqlException function ( String arg0 , String arg1 , int arg2 ) { return new HsqlException ( arg0 , arg1 , arg2 ) ; }
compose error in placeholders within the error message . the message string contains $ $ markers for each context variable . context variables are supplied in the add parameters . concode_field_sep String MESSAGE_TAG concode_elem_sep int SQL_STATE_DIGITS concode_elem_sep int ERROR_CODE_BASE concode_elem_sep int bundleH...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getBootstrapActions ( ) != null ) loc0 . append ( "srini_string" + getBootstrapActions ( ) + "srini_string" ) ; if ( getMarker ( ) != null ) loc0 . append ( "srini_string" + getMarker ( ) ) ; loc0 . append ( "srin...
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String marker concode_elem_sep com.amazonaws.internal.SdkInternalList<Command> bootstrapActions concode_field_sep String getMarker concode_elem_sep void setBootstrapActions concode_elem_sep void setMarker concode_elem_...
DetachedCriteria function ( String arg0 , String arg1 , int arg2 , Criterion arg3 ) { return createAlias ( arg0 , arg1 , JoinType . parse ( arg2 ) , arg3 ) ; }
deprecated ! concode_field_sep CriteriaImpl impl concode_elem_sep Criteria criteria concode_field_sep DetachedCriteria add concode_elem_sep Criteria getExecutableCriteria concode_elem_sep DetachedCriteria setFetchMode concode_elem_sep DetachedCriteria setProjection concode_elem_sep DetachedCriteria forEntityName concod...
void function ( AbstractContextView arg0 ) { if ( ! newTitle . equals ( currentTitle ) ) { arg0 . setPartName ( newTitle ) ; currentTitle = newTitle ; } }
doc xqliu comment method `` updatetitle '' . concode_field_sep String newTitle concode_elem_sep String currentTitle concode_elem_sep String PERSPECTIVE_DI_ID concode_field_sep void refreshView concode_elem_sep AbstractContextView forceGetView concode_elem_sep void forceRefreshContextsView concode_elem_sep void setTitle...
long function ( ) { return ( long ) this . version ; }
gets the major version . concode_field_sep double k_2_0 concode_elem_sep FXGVersion v2_0 concode_elem_sep FXGVersion v1_0 concode_elem_sep double k_1_0 concode_elem_sep double version concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equalTo concode_elem_sep double asDouble concode...
void function ( java . lang . String arg0 ) { _faqAnswer . setLanguage ( arg0 ) ; }
sets the language of this f a q answer . concode_field_sep FAQAnswer _faqAnswer concode_field_sep void setApproved concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int compareTo concode_elem_sep FAQAnswer getWrappedModel con...
void function ( List < CdpInterface > arg0 ) { if ( arg0 == null || arg0 . isEmpty ( ) ) return ; m_hascdpinterfaces = true ; m_cdpinterfaces = arg0 ; }
setcdpinterfaces concode_field_sep Integer m_lldpChassisIdSubtype concode_elem_sep boolean m_isBridgeNode concode_elem_sep Map<Integer,Set<String>> m_portMacs concode_elem_sep String m_sysoid concode_elem_sep Map<Integer,Integer> m_bridgePortIfindex concode_elem_sep InetAddress m_snmpprimaryaddr concode_elem_sep List<L...
boolean function ( ) { return ( messages . size ( ) != 0 ) ; }
returns whether there are any messages in the response . concode_field_sep long firstAvailSeqNum concode_elem_sep long requestSeqNum concode_elem_sep long fetchSize concode_elem_sep long error concode_elem_sep List<TankMessage> messages concode_elem_sep String topic concode_elem_sep boolean hasError concode_elem_sep lo...
boolean function ( ) { return numChoices == 0 ; }
is there a deadlock i.e. no available transitions ? concode_field_sep double probSum concode_elem_sep int offset concode_elem_sep int numTransitions concode_elem_sep int numChoices concode_elem_sep int i concode_elem_sep ArrayList<Choice> choices concode_elem_sep ArrayList<Integer> transitionOffsets concode_elem_sep Ar...
MimeType function ( final String arg0 ) { MimeType loc0 = mimeTypes . get ( arg0 ) ; if ( loc0 == null ) { loc0 = new MimeType ( arg0 ) ; } return loc0 ; }
this method returns the first representation of the mimetype corresponding to the given mime-type string . concode_field_sep String mimeTypeString concode_elem_sep Map<String,MimeType> fileExtensions concode_elem_sep MimeType PKCS7 concode_elem_sep MimeType ASICS concode_elem_sep MimeType BINARY concode_elem_sep MimeTy...
void function ( int arg0 ) { queue . add ( arg0 ) ; }
since queue adds elements at the end and also stack ends at the end of data structure so push operation is as simple as add element to queue . time complexity : o 1 concode_field_sep Queue<Integer> queue concode_field_sep int pop concode_elem_sep void main
long function ( ) { return this . indexWriterMaxMemoryInBytes ; }
maximum memory index writer may use before it must write buffered documents to a new segment . concode_field_sep XContentBuilderString STORED_FIELDS_MEMORY_IN_BYTES concode_elem_sep long indexWriterMaxMemoryInBytes concode_elem_sep XContentBuilderString FIXED_BIT_SET_MEMORY_IN_BYTES concode_elem_sep XContentBuilderStri...
void function ( ) { mSoundMap . clear ( ) ; }
clears all of the previously set sounds and events . concode_field_sep MediaPlayer mCurrentMediaPlayer concode_elem_sep HashMap<State,Integer> mSoundMap concode_elem_sep Context mContext concode_field_sep void onPullEvent concode_elem_sep void addSoundEvent concode_elem_sep void playSound concode_elem_sep MediaPlayer g...
void function ( ) { this . portToMac . clear ( ) ; }
removes all hosts from this network record concode_field_sep String name concode_elem_sep String guid concode_elem_sep Map<String,MacAddress> portToMac concode_elem_sep String gateway concode_field_sep void setName concode_elem_sep boolean removeHost concode_elem_sep void setGateway concode_elem_sep void addHost
ClassDescriptor function ( String arg0 ) { int loc0 = arg0 . indexOf ( 'L' ) ; if ( loc0 < 0 ) { return null ; } int loc1 = arg0 . indexOf ( ';' , loc0 ) ; if ( loc1 < 0 ) { return null ; } return createClassDescriptor ( arg0 . substring ( loc0 + 1 , loc1 ) ) ; }
create a class descriptor from a field signature concode_field_sep Map<String,ClassDescriptor> classDescriptorMap concode_elem_sep MapCache<String,String> stringCache concode_elem_sep ThreadLocal<DescriptorFactory> instanceThreadLocal concode_elem_sep Map<FieldDescriptor,FieldDescriptor> fieldDescriptorMap concode_elem...
ProjectBuilder function ( String arg0 ) { this . name = arg0 ; return this ; }
specifies the name for the project concode_field_sep File projectDir concode_elem_sep Project parent concode_elem_sep ProjectBuilderImpl impl concode_elem_sep String name concode_field_sep ProjectBuilder withParent concode_elem_sep Project build concode_elem_sep ProjectBuilder builder concode_elem_sep ProjectBuilder wi...
boolean function ( ) { return ContextUtils . getAppSharedPreferences ( ) . contains ( SHARED_PREF_DISPLAYED_SNACKBAR_PROMO_SAVED_BYTES ) ; }
returns a boolean indicating that the data savings in bytes on the first upgrade to the version that shows the snackbar has been initialized . concode_field_sep String SHARED_PREF_DISPLAYED_FRE_OR_SECOND_RUN_PROMO concode_elem_sep String SHARED_PREF_DISPLAYED_INFOBAR_PROMO_VERSION concode_elem_sep String SHARED_PREF_DI...
List < ProcessLog > function ( ) { return data ; }
some additional data , assigned to graph element . concode_field_sep List<ProcessLog> data concode_elem_sep String name concode_elem_sep int[] graphConstraints concode_elem_sep long serialVersionUID concode_elem_sep String label concode_elem_sep NodeType nodeType concode_elem_sep String nodeId concode_field_sep String ...
com . liferay . social . networking . model . MeetupsEntry function ( long arg0 ) { return getService ( ) . getMeetupsEntry ( arg0 ) ; }
returns the meetups entry with the primary key . concode_field_sep ServiceTracker<MeetupsEntryLocalService,MeetupsEntryLocalService> _serviceTracker concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep java.util.List<com.liferay.social.networking.model.Me...
DataServiceEntities . AccountPhones . AccountPhoneData . AccountPhone function ( ) { return new DataServiceEntities . AccountPhones . AccountPhoneData . AccountPhone ( ) ; }
create an instance of dataserviceentities.accountphones.accountphonedata.accountphone concode_field_sep PlaceHolder placeHolder concode_field_sep DataServiceEntities.Parties.PartyData.Party createDataServiceEntitiesPartiesPartyDataParty concode_elem_sep DataServiceEntities.PartyEmails.PartyEmailData.PartyEmail createDa...
void function ( @ ArquillianResource URL arg0 ) { URL loc0 = prepareUrl ( arg0 ) ; Utils . makeCallWithBasicAuthn ( loc0 , USER2 , PASSWORD , SC_OK ) ; }
test that validation in ` regex-validating-principal-transformer ' succeed in case when attribute ` match ' is set to true and user name matches the pattern . concode_field_sep String ELYTRON_SECURITY_MATCH concode_elem_sep PropertyFileBasedDomain domainNotMatch concode_elem_sep String PRINCIPAL_TRANSFORMER_NOT_MATCH c...
void function ( ) { Window loc0 = getWindow ( ) ; if ( loc0 instanceof Frame ) ( ( Frame ) loc0 ) . setExtendedState ( Frame . ICONIFIED ) ; }
implements exportedwindow #minimize . minimizes the wrapped window instance if it is a frame . concode_field_sep T window concode_field_sep void maximize concode_elem_sep void setVisible concode_elem_sep void bringToFront concode_elem_sep void setSize concode_elem_sep T getWindow concode_elem_sep void setLocation conco...
String function ( ) { return name ; }
gets the name of the name object . concode_field_sep int HEX_CHAR concode_elem_sep Logger logger concode_elem_sep String name concode_field_sep String convertHexChars concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString
Routes function ( @ PluginAttribute ( "srini_string" ) final String arg0 , @ PluginElement ( "srini_string" ) final Route ... arg1 ) { if ( arg0 == null ) { LOGGER . error ( "srini_string" ) ; return null ; } if ( arg1 == null || arg1 . length == 0 ) { LOGGER . error ( "srini_string" ) ; return null ; } return new Rout...
create the routes . concode_field_sep Route[] routes concode_elem_sep String pattern concode_elem_sep Logger LOGGER concode_field_sep Route[] getRoutes concode_elem_sep String toString concode_elem_sep String getPattern
void function ( boolean arg0 ) { this . readContent = arg0 ; }
if set to true , the content of document node will be retrieved in addition to the properties concode_field_sep String password concode_elem_sep Logger LOG concode_elem_sep int pageSize concode_elem_sep Session session concode_elem_sep boolean readContent concode_elem_sep String query concode_elem_sep String repository...
String function ( @ Nullable final Throwable arg0 , final boolean arg1 ) { if ( arg0 == null ) return "srini_string" ; final StringBuilder loc0 = _getRecursiveStackAsStringBuilder ( arg0 , null , null , 1 , arg1 ) ; if ( StringHelper . getLastChar ( loc0 ) == STACKELEMENT_LINESEP ) loc0 . deleteCharAt ( loc0 . length (...
get the stack trace of a throwable as string . concode_field_sep ICommonsList<String> STACKTRACE_OMIT_UNITTEST concode_elem_sep char STACKELEMENT_LINESEP concode_elem_sep StackTraceHelper s_aInstance concode_elem_sep ICommonsList<String> STACKTRACE_OMIT_APPSRV concode_field_sep void _appendSingleStackTraceToString conc...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _clipLocalService . dynamicQueryCount ( arg0 ) ; }
returns the number of rows that match the dynamic query . concode_field_sep ClipLocalService _clipLocalService concode_field_sep void setWrappedService concode_elem_sep java.util.List dynamicQuery concode_elem_sep java.util.List dynamicQuery concode_elem_sep java.util.List dynamicQuery concode_elem_sep com.vportal.port...
void function ( ) { System . out . println ( "srini_string" ) ; LogisticDistribution loc0 = new LogisticDistribution ( 2.0 , 1.0 ) ; loc0 . rand ( ) ; assertEquals ( Math . PI / Math . sqrt ( 3 ) , loc0 . sd ( ) , 1E-7 ) ; }
test of sd method , of class logisticdistribution . concode_field_sep PlaceHolder placeHolder concode_field_sep void setUpClass concode_elem_sep void testVar concode_elem_sep void testEntropy concode_elem_sep void testCdf concode_elem_sep void testMean concode_elem_sep void setUp concode_elem_sep void tearDownClass con...
ConfigurableApplicationContext function ( Class arg0 ) { ConfigurableApplicationContext loc0 = startNewApplication ( firstFreePort , arg0 ) ; firstFreePort ++ ; return loc0 ; }
starts a new , separate spring context with a given configuration . the started services have separate http port and are configured to use an in-memory test registry server . if you start multiple services this way , they will act as a separate applications , but will be registered in a single registry service . concod...
void function ( UnicodeString arg0 ) { this . _string = arg0 ; }
used internally by the hssfcell to set the internal string value concode_field_sep InternalWorkbook _book concode_elem_sep UnicodeString _string concode_elem_sep LabelSSTRecord _record concode_elem_sep short NO_FONT concode_field_sep short getFontOfFormattingRun concode_elem_sep short getFontAtIndex concode_elem_sep in...
void function ( String arg0 ) { this . start = arg0 ; }
sets the value of the start property . concode_field_sep String start concode_elem_sep String end concode_elem_sep String endopen concode_elem_sep XMLSpellsContent spells concode_elem_sep float value concode_elem_sep String startopen concode_field_sep float getValue concode_elem_sep String getEndopen concode_elem_sep S...
void function ( java . lang . String arg0 ) { _kaleoCondition . setScriptRequiredContexts ( arg0 ) ; }
sets the script required contexts of this kaleo condition . concode_field_sep KaleoCondition _kaleoCondition concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEsc...