code
stringlengths
20
663
nl
stringlengths
68
7.19k
void function ( String arg0 ) { this . contact = arg0 ; }
sets the value of the contact property . concode_field_sep String address concode_elem_sep String phone concode_elem_sep String contact concode_elem_sep Long id concode_elem_sep String relationship concode_field_sep String getPhone concode_elem_sep void setAddress concode_elem_sep void setId concode_elem_sep String get...
String function ( ) { for ( int loc0 = 0 ; loc0 <= transactionStack . size ( ) ; loc0 ++ ) commit ( ) ; return null ; }
commits all transactional blocks and ends the program i.e return null . concode_field_sep Boolean rollback concode_elem_sep HashMap<String,String> database concode_elem_sep HashMap<Integer,Integer> reverseDatabase concode_elem_sep List<String> transactionBlock concode_elem_sep Stack<List<String>> transactionStack conco...
String function ( ) { return sourcePath ; }
the dot path notation to extract the value from source . concode_field_sep String KEY concode_elem_sep String indexNameClean concode_elem_sep String DOC_VALUES_FORMAT concode_elem_sep String indexName concode_elem_sep String EAGER_VALUE concode_elem_sep String name concode_elem_sep String fullName concode_elem_sep Stri...
void function ( String arg0 ) { tagClass = arg0 ; }
tagclass setter . concode_field_sep String tagClass concode_elem_sep String tagName concode_field_sep String getTagClass concode_elem_sep void setTagName concode_elem_sep String getTagName
String function ( ) { return request . getRequestURL ( ) . toString ( ) ; }
reconstruct the url the client used to make the request . the returned url contains a protocol , server name , port number , and server path , but it does not include query string parameters . concode_field_sep HttpServletRequest request concode_elem_sep String inputStream concode_elem_sep String BINARY_PARAMETER conco...
void function ( String arg0 , String arg1 ) { FacesContext . getCurrentInstance ( ) . addMessage ( arg0 , new FacesMessage ( FacesMessage . SEVERITY_INFO , arg1 , arg1 ) ) ; }
add information message to a specific client . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep ValueBinding getValueBinding concode_elem_sep Object getElValue concode_elem_sep Object getManagedBean concode_elem_sep void ...
void function ( int arg0 ) { if ( arg0 < 1 ) { throw new IllegalArgumentException ( "srini_string" + arg0 ) ; } this . maxRequestsPerHost = arg0 ; promoteCalls ( ) ; }
set the maximum number of requests for each host to execute concurrently . this limits requests by the url 's host name . note that concurrent requests to a single ip address may still exceed this limit : multiple hostnames may share an ip address or be routed through the same http proxy . if more than maxrequestsperho...
long function ( long arg0 , TimeUnit arg1 ) { if ( latch . await ( arg0 , arg1 ) ) { return received - sent ; } else { return - 2 ; } }
returns the round trip time for this ping in nanoseconds , or -1 if the response was cancelled , or -2 if the timeout elapsed before the round trip completed . concode_field_sep long sent concode_elem_sep CountDownLatch latch concode_elem_sep long received concode_field_sep void cancel concode_elem_sep void receive con...
InetAddress function ( ) { return InetAddress . getByName ( ipAddress ) ; }
get inetaddress of the device . concode_field_sep String deviceType concode_elem_sep String configName concode_elem_sep Map<String,String> discoveryMessageMap concode_elem_sep String connectorType concode_elem_sep int connector concode_elem_sep int module concode_elem_sep String ipAddress concode_elem_sep GC100IRContro...
void function ( final Integer arg0 ) { getInternalState ( ) . put ( VOLUME_ID , arg0 ) ; }
sets the volume id that the build is stored on . concode_field_sep String OWNER_ID concode_elem_sep String BUILD_ID concode_elem_sep String VOLUME_NAME concode_elem_sep String RELEASE concode_elem_sep Map<String,Object> internalState concode_elem_sep String STATE concode_elem_sep String CREATION_TS concode_elem_sep Str...
InstanceStatusEvent function ( String arg0 ) { this . description = arg0 ; return this ; }
a description of the event . returns a reference to this object so that method calls can be chained together . concode_field_sep java.util.Date notAfter concode_elem_sep String code concode_elem_sep String description concode_elem_sep java.util.Date notBefore concode_field_sep InstanceStatusEvent withNotBefore concode_...
double function ( ) { return score ; }
returns the chi-square statistical score of the collocation . concode_field_sep double score concode_elem_sep String w1 concode_elem_sep String w2 concode_elem_sep int frequency concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String w1 concode_elem_sep String toString concode_elem_sep St...
String function ( String arg0 , CordovaInterface arg1 ) { String loc0 = null ; Uri loc1 = Uri . parse ( arg0 ) ; if ( arg0 . startsWith ( "srini_string" ) ) { loc0 = arg1 . getActivity ( ) . getContentResolver ( ) . getType ( loc1 ) ; } else { loc0 = getMimeTypeForExtension ( loc1 . getPath ( ) ) ; } return loc0 ; }
returns the mime type of the data specified by the given uri string . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String stripFileProtocol concode_elem_sep String getRealPath concode_elem_sep String getRealPath concode_elem_sep String getMimeTypeForExtension concode_elem_sep InputSt...
String function ( int arg0 ) { return ( String ) sqlLookup . get ( arg0 ) ; }
retrieves the sql statement for a registered compiled statement . concode_field_sep Database database concode_elem_sep IntKeyHashMap schemaMap concode_elem_sep IntKeyHashMap sessionMap concode_elem_sep IntKeyHashMap sqlLookup concode_elem_sep IntKeyHashMap csidMap concode_elem_sep int next_cs_id concode_elem_sep IntKey...
void function ( ) { stepsDone ++ ; int loc0 = ( int ) ( 100 * stepsDone / numberOfSteps ) ; if ( loc0 > 100 ) loc0 = 100 ; while ( loc0 > percent ) { percent ++ ; System . out . print ( '|' ) ; } if ( loc0 == 100 && ! isFinished ) { System . out . println ( "srini_string" ) ; isFinished = Boolean . TRUE ; } }
updates the progress bar concode_field_sep long stepsDone concode_elem_sep long percent concode_elem_sep long numberOfSteps concode_elem_sep boolean isFinished concode_field_sep void reset
boolean function ( Object ... arg0 ) { for ( Object loc0 : arg0 ) { if ( loc0 == null ) return false ; } return true ; }
returns true if and only if all objects are not null concode_field_sep PlaceHolder placeHolder concode_field_sep boolean hasNotNull concode_elem_sep boolean hasNull
boolean function ( Object arg0 ) { if ( arg0 instanceof Privilege ) { Privilege loc0 = ( Privilege ) arg0 ; return getName ( ) . equals ( loc0 . getName ( ) ) ; } else { return false ; } }
compares equality ... concode_field_sep String name concode_field_sep String getName concode_elem_sep int hashCode
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator < T > arg3 ) { return getService ( ) . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; }
performs a dynamic query on the database and returns an ordered range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end...
void function ( java . lang . Boolean arg0 ) { this . apply = arg0 ; }
sets the apply value for this customerpaymentdeposit . concode_field_sep java.util.Calendar depositDate concode_elem_sep java.lang.Double total concode_elem_sep java.lang.Double amount concode_elem_sep java.lang.String refNum concode_elem_sep java.lang.Boolean apply concode_elem_sep java.lang.Long line concode_elem_sep...
long function ( int arg0 , int arg1 , int arg2 ) { long loc0 = arg2 - arg1 ; if ( loc0 < 0 ) { return 0 ; } int loc1 = ( loc0 % arg0 ) == 0 ? 0 : 1 ; return ( loc0 / arg0 ) + loc1 ; }
helper method to calculate the span of the sub-interval . simply returns the cieling of limit - start / segments and accounts for invalid start and limit combinations . concode_field_sep PlaceHolder placeHolder concode_field_sep int rank concode_elem_sep int[] countSegments
Builder function ( File arg0 ) { checkNotNull ( arg0 ) ; checkArgument ( arg0 . isDirectory ( ) ) ; protopathElements . add ( arg0 ) ; return this ; }
adds the protopathelement to the protopath . concode_field_sep CommandLineUtils.StringStreamConsumer output concode_elem_sep Set<File> protopathElements concode_elem_sep ImmutableSet<File> protoPathElements concode_elem_sep File javaOutputDirectory concode_elem_sep Set<File> protoFiles concode_elem_sep CommandLineUtils...
long function ( ) { return _socialActivitySet . getCreateDate ( ) ; }
returns the create date of this social activity set . concode_field_sep SocialActivitySet _socialActivitySet concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setG...
MailOptions function ( Function arg0 ) { this . complete = arg0 ; return this ; }
set the function to call when the message has been sent whether or not is was successful or failed concode_field_sep String attachment concode_elem_sep String password concode_elem_sep MailConfiguration configuration concode_elem_sep Function success concode_elem_sep String[] destinations concode_elem_sep String messag...
void function ( TreeSelectionModel arg0 ) { }
setselectionmodel concode_field_sep NodeDimensions nodeDimensions concode_elem_sep TreeModel treeModel concode_elem_sep TreeSelectionModel treeSelectionModel concode_elem_sep boolean rootVisible concode_elem_sep int rowHeight concode_field_sep void invalidateSizes concode_elem_sep void treeNodesRemoved concode_elem_sep...
void function ( ) { createTracksForSearch ( ) ; ArrayList < Track > loc0 = to . findTracks ( new SearchTracks . ByTitle ( "srini_string" ) . contains ( ) ) ; assertEquals ( 1 , loc0 . size ( ) ) ; assertEquals ( "srini_string" , loc0 . get ( 0 ) . getTitle ( ) ) ; loc0 = to . findTracks ( new SearchTracks . ByTitle ( "...
test search by title contains concode_field_sep TrackOrganizer to concode_field_sep void testSearchByTitleExact concode_elem_sep void testSearchByArtistContains concode_elem_sep void createTracksForSearch concode_elem_sep void setUp concode_elem_sep void testSearchByArtistExact
AssumeRoleResult function ( Integer arg0 ) { setPackedPolicySize ( arg0 ) ; return this ; }
a percentage value that indicates the size of the policy in packed form . the service rejects any policy with a packed size greater than 100 percent , which means the policy exceeded the allowed space . concode_field_sep AssumedRoleUser assumedRoleUser concode_elem_sep Credentials credentials concode_elem_sep Integer p...
void function ( int arg0 , int arg1 , double arg2 ) { constraints . add ( new Constraint ( arg0 , arg1 , arg2 ) ) ; }
this adds a constraint on the weight vector , that a certain component must be set to a sparse index = value concode_field_sep ConcatVector localDerivative concode_elem_sep AbstractDifferentiableFunction<T> fn concode_elem_sep TrainingWorker mainWorker concode_elem_sep Object naturalTerminationBarrier concode_elem_sep ...
void function ( JAXBElement < ? extends AbstractCRSType > arg0 ) { this . abstractCRS = arg0 ; }
sets the value of the abstractcrs property . concode_field_sep JAXBElement<? extends AbstractCRSType> abstractCRS concode_elem_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_se...
PolyJDBC function ( ) { TransactionManager loc0 ; if ( dataSource != null ) { loc0 = new DataSourceTransactionManager ( dataSource ) ; } else { loc0 = new ExternalTransactionManager ( connectionProvider ) ; } return new DefaultPolyJDBC ( dialect , schemaName , new ColumnTypeMapper ( customMappings ) , loc0 ) ; }
return new polyjdbc instance . concode_field_sep ConnectionProvider connectionProvider concode_elem_sep Dialect dialect concode_elem_sep Map<Class<?>,SqlType> customMappings concode_elem_sep String schemaName concode_elem_sep DataSource dataSource concode_field_sep PolyJDBCBuilder usingManagedConnections concode_elem_s...
void function ( String arg0 ) { this . arcrole = arg0 ; }
sets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep ShowType show concode_elem_sep ActuateType actuate concode_elem_sep String href concode_elem_sep TypeType type concode_elem_sep String title concode_field_sep String getHref concode_elem_sep void setH...
String function ( ) { Date loc0 = accessor . getMinTime ( ) ; return format ( loc0 ) ; }
returns the minimum time , formatted according to iso8601 concode_field_sep long resolutionValue concode_elem_sep String coverageId concode_elem_sep String[] DURATION_UNITS concode_elem_sep String resolutionUnit concode_elem_sep Logger LOGGER concode_elem_sep ReaderDimensionsAccessor accessor concode_elem_sep Dimension...
boolean function ( Context arg0 ) { if ( ! AppConstants . NIGHTLY_BUILD ) { return false ; } if ( ! SwitchBoard . isInExperiment ( arg0 , Experiments . ACTIVITY_STREAM ) ) { return false ; } return true ; }
this method returns true if activity stream can be enabled - by the user or an experiment . whether a setting shows up or whether the user is in an experiment group is evaluated separately from this method . however if this methods returns false then activity stream should never be visible/enabled - no matter what buil...
void function ( ResourceAdapter arg0 ) { this . ra = arg0 ; }
set the resource adapter concode_field_sep long serialVersionUID concode_elem_sep String cfProperty concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep ManagedConnection createManagedConnection concode_elem_sep void setCfProperty concode_elem_sep void setLogWriter concode_elem_s...
String function ( ) { return m_separator ; }
returns the export separator . concode_field_sep List<String> m_columns concode_elem_sep String m_separator concode_field_sep void addColumn concode_elem_sep void setColumns concode_elem_sep void setSeparator concode_elem_sep List<String> getColumns
VARIANT function ( SAFEARRAY arg0 , long arg1 ) { long [ ] loc0 = new long [ 1 ] ; loc0 [ 0 ] = arg1 ; VARIANT loc1 = new VARIANT ( ) ; HRESULT loc2 = OleAuto . INSTANCE . SafeArrayGetElement ( arg0 , loc0 , loc1 . getPointer ( ) ) ; COMUtils . SUCCEEDED ( loc2 ) ; return loc1 ; }
safe array get element . concode_field_sep PlaceHolder placeHolder concode_field_sep void SafeArrayPutElement concode_elem_sep SAFEARRAY createVarArray
void function ( final W3CEndpointReference arg0 , final MAP arg1 , final InstanceIdentifier arg2 ) { MAPEndpoint loc0 = getCompletionInitiator ( arg0 ) ; AddressingHelper . installFromFaultTo ( arg1 , loc0 , arg2 ) ; CompletionCoordinatorPortType loc1 = getPort ( arg0 , arg1 , rollbackAction ) ; Notification loc2 = new...
send a rollback request . concode_field_sep String commitAction concode_elem_sep MAPEndpoint completionInitiator concode_elem_sep CompletionCoordinatorClient CLIENT concode_elem_sep MAPEndpoint secureCompletionInitiator concode_elem_sep String rollbackAction concode_field_sep CompletionCoordinatorPortType getPort conco...
void function ( ) { }
illegal order of modifiers for methods . make sure that the first and last modifier from the jls sequence is used . concode_field_sep InnerImplementation inner concode_elem_sep String s3 concode_elem_sep String s4 concode_elem_sep float PI_FINAL concode_elem_sep String s2 concode_elem_sep float PI_OK concode_elem_sep S...
void function ( Configuration arg0 ) { this . configuration = arg0 ; }
set the configuration . concode_field_sep String principal concode_elem_sep String zookeeperQuorum concode_elem_sep Thread loginRenewer concode_elem_sep int zookeeperClientPort concode_elem_sep Logger logger concode_elem_sep Configuration configuration concode_elem_sep String USER_NAME_SPECIFIER concode_elem_sep long r...
JarIndex function ( JarFile arg0 ) { return getJarIndex ( arg0 , null ) ; }
returns the jar index , or null if none . this single parameter version of the method is retained for binary compatibility with earlier releases . concode_field_sep String[] jarFiles concode_elem_sep HashMap<String,LinkedList<String>> jarMap concode_elem_sep String INDEX_NAME concode_elem_sep boolean metaInfFilenames c...
char function ( ) { return aci . setIndex ( begin ) ; }
sets the position to getbeginindex . concode_field_sep AttributedCharacterIterator aci concode_elem_sep int end concode_elem_sep int begin concode_field_sep char next concode_elem_sep Map getAttributes concode_elem_sep int getIndex concode_elem_sep char last concode_elem_sep char previous concode_elem_sep int getRunLim...
FileSystemSize function ( java . util . Date arg0 ) { setTimestamp ( arg0 ) ; return this ; }
the time at which the size of data , returned in the value field , was determined . the value is the integer number of seconds since 1970-01-01t00:00:00z . concode_field_sep Long value concode_elem_sep java.util.Date timestamp concode_field_sep Long getValue concode_elem_sep FileSystemSize withValue concode_elem_sep ja...
InspectionScope function ( ) { return new InspectionScope ( ) ; }
create an instance of org.sonar.plugins.resharperplugin.objects.inspectionscope concode_field_sep QName _Element_QNAME concode_elem_sep QName _Solution_QNAME concode_field_sep Report createReport concode_elem_sep IssueTypes createIssueTypes concode_elem_sep Issue createIssue concode_elem_sep Information createInformati...
void function ( int arg0 , int arg1 ) { bits [ arg0 >> 5 ] = arg1 ; }
sets a block of 32 bits , starting at bit i. 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 void reverse concode_elem_sep boolean isRange concode_elem_sep int getSize concode_elem_sep void appendBit concode_ele...
int function ( ) { if ( qos == null ) { return 0 ; } else { return qos ; } }
gets the value of the qos property . concode_field_sep Integer qos concode_elem_sep String topic concode_elem_sep String scriptFile concode_field_sep Object copyTo concode_elem_sep Object copyTo concode_elem_sep void setQos concode_elem_sep String getScriptFile concode_elem_sep Object createCopy concode_elem_sep void h...
Unit function ( Unit arg0 ) { Chain < Unit > loc0 = mBody . getUnits ( ) ; if ( arg0 != mTail ) return loc0 . getSuccOf ( arg0 ) ; else return null ; }
returns the unit occuring immediatly after some other unit in the block . concode_field_sep Body mBody concode_elem_sep int mBlockLength concode_elem_sep int mIndexInMethod concode_elem_sep List<Block> mPreds concode_elem_sep Unit mTail concode_elem_sep List<Block> mSuccessors concode_elem_sep Unit mHead concode_field_...
void function ( DateTimeFormatter arg0 ) { this . formatters . put ( Type . DATE , arg0 ) ; }
set the formatter that will be used for objects representing date values . this formatter will be used for the localdate type.when specified , the #setdatestyle datestyle and #setuseisoformat useisoformat properties will be ignored . concode_field_sep Map<Type,DateTimeFormatter> formatters concode_elem_sep Map<Type,Dat...
String function ( Context arg0 ) { File loc0 = arg0 . getExternalFilesDir ( null ) ; return loc0 . getAbsolutePath ( ) ; }
main path used to store private data files related to the program concode_field_sep PlaceHolder placeHolder concode_field_sep String getWaypointsPath concode_elem_sep String getCrashLogPath concode_elem_sep String getParametersPath concode_elem_sep String getLogCatPath concode_elem_sep String getMapsPath concode_elem_s...
Short function ( ) { return second ; }
get second concode_field_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep Logger log concode_elem_sep Byte first concode_elem_sep ResourceAdapter ra concode_elem_sep Short second concode_field_sep void setSecond concode_elem_sep ManagedConnection createManagedConnection concode_elem_sep...
String function ( ) { return stringData . toString ( ) ; }
gets a hexadecimal string representation of this object 's data , which is in fact , the raw data contained in this object concode_field_sep Reference reference concode_elem_sep Logger logger concode_elem_sep StringBuilder stringData concode_field_sep StringBuilder hexToString concode_elem_sep StringBuilder normalizeHe...
void function ( byte [ ] arg0 , int arg1 , int arg2 ) { }
does nothing . concode_field_sep int userBufLen concode_elem_sep int userBufOff concode_elem_sep Log LOG concode_elem_sep byte[] userBuf concode_elem_sep int directBufferSize concode_elem_sep boolean finished concode_elem_sep int compressedDirectBufLen concode_elem_sep Class clazz concode_elem_sep Buffer uncompressedDi...
Integer function ( ) { return this . sockets ; }
the number of sockets on the dedicated host . concode_field_sep Integer totalVCpus concode_elem_sep Integer cores concode_elem_sep String instanceType concode_elem_sep Integer sockets concode_field_sep void setCores concode_elem_sep void setSockets concode_elem_sep HostProperties withSockets concode_elem_sep HostProper...
Long function ( ) { return sizeGb ; }
returns the size of the persistent disk , in gb . concode_field_sep Long sizeGb concode_elem_sep DiskTypeId diskType concode_elem_sep Type type concode_elem_sep long serialVersionUID concode_field_sep Builder toBuilder concode_elem_sep int baseHashCode concode_elem_sep boolean baseEquals concode_elem_sep B setDiskType ...
void function ( ) { log . info ( "srini_string" ) ; parseReady ( ) ; parseDto ( ) ; parseController ( ) ; createHtml ( ) ; FileUtil . copyCss2Dir ( ) ; log . info ( "srini_string" ) ; }
parse files concode_field_sep Logger log concode_field_sep void createHtml concode_elem_sep void parseDto concode_elem_sep void createDocs concode_elem_sep void parseController concode_elem_sep void main concode_elem_sep void parseReady
Profile function ( ) { return provider . getUserProfile ( ) ; }
retrieves the user profile from the provider . concode_field_sep SocialAuthManager manager concode_elem_sep AuthProvider provider concode_elem_sep LogProvider log concode_elem_sep String viewUrl concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep SocialAuthConfig config concode_elem_sep S...
int function ( Node arg0 , int arg1 ) { Edge loc0 ; arg1 ++ ; for ( int loc1 = 0 ; ( loc0 = arg0 . getChild ( loc1 ) ) != null ; loc1 ++ ) { arg1 = getTotalCount ( loc0 . getTarget ( ) , arg1 ) ; } return arg1 ; }
recursively finds the total number of nodes there are . concode_field_sep String m_label concode_elem_sep boolean m_visible concode_elem_sep boolean m_root concode_elem_sep Instances m_theData concode_elem_sep double m_center concode_elem_sep Vector m_children concode_elem_sep int m_shape concode_elem_sep Vector m_pare...
String function ( ) { return id ; }
get the html id of the element t concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay concode_...
boolean function ( Method arg0 ) { return Object . class . equals ( arg0 . getDeclaringClass ( ) ) ; }
checks whether a method is a core method from java.lang.object . such methods often receive special treatment because they are deemed fundamental enough to not be tampered with . concode_field_sep Object delegate concode_elem_sep long serialVersionUID concode_elem_sep ConcurrentHashMap handleCache concode_field_sep boo...
Filter function ( final Language arg0 , final String arg1 ) { assert arg0 != null : "srini_string" ; assert arg1 != null : "srini_string" ; Filter loc0 = parseFilter ( arg0 , arg1 , null ) ; return loc0 ; }
makes the filter for the predicate concode_field_sep PlaceHolder placeHolder concode_field_sep Expression parseExpression concode_elem_sep Expression parseExpression concode_elem_sep Expression parseExpression concode_elem_sep List<Filter> parseFilterList concode_elem_sep List<Filter> parseFilterList concode_elem_sep L...
boolean function ( PointF arg0 , long arg1 ) { return true ; }
do n't change velocity concode_field_sep Handler handler concode_elem_sep VncCanvasActivity activity concode_elem_sep String TAG concode_elem_sep PointF velocity concode_elem_sep long lastSent concode_elem_sep DefaultUpdater instance concode_elem_sep VelocityUpdater updater concode_field_sep void stop concode_elem_sep ...
String function ( ) { return statementName ; }
getter for the name of the statement concode_field_sep String jdbcTypeName concode_elem_sep String statementName concode_elem_sep TypeHandler typeHandler concode_elem_sep String errorString concode_elem_sep int jdbcType concode_elem_sep String propertyName concode_elem_sep String nestedResultMapName concode_elem_sep in...
void function ( File arg0 ) { if ( arg0 . isFile ( ) ) { Out . error ( "srini_string" = "srini_string" ) ; throw new GeneratorException ( ) ; } if ( ! arg0 . isDirectory ( ) && ! arg0 . mkdirs ( ) ) { Out . error ( "srini_string" = "srini_string" ) ; throw new GeneratorException ( ) ; } directory = arg0 ; }
set output directory concode_field_sep boolean jlex concode_elem_sep boolean dot concode_elem_sep boolean DEBUG concode_elem_sep File directory concode_elem_sep boolean verbose concode_elem_sep boolean char_at concode_elem_sep boolean sliceAndCharAt concode_elem_sep int gen_method concode_elem_sep int SWITCH concode_el...
Reader function ( long arg0 , long arg1 ) { return new ClobInputStream ( this , arg0 - 1 , arg1 , session . getStreamBlockSize ( ) ) ; }
returns a reader object that contains a partial clob value , starting with the character specified by pos , which is length characters in length . concode_field_sep ClobDataID clob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep Writer setCharacterStream concode_elem_sep in...
void function ( boolean arg0 ) { this . expanded = arg0 ; }
set the value of the expanded property . concode_field_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_sep long serialVersionUID concode_elem_sep boolean leaf concode_elem_sep String leafIcon concode_elem_sep String ...
String function ( String arg0 ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; for ( int loc1 = 0 , loc2 = 4 - arg0 . length ( ) ; loc1 < loc2 ; loc1 ++ ) { loc0 . append ( "srini_string" ) ; } loc0 . append ( arg0 . toLowerCase ( ) ) ; return loc0 . toString ( ) ; }
converts a hex string to formatted unicode string . concode_field_sep int HEX_CHAR concode_elem_sep Logger logger concode_elem_sep String name concode_field_sep String convertHexChars concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals concode_el...
RSAPrivateCrtKeySpec function ( ) { return keySpec ; }
get the key spec that jce understands . concode_field_sep RSAPrivateCrtKeySpec keySpec concode_field_sep void decode
void function ( long arg0 ) { _resourceAction . setPrimaryKey ( arg0 ) ; }
sets the primary key of this resource action . concode_field_sep ResourceAction _resourceAction concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes ...
boolean function ( ) { return ( history . getLastCommand ( ) != null ) ; }
returns true , if the last executed command can be undone . concode_field_sep CommandHistory history concode_elem_sep Document document concode_elem_sep List<CommandListener> listeners concode_field_sep void undoMultipleSteps concode_elem_sep void undo concode_elem_sep void removeCommandListener concode_elem_sep Docume...
int function ( ) { }
determine the number of elements in this sequence . concode_field_sep double[] data concode_elem_sep int manyItems concode_elem_sep int currentIndex concode_field_sep DoubleArraySeq catenation concode_elem_sep void trimToSize concode_elem_sep void start concode_elem_sep void advance concode_elem_sep void addBefore conc...
void function ( int arg0 ) { boolean loc0 = false ; String loc1 = String . valueOf ( arg0 ) ; synchronized ( busyPorts ) { loc0 = busyPorts . contains ( loc1 ) ; if ( loc0 ) busyPorts . remove ( loc1 ) ; } }
need to invoke the method to remove the assigned port if server socket is closed or the found port is no longer needed . because all assigned ports are kept in a set . another case is when invoker calls the method #isportfree int , port will be kept in the set , so if port is no longer to use , remember to invoke this ...
boolean function ( ) { return this . synchedLocalTransactionAllowed ; }
return whether to allow for a local jms transaction that is synchronized with a spring-managed transaction . concode_field_sep boolean synchedLocalTransactionAllowed concode_elem_sep ConnectionFactory targetConnectionFactory concode_elem_sep Session target concode_field_sep ConnectionFactory obtainTargetConnectionFacto...
void function ( int arg0 ) { WidgetInfo loc0 = widgetInfos . get ( arg0 ) ; loc0 . view = createWidgetView ( loc0 . layoutId ) ; loc0 . lastRemoteViews . reapply ( context , loc0 . view ) ; }
triggers a reapplication of the most recent set of actions against the widget , which is what happens when the phone is rotated . does not attempt to simulate a change in screen geometry . concode_field_sep int nextWidgetId concode_elem_sep int layoutId concode_elem_sep View view concode_elem_sep Map<Integer,WidgetInfo...
String function ( String arg0 ) { if ( arg0 . length ( ) > 150 ) { arg0 = ( arg0 . substring ( 0 , 150 ) + "srini_string" ) ; } return arg0 ; }
method to trim the user message after it exceeds a maximum length the length cap is 150 characters concode_field_sep String color concode_elem_sep String DEFAULT_NICK concode_elem_sep String buttonImage concode_elem_sep Log log concode_elem_sep boolean minimized concode_elem_sep String autoLoad concode_elem_sep String ...
FilterContext function ( ) { return mContext ; }
returns the environment 's filter-context . concode_field_sep FilterContext mContext concode_field_sep void setGLEnvironment concode_elem_sep void activateGLEnvironment concode_elem_sep void createGLEnvironment concode_elem_sep void deactivateGLEnvironment
void function ( ) { DateTickUnit loc0 = new DateTickUnit ( DateTickUnit . DAY , 7 ) ; DateTickUnit loc1 = ( DateTickUnit ) TestUtilities . serialised ( loc0 ) ; assertEquals ( loc0 , loc1 ) ; }
serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testHashCode concode_elem_sep void testEquals
void function ( boolean arg0 ) { compact = arg0 ; }
sets the multipleheader rappresentation as comma-separated or multiple headers concode_field_sep boolean compact concode_elem_sep Vector values concode_elem_sep String name concode_field_sep void setHeaders concode_elem_sep void addTop concode_elem_sep String getName concode_elem_sep boolean isCommaSeparated concode_el...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _ddmStructureVersionLocalService . arg0 ( arg0 ) ; }
performs a dynamic query on the database and returns the matching rows . concode_field_sep DDMStructureVersionLocalService _ddmStructureVersionLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep int getStructureVersionsCount concode_elem_sep void setWrappedService concode_elem_sep ...
void function ( JSONObject arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . ERROR , arg0 ) ) ; }
helper for error callbacks that just returns the status.error by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String ...
void function ( String arg0 , String arg1 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . e ( arg0 , arg1 ) ; }
error log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void set...
void function ( ) { downHeap ( ) ; }
should be called when the object at top changes values . still log n worst case , but it 's at least twice as fast to pq.top . change ; pq.adjusttop ; instead of o = pq.pop ; o.change ; pq.push o ; concode_field_sep int size concode_elem_sep int maxSize concode_elem_sep T[] heap concode_field_sep T pop concode_elem_sep...
long function ( ) { return _pluginSetting . getPrimaryKey ( ) ; }
returns the primary key of this plugin setting . concode_field_sep PluginSetting _pluginSetting concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEsc...
List < Image > function ( ) { List < Image > loc0 = new ArrayList < > ( ) ; this . cache . values ( ) . stream ( ) . filter ( versions -> versions . size ( ) > 0 ) . forEach ( versions -> loc0 . add ( versions . get ( versions . size ( ) - 1 ) ) ) ; return ( loc0 ) ; }
return last version of each image index concode_field_sep Map<String,List<Image>> cache concode_elem_sep String index concode_elem_sep ImageCache imageCache concode_field_sep void rollBack concode_elem_sep String getIndex concode_elem_sep int size concode_elem_sep Set<String> keys concode_elem_sep Image get concode_ele...
Result < V > function ( @ NonNull final Supplier < U > arg0 , @ NonNull final Merger < ? super T , ? super U , Result < V >> arg1 ) { if ( value != null ) { return arg1 . merge ( value , arg0 . get ( ) ) ; } return sameFailure ( ) ; }
returns the result of a follow-up attempt to merge the output value encapsulated in this result with the value from the given mergevaluesupplier using the attemptmerger , or if this is the result of a #failed attempt , returns the #samefailure . this method is agnostic of the value type of the mergevaluesupplier . if i...
Node function ( String arg0 ) { this . correlationIds . add ( new CorrelationIdentifier ( Scope . CausedBy , arg0 ) ) ; return this ; }
this method adds a 'cause d by ' scoped correlation id . concode_field_sep long duration concode_elem_sep Set<Property> properties concode_elem_sep List<CorrelationIdentifier> correlationIds concode_elem_sep long timestamp concode_elem_sep NodeType type concode_elem_sep String uri concode_elem_sep String operation conc...
CharSequence function ( ) { String loc0 = ( String ) context . getText ( R . string . tpl_new_quake_ticker ) ; loc0 = loc0 . replace ( Prefs . TPL_MAGNITUDE , Float . toString ( quake . magnitude ) ) ; loc0 = loc0 . replace ( Prefs . TPL_REGION , quake . region ) ; return loc0 ; }
mendapatkan teks yang akan ditampilkan pada status bar saat notifikasi pertama kali aktif . concode_field_sep boolean isAlert concode_elem_sep boolean isVibrate concode_elem_sep int quakeCount concode_elem_sep Uri alertSound concode_elem_sep int ALERT_ID concode_elem_sep Context context concode_elem_sep EarthquakeDTO q...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _syncDLFileVersionDiffLocalService . arg0 ( arg0 ) ; }
performs a dynamic query on the database and returns the matching rows . concode_field_sep SyncDLFileVersionDiffLocalService _syncDLFileVersionDiffLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.sync.model.SyncDLFileVersionDiff addSyncDLFileVersionDiff concode_elem_...
void function ( String arg0 ) { this . unit = arg0 ; }
sets the value of the unit property . concode_field_sep String unit concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal value concode_field_sep BigDecimal getValue concode_elem_sep void setValue concode_elem_sep String getUnit
RxClient < RxCompletableFutureInvoker > function ( final ExecutorService arg0 ) { return Rx . newClient ( RxCompletableFutureInvoker . class , arg0 ) ; }
create a new org.glassfish.jersey.client.rx.rxclient reactive client instance parametrized with invoker based onthe jersey.repackaged.jsr166e.completablefuture completable future from jsr-166e pre-java 8 . reactive requests , invoked using org.glassfish.jersey.client.rx.rxinvocationbuilder #rx rx ... method , are execu...
String function ( ) { return scheme ; }
returns the authentication scheme , like basic . concode_field_sep String scheme concode_elem_sep String headerValue concode_elem_sep String realm concode_field_sep Credential authenticate concode_elem_sep int hashCode concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals concode...
void function ( String arg0 ) { this . yaml = arg0 ; }
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 ( ) { if ( file != null ) { file . autoDelete ( ) ; file . closeAndDeleteSilently ( ) ; file = null ; rowBuff = null ; } }
close the result list and delete the temporary file . concode_field_sep Cache cache concode_elem_sep int memory concode_elem_sep int listIndex concode_elem_sep Session session concode_elem_sep ObjectArray<ValueLob> lobs concode_elem_sep ObjectArray<Row> list concode_elem_sep int index concode_elem_sep int maxMemory con...
HubError function ( RestException arg0 , HttpServletResponse arg1 ) { HubError loc0 = new HubError ( ) ; arg1 . setStatus ( arg0 . getHttpStatus ( ) . value ( ) ) ; loc0 . setErrorCode ( String . valueOf ( arg0 . getHubException ( ) . getErrorCode ( ) ) ) ; loc0 . setErrorMessage ( arg0 . getHubException ( ) . getError...
handles incoming org.motechproject.hub.exception.restexception whenit occurs . concode_field_sep String HUB_BASE_URL concode_elem_sep SettingsFacade settingsFacade concode_elem_sep HubValidator hubValidator concode_elem_sep Logger LOGGER concode_elem_sep SubscriptionService subscriptionService concode_elem_sep ContentD...
void function ( final Integer arg0 ) { m_locationMonitor = arg0 ; }
setlocationmonitor concode_field_sep Integer m_locationMonitor concode_elem_sep boolean m_alerted concode_elem_sep Integer m_count concode_elem_sep String m_svcName concode_elem_sep String m_ipAddr concode_elem_sep Long m_nodeid concode_field_sep Integer getLocationMonitor concode_elem_sep String getIpAddr concode_elem...
void function ( GeneratorEntry arg0 ) { }
override this method to do any cleanup needed after generation concode_field_sep String SCT_GENERATOR_CONSOLE concode_elem_sep IGeneratorBridge bridge concode_elem_sep MessageConsoleStream error concode_elem_sep Injector injector concode_elem_sep MessageConsoleStream info concode_field_sep void refreshTargetProject con...
void function ( String arg0 ) { this . id = arg0 ; }
sets the value of the id property . concode_field_sep byte[] digestValue concode_elem_sep DigestMethodType digestMethod concode_elem_sep TransformsType transforms concode_elem_sep String id concode_elem_sep String type concode_elem_sep String uri concode_field_sep TransformsType getTransforms concode_elem_sep void setD...
void function ( ) { moveVertical ( 20 ) ; }
move the triangle a few pixels down . concode_field_sep int xPosition concode_elem_sep String color concode_elem_sep int yPosition concode_elem_sep int width concode_elem_sep boolean isVisible concode_elem_sep int height concode_field_sep void erase concode_elem_sep void changeColor concode_elem_sep void makeVisible co...
boolean function ( ) { return this . highFarOut ; }
a flag to indicate the presence of one or more far out values at the top end of the range . concode_field_sep List outlierLists concode_elem_sep boolean highFarOut concode_elem_sep boolean lowFarOut concode_field_sep boolean add concode_elem_sep boolean isLowFarOut concode_elem_sep Iterator iterator concode_elem_sep bo...
PutActionRevisionResult function ( String arg0 ) { setPipelineExecutionId ( arg0 ) ; return this ; }
the id of the current workflow state of the pipeline . concode_field_sep Boolean newRevision concode_elem_sep String pipelineExecutionId concode_field_sep Boolean isNewRevision concode_elem_sep void setNewRevision concode_elem_sep PutActionRevisionResult withNewRevision concode_elem_sep void setPipelineExecutionId conc...
AdSenseSettingsBorderStyle function ( ) { return borderStyle ; }
gets the value of the borderstyle property . concode_field_sep Boolean adSenseEnabled concode_elem_sep String borderColor concode_elem_sep String backgroundColor concode_elem_sep AdSenseSettingsAdType adType concode_elem_sep AdSenseSettingsFontFamily fontFamily concode_elem_sep String titleColor concode_elem_sep AdSens...
AssociationStatus function ( java . util . Date arg0 ) { setDate ( arg0 ) ; return this ; }
the date when the status changed . concode_field_sep java.util.Date dateValue concode_elem_sep String name concode_elem_sep String additionalInfo concode_elem_sep String message concode_field_sep void setName concode_elem_sep void setName concode_elem_sep String getName concode_elem_sep String getMessage concode_elem_s...
String function ( Object arg0 ) { int loc0 = Array . getLength ( arg0 ) ; int loc1 = loc0 - 1 ; StringBuffer loc2 = new StringBuffer ( 2 * ( loc0 + 1 ) ) ; loc2 . append ( '{' ) ; for ( int loc3 = 0 ; loc3 < loc0 ; loc3 ++ ) { loc2 . append ( Array . get ( arg0 , loc3 ) ) ; if ( loc3 != loc1 ) { loc2 . append ( ',' ) ;...
builds a bracketed csv list from the array concode_field_sep PlaceHolder placeHolder concode_field_sep int rTrimSize concode_elem_sep String[] split concode_elem_sep String getList concode_elem_sep String getList concode_elem_sep String getList concode_elem_sep String toLowerSubset concode_elem_sep boolean isEmpty conc...