code stringlengths 20 663 | nl stringlengths 68 7.19k |
|---|---|
void function ( ) { _loadQueue . addLast ( KILL_SWITCH ) ; notifyAll ( ) ; } | indicates that no more items will be added to the queue , no more items currently in the queue will be loaded , and that worker threads polling this queue should shut down . concode_field_sep java.util.LinkedList _loadQueue concode_elem_sep ImageLoadItem KILL_SWITCH concode_field_sep void addToQueue concode_elem_sep bo... |
Object function ( ) { ByteArrayInputStream loc0 = new ByteArrayInputStream ( content ) ; ObjectInput loc1 = new ObjectInputStream ( loc0 ) ; Object loc2 = loc1 . readObject ( ) ; loc1 . close ( ) ; loc0 . close ( ) ; return loc2 ; } | returns the encapsulated object . the object is de-serialized before being returned . concode_field_sep byte[] signature concode_elem_sep long serialVersionUID concode_elem_sep byte[] content concode_elem_sep String thealgorithm concode_field_sep String getAlgorithm concode_elem_sep byte[] getSignature concode_elem_sep... |
int function ( String arg0 ) { return library . getInt ( entries , arg0 ) ; } | gets an int specified by the key in the dictionary entries . if the value is a reference , the int value that the reference points to is returned . concode_field_sep Hashtable<Object,Object> entries concode_elem_sep Library library concode_elem_sep boolean inited concode_elem_sep boolean isDeleted concode_elem_sep Refe... |
void function ( Descriptions arg0 ) { this . descriptions = arg0 ; } | sets the value of the descriptions property . concode_field_sep String image concode_elem_sep String code concode_elem_sep Boolean visible concode_elem_sep Langs langs concode_elem_sep String style concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep String label concode_elem_sep Integer pos... |
void function ( ) { for ( Server loc0 : servers ) loc0 . close ( ) ; } | close all servers that have been created by this factory concode_field_sep ServerFactory instance concode_elem_sep boolean showErrors concode_elem_sep List<Server> servers concode_elem_sep boolean debug concode_field_sep boolean isDebug concode_elem_sep Server newServerInstance concode_elem_sep Server newServerInstance... |
EntityLookupRequest function ( ) { return entityLookupRequest ; } | gets the entitylookuprequest that describes the lookup to be performed . concode_field_sep ProjectId projectId concode_elem_sep EntityLookupRequest entityLookupRequest concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ProjectId getProjectId concode_elem_sep String toString |
View function ( int arg0 ) { View loc0 ; if ( mSlidingMenu != null ) { loc0 = mSlidingMenu . findViewById ( arg0 ) ; if ( loc0 != null ) return loc0 ; } return null ; } | finds a view that was identified by the id attribute from the xml that was processed in oncreate bundle . concode_field_sep boolean mEnableSlide concode_elem_sep Activity mActivity concode_elem_sep View mViewBehind concode_elem_sep boolean mOnPostCreateCalled concode_elem_sep boolean mBroadcasting concode_elem_sep View... |
java . lang . String function ( ) { return this . sender ; } | return the value of the sender column . concode_field_sep java.lang.String address concode_elem_sep java.lang.String sender concode_elem_sep java.lang.String endtime concode_elem_sep java.lang.Integer id concode_elem_sep java.lang.String starttime concode_elem_sep java.lang.String title concode_elem_sep int hashValue c... |
RegisterSpec function ( int arg0 ) { SsaInsn loc0 = ssaMeth . getDefinitionForRegister ( arg0 ) ; return loc0 == null ? null : loc0 . getResult ( ) ; } | returns the registerspec of the definition of the register . concode_field_sep SsaMethod ssaMeth concode_elem_sep InterferenceGraph interference concode_field_sep RegisterMapper allocateRegisters concode_elem_sep boolean wantsParamsMovedHigh concode_elem_sep boolean isDefinitionMoveParam concode_elem_sep RegisterSpec i... |
void function ( String arg0 ) { this . attributeLogicalName = arg0 ; } | sets the value of the attributelogicalname property . concode_field_sep String entityLogicalName concode_elem_sep String attributeLogicalName concode_elem_sep long serialVersionUID concode_elem_sep Object value concode_field_sep Object getValue concode_elem_sep void setEntityLogicalName concode_elem_sep String getAttri... |
String function ( ) { return getSequenceAsString ( ) ; } | provides standard java language access to results of #getsequenceasstring . concode_field_sep int numBefore concode_elem_sep S original concode_elem_sep int numGapPositions concode_elem_sep int[] sequenceFromAlignment concode_elem_sep AlignedSequence<S,C> prev concode_elem_sep int length concode_elem_sep int numAfter c... |
int function ( ) { return maximum ; } | the maximum number of allowed detections . concode_field_sep int compileFlags concode_elem_sep boolean ignoreCase concode_elem_sep String format concode_elem_sep int maximum concode_elem_sep AbstractViolationReporter reporter concode_elem_sep int minimum concode_elem_sep MatchSuppressor suppressor concode_elem_sep Stri... |
Predicate function ( ) { return INSTANCE ; } | factory returning the singleton instance . concode_field_sep long serialVersionUID concode_elem_sep Predicate INSTANCE concode_field_sep boolean evaluate |
void function ( AssertionInfo arg0 , double [ ] arg1 , double [ ] arg2 ) { arrays . assertContains ( arg0 , failures , arg1 , arg2 ) ; } | asserts that the given array contains the given values , in any order . concode_field_sep Arrays arrays concode_elem_sep Failures failures concode_elem_sep DoubleArrays INSTANCE concode_field_sep void assertEndsWith concode_elem_sep void assertStartsWith concode_elem_sep DoubleArrays instance concode_elem_sep void asse... |
void function ( final CompilationUnitRewrite arg0 , final ASTNode arg1 , final Map arg2 , final Map arg3 , final boolean arg4 ) { addImports ( arg0 , arg1 , arg2 , arg3 , null , arg4 ) ; } | adds the necessary imports for an ast node to the specified compilation unit . concode_field_sep PlaceHolder placeHolder concode_field_sep void collectImports concode_elem_sep void collectImports |
JarFile function ( String arg0 ) { if ( arg0 == null ) return null ; File loc0 = new File ( arg0 ) ; if ( ! loc0 . exists ( ) ) { String loc1 = findInPath ( arg0 ) ; if ( loc1 == null ) return null ; loc0 = new File ( loc1 ) ; } ZipUtil loc2 = new ZipUtil ( loc0 ) ; return loc2 . getJar ( ) ; } | get jar file concode_field_sep File m_file concode_elem_sep ZipFile m_zipFile concode_field_sep void dumpManifest concode_elem_sep Manifest getManifest concode_elem_sep Manifest getManifest concode_elem_sep String[] getContent concode_elem_sep String findInPath concode_elem_sep void main concode_elem_sep boolean isJar ... |
int function ( String arg0 , String arg1 ) { try { return Integer . parseInt ( arg1 ) ; } catch ( NumberFormatException loc0 ) { throw new IllegalArgumentException ( "srini_string" + arg0 ) ; } } | transfter val to int concode_field_sep String HADOOP_SECURITY_USER_KEYTAB_FILE concode_elem_sep String HADOOP_SECURITY_USERNAME concode_field_sep int getIntBetween concode_elem_sep void setHadoopFSURI concode_elem_sep void loginSecureHadoop concode_elem_sep int getCodecLevel concode_elem_sep boolean getBoolean concode_... |
void function ( String arg0 ) { this . eTag = arg0 ; } | sets the entity tag generated from the content of the associated part . concode_field_sep int partNumber concode_elem_sep String eTag concode_field_sep int getPartNumber concode_elem_sep void setPartNumber concode_elem_sep String getETag concode_elem_sep PartETag withPartNumber concode_elem_sep PartETag withETag |
long function ( ) { String loc0 = Environment . getExternalStorageState ( ) ; long loc1 = 0 ; if ( loc0 . equals ( Environment . MEDIA_MOUNTED ) ) { loc1 = getFreeSpaceInBytes ( Environment . getExternalStorageDirectory ( ) . getPath ( ) ) ; } else { return - 1 ; } return loc1 / 1024 ; } | get the free space in external storage concode_field_sep String LOG_TAG concode_field_sep boolean testSaveLocationExists concode_elem_sep File constructFilePaths concode_elem_sep boolean testFileExists concode_elem_sep long getFreeSpaceInBytes |
ITimedStatemachine function ( ) { return statemachine ; } | returns the state machine reference of the event . concode_field_sep boolean periodic concode_elem_sep int index concode_elem_sep ITimedStatemachine statemachine concode_field_sep boolean isPeriodic concode_elem_sep int getIndex concode_elem_sep void setStatemachine |
void function ( ComponentContext arg0 ) { log . debug ( "srini_string" ) ; } | deactivates the governance api bundle . concode_field_sep Log log concode_field_sep void setAttributeSearchService concode_elem_sep void unsetAttributeSearchService concode_elem_sep void activate |
List < ? > function ( ) { return Collections . EMPTY_LIST ; } | returns a list of files affected by this refactoring . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep TransactionalEditingDomain getEditingDomain concode_elem_sep Resource getResource concode_elem_sep boolean internalDoUndo concode_elem_sep String getCommandLabel co... |
KomodoObject function ( UnitOfWork arg0 , KomodoObject arg1 , String arg2 ) { return findOrCreateChild ( arg0 , arg1 , arg2 , null ) ; } | get or create a komodoobject with the specified komodoobject under the specified parent komodoobject . concode_field_sep StringBuffer buffer concode_field_sep String getDisplayNameAndValue concode_elem_sep OperationType getRequestType concode_elem_sep String traverse concode_elem_sep KomodoObject findOrCreate concode_e... |
ProtocolType function ( MessageMetaDataType arg0 ) { ProtocolType loc0 ; if ( MessageMetaDataType . META_DATA_MQTT == arg0 ) { loc0 = ProtocolType . MQTT ; } else { loc0 = ProtocolType . AMQP ; } return loc0 ; } | determine the matching protocol type for a given meta data type . concode_field_sep PrintWriter printWriterGlobal concode_elem_sep String MQTT_TOPIC_STORAGE_QUEUE_PREFIX concode_elem_sep String AMQP_TOPIC_STORAGE_QUEUE_PREFIX concode_elem_sep ConcurrentHashMap<String,Long> browserMessageIdCorrelater concode_elem_sep Lo... |
void function ( int arg0 ) { this . status = arg0 ; } | set editing status of this file . see filestatus static constants . concode_field_sep int RUNNING concode_elem_sep File systemFile concode_elem_sep int RUNNABLE concode_elem_sep int EDITED concode_elem_sep int TERMINATED concode_elem_sep boolean systemEdited concode_elem_sep int NO_FILE concode_elem_sep File file conco... |
List < E > function ( final Object arg0 , final Supplier < E > arg1 ) { final List < E > loc0 = ( List < E > ) this . parameters . get ( arg0 ) ; return ( null == loc0 ) ? Collections . singletonList ( arg1 . get ( ) ) : loc0 ; } | gets the value of a key and if that key is n't present returns the default value from the supplier . concode_field_sep Object[] EMPTY_ARRAY concode_elem_sep Map<Object,List<Object>> parameters concode_field_sep Object[] getKeyValues concode_elem_sep boolean contains concode_elem_sep void set concode_elem_sep List<Trave... |
void function ( String arg0 ) { this . at = arg0 ; } | sets the value of the at property . concode_field_sep String loc2 concode_elem_sep String viatext concode_elem_sep String at concode_elem_sep String loc1 concode_elem_sep String dest concode_field_sep boolean isSetDest concode_elem_sep boolean isSetViatext concode_elem_sep String getViatext concode_elem_sep String getL... |
Object function ( ) { return startKey ; } | get start key concode_field_sep Object startKey concode_elem_sep boolean flushOnEveryOperation concode_elem_sep String dataStoreClass concode_elem_sep Configuration hadoopConfiguration concode_elem_sep String keyClass concode_elem_sep long timeRangeFrom concode_elem_sep Object endKey concode_elem_sep long timeRangeTo c... |
Element function ( Element arg0 , String arg1 , Integer arg2 , Integer arg3 , Integer arg4 , String arg5 , String arg6 , String arg7 ) { return addColumn ( arg0 , arg1 , arg2 , arg3 , arg4 , arg5 , arg6 , arg7 , false ) ; } | adds new column element . method assumes that the value of name attribute is already wrapped with ' ` ' signs if quotation required . it shall be invoked when column name is taken directly from configuration file and not from org.hibernate.mapping.persistentclass descriptor . concode_field_sep PlaceHolder placeHolder c... |
int function ( ) { return 0 ; } | computes the number of bytes required to encode this message . this does not update the cached size . concode_field_sep int cachedSize concode_field_sep void writeTo concode_elem_sep MessageNano mergeFrom concode_elem_sep T mergeFrom concode_elem_sep T mergeFrom concode_elem_sep boolean messageNanoEquals concode_elem_s... |
boolean function ( int arg0 ) { Usuarios loc0 = userDao . obtener ( arg0 ) ; if ( loc0 . getEstado ( ) . equals ( "srini_string" ) ) { return false ; } return true ; } | verifica que usuario del id ingresado tiene estado activo concode_field_sep String CAPTCHA_CODE concode_elem_sep AuthDao authDao concode_elem_sep UsuariosDao userDao concode_elem_sep ReservaDao reservaDao concode_elem_sep SancionDao sancionDao concode_field_sep void eliminarAdministrador concode_elem_sep void cerrarSes... |
void function ( DeviceConnectedListener arg0 ) { mDeviceConnectedListener . remove ( arg0 ) ; } | remove device connected observer to openni observers list concode_field_sep int TIMEOUT_FOREVER concode_elem_sep List<DeviceDisconnectedListener> mDeviceDisconnectedListener concode_elem_sep List<DeviceStateChangedListener> mDeviceStateChangedListener concode_elem_sep List<DeviceConnectedListener> mDeviceConnectedListe... |
boolean function ( ) { return false ; } | answer whether the receiver contains the resolved binary form or the unresolved source form of the type . concode_field_sep IType typeHandle concode_elem_sep char[] name concode_elem_sep char[] superclassName concode_elem_sep int modifiers concode_field_sep int getModifiers concode_elem_sep char[] getFileName |
A function ( ) { return this . second ; } | returns the second element of the pair concode_field_sep int hashB concode_elem_sep int hashA concode_elem_sep int hashCode concode_elem_sep A first concode_elem_sep A second concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep A first |
void function ( String arg0 ) { mValues . put ( arg0 , null ) ; } | adds a null value to the set . concode_field_sep String TAG concode_elem_sep HashMap<String,Object> mValues concode_field_sep Float getAsFloat concode_elem_sep Byte getAsByte concode_elem_sep Set<Map.Entry<String,Object>> valueSet concode_elem_sep boolean containsKey concode_elem_sep Integer getAsInteger concode_elem_s... |
boolean function ( ) { return formatByAssessment ; } | is there the entire assessment on one page ? concode_field_sep String itemNumbering concode_elem_sep String submissionMessage concode_elem_sep java.util.Date dueDate concode_elem_sep java.util.Date feedbackDate concode_elem_sep boolean formatByAssessment concode_elem_sep boolean autoSave concode_elem_sep boolean unlimi... |
void function ( String arg0 ) { this . saveType = arg0 ; } | sets the save type used by the last save . concode_field_sep String saveType concode_elem_sep String CONTENT_PARAM concode_elem_sep String SAVE_VALUE concode_elem_sep String OVERWRITE_VALUE concode_elem_sep String CANCEL_VALUE concode_elem_sep String STORED_CARET_POSITION concode_elem_sep String EMBED_ATTACHMENT_VALUE ... |
boolean function ( @ NotNull PsiElement arg0 ) { final PsiElement loc0 = arg0 . getParent ( ) ; return loc0 instanceof JsonProperty && arg0 == ( ( JsonProperty ) loc0 ) . getNameElement ( ) ; } | checks that psi element represents key of json property key-value pair of json object concode_field_sep PlaceHolder placeHolder concode_field_sep String stripQuotes concode_elem_sep String getElementTextWithoutHostEscaping concode_elem_sep boolean isEscapedChar concode_elem_sep PsiElement findFurthestSiblingOfSameType ... |
void function ( int arg0 ) { this . state = arg0 ; stateTime = 0.0f ; } | switches this game object into a new state and resets statetime . concode_field_sep float stateTime concode_elem_sep float x concode_elem_sep float width concode_elem_sep Rectangle bounds concode_elem_sep int INACTIVE concode_elem_sep float y concode_elem_sep CollisionGeometry geometry concode_elem_sep int state concod... |
void function ( int arg0 ) { this . sampleIsDependedOn = arg0 ; } | sample_is_depended_on takes one of the following four values : 0 : the dependency of other samples on this sample is unknown ; 1 : other samples may depend on this one not disposable ; 2 : no other sample depends on this one disposable ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep int ... |
char function ( ) { return character ; } | returns the character of the trie node concode_field_sep TrieEntry cachedValueEntry concode_elem_sep TrieNode cachedValueTrieNode concode_elem_sep TrieNode parent concode_elem_sep char character concode_elem_sep HashMap<TrieSymbolTable,TrieEntry> entries concode_elem_sep HashMap<Character,TrieNode> children concode_ele... |
IntVector function ( ) { return ( IntVector ) clone ( ) ; } | makes a deep copy of the vector concode_field_sep int[] V concode_elem_sep int sizeOfVector concode_field_sep IntVector subvector concode_elem_sep IntVector subvector 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 concode_elem_sep void s... |
void function ( ) { setWaktu ( getWaktu ( ) + 1 ) ; } | procedure untuk me-increment waktu dunia . concode_field_sep char c concode_elem_sep Point p concode_elem_sep int deltatime concode_elem_sep int waktu concode_elem_sep int id concode_elem_sep int kekuatan concode_elem_sep int idcounter concode_elem_sep int worldSize concode_field_sep void move concode_elem_sep int getW... |
String function ( ) { return this . blobSource ; } | get the blobsource value . concode_field_sep String filePath concode_elem_sep String fileMode concode_elem_sep String blobSource concode_field_sep ResourceFile withFileMode concode_elem_sep ResourceFile withFilePath concode_elem_sep String filePath concode_elem_sep ResourceFile withBlobSource concode_elem_sep String fi... |
void function ( Token arg0 ) { tokenList . add ( arg0 ) ; } | adds a token object to the end of the list . concode_field_sep String processedLine concode_elem_sep ArrayList tokenList concode_field_sep void set concode_elem_sep int size concode_elem_sep void setProcessedLine concode_elem_sep Token get concode_elem_sep boolean isEmpty concode_elem_sep Object clone concode_elem_sep ... |
void function ( long arg0 ) { if ( arg0 == 0 || arg0 > ONE_YEAR_IN_SECONDS ) { timeToLiveSeconds = ONE_YEAR_IN_SECONDS ; } else { timeToLiveSeconds = arg0 ; } } | see http://www.w3.org/protocols/rfc2616/rfc2616-sec14.html to mark a response as `` never expires , '' an origin server sends an expires date approximately one year from the time the response is sent . http/1 .1 servers should not send expires dates more than one year in the future . concode_field_sep int GZIP_MAGIC_NU... |
Document function ( Locale [ ] arg0 ) { return xmlValueOf ( arg0 , null ) ; } | creates an xml representation of a list of locales . concode_field_sep boolean localeAware concode_elem_sep Log log concode_elem_sep Locale[] userLocales concode_elem_sep Locale[] portalLocales concode_elem_sep IPerson person concode_elem_sep Locale jvmLocale concode_elem_sep Locale[] browserLocales concode_elem_sep bo... |
String function ( ) { if ( xpathString != null ) { return xpathString ; } else if ( xpath == null ) { return DEFAULT_XPATH ; } else { return xpath . toString ( ) ; } } | get a string representation of the xpath expression for debugging purposes . concode_field_sep String xpathString concode_elem_sep SynapseXPath xpath concode_elem_sep String DEFAULT_XPATH concode_field_sep void setXPath concode_elem_sep void setXPathString concode_elem_sep OMNode selectOMNode concode_elem_sep SynapseXP... |
void function ( String arg0 ) { this . feature = arg0 ; } | this method was generated by mybatis generator . this method sets the value of the database column t_cem_type . feature concode_field_sep String stat concode_elem_sep String code concode_elem_sep Integer cemId concode_elem_sep String num concode_elem_sep Long origPrice concode_elem_sep Boolean enjoy concode_elem_sep In... |
int function ( ) { return pixmap . getGLInternalFormat ( ) ; } | returns the opengl es format of this pixmap . used as the third parameter to gl20 #glteximage2d int , int , int , int , int , int , int , int , java.nio.buffer . concode_field_sep Blending blending concode_elem_sep Gdx2DPixmap pixmap concode_elem_sep boolean disposed concode_elem_sep int color concode_field_sep int get... |
void function ( Service arg0 ) { this . svc = arg0 ; } | sets service instance . this parameter is mandatory when deploying a service . concode_field_sep Service svc concode_elem_sep int totalCnt concode_elem_sep String cacheName concode_elem_sep String name concode_elem_sep int maxPerNodeCnt concode_elem_sep IgnitePredicate<ClusterNode> nodeFilter concode_elem_sep long seri... |
void function ( Date arg0 ) { date = arg0 ; } | set utc date . concode_field_sep int satellites concode_elem_sep Date date concode_elem_sep double latitude concode_elem_sep double courseOverGround concode_elem_sep double horizontalAccuracy concode_elem_sep double speedOverGround concode_elem_sep Type type concode_elem_sep boolean valid concode_elem_sep double vertic... |
Builder function ( long arg0 ) { this . since = Long . toString ( arg0 ) ; return this ; } | start the results from the change immediately after the given sequence number . concode_field_sep String filter concode_elem_sep int heartbeat concode_elem_sep int heartbeat concode_elem_sep boolean continuous concode_elem_sep int limit concode_elem_sep boolean includeDocs concode_elem_sep String queryString concode_el... |
boolean function ( @ NotNull Editor arg0 , @ Nullable Caret arg1 , DataContext arg2 ) { return arg1 == null ? isEnabled ( arg0 , arg2 ) : isEnabledForCaret ( arg0 , arg1 , arg2 ) ; } | if caret is null , checks whether handler is enabled in general i.e. enabled for at least one caret in editor , if caret is not null , checks whether it 's enabled for specified caret . concode_field_sep boolean myRunForEachCaret concode_elem_sep boolean inExecution concode_elem_sep boolean inCheck concode_elem_sep boo... |
ModifiedScheduleList function ( ) { return modifiedScheduleList ; } | gets the value of the modifiedschedulelist property . concode_field_sep String transactionType concode_elem_sep BuyerInfo buyerInfo concode_elem_sep ModifiedScheduleList modifiedScheduleList concode_elem_sep EipInfo eipInfo concode_elem_sep ItemizedEquipmentList itemizedEquipmentList concode_elem_sep XMLGregorianCalend... |
boolean function ( ) { lock . lock ( ) ; try { return hasResult ; } finally { lock . unlock ( ) ; } } | checks whether result is available . does not block . concode_field_sep Lock lock concode_elem_sep T result concode_elem_sep CondVar cond concode_elem_sep boolean hasResult concode_field_sep void setResult concode_elem_sep T getResult concode_elem_sep T getResult concode_elem_sep T getResult concode_elem_sep void reset... |
String function ( ) { if ( datum . workflowAdjacencies != null ) { return datum . workflowAdjacencies . toString ( ) ; } return null ; } | get the adjacencies of the workflow concode_field_sep JobSubmitted datum concode_field_sep JobID getJobId concode_elem_sep String getWorkflowNodeName concode_elem_sep String getJobName concode_elem_sep long getSubmitTime concode_elem_sep String getWorkflowName concode_elem_sep EventType getEventType concode_elem_sep Ob... |
void function ( ) { System . out . println ( "srini_string" ) ; String loc0 = "srini_string" ; LockFile loc1 = new LockFile ( ) ; loc1 . testEnded ( loc0 ) ; } | test of testended method , of class lockfile . concode_field_sep LockFile testInstance concode_elem_sep File tmpFile concode_field_sep void testTestEnded_0args concode_elem_sep void testTestEndedUnhappy concode_elem_sep void testTestStartedHappy concode_elem_sep void testSetGetFilemask concode_elem_sep void testTestSta... |
List < String > function ( Collection < ConsoleCommandExtension > arg0 ) { List < String > loc0 = new ArrayList < String > ( ) ; for ( ConsoleCommandExtension loc1 : arg0 ) { loc0 . addAll ( loc1 . getUsages ( ) ) ; } return loc0 ; } | returns an array of the usage texts for all available commands concode_field_sep PlaceHolder placeHolder concode_field_sep void printHelp concode_elem_sep String getHelp concode_elem_sep void execute concode_elem_sep String getUsage |
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; } | get custom deserializer concode_field_sep it.test.kion.WsdtoAuthorProducts _return concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.apache.axis.description.TypeDesc getTypeDesc concode_elem_sep org... |
void function ( Cuenta arg0 ) { ValorSesion . arg0 = arg0 ; } | pre : cierto post : establece la cuenta actual a `` cuenta '' , que puede ser null . concode_field_sep Cuenta cuenta concode_field_sep Cuenta getCuenta |
void function ( String arg0 ) { this . description = arg0 ; } | sets the value of the description property . concode_field_sep String name concode_elem_sep String description concode_elem_sep long serialVersionUID concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String getDescription |
void function ( ) { fail ( null ) ; } | fails a test with no message . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertNotEmpty concode_elem_sep void assertNotEmpty concode_elem_sep void failNotSame concode_elem_sep void assertFalse concode_elem_sep void assertFalse concode_elem_sep String format concode_elem_sep void assertPostParamNo... |
int function ( ) { return endOffs ; } | gets the end offset of the range . concode_field_sep int startOffs concode_elem_sep int endOffs concode_field_sep int getStartOffset concode_elem_sep void set concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep int compareTo concode_elem_sep DocumentRange tran... |
void function ( ) { play ( null ) ; } | validate this effect . concode_field_sep Map<String,SpecialEffect> effects concode_elem_sep Configuration params concode_elem_sep float masterVolume concode_elem_sep float volumeMult concode_elem_sep ConfigurationSection conf concode_elem_sep Map<String,Set<String>> validArgs concode_elem_sep EffectType type concode_fi... |
void function ( int arg0 ) { this . index = arg0 ; } | sets the index of the tab . concode_field_sep String removedTab concode_elem_sep List tabItems concode_elem_sep String newTabContent concode_elem_sep int index concode_elem_sep int tabIndex concode_elem_sep List tabs concode_elem_sep String newTabLabel concode_elem_sep String label concode_elem_sep PanelTabSet dynamicT... |
void function ( String arg0 ) { this . version = arg0 ; } | sets the value of the version property . concode_field_sep String password concode_elem_sep String executionEnvRef concode_elem_sep List<AnyArgType> anyArg concode_elem_sep String uuid concode_elem_sep String version concode_elem_sep String url concode_elem_sep String username concode_field_sep String getVersion concod... |
SimpleFeature function ( Object arg0 ) { Object [ ] loc0 = new Object [ schema . getAttributeCount ( ) ] ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { AttributeDescriptor loc2 = schema . getDescriptor ( loc1 ) ; builder . add ( getOgrField ( loc2 , arg0 ) ) ; } String loc3 = convertOGRFID ( schema , arg0 ) ... | converts an ogr feature into a geotools one concode_field_sep SimpleFeatureType schema concode_elem_sep GeometryFactory geomFactory concode_elem_sep DateFormat timeFormat concode_elem_sep SimpleFeatureBuilder builder concode_elem_sep DateFormat dateFormat concode_elem_sep GeometryMapper geomMapper concode_elem_sep OGR ... |
void function ( String arg0 ) { this . manufacturer = arg0 ; } | sets the value of the manufacturer property . concode_field_sep String deviceType concode_elem_sep String serialNumber concode_elem_sep long productID concode_elem_sep long serialVersionUID concode_elem_sep XMLGregorianCalendar firstUseDate concode_elem_sep XMLGregorianCalendar lastUseDate concode_elem_sep String devic... |
String function ( String arg0 , Locale arg1 ) { return key ; } | obtains the key as a localized string , falling back to the locale-independent version if necessary . concode_field_sep String key concode_field_sep String toString |
int function ( ) { return completed . intValue ( ) ; } | gets total number of completed executions of query . this value is actual only for local node . concode_field_sep LongAdder8 sumTime concode_elem_sep LongAdder8 completed concode_elem_sep GridAtomicLong minTime concode_elem_sep double avgTime concode_elem_sep LongAdder8 fails concode_elem_sep long serialVersionUID conc... |
void function ( Vector2d arg0 ) { x += arg0 . x ; y += arg0 . y ; } | add another vector to this one . concode_field_sep double x concode_elem_sep double y concode_field_sep void setY concode_elem_sep double getX concode_elem_sep void setX concode_elem_sep double getY concode_elem_sep double distance concode_elem_sep void subtract concode_elem_sep void normalize concode_elem_sep double l... |
void function ( int arg0 ) { this . missingPropertyBehavior = arg0 ; } | set behavior for getstring method when a referred-to system property is not set . set to one of refcapablepropertyresourcebundle.throw _ behavior refcapablepropertyresourcebundle.emptystring _ behavior refcapablepropertyresourcebundle.noop _ behavior the first value is the default . concode_field_sep boolean validated ... |
ProgressListener function ( ) { return this . listener ; } | gets the progresslistener that will be used for monitoring the upload 's progress . concode_field_sep long size concode_elem_sep Date created concode_elem_sep String name concode_elem_sep ProgressListener listener concode_elem_sep Date modified concode_elem_sep InputStream content concode_field_sep FileUploadParams set... |
Match function ( String arg0 , String arg1 , Date arg2 , String arg3 ) { return new Match ( ) ; } | permite crear un nuevo partido concode_field_sep PlaceHolder placeHolder concode_field_sep ArrayList<Match> getNextMatches concode_elem_sep Player getPlayer concode_elem_sep Player invitePlayer concode_elem_sep ArrayList<Match> getLastMatches concode_elem_sep TeamStats getTeamStats concode_elem_sep void changePic conco... |
void function ( int arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; } | helper for success callbacks that just returns the status.ok 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 g... |
IdentityStore function ( ) { JPAIdentityStore loc0 = new JPAIdentityStore ( ) ; JPATemplate loc1 = new JPATemplate ( ) ; loc1 . setEntityManager ( this . entityManager ) ; loc0 . setJpaTemplate ( loc1 ) ; return loc0 ; } | creates a new jpaidentitystore concode_field_sep EntityManager entityManager concode_elem_sep DefaultIdentityManager identityManager concode_elem_sep EntityManagerFactory emf concode_field_sep void onFinishTest concode_elem_sep IdentityManager getIdentityManager concode_elem_sep void onBeforeTests concode_elem_sep void... |
int function ( Integer [ ] arg0 ) { int loc0 = arg0 [ 0 ] ; for ( int loc1 : arg0 ) { loc0 = gcd ( loc0 , loc1 ) ; } return loc0 ; } | calculates the greatest common divisor of n numbers concode_field_sep PlaceHolder placeHolder concode_field_sep int lcm concode_elem_sep int lcm |
ObjectReferenceTemplate [ ] function ( InputStream arg0 ) { ObjectReferenceTemplate [ ] loc0 = new ObjectReferenceTemplate [ arg0 . read_long ( ) ] ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) loc0 [ loc1 ] = ObjectReferenceTemplateHelper . read ( arg0 ) ; return loc0 ; } | reads the objectreferencetemplate from the corba input stream . concode_field_sep PlaceHolder placeHolder concode_field_sep ObjectReferenceTemplate[] extract concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write |
double function ( ) { return this . translateX ; } | returns the translation required to convert local x-coordinates back to the coordinate space of the container . concode_field_sep double translateY concode_elem_sep double translateX concode_elem_sep boolean generateEntities concode_field_sep void setGenerateEntities concode_elem_sep boolean getGenerateEntities concode... |
void function ( ) { setThreadPoolSize ( 1 ) ; } | sets thread pool to a single background thread . concode_field_sep ThreadPoolExecutor pool concode_field_sep ThreadPoolExecutor getThreadPool concode_elem_sep void setThreadPoolCPUsAvailable concode_elem_sep Future<T> submit concode_elem_sep Future<T> submit concode_elem_sep void setThreadPoolDefault concode_elem_sep v... |
void function ( OnChangedListener arg0 ) { mListener = arg0 ; } | setonchangedlistener concode_field_sep Button[] mButtons concode_elem_sep OnChangedListener mListener concode_elem_sep int TAG_MAX concode_elem_sep int BUTTON_NUM concode_elem_sep int PERC_KEY_MIN concode_elem_sep int CH_PERCUSSION concode_elem_sep Context mContext concode_elem_sep int PERC_KEY_MAX concode_elem_sep int... |
void function ( Runnable arg0 ) { INSTANCE . scheduleInternal ( arg0 , arg0 , MARS_DELAY , TimeUnit . SECONDS ) ; } | schedules specified command for execution with default mars period . concode_field_sep Thread scheduler concode_elem_sep MARSNode node concode_elem_sep long period concode_elem_sep DelayQueue<Task> queue concode_elem_sep HashMap<Long,Task> tasks concode_elem_sep String MARS_DELAY_PROPERTY concode_elem_sep MARSScheduler... |
int function ( ) { return 0 ; } | implement the parcelable interface concode_field_sep int RO_NETWORK_TYPE concode_elem_sep int RO_AVAILABLE_FWD_BW concode_elem_sep String DEFAULT concode_elem_sep String BULK_UPLOAD concode_elem_sep int RO_AVAILABLE_REV_BW concode_elem_sep boolean LOCAL_LOGV concode_elem_sep int RW_MAX_ALLOWED_LATENCY concode_elem_sep ... |
void function ( KHRDebugCallback arg0 ) { GL43 . glDebugMessageCallback ( arg0 ) ; } | the khrdebugcallback.handler implementation passed to this method will be used forkhr_debug messages . if callback is null , any previously registered handler for the current thread will be unregistered and stop receiving messages . concode_field_sep int GL_MAX_DEBUG_LOGGED_MESSAGES concode_elem_sep int GL_DEBUG_TYPE_P... |
String function ( ) { String loc0 = invoked ? "srini_string" : "srini_string" ; invoked = true ; return includeSpaces ? "srini_string" + loc0 + "srini_string" : loc0 ; } | returns `` where '' the first time it is invoked , then `` and '' for subsequent invocations . concode_field_sep boolean includeSpaces concode_elem_sep boolean invoked concode_field_sep String or concode_elem_sep String and concode_elem_sep String whereOr |
TypedActionHandler function ( @ NotNull TypedActionHandler arg0 ) { TypedActionHandler loc0 = myRawHandler ; myRawHandler = arg0 ; return loc0 ; } | replaces current ` raw ' typing handler with the specified handler . the handler should pass unprocessed typing to the previously registered ` raw ' handler . ` raw ' handler is a handler directly invoked by the code which handles typing in editor . default ` raw ' handler performs some generic logic that has to be don... |
Date function ( ) { return _kaleoNode . getModifiedDate ( ) ; } | returns the modified date of this kaleo node . concode_field_sep KaleoNode _kaleoNode concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean getTerminal concode_elem_sep java.lang.String getName concode... |
int function ( int arg0 , int arg1 ) { return arg0 & ( arg1 - 1 ) ; } | returns index for hash code h. concode_field_sep Entry next concode_elem_sep BitSet bitSet concode_elem_sep char[] sorted concode_elem_sep int size concode_elem_sep int GROWTH_FACTOR concode_elem_sep int NUM_BITS concode_elem_sep int LOAD_FACTOR concode_elem_sep char value concode_elem_sep int hash concode_elem_sep Ent... |
List < ExitPointSpec > function ( List < ReactionProperty > arg0 ) { List < ExitPointSpec > loc0 = new ArrayList < ExitPointSpec > ( ) ; for ( ReactionProperty loc1 : arg0 ) { if ( loc1 instanceof ExitPointSpec ) { loc0 . add ( ( ExitPointSpec ) loc1 ) ; } } return loc0 ; } | filters the given list of reactionproperty to return only a listof exitpointspec . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isNamedExitTransition concode_elem_sep List<Transition>[] getExitSpecSortedTransitions concode_elem_sep boolean isDefault concode_elem_sep Map<Region,List<Entry>> getReg... |
int function ( ) { if ( nodes == null ) { return 0 ; } else { return nodes . size ( ) ; } } | this method returns the number of the nodes in the element . concode_field_sep String name concode_elem_sep ArrayList nodes concode_elem_sep ArrayList attributes concode_elem_sep String namespaceURI concode_elem_sep String value concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String getA... |
String function ( ) { return sort ; } | gets the sort column . concode_field_sep String sort concode_elem_sep boolean ascending concode_field_sep void setSort concode_elem_sep boolean isDefaultAscending concode_elem_sep void setAscending concode_elem_sep void sort concode_elem_sep void sort concode_elem_sep boolean isAscending |
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . arg2 ( arg0 , arg1 , arg2 ) ; } | 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... |
double function ( ) { return azimuth ; } | returns the azimuth . concode_field_sep double elevation concode_elem_sep double azimuth concode_field_sep void setElevation concode_elem_sep String toString concode_elem_sep double getElevation concode_elem_sep void setAzimuth |
String function ( ) { return metadata . get ( NAME ) ; } | getname . concode_field_sep Map<String,String> metadata concode_elem_sep String NAME concode_elem_sep List<String> sideboard concode_elem_sep String DIFFICULTY concode_elem_sep String COMMENT concode_elem_sep List<String> main concode_elem_sep String DECK_TYPE concode_elem_sep String DESCRIPTION concode_elem_sep long s... |
boolean function ( final Arc arg0 ) { return true ; } | returns true unless overridden concode_field_sep String taskType concode_field_sep String hoverForNode concode_elem_sep String hrefForArc concode_elem_sep String hoverForArc concode_elem_sep Icon iconForNode concode_elem_sep String getTaskType concode_elem_sep String hrefForNode concode_elem_sep boolean isBackArc |
boolean function ( Pixa arg0 ) { return nativeJoin ( mNativePixa , arg0 . mNativePixa ) ; } | merges the contents of another pixa into this one . concode_field_sep int mNativePixa concode_elem_sep int mHeight concode_elem_sep int mWidth concode_elem_sep int mIndex concode_elem_sep boolean mRecycled concode_field_sep Pix next concode_elem_sep Rect getBoxRect concode_elem_sep int nativeGetPix concode_elem_sep boo... |
boolean function ( String arg0 , JSONArray arg1 , CallbackContext arg2 ) { CordovaArgs loc0 = new CordovaArgs ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; } | executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c... |
com . liferay . portal . kernel . model . LayoutBranch function ( long arg0 ) { return getService ( ) . getLayoutBranch ( arg0 ) ; } | returns the layout branch with the primary key . concode_field_sep LayoutBranchLocalService _service concode_field_sep com.liferay.portal.kernel.model.LayoutBranch addLayoutBranch concode_elem_sep com.liferay.portal.kernel.model.LayoutBranch addLayoutBranch concode_elem_sep com.liferay.portal.kernel.model.LayoutBranch ... |
String function ( ) { return bic ; } | gets the bic . return value might be empty , depending on which information is available . concode_field_sep String bankCode concode_elem_sep String countryCode concode_elem_sep String bic concode_field_sep Bank setBankCode concode_elem_sep Bank setCountryCode concode_elem_sep String getCountryCode concode_elem_sep Ban... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.