code stringlengths 20 663 | nl stringlengths 68 7.19k |
|---|---|
HazelcastInstance function ( ) { return HazelcastInstanceFactory . newHazelcastInstance ( null ) ; } | creates a new hazelcastinstance a new node in a cluster . this method allows you to create and run multiple instances of hazelcast cluster members on the same jvm . to shutdown all running hazelcastinstances all members on this jvm call #shutdownall . hazelcast will look into two places for the configuration file : sys... |
XmlStreamEditor function ( String arg0 ) { checkDeviceId ( arg0 ) ; RemoteObject loc0 = remoteStorage . find ( arg0 ) ; return getMixDescriptionEditor ( loc0 ) ; } | gets a datastream editor for mix format . concode_field_sep String DEVICE_ID_PREFIX concode_elem_sep String DESCRIPTION_DS_ID concode_elem_sep String DESCRIPTION_DS_LABEL concode_elem_sep RemoteStorage remoteStorage concode_elem_sep String METAMODEL_ID concode_field_sep void checkDeviceId concode_elem_sep Device addDev... |
GraphName function ( ) { if ( isGlobal ( ) ) { return this ; } if ( isPrivate ( ) ) { return new GraphName ( GraphName . ROOT + name . substring ( 1 ) ) ; } return new GraphName ( GraphName . ROOT + name ) ; } | convert name to a global name representation . this does not take any namespace into account ; it simply adds in the global prefix '' / '' if missing . concode_field_sep String SEPARATOR concode_elem_sep Pattern VALID_GRAPH_NAME_PATTERN concode_elem_sep String ANONYMOUS_PREFIX concode_elem_sep String name concode_elem_... |
PoolInformation function ( AutoPoolSpecification arg0 ) { this . autoPoolSpecification = arg0 ; return this ; } | set the autopoolspecification value . concode_field_sep String poolId concode_elem_sep AutoPoolSpecification autoPoolSpecification concode_field_sep PoolInformation withPoolId concode_elem_sep String poolId concode_elem_sep AutoPoolSpecification autoPoolSpecification |
void function ( String [ ] arg0 ) { this . nbrCols = arg0 . length ; doWriteData ( arg0 ) ; } | writes the csv header fieldnames . should be called after construction one time . concode_field_sep int nbrCols concode_elem_sep int nbrRows concode_elem_sep String newline concode_elem_sep OutputStreamWriter writer concode_field_sep String toCsvValue concode_elem_sep void doWriteData concode_elem_sep void writeData co... |
void function ( String [ ] arg0 ) { MainDexListBuilder . main ( arg0 ) ; } | kept for compatibility with the gradle integration , this method just forwards to maindexlistbuilder #main string . concode_field_sep Path path concode_elem_sep Set<String> classNames concode_elem_sep String CLASS_EXTENSION concode_field_sep void addClassWithHierachy concode_elem_sep void addDependencies concode_elem_s... |
Promise < Object > function ( @ Nonnull String arg0 ) { Promise < Object > loc0 = context . get ( arg0 ) ; if ( loc0 != null ) { return loc0 ; } else { loc0 = new Promise < > ( ) ; context . put ( arg0 , loc0 ) ; return loc0 ; } } | gets the promise which represents the given key . if no promise exists yet , a new one will be created . retrieving the promise value blocks until a value is delivered to it . concode_field_sep Map<String,Promise<Object>> context concode_elem_sep InheritableThreadLocal<Map<String,DynamicContext>> localMap concode_field... |
Logger function ( ) { try { StackTraceElement [ ] loc0 = new Exception ( ) . getStackTrace ( ) ; return Logger . getLogger ( loc0 [ 1 ] . getClassName ( ) ) ; } catch ( SecurityException loc0 ) { return Logger . getLogger ( "srini_string" ) ; } } | gets the logger for the caller 's class . concode_field_sep PlaceHolder placeHolder concode_field_sep String getSystemProperty |
String function ( ) { return name ; } | get the second level qualifier on the domain component . this attribute is required . concode_field_sep String dc2 concode_elem_sep String name concode_elem_sep String description concode_elem_sep String dc concode_field_sep void setName concode_elem_sep void setDc2 concode_elem_sep void setDc concode_elem_sep String g... |
void function ( int arg0 ) { if ( arg0 != count_ ) { count_ = arg0 ; incVersion ( ) ; } } | set the element count and update version _ if changed concode_field_sep Predicate screener_ concode_elem_sep int count_ concode_elem_sep boolean pred concode_elem_sep int version_ concode_field_sep void excludeElements concode_elem_sep void checkIndex concode_elem_sep boolean sameOrderedPairs concode_elem_sep void incC... |
void function ( String arg0 , String arg1 ) { FileResource loc0 = getSessionMap ( arg0 ) . remove ( arg1 ) ; if ( loc0 != null && loc0 . getUuid ( ) != null ) { uuidMap . remove ( loc0 . getUuid ( ) ) ; } } | remove a fileresource from the resourcestore based on the unique combination of user token and resource name . concode_field_sep Map<String,Map<String,FileResource>> wrappedMap concode_elem_sep ResourceAdapter<FileResource> resourceAdapter concode_elem_sep Map<String,FileResource> uuidMap concode_field_sep void add con... |
ChargeDetailType function ( ) { return chargeDetail ; } | gets the value of the chargedetail property . concode_field_sep PrePayRatePlanShortInfo.LongDescription longDescription concode_elem_sep String identifier concode_elem_sep ChargeDetailType chargeDetail concode_elem_sep List<String> description concode_elem_sep long serialVersionUID concode_field_sep String getIdentifie... |
void function ( Integer arg0 ) { this . code = arg0 ; } | the low byte represents the state . the high byte is an opaque internal value and should be ignored . 0 : pending 16 : running 32 : shutting-down 48 : terminated 64 : stopping 80 : stopped concode_field_sep Integer code concode_elem_sep String name concode_field_sep void setName concode_elem_sep void setName concode_el... |
void function ( SUser arg0 ) { this . _return = arg0 ; } | sets the value of the return property . concode_field_sep SUser _return concode_field_sep SUser getReturn |
Iterator < ObjectObjectCursor < KType , VType >> function ( ) { return map . iterator ( ) ; } | returns a cursor over the entries key-value pairs in this map . the iterator is implemented as a cursor and it returns the same cursor instance on every call to iterator #next . to read the current key and value use the cursor 's public fields . an example is shown below . for intshortcursor c : intshortmap system.out.... |
boolean function ( String arg0 , String arg1 ) { if ( arg0 . length ( ) != arg1 . length ( ) ) { return false ; } String loc0 = arg0 + arg0 ; if ( loc0 . contains ( arg1 ) ) { return true ; } return false ; } | returns if the the string1 and string2 are circular rotation of each other . concode_field_sep PlaceHolder placeHolder concode_field_sep void main |
ECDomainParameters function ( ASN1ObjectIdentifier arg0 ) { return ( ECDomainParameters ) params . get ( arg0 ) ; } | return the ecdomainparameters object for the given oid , null if it is n't present . concode_field_sep Hashtable params concode_elem_sep Hashtable names concode_elem_sep Hashtable objIds concode_field_sep String getName concode_elem_sep ECDomainParameters getByName concode_elem_sep Enumeration getNames concode_elem_sep... |
String function ( CategoryDataset arg0 , int arg1 ) { return arg0 . getRowKey ( arg1 ) . toString ( ) ; } | generates a label for the specified row . concode_field_sep NumberFormat numberFormat concode_elem_sep String labelFormat concode_elem_sep DateFormat dateFormat concode_elem_sep String nullValueString concode_elem_sep long serialVersionUID concode_elem_sep NumberFormat percentFormat concode_field_sep NumberFormat getNu... |
boolean function ( int arg0 ) { if ( _dispatches == 0 ) return arg0 == REQUEST || arg0 == ASYNC && _holder . isAsyncSupported ( ) ; return ( _dispatches & arg0 ) != 0 ; } | check if this filter applies to a particular dispatch type . concode_field_sep String[] _pathSpecs concode_elem_sep int INCLUDE concode_elem_sep int _dispatches concode_elem_sep String[] _servletNames concode_elem_sep int REQUEST concode_elem_sep int ERROR concode_elem_sep int ALL concode_elem_sep int FORWARD concode_e... |
void function ( ) { testStreamJob ( false ) ; testStreamJob ( true ) ; } | check if mapper/reducer with empty/nonempty input works properly if reporting is done using lines like `` reporter : status : '' and `` reporter : counter : '' before map / reduce method is called . validate the task 's log of stderr if messages are written to stderr before map / reduce is called . also validate job ou... |
Set < Command > function ( ) { return Collections . unmodifiableSet ( children ) ; } | returns a set of all the command 's children . concode_field_sep String help concode_elem_sep List<CommandFlags.Flag> flags concode_elem_sep List<String> aliases concode_elem_sep Executor executor concode_elem_sep String usage concode_elem_sep String name concode_elem_sep boolean parseFlags concode_elem_sep String perm... |
void function ( final Verbosity arg0 ) { assert arg0 != null ; Preferences . arg0 = arg0 ; } | set the verbosity level . concode_field_sep Verbosity QUIET concode_elem_sep OutputStream errorStream concode_elem_sep Verbosity VERBOSE concode_elem_sep PrintWriter err concode_elem_sep Reader in concode_elem_sep String name concode_elem_sep InputStream inputStream concode_elem_sep OutputStream outputStream concode_el... |
void function ( String arg0 ) { this . image = arg0 ; } | sets the value of the image property . concode_field_sep String image concode_elem_sep String code concode_elem_sep Boolean visible concode_elem_sep Langs langs concode_elem_sep List<Tracked> tracked concode_elem_sep String style concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep String la... |
int function ( int arg0 ) { int loc0 = - 1 ; if ( arg0 >= 0 && arg0 < lista . length ) { loc0 = lista [ arg0 ] ; } return loc0 ; } | metodo que devuelve el elemento que se encuentra en la posicion introducida . concode_field_sep int[] lista concode_field_sep void add concode_elem_sep void add concode_elem_sep boolean contains concode_elem_sep void set concode_elem_sep int size concode_elem_sep void clear concode_elem_sep boolean isEmpty concode_elem... |
String function ( ) { return oauthToken ; } | the auth token concode_field_sep int poolSize concode_elem_sep String caCertData concode_elem_sep String resourceName concode_elem_sep String portName concode_elem_sep String oauthToken concode_elem_sep String clientKeyAlgo concode_elem_sep String clientCertFile concode_elem_sep String dnsDomain concode_elem_sep String... |
void function ( float arg0 ) { if ( added_values < values . length ) added_values ++ ; values [ last_value ++ ] = arg0 ; if ( last_value > values . length - 1 ) last_value = 0 ; dirty = true ; } | adds a new sample to this mean . in case the window is full the oldest value will be replaced by this new value . concode_field_sep int last_value concode_elem_sep float mean concode_elem_sep float values[] concode_elem_sep int added_values concode_elem_sep boolean dirty concode_field_sep float getLatest concode_elem_s... |
void function ( boolean arg0 ) { this . registerWithFactory = arg0 ; } | set whether to register the mbeanserver with the mbeanserverfactory , making it available through mbeanserverfactory.findmbeanserver . concode_field_sep MBeanServer server concode_elem_sep String agentId concode_elem_sep boolean locateExistingServerIfPossible concode_elem_sep Log logger concode_elem_sep boolean registe... |
boolean function ( Object arg0 ) { if ( arg0 instanceof User ) { User loc0 = ( User ) arg0 ; return loc0 . _lowerNick . equals ( _lowerNick ) ; } return false ; } | returns true if the nick represented by this user object is the same as the nick of the user object given as an argument . a case insensitive comparison is made . concode_field_sep String _prefix concode_elem_sep String _lowerNick concode_elem_sep String _nick concode_field_sep String getPrefix concode_elem_sep int has... |
void function ( Node < E > arg0 ) { this . head = arg0 ; } | this function set the head of the list concode_field_sep Node<E> head concode_elem_sep Node<E> next concode_elem_sep String input concode_elem_sep CS2022LinkedList<E> stack concode_elem_sep int length concode_elem_sep CS2022LinkedStack<Float> stack concode_elem_sep E element concode_field_sep void init_stack concode_el... |
V function ( K arg0 ) { return null ; } | called after a cache miss to compute a value for the corresponding key . returns the computed value or null if no value can be computed . the default implementation returns null . the method is called without synchronization : other threads may access the cache while this method is executing . if a value for key exists... |
double function ( double [ ] arg0 , double arg1 , double arg2 ) { int loc0 = ( int ) ( arg2 / arg1 ) ; if ( loc0 >= 0 && loc0 < arg0 . length ) return arg0 [ loc0 ] ; return Double . NaN ; } | for the given sampled contour and skipsize , provide the f0 value at time t if possible or double.nan otherwise . concode_field_sep AllophoneSet allophoneSet concode_field_sep void updateDurationAndEndTime concode_elem_sep void main concode_elem_sep void imposeIntonation concode_elem_sep void imposeDurations concode_el... |
double function ( Vertex arg0 , Vertex arg1 ) { Vertex loc0 = this . circleCenter ( arg0 , arg1 ) ; double loc1 = distance ( loc0 , arg0 ) ; double loc2 = distance ( this , arg0 ) ; double loc3 = distance ( arg0 , arg1 ) ; if ( loc3 < loc2 ) { loc2 = loc3 ; } loc3 = distance ( arg1 , this ) ; if ( loc3 < loc2 ) { loc2 ... | computes the value of the ratio of the circumradius to shortest edge . if smaller than some given tolerance b , the associated triangle is considered skinny . for an equal lateral triangle this value is 0.57735 . the ratio is related to the minimum triangle angle theta by : circumradius/shortestedge = 1 / 2sin theta . ... |
Binding < ? > function ( Injector arg0 , Key < ? > arg1 ) { Map < Key < ? > , Binding < ? >> loc0 = arg0 . getBindings ( ) ; Binding < ? > loc1 = loc0 . get ( arg1 ) ; return loc1 ; } | returns the binding for the given key or null if there is no such binding concode_field_sep PlaceHolder placeHolder concode_field_sep Set<Binding<?>> getBindingsOf concode_elem_sep Set<Binding<?>> getBindingsOf concode_elem_sep Class<?> getKeyType concode_elem_sep Set<T> getInstancesOf concode_elem_sep Set<T> getInstan... |
void function ( String [ ] arg0 ) { try { main . invoke ( null , new Object [ ] { arg0 } ) ; } catch ( InvocationTargetException loc0 ) { throw loc0 . getCause ( ) ; } } | invoke the example application with the given arguments concode_field_sep Class<?>[] paramTypes concode_elem_sep String description concode_elem_sep Method main concode_elem_sep Map<String,ProgramDescription> programs concode_field_sep void driver concode_elem_sep int run concode_elem_sep String getDescription concode_... |
void function ( ) { Assert . assertTrue ( "srini_string" , ResourceAdapterDeploymentTracker . INSTANCE . wasEndpointStartCalled ( ) ) ; Assert . assertTrue ( "srini_string" , ResourceAdapterDeploymentTracker . INSTANCE . wasEndpointActivationCalled ( ) ) ; } | tests that a ra deployed within the . ear is deployed and started successfully and it 's endpoint activation is invoked concode_field_sep String EAR_NAME concode_elem_sep String EJB_JAR_NAME concode_elem_sep String DEPLOYMENT_WITH_DEPLOYMENT_DESCRIPTOR concode_elem_sep String RAR_NAME concode_elem_sep String DEPLOYMENT... |
String function ( ) { return "srini_string" ; } | return the configuration prefix to load the configuration . in this case it is classpath : , but could be also file : / / conf / concode_field_sep Map<String,HierarchicalConfiguration> configurations concode_elem_sep ResourceLoader loader concode_elem_sep Map<String,String> configurationMappings concode_elem_sep String... |
InsnList function ( ) { return insns ; } | gets the list of instructions inside this block . concode_field_sep InsnList insns concode_elem_sep IntList successors concode_elem_sep int primarySuccessor concode_elem_sep int label concode_field_sep boolean canThrow concode_elem_sep int getLabel concode_elem_sep IntList getSuccessors concode_elem_sep BasicBlock with... |
String function ( ) { return statusReason ; } | gets the status reason . concode_field_sep String reason1 concode_elem_sep String reason2 concode_elem_sep String senderBankName concode_elem_sep String transId concode_elem_sep String userVariable4 concode_elem_sep String userVariable3 concode_elem_sep String userVariable5 concode_elem_sep String recepientBankCode con... |
int function ( ) { return _fooLocalService . getFoosCount ( ) ; } | returns the number of foos . concode_field_sep FooLocalService _fooLocalService concode_field_sep com.liferay.testpacl.model.Foo createFoo concode_elem_sep com.liferay.portal.kernel.model.Group getGroupPersistence_FindByPrimaryKey concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrapp... |
DateTime function ( ) { if ( this . ocpDate == null ) { return null ; } return this . ocpDate . getDateTime ( ) ; } | get the ocpdate value . concode_field_sep DateTimeRfc1123 ocpDate concode_elem_sep String clientRequestId concode_elem_sep DateTimeRfc1123 ifUnmodifiedSince concode_elem_sep Boolean returnClientRequestId concode_elem_sep DateTimeRfc1123 ifModifiedSince concode_elem_sep Integer timeout concode_field_sep FileGetNodeFileP... |
Component function ( String arg0 ) { if ( arg0 == null ) { return null ; } CalendarBuilder loc0 = new CalendarBuilder ( ) ; StringReader loc1 = new StringReader ( "srini_string" + arg0 + "srini_string" ) ; return ( Component ) loc0 . build ( loc1 ) . getComponents ( ) . get ( 0 ) ; } | parse icalendar string into calendar component concode_field_sep String[] SUPPORTED_COMPONENT_TYPES concode_elem_sep String[] SUPPORTED_COLLATIONS concode_field_sep Calendar parseCalendar concode_elem_sep Calendar parseCalendar concode_elem_sep Calendar parseCalendar concode_elem_sep Calendar parseCalendar concode_elem... |
Location function ( String arg0 ) { setLocationName ( arg0 ) ; return this ; } | the name of the aws direct connect location . the name includes the colocation partner name and the physical site of the lit building . concode_field_sep String locationName concode_elem_sep String locationCode concode_field_sep String getLocationName concode_elem_sep int hashCode concode_elem_sep boolean equals concod... |
Uri function ( Uri arg0 ) { return null ; } | hook for redirecting requests . applies to webview requests as well as requests made by plugins . to handle the request directly , return a uri in the form : cdvplugin : / / pluginid / ... and implement handleopenforread . to make this easier , use the topluginuri and frompluginuri helpers : public uri remapuri uri uri... |
String function ( ) { return name ; } | return the definition 's name . concode_field_sep Class<?> adaptToClass concode_elem_sep boolean restrict concode_elem_sep ClassLoader classLoader concode_elem_sep String name concode_elem_sep String className concode_elem_sep Class<?> adapterClass concode_elem_sep Class<?> clazz concode_field_sep void setName concode_... |
HeapPage function ( ) { try { byte [ ] loc0 = null ; synchronized ( oldDataLock ) { loc0 = oldData ; } return new HeapPage ( pid , loc0 ) ; } catch ( IOException loc0 ) { loc0 . printStackTrace ( ) ; System . exit ( 1 ) ; } return null ; } | return a view of this page before it was modified -- used by recovery concode_field_sep TupleDesc td concode_elem_sep HeapPage p concode_elem_sep int numSlots concode_elem_sep byte[] oldData concode_elem_sep Byte oldDataLock concode_elem_sep boolean dirty concode_elem_sep TransactionId dirtier concode_elem_sep byte hea... |
void function ( List < String > arg0 ) { this . redirectUris = arg0 ; } | sets a list of uris the authorizationservice may return the authorization code to . concode_field_sep String clientIpAddress concode_elem_sep String clientId concode_elem_sep List<String> allowedGrantTypes concode_elem_sep boolean isConfidential concode_elem_sep List<String> applicationCertificates concode_elem_sep Use... |
Permissions function ( ) { return securityHandler . getPermissions ( ) ; } | gets the permission associated with the document 's encryption handler . concode_field_sep Logger logger concode_elem_sep EncryptionDictionary encryptDictionary concode_elem_sep SecurityHandler securityHandler concode_elem_sep boolean foundJCE concode_field_sep byte[] getEncryptionKey concode_elem_sep boolean isAuthori... |
void function ( int arg0 ) { } | called when a user is removed . concode_field_sep long mVisibilityChangedCalled concode_elem_sep boolean mShowing concode_elem_sep long VISIBILITY_CHANGED_COLLAPSE_MS concode_field_sep void onRingerModeChanged concode_elem_sep void onPhoneStateChanged concode_elem_sep void onTimeChanged concode_elem_sep void onScreenTu... |
void function ( ) { switch ( portSpeed ) { case HIGH_SPEED : portSpeed = PortSpeed . LOW_SPEED ; break ; case LOW_SPEED : portSpeed = PortSpeed . HIGH_SPEED ; break ; } } | switch the serial port speed low -- > high and vice versa . concode_field_sep Logger logger concode_elem_sep byte[] buffer concode_elem_sep PortState portState concode_elem_sep P1TelegramParser p1Parser concode_elem_sep Object portLock concode_elem_sep PortSpeed portSpeed concode_elem_sep int readTimeoutMSec concode_el... |
UserProfileBuilder function ( String arg0 ) { this . email = arg0 ; return this ; } | sets the profile email field . concode_field_sep String firstName concode_elem_sep String lastName concode_elem_sep String[] EMPTY_FIRST_AND_LAST_NAME_ARRAY concode_elem_sep String name concode_elem_sep String id concode_elem_sep String email concode_elem_sep String username concode_field_sep UserProfileBuilder setName... |
String function ( ) { return branchExpandedIcon ; } | return the value of the branchexpandedicon 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_ele... |
void function ( FileSystem arg0 , String arg1 , int arg2 , CreateFileOptions arg3 ) { createByteFile ( arg0 , new AlluxioURI ( arg1 ) , arg3 , arg2 ) ; } | creates a simple file with len bytes . concode_field_sep PlaceHolder placeHolder concode_field_sep OpenFileOptions toOpenFileOptions concode_elem_sep List<String> listFiles |
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , com . liferay . portal . kernel . dao . orm . Projection arg1 ) { return getService ( ) . dynamicQueryCount ( arg0 , arg1 ) ; } | returns the number of rows matching the dynamic query . concode_field_sep PasswordTrackerLocalService _service concode_field_sep void trackPassword concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep boolean isValidPassword concode_elem_sep com.liferay.po... |
Date function ( Date arg0 ) { if ( arg0 != null ) { Calendar loc0 = Calendar . getInstance ( ) ; loc0 . setTime ( arg0 ) ; loc0 . set ( Calendar . DAY_OF_YEAR , 1 ) ; loc0 . set ( Calendar . YEAR , 1 ) ; loc0 . set ( Calendar . MILLISECOND , 0 ) ; arg0 = loc0 . getTime ( ) ; } return ( arg0 ) ; } | this method resets the date part of a date time value to a standard date 1/1/1 . this is used to allow times to be compared and manipulated . concode_field_sep Date FIRST_DATE concode_elem_sep boolean HAS_DST_SAVINGS concode_elem_sep Date LAST_DATE concode_elem_sep int DEFAULT_DST_SAVINGS concode_elem_sep Date CANONICA... |
void function ( ) { float loc0 ; for ( int loc1 = 0 ; loc1 < 4 ; loc1 ++ ) { for ( int loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) { loc0 = get ( loc1 , loc2 ) ; set ( loc1 , loc2 , get ( loc2 , loc1 ) ) ; set ( loc2 , loc1 , loc0 ) ; } } } | transpose this matrix in place . concode_field_sep float[] data concode_field_sep void set concode_elem_sep void set concode_elem_sep Mat4f mul concode_elem_sep void mul concode_elem_sep void setScale concode_elem_sep void getRotation concode_elem_sep void setTranslation concode_elem_sep void setRotation concode_elem_s... |
long function ( String arg0 ) { return parseByteString ( arg0 , ByteUnit . KiB ) ; } | convert a passed byte string e.g. 50b , 100k , or 250m to kibibytes for internal use . if no suffix is provided , the passed number is assumed to be in kibibytes . concode_field_sep long DEFAULT_DRIVER_MEM_MB concode_elem_sep Logger logger concode_elem_sep ImmutableMap<String,ByteUnit> byteSuffixes concode_elem_sep Imm... |
String function ( ) { return PARAMETER_EXPANSION_LEFT + variable + PARAMETER_EXPANSION_RIGHT ; } | expand the environment variable in platform-agnostic syntax . the parameter expansion marker '' var '' will be replaced with real parameter expansion marker ' % ' for windows and ' $ ' for linux by nodemanager on container launch . for example : var will be replaced as $ var on linux , and % var % on windows . concode_... |
String function ( ) { return RevisionUtils . extract ( "srini_string" ) ; } | returns the revision string . concode_field_sep PlaceHolder placeHolder concode_field_sep Vector getInstancesFromClass concode_elem_sep Instances getInstancesFromClass concode_elem_sep Instances getInstancesFromValue concode_elem_sep String cutpointsToString concode_elem_sep int getMinMax concode_elem_sep void writeCur... |
void function ( String arg0 ) { this . orientation = arg0 ; } | set the orientation of the menu `` horizontal '' or `` vertical '' . concode_field_sep String param concode_elem_sep String actionFired concode_elem_sep String orientation concode_field_sep String getParam concode_elem_sep String getOrientation concode_elem_sep String getActionFired concode_elem_sep void setParam conco... |
void function ( AssertionInfo arg0 , short [ ] arg1 , short arg2 , Index arg3 ) { arrays . assertContains ( arg0 , failures , arg1 , arg2 , arg3 ) ; } | verifies that the given array contains the given value at the given index . concode_field_sep Arrays arrays concode_elem_sep Failures failures concode_elem_sep ShortArrays INSTANCE concode_field_sep void assertEndsWith concode_elem_sep void assertStartsWith concode_elem_sep ShortArrays instance concode_elem_sep void as... |
byte function ( int arg0 ) { return mValues [ arg0 ] ; } | given an index in the range 0 ... size -1 , returns the value from the indexth key-value mapping that this sparsebytearray stores . concode_field_sep int[] mKeys concode_elem_sep int mSize concode_elem_sep byte[] mValues concode_field_sep int keyAt concode_elem_sep int size concode_elem_sep int indexOfKey concode_elem_... |
DumpDirOption function ( File arg0 ) { return new DumpDirOption ( arg0 ) ; } | this is a factory method for this dumpdirectoryoption configuration . the factory method is a best practice for the case where the actual object construction is changed in the future . concode_field_sep long serialVersionUID concode_elem_sep String PROPERTY_NAME concode_elem_sep File dir concode_field_sep int hashCode ... |
long function ( ) { return this . remainingDelayMillis ; } | return the remaining allocation delay for this shard in millisocends concode_field_sep String assignedNodeId concode_elem_sep Map<DiscoveryNode,NodeExplanation> nodeExplanations concode_elem_sep boolean hasPendingAsyncFetch concode_elem_sep long remainingDelayMillis concode_elem_sep ShardId shard concode_elem_sep byte ... |
String function ( ) { return this . artifactId ; } | return the dependency artifact id . concode_field_sep String groupId concode_elem_sep String artifactId concode_elem_sep List<Exclusion> exclusions concode_elem_sep String version concode_field_sep String getVersion concode_elem_sep int hashCode concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem... |
boolean function ( String arg0 , HashMap < String , Boolean > arg1 ) { Boolean loc0 = arg1 . get ( arg0 ) ; return ( loc0 == null ) ? false : loc0 . booleanValue ( ) ; } | check to see if the data associated with the key is required to be populated in the contact object . concode_field_sep String[] whereArgs concode_elem_sep CordovaInterface mApp concode_elem_sep String where concode_elem_sep String LOG_TAG concode_field_sep JSONArray search concode_elem_sep JSONObject getContactById con... |
TEvidencniUdajeSoucasti function ( ) { return evidencniUdaje ; } | gets the value of the evidencniudaje property . concode_field_sep TEvidencniUdajeSoucasti evidencniUdaje concode_elem_sep String id concode_field_sep void setEvidencniUdaje concode_elem_sep void setID concode_elem_sep String getID |
boolean function ( ) { return extendsBound ; } | is this an extends bound ? concode_field_sep boolean extendsBound concode_elem_sep Type type concode_field_sep String getContainerId concode_elem_sep Bound extendsBound concode_elem_sep String getQualifiedName concode_elem_sep boolean declaredOnMethod concode_elem_sep String getName concode_elem_sep boolean isSuper con... |
Imagetrigger function ( ) { return imagetrigger ; } | gets the value of the imagetrigger property . concode_field_sep Image image concode_elem_sep Pushbutton pushbutton concode_elem_sep Urltrigger urltrigger concode_elem_sep Switch _switch concode_elem_sep Pagejump pagejump concode_elem_sep Toggle toggle concode_elem_sep Multitrigger multitrigger concode_elem_sep Trigger ... |
void function ( String arg0 ) { this . attribute = arg0 ; } | sets the attribute name for this referenceitem . concode_field_sep String name concode_elem_sep String format concode_elem_sep int ordinal concode_elem_sep String formatType concode_elem_sep int end concode_elem_sep String attribute concode_elem_sep int start concode_elem_sep String data concode_field_sep void setName ... |
void function ( LoadListener arg0 ) { ThreadUtils . assertOnUiThread ( ) ; assert ( mLoadListeners . hasObserver ( arg0 ) ) ; mLoadListeners . removeObserver ( arg0 ) ; } | unregisters a listener for the template_url_service_loaded notification . concode_field_sep String mKeyword concode_elem_sep TemplateUrlService sService concode_elem_sep ObserverList<LoadListener> mLoadListeners concode_elem_sep int mNativeTemplateUrlServiceAndroid concode_elem_sep String mShortName concode_elem_sep in... |
JSONWriter function ( char arg0 , char arg1 ) { if ( this . mode != arg0 ) { throw new JSONException ( arg0 == 'a' ? "srini_string" : "srini_string" ) ; } this . pop ( arg0 ) ; try { this . writer . write ( arg1 ) ; } catch ( IOException loc0 ) { throw new JSONException ( loc0 ) ; } this . comma = true ; return this ; ... | end something . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int top concode_elem_sep int maxdepth concode_elem_sep Writer writer concode_elem_sep JSONObject stack[] concode_field_sep void pop concode_elem_sep JSONWriter array concode_elem_sep JSONWriter endArray concode_elem_sep JSONWrit... |
void function ( ) { for ( int loc0 = 0 ; loc0 < doubles . length ; loc0 ++ ) { this . doubles [ loc0 ] = 0.0 ; } } | reset all values to zero . concode_field_sep double[] doubles concode_elem_sep Class<E> enumClass concode_field_sep void add concode_elem_sep void add concode_elem_sep void negation concode_elem_sep void set concode_elem_sep void set concode_elem_sep int hashCode concode_elem_sep double get concode_elem_sep void subtra... |
Element function ( String arg0 , String arg1 ) { append ( "srini_string" ) ; append ( arg0 ) ; append ( "srini_string" ) ; append ( ( char ) 34 ) ; append ( arg1 == null ? "srini_string" : arg1 ) ; append ( ( char ) 34 ) ; return this ; } | write a name/value attribute pair concode_field_sep String nsPrefix concode_elem_sep Charset charset concode_elem_sep Element parent concode_elem_sep String name concode_elem_sep boolean openEnded concode_elem_sep Logger log concode_elem_sep boolean allowNewlines concode_elem_sep OutputStream out concode_field_sep bool... |
boolean function ( MarkupAttributes arg0 ) { Iterator loc0 = arg0 . getMarkupAttributeNames ( ) . iterator ( ) ; boolean loc1 = loc0 . hasNext ( ) ; while ( loc0 . hasNext ( ) ) { String loc2 = String . valueOf ( loc0 . next ( ) ) ; write ( loc2 , arg0 . getMarkupAttribute ( loc2 ) ) ; } return loc1 ; } | writes the markup attributes of the specified markupattributes object to the outputstream . concode_field_sep OutputStreamCounter os concode_elem_sep byte NEWLINE concode_elem_sep Document document concode_elem_sep Rectangle pageSize concode_elem_sep byte EQUALS concode_elem_sep boolean closeStream concode_elem_sep boo... |
String function ( ) { String loc0 = fLog . getNewName ( fObject ) ; if ( loc0 != null ) { int loc1 = loc0 . lastIndexOf ( '.' ) ; if ( loc1 > 0 ) loc0 = loc0 . substring ( 0 , loc1 ) ; } return loc0 ; } | returns the new name of the compilation unit , without any extension . concode_field_sep ReorgExecutionLog fLog concode_elem_sep String fName concode_elem_sep Object fObject concode_field_sep INewNameQuery createNullQuery concode_elem_sep INewNameQuery createNewPackageNameQuery concode_elem_sep String getNewName concod... |
String function ( ) { return name ; } | gets the value of the name property . concode_field_sep String name concode_elem_sep Float id concode_elem_sep Double age concode_elem_sep Boolean male concode_field_sep void setName concode_elem_sep Double getAge concode_elem_sep Boolean getMale concode_elem_sep void setMale concode_elem_sep void setId concode_elem_se... |
void function ( String arg0 ) { StringBuilder loc0 = new StringBuilder ( "srini_string" ) ; if ( arg0 != null ) { loc0 . append ( "srini_string" = "srini_string" ) ; } loc0 . append ( "srini_string" ) ; text . append ( loc0 . toString ( ) ) ; } | appends a tag that creates an ordered list . `` ordered '' means that the order of the items in the list is important . to show this , browsers automatically number the list . concode_field_sep StringBuilder text concode_field_sep void appendCloseUnorderedListTag concode_elem_sep void appendLineItemTag concode_elem_sep... |
byte [ ] function ( ) { byte [ ] loc0 = new byte [ 16 ] ; random . nextBytes ( loc0 ) ; String loc1 = new StringBuffer ( ) . append ( vmid ) . append ( new java . util . Date ( ) ) . append ( Arrays . toString ( loc0 ) ) . append ( counter ++ ) . toString ( ) ; return getMD5Bytes ( loc1 . getBytes ( ) ) ; } | generate a unique key as a byte array . concode_field_sep Pattern DURATION_PATTERN concode_elem_sep SimpleDateFormat outFmtSecond concode_elem_sep long MS_IN_HOUR concode_elem_sep SimpleDateFormat parseFmt[] concode_elem_sep long MS_IN_MINUTE concode_elem_sep VMID vmid concode_elem_sep Random random concode_elem_sep lo... |
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } | return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String language concode_field_sep java.lang.String getLanguage concode_elem_sep org.apache.axis.encoding.Serialize... |
JPAApi function ( String arg0 , String arg1 ) { return new DefaultJPAApi ( DefaultJPAConfig . of ( arg0 , arg1 ) ) . start ( ) ; } | create a default jpaapi with the given persistence unit configuration . automatically initialise the jpa entity manager factories . concode_field_sep ThreadLocal<EntityManager> currentEntityManager concode_elem_sep String CURRENT_ENTITY_MANAGER concode_field_sep void bindForCurrentContext concode_elem_sep void bindForA... |
boolean function ( SRHsp arg0 ) { return arg0 . getFeatures ( ) != null ? true : false ; } | figure out whether a srhsp contains some features . concode_field_sep DecimalFormat EVALUE_FORMATTER2 concode_elem_sep DecimalFormat EVALUE_FORMATTER1 concode_elem_sep DecimalFormat PCT_FORMATTER concode_elem_sep DecimalFormat SCORE_FORMATTER concode_elem_sep DecimalFormat POS_FORMATTER concode_elem_sep DecimalFormat K... |
void function ( FeedItemPage arg0 ) { this . rval = arg0 ; } | sets the value of the rval property . concode_field_sep FeedItemPage rval concode_field_sep FeedItemPage getRval |
String function ( ) { return this . url ; } | get the url value . concode_field_sep Period kernelCPUTime concode_elem_sep Period wallClockTime concode_elem_sep double writeIOGiB concode_elem_sep DateTime startTime concode_elem_sep long readIOps concode_elem_sep Period waitTime concode_elem_sep String url concode_elem_sep Period userCPUTime concode_elem_sep double ... |
void function ( GroupSymbol arg0 ) { if ( arg0 != null ) { clauses . add ( new UnaryFromClause ( arg0 ) ) ; } } | adds a new group to the list it will be wrapped in a unaryfromclause concode_field_sep List<FromClause> clauses concode_field_sep void addGroups concode_elem_sep void acceptVisitor concode_elem_sep boolean containsGroup concode_elem_sep List<FromClause> getClauses concode_elem_sep void setClauses concode_elem_sep int h... |
void function ( int arg0 ) { WeakReference < PageText > loc0 = searchResultCache . get ( arg0 ) ; if ( loc0 != null ) { PageText loc1 = loc0 . get ( ) ; if ( loc1 != null ) { loc1 . clearHighlighted ( ) ; } } searchResultCache . remove ( arg0 ) ; } | clears cached search results for this page index and clears the highlighted state for this page . concode_field_sep HashMap<Integer,WeakReference<PageText>> searchResultCache concode_elem_sep ArrayList<SearchTerm> searchTerms concode_field_sep void addPageSearchHit concode_elem_sep Set<Integer> getPageSearchHits concod... |
void function ( Date arg0 ) { _lock . setCreateDate ( arg0 ) ; } | sets the create date of this lock . concode_field_sep Lock _lock concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean getInheritable concode_elem_sep boolean is... |
void function ( String arg0 ) { this . type = arg0 ; } | sets the value of the type property . concode_field_sep List<Extension> extension concode_elem_sep long serialVersionUID concode_elem_sep List<Instance> instance concode_elem_sep String tag concode_elem_sep String type concode_elem_sep String _interface concode_elem_sep String mandatory concode_field_sep String getMand... |
double function ( ) { long loc0 = loadSuccessCount + loadExceptionCount ; return ( loc0 == 0 ) ? 0.0 : ( double ) loadExceptionCount / loc0 ; } | returns the ratio of cache loading attempts which threw exceptions . this is defined as loadexceptioncount / loadsuccesscount + loadexceptioncount , or 0.0 when loadsuccesscount + loadexceptioncount == 0 . concode_field_sep long totalLoadTime concode_elem_sep long evictionCount concode_elem_sep long hitCount concode_el... |
String function ( ) { return fileName ; } | gets file name . concode_field_sep Integer recordNumber concode_elem_sep String fileName concode_elem_sep Date createdDate concode_elem_sep List<ReportDataEntity> reportDataEntities concode_elem_sep String institutionName concode_elem_sep String type concode_field_sep void setFileName concode_elem_sep void setReportDat... |
BooleanValueStyle function ( View arg0 ) { BooleanValueStyle loc0 = GMFNotationUtil . getBooleanValueStyle ( arg0 , INLINE_STYLE ) ; return loc0 ; } | returns the style for diagram inlining concode_field_sep String INLINE_STYLE concode_elem_sep String DOMAIN_ID concode_field_sep List<Diagram> getSubDiagramHierachy concode_elem_sep BooleanValueStyle createInlineStyle concode_elem_sep void openEditor concode_elem_sep IEditorPart openEditor concode_elem_sep Transactiona... |
void function ( String arg0 , Object arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } fConfigProperties . put ( arg0 , arg1 ) ; } | sets the value object for the given configuration property concode_field_sep Log fLog concode_elem_sep Map<String,Object> fConfigProperties concode_elem_sep IProgressMonitor fMonitor concode_elem_sep ISessionData fSessionData concode_elem_sep Map<ISessionData.Entry<Object>,Object> fSessionStorage concode_field_sep void... |
void function ( String [ ] arg0 ) { if ( arg0 != null ) { for ( String loc0 : arg0 ) { if ( loc0 != null ) usedTags . add ( loc0 . toLowerCase ( ) ) ; } } } | adds missing tags to the set from the given list . concode_field_sep TagsRepository INSTANCE concode_elem_sep Set<String> usedTags concode_field_sep void loadFromGuidesSet concode_elem_sep TagsRepository getInstance concode_elem_sep void addMissingTagsFromTaggable concode_elem_sep Set<String> getUsedTags concode_elem_s... |
void function ( java . lang . String arg0 ) { _entry . setEmailAddress ( arg0 ) ; } | sets the email address of this entry . concode_field_sep Entry _entry concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCa... |
Policies function ( java . util . Collection < AppCookieStickinessPolicy > arg0 ) { setAppCookieStickinessPolicies ( arg0 ) ; return this ; } | the stickiness policies created using createappcookiestickinesspolicy . concode_field_sep com.amazonaws.internal.SdkInternalList<AppCookieStickinessPolicy> appCookieStickinessPolicies concode_elem_sep com.amazonaws.internal.SdkInternalList<LBCookieStickinessPolicy> lBCookieStickinessPolicies concode_elem_sep com.amazon... |
int function ( ) { return this . typeID ; } | gets the type id for the artifact type enum concode_field_sep String artifactTypeName concode_elem_sep String displayName concode_elem_sep long objID concode_elem_sep int typeID concode_elem_sep long artifactID concode_elem_sep String label concode_elem_sep int artifactTypeID concode_elem_sep SleuthkitCase Case concode... |
Type function ( ) { return null ; } | querying the value type is only valid after the value has been evaluated . concode_field_sep long serialVersionUID concode_elem_sep FormulaContext context concode_elem_sep ParsePosition parsePosition concode_elem_sep LValue[] EMPTY_CHILDS concode_field_sep void setParsePosition concode_elem_sep ParsePosition getParsePo... |
void function ( ) { target_line . close ( ) ; } | closes the static system audio input line concode_field_sep int INTERNAL_BUFFER_SIZE concode_elem_sep boolean DEBUG concode_elem_sep AudioInputStream audio_input_stream concode_elem_sep TargetDataLine target_line concode_field_sep void play concode_elem_sep void init concode_elem_sep void println concode_elem_sep void ... |
Map < String , String > function ( final String arg0 ) { final InputStream loc0 = CharSetMap . class . getResourceAsStream ( arg0 ) ; if ( loc0 != null ) { try { return loadStream ( loc0 ) ; } catch ( IOException loc1 ) { return null ; } } return null ; } | loads mappings from a resource . concode_field_sep int MAP_PROG concode_elem_sep int MAP_CACHE concode_elem_sep List<Map<String,String>> mappers concode_elem_sep String DEFAULT_CHARSET concode_elem_sep int MAP_COM concode_elem_sep String CHARSET_RESOURCE concode_elem_sep int MAP_HOME concode_elem_sep int MAP_SYS concod... |
ConvertingComparator < Map . Entry < K , V > , K > function ( Comparator < K > arg0 ) { return new ConvertingComparator < > ( arg0 , new Converter < Map . Entry < K , V > , K > ( ) { @ Override public K convert ( Map . Entry < K , V > arg1 ) { return arg1 . getKey ( ) ; } } ) ; } | create a new convertingcomparator that compares java.util.map.entry map entries based on their java.util.map.entry #getkey keys . concode_field_sep Comparator<T> comparator concode_elem_sep Converter<S,T> converter concode_elem_sep ConversionService conversionService concode_elem_sep Class<? extends T> targetType conco... |
void function ( long arg0 ) { this . totalCount = arg0 ; } | set total count expected , thus triggering percentage mode . concode_field_sep int percentMultiple concode_elem_sep PrismLog mainLog concode_elem_sep long lastPercentageDone concode_elem_sep long lastCount concode_elem_sep long totalCount concode_elem_sep long timerProgress concode_elem_sep int delay concode_elem_sep b... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.