idx
int64
0
25k
question
stringlengths
68
5.61k
target
stringlengths
21
500
19,900
finds all the fileinfo 's that are not loaded in a list . concode_field_sep List<FileInfo> tests concode_elem_sep List<FileInfo> plugins concode_elem_sep String id concode_elem_sep Logger logger concode_elem_sep List<FileInfo> dependencies concode_field_sep List<FileInfo> getTests concode_elem_sep List<FileInfo> getDep...
List < FileInfo > function ( List < FileInfo > arg0 ) { List < FileInfo > loc0 = Lists . newArrayList ( ) ; for ( FileInfo loc1 : arg0 ) { if ( ! loc1 . isLoaded ( ) ) { loc0 . add ( loc1 ) ; } } return loc0 ; }
19,901
this method is used for setting the map with configuration values of the rule . key - id of the configdescriptionparameter value - the value of the corresponding property concode_field_sep String uid concode_elem_sep Visibility visibility concode_elem_sep Configuration configuration concode_elem_sep List<ConfigDescript...
void function ( Configuration arg0 ) { this . configuration = arg0 ; }
19,902
specifies the debug logs file name . defaults to @literal tm.out . concode_field_sep String outputDir concode_elem_sep AtomikosLoggingLevel consoleLogLevel concode_elem_sep long maxTimeout concode_elem_sep boolean enableLogging concode_elem_sep String logBaseName concode_elem_sep boolean threadedTwoPhaseCommit concode_...
void function ( String arg0 ) { this . consoleFileName = arg0 ; set ( "srini_string" , arg0 ) ; }
19,903
returns the list of the contained elements id 's . concode_field_sep int m_maxElements concode_elem_sep List<CmsContainerElement> m_elements concode_elem_sep String m_name concode_elem_sep int m_width concode_elem_sep String KEY_CONTAINER_DATA concode_elem_sep String m_type concode_field_sep void setName concode_elem_s...
List < CmsContainerElement > function ( ) { return m_elements ; }
19,904
used by the whitebox gui to tell if this plugin is still running . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive concode_field_sep String ...
boolean function ( ) { return amIActive ; }
19,905
removes the session from management and disconnects . concode_field_sep int sessionIdCount concode_elem_sep IntKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep Session newSession concode_elem_sep Session getSysSession concode_elem_sep Session getSysSession concode_elem_sep boolean isEmpty con...
void function ( Session arg0 ) { sessionMap . remove ( arg0 . getId ( ) ) ; }
19,906
adds a listener to its requested list of packet receivers . concode_field_sep ConcurrentMap<PacketType,SortedCopyOnWriteArray<PrioritizedListener<TListener>>> mapListeners concode_field_sep Iterable<PrioritizedListener<TListener>> values concode_elem_sep List<PacketType> removeListener concode_elem_sep Collection<Prior...
void function ( TListener arg0 , ListeningWhitelist arg1 ) { PrioritizedListener < TListener > loc0 = new PrioritizedListener < TListener > ( arg0 , arg1 . getPriority ( ) ) ; for ( PacketType loc1 : arg1 . getTypes ( ) ) { addListener ( loc1 , loc0 ) ; } }
19,907
registers a compiled statement to be managed . the only caller should be a session that is attempting to prepare a statement for the first time or process a statement that has been invalidated due to ddl changes . concode_field_sep Database database concode_elem_sep IntValueHashMap sqlMap concode_elem_sep IntKeyHashMap...
int function ( int arg0 , CompiledStatement arg1 ) { if ( arg0 < 0 ) { arg0 = nextID ( ) ; sqlMap . put ( arg1 . sql , arg0 ) ; sqlLookup . put ( arg0 , arg1 . sql ) ; } csidMap . put ( arg0 , arg1 ) ; return arg0 ; }
19,908
add all members of other streamequivalenceclass to this one . concode_field_sep boolean isClosed concode_elem_sep HashSet<Stream> memberSet concode_field_sep void addMember concode_elem_sep Iterator<Stream> memberIterator concode_elem_sep void setClosed
void function ( StreamEquivalenceClass arg0 ) { memberSet . addAll ( arg0 . memberSet ) ; }
19,909
reads all contents of the input stream . concode_field_sep String GOOGLE_PUBLIC_KEY concode_field_sep String bytesToHex concode_elem_sep String encryptString concode_elem_sep byte[] hexToBytes concode_elem_sep Scheme getMockedScheme concode_elem_sep DeviceConfigurationProto getDeviceConfigurationProto concode_elem_sep ...
byte [ ] function ( InputStream arg0 ) { ByteArrayOutputStream loc0 = new ByteArrayOutputStream ( ) ; byte [ ] loc1 = new byte [ 1024 ] ; int loc2 = 0 ; for ( ; ( loc2 = arg0 . read ( loc1 ) ) != - 1 ; ) { loc0 . write ( loc1 , 0 , loc2 ) ; } return loc0 . toByteArray ( ) ; }
19,910
creates a new specific fsdirectory instance concode_field_sep PlaceHolder placeHolder concode_field_sep Class<? extends FSDirectory> loadFSDirectoryClass concode_elem_sep Class<? extends Directory> loadDirectoryClass concode_elem_sep String adjustDirectoryClassName
FSDirectory function ( Class < ? extends FSDirectory > arg0 , Path arg1 , LockFactory arg2 ) { Constructor < ? extends FSDirectory > loc0 = arg0 . getConstructor ( Path . class , LockFactory . class ) ; return loc0 . newInstance ( arg1 , arg2 ) ; }
19,911
find the implementation of the given builtin functor . concode_field_sep Map<String,Builtin> builtinsByURI concode_elem_sep BuiltinRegistry theRegistry concode_elem_sep Map<String,Builtin> builtins concode_field_sep Builtin getImplementationByURI concode_elem_sep void register concode_elem_sep void register
Builtin function ( String arg0 ) { return builtins . get ( arg0 ) ; }
19,912
gets the value of the unlimiteddata property . concode_field_sep Boolean unlimitedData concode_elem_sep long serialVersionUID concode_elem_sep DataBalanceType dataBalance concode_field_sep DataBalanceType getDataBalance concode_elem_sep void setDataBalance concode_elem_sep void setUnlimitedData
Boolean function ( ) { return unlimitedData ; }
19,913
this method allows way too tight a coupling , but you may need it if you want to link this up to a readlinetextarea ; - concode_field_sep Object returnValue concode_elem_sep AtlasShellInterruptCallback interruptCallback concode_elem_sep PrintStream errorStream concode_elem_sep Set<File> rubyGemDirectories concode_elem_...
Ruby function ( ) { return scriptingContainer . getProvider ( ) . getRuntime ( ) ; }
19,914
creates a function that returns the same boolean output as the given predicate for all inputs . the returned function is consistent with equals as documented at function #apply if and only if predicate is itself consistent with equals . concode_field_sep long serialVersionUID concode_elem_sep Predicate<T> predicate con...
Function < T , Boolean > function ( Predicate < T > arg0 ) { return new PredicateFunction < T > ( arg0 ) ; }
19,915
get the number of bytes necessary to represent the passed char array as an utf-8 string . concode_field_sep SortedMap<String,Charset> s_aAllCharsets concode_elem_sep CharsetManager s_aInstance concode_field_sep byte[] getAsBytes concode_elem_sep SortedMap<String,Charset> getAllCharsets concode_elem_sep Charset getChars...
int function ( @ Nullable final char [ ] arg0 ) { int loc0 = 0 ; if ( arg0 != null ) for ( final char loc1 : arg0 ) loc0 += getUTF8ByteCount ( loc1 ) ; return loc0 ; }
19,916
invoke a native javascript function that returns a long value . concode_field_sep ShellJavaScriptHost sHost concode_field_sep int invokeNativeInt concode_elem_sep short invokeNativeShort concode_elem_sep void setHost concode_elem_sep Object invokeNativeObject concode_elem_sep char invokeNativeChar concode_elem_sep doub...
long function ( String arg0 , Object arg1 , Class < ? > [ ] arg2 , Object [ ] arg3 ) { return sHost . invokeNativeLong ( arg0 , arg1 , arg2 , arg3 ) ; }
19,917
gets #methodidents . concode_field_sep Timestamp timeStamp concode_elem_sep Set<SensorTypeIdent> sensorTypeIdents concode_elem_sep String version concode_elem_sep long serialVersionUID concode_elem_sep List<String> definedIPs concode_elem_sep String agentName concode_elem_sep Long id concode_elem_sep Set<MethodIdent> m...
Set < MethodIdent > function ( ) { return methodIdents ; }
19,918
set both the network and networkid at the same time . concode_field_sep String signature concode_elem_sep String DEPTH_PROPERTY concode_elem_sep String EVENTTIME_PROPERTY concode_elem_sep String LONGITUDE_PROPERTY concode_elem_sep String VERSION_PROPERTY concode_elem_sep Logger LOGGER concode_elem_sep String MAGNITUDE_...
void function ( final String arg0 , final String arg1 ) { setEventSource ( arg0 ) ; setEventSourceCode ( arg1 ) ; }
19,919
gets the reviewissue instance . concode_field_sep int DELETE concode_elem_sep String STATUS concode_elem_sep int ADD concode_elem_sep String TYPE concode_elem_sep int eventType concode_elem_sep Map<String,String[]> categoryToItems concode_elem_sep int MERGE concode_elem_sep int CLEAR concode_elem_sep ReviewIssue review...
ReviewIssue function ( ) { return this . reviewIssue ; }
19,920
updates the password tracker in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep PasswordTrackerLocalService _passwordTrackerLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void trackPassword concode_elem_sep v...
com . liferay . portal . model . PasswordTracker function ( com . liferay . portal . model . PasswordTracker arg0 ) { return _passwordTrackerLocalService . updatePasswordTracker ( arg0 ) ; }
19,921
returns the first executable line in the script concode_field_sep Long scriptId concode_elem_sep LineData[] NO_LINES concode_elem_sep URI uri concode_elem_sep boolean generated concode_elem_sep LineData[] lines concode_elem_sep HashMap scriptToFunction concode_elem_sep ArrayList functionNames concode_elem_sep String so...
Integer function ( ) { return this . firstLine ; }
19,922
check whether an element with the given qualified name defines a startup . concode_field_sep Map<QName,Class<? extends StartupSerializer>> serializerMap concode_elem_sep StartupFinder instance concode_elem_sep Class<?>[] builtins concode_elem_sep Map<QName,Class<? extends StartupFactory>> factoryMap concode_elem_sep Lo...
boolean function ( QName arg0 ) { return factoryMap . containsKey ( arg0 ) ; }
19,923
returns the largest x coordinate of the framing rectangle of this legend item . concode_field_sep LegendItem item concode_elem_sep Point2D labelPosition concode_elem_sep Shape marker concode_elem_sep Line2D line concode_elem_sep double x concode_elem_sep double width concode_elem_sep double y concode_elem_sep double he...
double function ( ) { return getX ( ) + getWidth ( ) ; }
19,924
retrieve an object . concode_field_sep CacheImpl forcedCacheImpl concode_elem_sep CacheImpl cacheImpl concode_field_sep void add concode_elem_sep void add concode_elem_sep void init concode_elem_sep void set concode_elem_sep void set concode_elem_sep long incr concode_elem_sep long incr concode_elem_sep boolean safeRep...
Object function ( String arg0 ) { return cacheImpl . get ( arg0 ) ; }
19,925
create an instance of shoppingcarttype concode_field_sep QName _EsiSaveCartDetailsRequest_QNAME concode_elem_sep QName _EsiSaveCartDetailsResponse_QNAME concode_field_sep AccountDetailType createAccountDetailType concode_elem_sep ArrayOfWarrantySocType createArrayOfWarrantySocType concode_elem_sep ReplacementProductDet...
ShoppingCartType function ( ) { return new ShoppingCartType ( ) ; }
19,926
return a uri based on ru with any _ page or _ pagesize query settings removed . concode_field_sep Logger log concode_field_sep Resource adjustPageParameter concode_elem_sep URI resolveAgainstBase concode_elem_sep String replaceSuffix concode_elem_sep URI newURI concode_elem_sep String appendSuffix concode_elem_sep URI ...
URI function ( URI arg0 ) { URI loc0 = replaceQueryParam ( arg0 , QueryParameter . _PAGE ) ; return replaceQueryParam ( loc0 , QueryParameter . _PAGE_SIZE ) ; }
19,927
returns the length of this path . concode_field_sep int TYPE_ARGUMENT concode_elem_sep byte[] b concode_elem_sep int offset concode_elem_sep int WILDCARD_BOUND concode_elem_sep int INNER_TYPE concode_elem_sep int ARRAY_ELEMENT concode_field_sep int getStep concode_elem_sep String toString concode_elem_sep int getStepAr...
int function ( ) { return b [ offset ] ; }
19,928
set attributes as string for easier db handling concode_field_sep String KEY_LASTNAME concode_elem_sep String KEY_USERID concode_elem_sep String KEY_EMAIL concode_elem_sep String KEY_USERUUID concode_elem_sep String screenname concode_elem_sep String KEY_ROLES concode_elem_sep JSONObject attributes concode_elem_sep lon...
void function ( String arg0 ) { setAttributes ( JSONHelper . createJSONObject ( arg0 ) ) ; }
19,929
performs the depth first traversion of all elements concode_field_sep int linkCount concode_elem_sep Map myVisitedElements concode_elem_sep Iterator myElements concode_elem_sep boolean done concode_field_sep boolean isVisited concode_elem_sep void beginVisit concode_elem_sep Iterator getElementLinks concode_elem_sep vo...
void function ( ) { if ( done ) return ; while ( myElements . hasNext ( ) ) { Object loc0 = myElements . next ( ) ; if ( ! isVisited ( loc0 ) ) { visit ( loc0 , 1 ) ; } } }
19,930
get the jaxbcontext to be used for marshalling and unmarshalling concode_field_sep ModsCollection modsCollection concode_elem_sep LibCommMessage libCommMessage concode_elem_sep IProcessor processor concode_elem_sep Logger log concode_field_sep void setProcessor concode_elem_sep IProcessor getProcessor concode_elem_sep ...
JAXBContext function ( ) { return JAXBContext . newInstance ( LibCommMessage . class , ModsCollection . class , CollectionType . class ) ; }
19,931
returns a set of subjectmatter ids related to the given owner . concode_field_sep SubjectMattersDao dao concode_elem_sep JSONizerService jsonizer concode_elem_sep Logger logger concode_field_sep List<SubjectMatter> getSubjectMattersWithLanguage concode_elem_sep SubjectMatter getSubjectMatterToBeDeleted concode_elem_sep...
Set < Integer > function ( Owner arg0 ) { List < Integer > loc0 = this . dao . getIds ( arg0 ) ; return new HashSet < Integer > ( loc0 ) ; }
19,932
sets the wsdataclusterpk value for this wsitempk . concode_field_sep java.lang.String conceptName concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String[] ids concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep org.talend.mdm....
void function ( org . talend . mdm . webservice . WSDataClusterPK arg0 ) { this . wsDataClusterPK = arg0 ; }
19,933
adds entity in database concode_field_sep Session session concode_elem_sep HibernateUtilLibrary util concode_elem_sep Logger log concode_field_sep List<T> getAll concode_elem_sep T getById concode_elem_sep Class getPersistentClass concode_elem_sep void update concode_elem_sep Long getTotal concode_elem_sep void delete ...
void function ( T arg0 ) { try { log . info ( "srini_string" + arg0 ) ; session = util . getSession ( ) ; session . save ( arg0 ) ; } catch ( HibernateException | IllegalArgumentException loc0 ) { String loc1 = "srini_string" + arg0 + "srini_string" ; log . error ( loc1 + loc0 ) ; throw new DaoException ( loc1 ) ; } }
19,934
used by renderer concode_field_sep HashMap<String,Integer> _idToTextureName concode_elem_sep HashMap<String,Boolean> _idToHasMipMap concode_elem_sep int _counter concode_elem_sep int _atlasId concode_field_sep String arrayToString concode_elem_sep String addTextureId concode_elem_sep String addTextureId concode_elem_se...
int function ( String arg0 ) { return _idToTextureName . get ( arg0 ) ; }
19,935
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 ( int arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . ERROR , arg0 ) ) ; }
19,936
adds an error to the result . a successful value for this key must not already be present . concode_field_sep Map<SkyKey,ErrorInfo> errorMap concode_elem_sep Map<SkyKey,T> resultMap concode_elem_sep Exception catastrophe concode_elem_sep WalkableGraph walkableGraph concode_elem_sep Exception catastrophe concode_elem_se...
Builder < T > function ( SkyKey arg0 , ErrorInfo arg1 ) { errors . put ( arg0 , Preconditions . checkNotNull ( arg1 , arg0 ) ) ; Preconditions . checkState ( ! result . containsKey ( arg0 ) , "srini_string" , arg1 , result ) ; return this ; }
19,937
encode to a morton long value from a given geohash string concode_field_sep int PRECISION concode_elem_sep short MORTON_OFFSET concode_elem_sep String BASE_32_STRING concode_elem_sep char[] BASE_32 concode_field_sep long longEncode concode_elem_sep long longEncode concode_elem_sep String stringEncode concode_elem_sep S...
long function ( final String arg0 ) { int loc0 = 11 ; long loc1 ; long loc2 = 0L ; for ( char loc3 : arg0 . toCharArray ( ) ) { loc1 = ( long ) ( BASE_32_STRING . indexOf ( loc3 ) ) ; loc2 |= ( loc1 << ( ( loc0 -- * 5 ) + MORTON_OFFSET ) ) ; } return BitUtil . flipFlop ( loc2 ) ; }
19,938
return a message suitable for printing , not just for errors . concode_field_sep File dasPropertiesFile concode_elem_sep File parentDir concode_elem_sep File grandParentDir concode_elem_sep File localPasswordFile concode_elem_sep File configDir concode_elem_sep String serverName concode_elem_sep File pidFile concode_el...
String function ( ) { if ( ! valid ) return "srini_string" ; if ( ! pidFile . isFile ( ) ) return null ; String loc0 = "srini_string" + pidFile + "srini_string" ; if ( ! pidFile . delete ( ) ) { return loc0 + "srini_string" ; } return loc0 ; }
19,939
create a new throttle of the given size . concode_field_sep PlaceHolder placeHolder concode_field_sep Promise<T> throttle concode_elem_sep int getWaiting concode_elem_sep int getSize concode_elem_sep Throttle unlimited concode_elem_sep int getActive
Throttle function ( int arg0 ) { return new DefaultThrottle ( arg0 ) ; }
19,940
sets the value of the actuate property . concode_field_sep String displayLabel concode_elem_sep String role concode_elem_sep String xmlLang concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep String type concode_elem_sep String title concode_elem_sep String scri...
void function ( String arg0 ) { this . actuate = arg0 ; }
19,941
sends an exception back to the user and also logs this exception with info level concode_field_sep int TYPE_CONTACTS concode_elem_sep int TYPE_INTERNAL concode_elem_sep boolean mIsActivated concode_elem_sep int TYPE_MEDIA concode_elem_sep int TYPE_MESSAGE concode_elem_sep Context sContext concode_elem_sep int mCmdType ...
void function ( Exception arg0 ) { send ( "srini_string" + arg0 . toString ( ) , mAnswerTo ) ; Log . i ( "srini_string" , arg0 ) ; }
19,942
gets the value of the code property . concode_field_sep String code concode_field_sep void setCode
String function ( ) { return code ; }
19,943
checks that the class does not implement publiccloneable the generator is immutable . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGenerateURL concode_elem_sep void testSerialization concode_elem_sep void testEquals
void function ( ) { TimeSeriesURLGenerator loc0 = new TimeSeriesURLGenerator ( ) ; assertFalse ( loc0 instanceof PublicCloneable ) ; }
19,944
returns true if this connection is alive . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode_elem_sep byte[] SPDY3...
boolean function ( ) { return ! socket . isClosed ( ) && ! socket . isInputShutdown ( ) && ! socket . isOutputShutdown ( ) ; }
19,945
gets size of pessimistic transactions log stored on node in order to recover transaction commit if originating node has left grid before it has sent all messages to transaction nodes . if not set , default value is 0 which means unlimited log size . concode_field_sep TransactionConcurrency DFLT_TX_CONCURRENCY concode_e...
int function ( ) { return pessimisticTxLogSize ; }
19,946
tries to find the child resource ids associated with the parent . if this module can not handle the given identifier , then an empty result is returned , otherwise the result will always contain at least the parent resource id , either as a successfully resolved resource id or an error case , but never both . concode_f...
ResourceFinderResult function ( AttributeValue arg0 , EvaluationCtx arg1 ) { return new ResourceFinderResult ( ) ; }
19,947
toggle the visibility of the system ui . concode_field_sep OnVisibilityChangeListener mOnVisibilityChangeListener concode_elem_sep int FLAG_LAYOUT_IN_SCREEN_OLDER_DEVICES concode_elem_sep View mAnchorView concode_elem_sep Activity mActivity concode_elem_sep int FLAG_FULLSCREEN concode_elem_sep int mFlags concode_elem_s...
void function ( ) { if ( isVisible ( ) ) { hide ( ) ; } else { show ( ) ; } }
19,948
gets the value of the stadiumnamesresult property . concode_field_sep ArrayOfString stadiumNamesResult concode_field_sep void setStadiumNamesResult
ArrayOfString function ( ) { return stadiumNamesResult ; }
19,949
get a response for the given processor if there is one concode_field_sep Request request concode_elem_sep int queueSize concode_elem_sep Logger logger concode_elem_sep ArrayList<BlockingQueue<Response>> responseQueues concode_elem_sep long startTimeInMs concode_elem_sep long startQueueTimeInMs concode_elem_sep ArrayBlo...
Response function ( int arg0 ) { return responseQueues . get ( arg0 ) . poll ( ) ; }
19,950
make local-dirs fail/inaccessible and verify if nodemanager can recognize the disk failures properly and can update the list of local-dirs accordingly with good disks . also verify the overall health status of the node . concode_field_sep int numLogDirs concode_elem_sep long DISK_HEALTH_CHECK_INTERVAL concode_elem_sep ...
void function ( ) { testDirsFailures ( true ) ; }
19,951
called when the activity will start interacting with the user . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onReceivedClientCertRequest concode_elem_sep boolean onOverrideUrlLoadin...
void function ( boolean arg0 ) { }
19,952
get the index of the layer having the specified name , or -1 if no such layer exists . concode_field_sep Array<MapLayer> layers concode_field_sep void add concode_elem_sep Iterator<MapLayer> iterator concode_elem_sep Array<T> getByType concode_elem_sep Array<T> getByType concode_elem_sep MapLayer get concode_elem_sep M...
int function ( String arg0 ) { return getIndex ( get ( arg0 ) ) ; }
19,953
return the conjuction of two criterions . concode_field_sep PlaceHolder placeHolder concode_field_sep AuditProperty<Object> revisionProperty concode_elem_sep AuditProperty<Object> revisionProperty concode_elem_sep AuditProperty<RevisionType> revisionType concode_elem_sep AuditProperty<RevisionType> revisionType concode...
AuditCriterion function ( AuditCriterion arg0 , AuditCriterion arg1 ) { return new LogicalAuditExpression ( arg0 , arg1 , "srini_string" ) ; }
19,954
method to tell the chat state to update everyone in the chat this method is normally called when a message is added to the log 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 autoL...
void function ( ) { chatState . updateAll ( ) ; SessionRenderer . render ( "srini_string" ) ; }
19,955
return the file extension without dot . concode_field_sep String TAG concode_field_sep String fileNameWithoutExtension concode_elem_sep void save concode_elem_sep void save concode_elem_sep void filePutContents concode_elem_sep String getContents concode_elem_sep String getContents concode_elem_sep String getContents c...
String function ( File arg0 ) { String loc0 = null ; String loc1 = arg0 . getName ( ) ; int loc2 = loc1 . lastIndexOf ( "srini_string" ) ; if ( loc2 > 0 ) { loc0 = loc1 . substring ( loc2 + 1 , loc1 . length ( ) ) ; } return loc0 ; }
19,956
used to communicate a return object from a plugin tool to the main whitebox user-interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive...
void function ( Object arg0 ) { if ( myHost != null ) { myHost . returnData ( arg0 ) ; } }
19,957
finds all elements within the current context using the given mechanism . see webelement #findelements org.openqa.selenium.by for more details . concode_field_sep WebElement wrappedElement concode_elem_sep String name concode_field_sep void setName concode_elem_sep Point getLocation concode_elem_sep String getName conc...
List < WebElement > function ( By arg0 ) { return wrappedElement . findElements ( arg0 ) ; }
19,958
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep Integer name concode_elem_sep Integer snakeCase concode_field_sep void setName concode_elem_sep Integer getName concode_elem_sep Integer getSnakeCase concode_elem_sep int hashCode concode_elem_sep boolean eq...
String function ( Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
19,959
rename the file with oldname to newname . if a file with oldname does not exist , nothing occurs . if a file with newname already exists , it is deleted it before the renaming operation proceeds . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep Method deleteOnExitMethod concode_elem_sep Random ran...
void function ( String arg0 , String arg1 ) { try { if ( exists ( arg0 ) ) { delete ( arg1 ) ; File loc0 = new File ( arg0 ) ; loc0 . renameTo ( new File ( arg1 ) ) ; } } catch ( Throwable loc0 ) { throw toIOException ( loc0 ) ; } }
19,960
sets the ` dead ' bytes . these bytes are left if the content of the box has been parsed but not all bytes have been used up . concode_field_sep Container parent concode_elem_sep boolean isParsed concode_elem_sep long offset concode_elem_sep long contentStartPosition concode_elem_sep ByteBuffer deadBytes concode_elem_s...
void function ( ByteBuffer arg0 ) { deadBytes = arg0 ; }
19,961
returns a cached default implementation of the jsonfactory interface . concode_field_sep JsonFactory INSTANCE concode_elem_sep HttpTransport INSTANCE concode_field_sep HttpTransport getDefaultTransport
JsonFactory function ( ) { return JsonFactoryInstanceHolder . INSTANCE ; }
19,962
gets the class file being defined . concode_field_sep CstType definer concode_elem_sep ParseObserver observer concode_elem_sep int endOffset concode_elem_sep DirectClassFile cf concode_elem_sep int offset concode_elem_sep AttributeFactory attributeFactory concode_field_sep int getEndOffset concode_elem_sep void setObse...
CstType function ( ) { return definer ; }
19,963
returns the maximum supported frames per second of the display . concode_field_sep int mYSize concode_elem_sep InputStream inStream concode_elem_sep int mMaxFPS concode_elem_sep String LED_MATRIX_BT_CONN concode_elem_sep OutputStream outStream concode_elem_sep Context mContext concode_elem_sep byte VERSION concode_elem...
int function ( ) { return mMaxFPS ; }
19,964
selection in the workbench has been changed . we can change the state of the ` real ' action here if we want , but this can only happen after the delegate has been created . concode_field_sep IWorkbenchWindow window concode_field_sep void init concode_elem_sep void run concode_elem_sep void dispose
void function ( IAction arg0 , ISelection arg1 ) { }
19,965
info log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setL...
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . INFO >= LOGLEVEL ) Log . i ( arg0 , arg1 , arg2 ) ; }
19,966
sets the value of the zip property . concode_field_sep String zip concode_field_sep String getZIP
void function ( String arg0 ) { this . zip = arg0 ; }
19,967
gets all conformity check information of the cluster . concode_field_sep String REGION concode_elem_sep String CLUSTER concode_elem_sep Collection<AutoScalingGroup> autoScalingGroups concode_elem_sep boolean isOptOutOfConformity concode_elem_sep Date updateTime concode_elem_sep Set<String> soloInstances concode_elem_se...
Collection < Conformity > function ( ) { return conformities . values ( ) ; }
19,968
like #get sessionkey , but throws nosuchelementexception on the absence of a value . concode_field_sep PlaceHolder placeHolder concode_field_sep JavaSessionSerializer getJavaSerializer concode_elem_sep void set concode_elem_sep void set concode_elem_sep void set concode_elem_sep void set concode_elem_sep void set conco...
T function ( SessionKey < T > arg0 ) { return require ( arg0 , getDefaultSerializer ( ) ) ; }
19,969
the list of branch names . concode_field_sep String nextToken concode_elem_sep java.util.List<String> branches concode_field_sep java.util.List<String> getBranches concode_elem_sep void setNextToken concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ListBranchesResult clone concode_elem_sep ...
ListBranchesResult function ( java . util . Collection < String > arg0 ) { setBranches ( arg0 ) ; return this ; }
19,970
info log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setL...
void function ( String arg0 , String arg1 ) { if ( LOG . INFO >= LOGLEVEL ) Log . i ( arg0 , arg1 ) ; }
19,971
the change identifier for the current revision . concode_field_sep String changeIdentifier concode_elem_sep String revision concode_field_sep CurrentRevision withChangeIdentifier concode_elem_sep CurrentRevision withRevision concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CurrentRevision ...
String function ( ) { return this . changeIdentifier ; }
19,972
get the second body attached to this joint . concode_field_sep JointEdge jointEdgeB concode_elem_sep JointEdge jointEdgeA concode_elem_sep World world concode_elem_sep float[] tmp concode_elem_sep Vector2 reactionForce concode_elem_sep long addr concode_elem_sep Vector2 anchorB concode_elem_sep Vector2 anchorA concode_...
Body function ( ) { return world . bodies . get ( jniGetBodyB ( addr ) ) ; }
19,973
this implementation throws a saxnotrecognizedexception exceptionfor any feature outside of the `` http://xml.org/sax/features/ '' namespace and accepts a false value for any feature within . concode_field_sep EntityResolver entityResolver concode_elem_sep ContentHandler contentHandler concode_elem_sep ErrorHandler erro...
void function ( String arg0 , boolean arg1 ) { if ( arg0 . startsWith ( "srini_string" ) ) { if ( arg1 ) { throw new SAXNotSupportedException ( arg0 ) ; } } else { throw new SAXNotRecognizedException ( arg0 ) ; } }
19,974
retrieves timestamp responses signature algorithm oid . concode_field_sep int TIMESTAMP_TYPE_ALL_DATA_OBJECTS concode_elem_sep TimeStampResponse tsResp concode_elem_sep Signature signature concode_elem_sep int TIMESTAMP_TYPE_INDIVIDUAL_DATA_OBJECTS concode_elem_sep ArrayList<IncludeInfo> includes concode_elem_sep int T...
String function ( ) { String loc0 = null ; if ( tsTokenInfo != null ) { loc0 = tsTokenInfo . getMessageImprintAlgOID ( ) ; } return loc0 ; }
19,975
called whenever the osgi framework stops our bundle concode_field_sep Logger logger concode_field_sep void start
void function ( BundleContext arg0 ) { logger . debug ( "srini_string" ) ; }
19,976
setter for the field id . concode_field_sep String color concode_elem_sep int id concode_elem_sep String label concode_elem_sep boolean flash concode_field_sep void setColor concode_elem_sep String getLabel concode_elem_sep void setFlash concode_elem_sep String getColor concode_elem_sep void setLabel concode_elem_sep i...
void function ( int arg0 ) { this . id = arg0 ; }
19,977
returns the underlying shortbuffer . if you modify the buffer contents they wil be uploaded on the call to #bind . if you need immediate uploading use #setindices short , int , int . concode_field_sep boolean isDirty concode_elem_sep int usage concode_elem_sep boolean isBound concode_elem_sep int bufferHandle concode_e...
ShortBuffer function ( ) { isDirty = true ; return buffer ; }
19,978
called before the index shard gets closed . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterIndexCreated concode_elem_sep void beforeIndexDeleted concode_elem_sep void beforeIndexClosed concode_elem_sep void shardRoutingChanged concode_elem_sep void beforeIndexShardCreated concode_elem_sep void on...
void function ( ShardId arg0 , @ Nullable IndexShard arg1 , Settings arg2 ) { }
19,979
when in a sequence of characters that can be copied directly , interrupts the sequence and copies it to the output buffer . concode_field_sep int charStart concode_elem_sep ByteList src concode_elem_sep int pos concode_elem_sep int srcEnd concode_elem_sep int quoteStart concode_elem_sep ThreadContext context concode_el...
void function ( int arg0 ) { if ( quoteStart != - 1 ) { out . append ( src , quoteStart , arg0 - quoteStart ) ; quoteStart = - 1 ; } }
19,980
gets the box 's volume concode_field_sep Point3 maximum concode_elem_sep Point3 minimum concode_field_sep void include concode_elem_sep void include concode_elem_sep void include concode_elem_sep Point3 getCenter concode_elem_sep boolean intersects concode_elem_sep boolean isEmpty concode_elem_sep Vector3 getExtents co...
float function ( ) { Vector3 loc0 = getExtents ( ) ; float loc1 = Math . max ( loc0 . x , 0 ) ; float loc2 = Math . max ( loc0 . y , 0 ) ; float loc3 = Math . max ( loc0 . z , 0 ) ; return loc1 * loc2 * loc3 ; }
19,981
sets the value of the seed property . concode_field_sep byte[] p concode_elem_sep byte[] q concode_elem_sep byte[] seed concode_elem_sep byte[] g concode_elem_sep byte[] pgenCounter concode_elem_sep byte[] y concode_elem_sep byte[] j concode_field_sep byte[] getG concode_elem_sep void setY concode_elem_sep byte[] getSe...
void function ( byte [ ] arg0 ) { this . seed = arg0 ; }
19,982
sets the timeout for this tcpmasterconnection . concode_field_sep InetAddress m_Address concode_elem_sep int m_Timeout concode_elem_sep int m_Port concode_elem_sep Socket m_Socket concode_elem_sep boolean m_Connected concode_elem_sep Logger logger concode_elem_sep ModbusTCPTransport m_ModbusTransport concode_field_sep ...
void function ( int arg0 ) { m_Timeout = arg0 ; if ( m_Socket != null ) { try { m_Socket . setSoTimeout ( m_Timeout ) ; } catch ( IOException loc0 ) { } } }
19,983
not supported ; throws an unsupportedoperationexception if called . concode_field_sep Logger LOGGER concode_elem_sep SemanticSpace backingSpace concode_elem_sep Map<String,Vector> wordToVector concode_field_sep void processSpace concode_elem_sep String getSpaceName concode_elem_sep Vector getVector concode_elem_sep int...
void function ( BufferedReader arg0 ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
19,984
find out if this log file line is before the given date 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_...
boolean function ( Date arg0 ) { if ( arg0 != null ) { return ( arg0 . compareTo ( this . date ) >= 0 ) ; } return false ; }
19,985
returns the s v n repository with the primary key . concode_field_sep SVNRepositoryLocalService _svnRepositoryLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.socialcoding.model.SVNRepository updateSVNRepository concode_elem_sep void updateSVNRepository concode_elem_...
com . liferay . socialcoding . model . SVNRepository function ( long arg0 ) { return _svnRepositoryLocalService . getSVNRepository ( arg0 ) ; }
19,986
returns the address with the matching uuid and company . concode_field_sep AddressLocalService _addressLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep java.util.List<com.liferay.portal.kernel.model.Address> getAddresses concode_elem_sep java.util.List<com.liferay.portal.kernel....
com . liferay . portal . kernel . model . Address function ( java . lang . String arg0 , long arg1 ) { return _addressLocalService . getAddressByUuidAndCompanyId ( arg0 , arg1 ) ; }
19,987
get the etag value . concode_field_sep String clientRequestId concode_elem_sep String requestId concode_elem_sep String eTag concode_elem_sep DateTimeRfc1123 lastModified concode_field_sep CertificateDeleteHeaders withLastModified concode_elem_sep String clientRequestId concode_elem_sep String requestId concode_elem_se...
String function ( ) { return this . eTag ; }
19,988
gets the totalerrorcount . concode_field_sep int totalwarningcount concode_elem_sep ArrayList<TestSuite> testSuites concode_elem_sep String language concode_elem_sep String screenresolution concode_elem_sep String type concode_elem_sep String result concode_elem_sep String duration concode_elem_sep int totalerrorcount ...
int function ( ) { return totalerrorcount ; }
19,989
get the arguments value . concode_field_sep String extension concode_elem_sep String scriptProcessor concode_elem_sep String arguments concode_field_sep String extension concode_elem_sep HandlerMapping withExtension concode_elem_sep String scriptProcessor concode_elem_sep HandlerMapping withScriptProcessor concode_elem...
String function ( ) { return this . arguments ; }
19,990
returns a hash code value for the object . concode_field_sep Logger log concode_elem_sep Map<PureInflowActivationSpec,PureInflowActivation> activations concode_field_sep void endpointActivation concode_elem_sep void stop concode_elem_sep void endpointDeactivation concode_elem_sep boolean equals concode_elem_sep void st...
int function ( ) { int loc0 = 17 ; return loc0 ; }
19,991
finds the depth of the tree . the depth is defined as the length of the longest path from this node to a leaf node . leaf nodes have depth zero . pos tags have depth 1 . phrasal nodes have depth > = 2 . concode_field_sep Tree parent concode_elem_sep String headWord concode_elem_sep String label concode_elem_sep String ...
int function ( ) { if ( isLeaf ( ) ) { return 0 ; } int loc0 = 0 ; List < Tree > loc1 = children ( ) ; for ( Tree loc2 : loc1 ) { int loc3 = loc2 . depth ( ) ; if ( loc3 > loc0 ) { loc0 = loc3 ; } } return loc0 + 1 ; }
19,992
get the value mapping . concode_field_sep long serialVersionUID concode_elem_sep String extensionPointName concode_elem_sep List<ValueMapping> valueMapping concode_elem_sep String destinationLabelKey concode_elem_sep String originLabelKey concode_field_sep void setDestinationLabelKey concode_elem_sep String getDestinat...
List < ValueMapping > function ( ) { return valueMapping ; }
19,993
parse a string as a date using the iso8601_date format which is yyyy-mm-dd concode_field_sep String[] SECONDS_PART concode_elem_sep int ONE_HOUR concode_elem_sep ChoiceFormat SECONDS_FORMAT concode_elem_sep DateFormat DATE_HEADER_FORMAT_INT concode_elem_sep MessageFormat MINUTE_SECONDS concode_elem_sep DateFormat DATE_...
Date function ( String arg0 ) { return new SimpleDateFormat ( ISO8601_DATE_PATTERN ) . parse ( arg0 ) ; }
19,994
canonicalize each param type in the given array . return null if all types are already canonicalized . concode_field_sep LambdaForm[] lambdaForms concode_elem_sep int LF_REINVOKE concode_elem_sep MethodHandle genericInvoker concode_elem_sep int LF_INVSTATIC_INIT concode_elem_sep int NO_CHANGE concode_elem_sep int LF_CS...
Class < ? > [ ] function ( Class < ? > [ ] arg0 , int arg1 ) { Class < ? > [ ] loc0 = null ; for ( int loc1 = arg0 . length , loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) { Class < ? > loc3 = canonicalize ( arg0 [ loc2 ] , arg1 ) ; if ( loc3 == void . class ) loc3 = null ; if ( loc3 != null ) { if ( loc0 == null ) loc0 = arg0 . ...
19,995
gets the value of the oduvodneni property . concode_field_sep String oduvodneni concode_elem_sep List<TZtvarneni> ztvarneni concode_elem_sep List<TOdkaz> odkazPuvodniKomponenta concode_field_sep void setOduvodneni concode_elem_sep List<TOdkaz> getOdkazPuvodniKomponenta concode_elem_sep List<TZtvarneni> getZtvarneni
String function ( ) { return oduvodneni ; }
19,996
returns a hash code to uniquely identify a cql logical row key . concode_field_sep ClusteringKeyMapper clusteringKeyMapper concode_elem_sep CompositeType type concode_elem_sep String FIELD_NAME concode_field_sep FullKeyMapper instance concode_elem_sep void addFields concode_elem_sep Term term concode_elem_sep ByteBuffe...
String function ( DecoratedKey arg0 , CellName arg1 ) { return ByteBufferUtil . bytesToHex ( byteBuffer ( arg0 , arg1 ) ) ; }
19,997
retrieves the canonical file for the given file , in a jdk 1.1 complaint way . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep FileDescriptor outDescriptor concode_elem_sep Random random concode_elem_sep boolean fsIsIgnoreCase concode_field_sep void renameElement concode_elem_sep java.io.InputStre...
File function ( File arg0 ) { return new File ( arg0 . getCanonicalPath ( ) ) ; }
19,998
two objects that are equal are required to return the same hashcode . concode_field_sep Month jan1900 concode_elem_sep Month dec9999 concode_elem_sep Month nov9999 concode_elem_sep Month feb1900 concode_field_sep void testDateConstructor1 concode_elem_sep void testParseMonth concode_elem_sep void testGetStart concode_e...
void function ( ) { Month loc0 = new Month ( 2 , 2003 ) ; Month loc1 = new Month ( 2 , 2003 ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; }
19,999
sets the error code . concode_field_sep String exceptionType concode_elem_sep int errorCode concode_elem_sep String location concode_field_sep String getLocation concode_elem_sep void print concode_elem_sep int getErrorCode concode_elem_sep void setLocation concode_elem_sep String getErrorSignifierAsString concode_elem...
void function ( int arg0 ) { this . errorCode = arg0 ; }