code
stringlengths
20
663
nl
stringlengths
68
7.19k
void function ( FileSystem arg0 , AlluxioURI arg1 , long arg2 ) { try { SetAttributeOptions loc0 = SetAttributeOptions . defaults ( ) . setTtl ( arg2 ) ; arg0 . setAttribute ( arg1 , loc0 ) ; } catch ( AlluxioException loc0 ) { throw new IOException ( loc0 . getMessage ( ) ) ; } }
sets a new ttl value or unsets an existing ttl value for file at path . concode_field_sep PlaceHolder placeHolder concode_field_sep void setPinned concode_elem_sep String convertMsToDate
boolean function ( ) { if ( ! myCheckedForProblemGlyphs ) { parseProblemGlyphs ( ) ; } return myHasGlyphsToBreakDrawingIteration ; }
we 've experienced a problem that particular symbols from particular font are represented really weird by the ij editor idea-83645 . eventually it was found out that outline font glyphs can have a ' y advance ' , i.e. instruction on how the subsequent glyphs location should be adjusted after painting the current glyph ...
E function ( int arg0 ) { if ( mGarbage ) { gc ( ) ; } return ( E ) mValues [ arg0 ] ; }
given an index in the range 0 ... size -1 , returns the value from the indexth key-value mapping that this sparsearray stores . concode_field_sep Object DELETED concode_elem_sep int[] EMPTY_INTS concode_elem_sep int[] mKeys concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep Object[] EMPTY_OBJ...
int function ( ) { return size ; }
the approximate #of elements in the buffer . concode_field_sep IElementFilter<E> filter concode_elem_sep int size concode_elem_sep Class cls concode_elem_sep E[] buffer concode_elem_sep long counter concode_elem_sep int capacity concode_field_sep void add concode_elem_sep long flush concode_elem_sep long flush concode_...
JSONWriter function ( long arg0 ) { return this . append ( Long . toString ( arg0 ) ) ; }
append a long value . 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 end concode_elem_sep JSONWri...
Enumeration < String > function ( ) { if ( values == null ) { return null ; } return values . keys ( ) ; }
enumerate the keys for the values kept by this tag handler . concode_field_sep Tag parent concode_elem_sep PageContext pageContext concode_elem_sep Hashtable<String,Object> values concode_elem_sep long serialVersionUID concode_elem_sep String id concode_field_sep Tag getParent concode_elem_sep void release concode_elem...
Integer function ( Object arg0 ) { return ( arg0 instanceof Ordered ? ( ( Ordered ) arg0 ) . getOrder ( ) : null ) ; }
find an order value indicated by the given object . the default implementation checks against the ordered interface.can be overridden in subclasses . concode_field_sep OrderComparator INSTANCE concode_field_sep int compare concode_elem_sep Object getOrderSource concode_elem_sep int doCompare concode_elem_sep int getOrd...
void function ( ) { Iterator < Integer > loc0 = mll . iterator ( ) ; assertThat ( loc0 . next ( ) , is ( new Integer ( 1 ) ) ) ; assertThat ( loc0 . next ( ) , is ( new Integer ( 2 ) ) ) ; assertThat ( loc0 . next ( ) , is ( new Integer ( 3 ) ) ) ; assertThat ( loc0 . hasNext ( ) , equalTo ( false ) ) ; }
test method for com.flatironschool.javacs.myarraylist #iterator . concode_field_sep List<Integer> mll concode_elem_sep List<Integer> list concode_field_sep void testClear concode_elem_sep void testIndexOfNull concode_elem_sep void testRemoveInt concode_elem_sep void testSet concode_elem_sep void testContainsAll concode...
String function ( ) { return confidentiality ; }
gets the value of the confidentiality property . concode_field_sep String integrity concode_elem_sep String confidentiality concode_elem_sep String id concode_elem_sep String clientCertAuthentication concode_field_sep void setId concode_elem_sep String getIntegrity concode_elem_sep void setIntegrity concode_elem_sep vo...
Integer function ( ) { return threads ; }
gets the value of the threads property . concode_field_sep Integer cores concode_elem_sep Integer threads concode_elem_sep Integer sockets concode_field_sep void setCores concode_elem_sep Integer getSockets concode_elem_sep void setSockets concode_elem_sep void setThreads concode_elem_sep Integer getCores
double function ( IntervalList arg0 ) { double loc0 = 0.0 ; for ( int loc1 = 0 ; loc1 < arg0 . getIntervalCount ( ) ; loc1 ++ ) { loc0 += ( arg0 . getInterval ( loc1 ) * arg0 . getLineageCount ( loc1 ) ) ; } loc0 /= 2 ; return loc0 ; }
returns a factor lambda such that the likelihood can be expressed as 1/theta ^ n-1 exp - lambda/theta . this allows theta to be integrated out analytically . : - concode_field_sep DemographicFunction demographicFunction concode_elem_sep IntervalList intervals concode_field_sep IntervalList getIntervals concode_elem_sep...
void function ( Container arg0 ) { this . container = arg0 ; }
sets the container . concode_field_sep Container container concode_elem_sep Collection lazyBag concode_elem_sep Collection bag concode_elem_sep long id concode_field_sep void setBag concode_elem_sep Container getContainer concode_elem_sep int hashCode concode_elem_sep void setLazyBag concode_elem_sep boolean equals con...
JComponent function ( ) { return component ; }
returns the component that contains the region . concode_field_sep JComponent component concode_elem_sep SynthStyle style concode_elem_sep int state concode_elem_sep Region region concode_field_sep SynthStyle getStyle concode_elem_sep Region getRegion concode_elem_sep int getComponentState
void function ( int arg0 ) { mPduHeaders . setOctet ( arg0 , PduHeaders . MMS_VERSION ) ; }
set x-mms-mms-version field value . concode_field_sep PduHeaders mPduHeaders concode_field_sep int getMessageType concode_elem_sep int getMmsVersion concode_elem_sep void setFrom concode_elem_sep String toString concode_elem_sep PduHeaders getPduHeaders concode_elem_sep void setMessageType concode_elem_sep EncodedStrin...
Double function ( String arg0 , double arg1 ) { Double loc0 = getFloatData ( arg0 ) ; return loc0 == null ? arg1 : loc0 ; }
retrieve some data associated with this individual . concode_field_sep Sample cachedSample concode_elem_sep String[] data concode_elem_sep boolean isSampleSet concode_elem_sep double lon concode_elem_sep double lat concode_elem_sep Graph graph concode_elem_sep OtpsPopulation population concode_field_sep OtpsLatLon getL...
void function ( String arg0 , int arg1 ) { if ( myHost != null && ( ( arg1 != previousProgress ) || ( ! arg0 . equals ( previousProgressLabel ) ) ) ) { myHost . updateProgress ( arg0 , arg1 ) ; } previousProgress = arg1 ; previousProgressLabel = arg0 ; }
used to communicate a progress update between a plugin tool and 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 amI...
RerouteExplanation function ( boolean arg0 , RoutingAllocation arg1 , String arg2 ) { if ( arg0 ) { return new RerouteExplanation ( this , arg1 . decision ( Decision . NO , name ( ) + "srini_string" , arg2 ) ) ; } throw new IllegalArgumentException ( "srini_string" + name ( ) + "srini_string" + arg2 ) ; }
utility method for rejecting the current allocation command based on provided reason concode_field_sep String INDEX_FIELD concode_elem_sep String node concode_elem_sep String SHARD_FIELD concode_elem_sep String NODE_FIELD concode_elem_sep String index concode_elem_sep int shard concode_elem_sep int shardId concode_fiel...
double function ( ) { return pitchInRadian ; }
returns the pitch in radian according to the z , y ' , x '' - convention for euler angles see also din 70000 . the value is between - math #pi and + math #pi . the pitch angle is the rotation around the y ' - axis as defined by the z , y ' , x '' - convention and is thus relative to the x-y-plane of the original coordi...
char function ( ) { return ( index < end ) ? text . charAt ( index ) : DONE ; }
this method returns the character at the current index position concode_field_sep int index concode_elem_sep int end concode_elem_sep String text concode_elem_sep int begin concode_field_sep char next concode_elem_sep char previous concode_elem_sep char last concode_elem_sep int getIndex concode_elem_sep char setIndex ...
void function ( String arg0 ) { editor = pref . edit ( ) ; editor . putString ( KEY_GALLERY_NAME , arg0 ) ; editor . commit ( ) ; }
storing gallery name concode_field_sep Editor editor concode_elem_sep String KEY_ALBUMS concode_elem_sep Context _context concode_elem_sep String TAG concode_elem_sep SharedPreferences pref concode_elem_sep String KEY_NO_OF_COLUMNS concode_elem_sep String KEY_GALLERY_NAME concode_elem_sep String PREF_NAME concode_elem_...
IMPLTYPE function ( final boolean arg0 ) { m_bUseJAXBContextCache = arg0 ; return thisAsT ( ) ; }
set usage of the jaxbcontextcache . for performance reasons it 's recommended to use the cache . concode_field_sep boolean m_bUseJAXBContextCache concode_elem_sep IJAXBDocumentType m_aDocType concode_elem_sep ClassLoader m_aClassLoader concode_field_sep IJAXBDocumentType getJAXBDocumentType concode_elem_sep JAXBContext...
Polygon function ( List < Point > arg0 ) { Polygon loc0 = new Polygon ( ) ; for ( Point loc1 : getConvexHull ( arg0 . toArray ( new Point [ arg0 . size ( ) ] ) ) ) { loc0 . addPoint ( loc1 . x , loc1 . y ) ; } return loc0 ; }
computes the convex hull from a set of points . concode_field_sep PlaceHolder placeHolder concode_field_sep List<Point> getConvexHull concode_elem_sep Point[] getConvexHull concode_elem_sep List<Point2D.Double> getConvexHull2D concode_elem_sep Point2D.Double[] getConvexHull2D concode_elem_sep boolean isRightTurn concod...
void function ( ) { if ( content != null ) { ByteBuffer loc0 = this . content ; this . content = null ; loc0 . rewind ( ) ; _parseDetails ( loc0 ) ; if ( loc0 . remaining ( ) > 0 ) { deadBytes = loc0 . slice ( ) ; } assert verify ( loc0 ) ; } }
parses the raw content of the box . it surrounds the actual parsing which is done concode_field_sep ContainerBox parent concode_elem_sep ByteBuffer deadBytes concode_elem_sep byte[] userType concode_elem_sep Logger LOG concode_elem_sep String type concode_elem_sep ByteBuffer content concode_field_sep ContainerBox getPa...
List < OsiMenusDTO > function ( @ RequestHeader ( value = AppConfig . AUTH_TOKEN ) String arg0 ) { log . debug ( "srini_string" ) ; return osiMenuService . findAll ( ) ; }
get / osi-menus : get all the osimenus . concode_field_sep Logger log concode_elem_sep OsiMenuService osiMenuService concode_elem_sep AuthTokenStore authTokenStore concode_elem_sep Environment env concode_field_sep ResponseEntity<Void> deleteOsiMenu concode_elem_sep ResponseEntity<OsiMenusDTO> getOsiMenu concode_elem_s...
boolean function ( T arg0 ) { Node loc0 = new Node ( arg0 ) ; loc0 . next = firstNode ; firstNode = loc0 ; numberOfEntries ++ ; return true ; }
adds a new entry to this bag . concode_field_sep int numberOfEntries concode_elem_sep Node next concode_elem_sep T data concode_elem_sep Node firstNode concode_elem_sep Node tempNode concode_field_sep int getFrequencyOf concode_elem_sep boolean duplicateAll concode_elem_sep void removeDuplicates concode_elem_sep boolea...
View function ( View arg0 , String arg1 ) { return findChild ( arg0 , hasTagValue ( arg1 ) ) ; }
gets the view with a given react test id in the ui hierarchy . react test id is currently propagated into view content description . concode_field_sep NativeModuleRegistryBuilder mNativeModuleRegistryBuilder concode_elem_sep Context mContext concode_elem_sep JavaScriptModuleRegistry.Builder mJSModuleRegistryBuilder con...
String function ( ) { return TimeZoneBean . formatCurrentTime ( dateFormat ) ; }
gets the dynamic time through the formatcurrenttime method in the timezonebean . concode_field_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep String getUseDaylightTime concode_elem_sep String getLocation concode_elem_...
void function ( RebuildMode arg0 ) { rebuildMode = arg0 ; }
sets the rebuild mode . concode_field_sep RebuildMode rebuildMode concode_elem_sep String tmpDirectory concode_elem_sep ArrayList<String> rebuildList concode_elem_sep boolean isClearDegradedState concode_elem_sep DN baseDN concode_field_sep ArrayList<String> getRebuildList concode_elem_sep void setTmpDirectory concode_...
int function ( ) { return ( int ) ( unique ^ time ^ count ) ; }
get the hashcode of this uid . concode_field_sep int machineId concode_elem_sep short uidCounter concode_elem_sep long last concode_elem_sep long serialVersionUID concode_elem_sep int unique concode_elem_sep short count concode_elem_sep long time concode_field_sep int getMachineId concode_elem_sep UID read concode_elem...
void function ( BigInteger arg0 ) { this . minutes = arg0 ; }
sets the value of the minutes property . concode_field_sep Boolean unlimitedMinutes concode_elem_sep DataBalanceType data concode_elem_sep String featureName concode_elem_sep BigInteger minutes concode_elem_sep String chargeType concode_elem_sep String description concode_elem_sep Boolean unlimitedMessages concode_elem...
int function ( ) { return nonTrumpCardValue ; }
gets the unique value of the card when its suit is not the trump suit concode_field_sep int nonTrumpCardValue concode_elem_sep String clientCardID concode_elem_sep int suitID concode_elem_sep int trumpCardValue concode_field_sep void assignClientCardID concode_elem_sep boolean equals concode_elem_sep boolean isTrumpCar...
void function ( TransportClient arg0 ) { }
invoked when the channel associated with the given client is active . concode_field_sep Logger logger concode_elem_sep RpcResponseCallback ONE_WAY_CALLBACK concode_field_sep void channelInactive concode_elem_sep void receive concode_elem_sep void receive concode_elem_sep void exceptionCaught concode_elem_sep void onFai...
void function ( Test arg0 , Long arg1 ) { }
resets the test results to the default state of time zero , memory usage zero , parameter zero , test passed . concode_field_sep int MAX_COLUMNS concode_elem_sep Throttle throttle concode_elem_sep Object printMonitor concode_elem_sep int conflatedResult concode_elem_sep int FAIL concode_elem_sep int ERROR concode_elem_...
boolean function ( ) { return false ; }
access the is-field not a button flag . concode_field_sep String m_title concode_elem_sep String m_form concode_elem_sep String m_linkBaseUrl concode_elem_sep String m_icon concode_elem_sep boolean m_enabled concode_elem_sep String CONTEXT_ACTION concode_elem_sep String CONTEXT_MENU concode_elem_sep List<MenuItem> m_it...
IComplexNDArray function ( IComplexNDArray arg0 ) { if ( arg0 . isVector ( ) ) return ( IComplexNDArray ) Nd4j . getExecutioner ( ) . execAndReturn ( new VectorFFT ( arg0 , arg0 . length ( ) ) ) ; else { return rawfft ( arg0 , arg0 . size ( arg0 . shape ( ) . length - 1 ) , arg0 . shape ( ) . length - 1 ) ; } }
1d discrete fourier op , note that this will throw an exception if the passed in input is n't a vector . see matlab 's fft2 for more information concode_field_sep PlaceHolder placeHolder concode_field_sep IComplexNDArray irfftn concode_elem_sep IComplexNDArray rawifftn concode_elem_sep IComplexNDArray doInnerFft concod...
File function ( String arg0 ) { Path loc0 = Paths . get ( "srini_string" , arg0 ) . toAbsolutePath ( ) ; return IoUtil . createDirectory ( loc0 ) ; }
create a directory within the test data directory at the given relative path . concode_field_sep Stopwatch sw concode_elem_sep boolean enabled concode_elem_sep StopwatchSet sws concode_field_sep void debug concode_elem_sep boolean inTargetDir concode_elem_sep boolean inTargetDir concode_elem_sep Statistics operationTim...
int function ( String [ ] arg0 ) { int loc0 = 0 ; return loc0 ; }
objective : write an algorithm to find how many palindromes available in the given array without considering the punctiations . hint : string.tochararray will give you the characters . palindrome : a palindrome is a word , phrase , number , or other sequence of symbols or elements , whose meaning may be interpreted the...
void function ( String arg0 ) { this . id = arg0 ; }
sets the value of the id property . concode_field_sep String path concode_elem_sep String id concode_elem_sep String pathType concode_field_sep void setPathType concode_elem_sep String getPath concode_elem_sep void setPath concode_elem_sep String getId concode_elem_sep String getPathType
void function ( int arg0 ) { this . age = arg0 ; }
sets the age in days . concode_field_sep Calendar firstQuarter concode_elem_sep double illumination concode_elem_sep Calendar thirdQuarter concode_elem_sep MoonPhaseName name concode_elem_sep Calendar _new concode_elem_sep int age concode_elem_sep Calendar full concode_field_sep void setName concode_elem_sep int getAge...
void function ( String arg0 , Throwable arg1 ) { logger . arg1 ( arg0 , arg1 ) ; }
log a message with the error level . concode_field_sep ALogger logger concode_elem_sep play.api.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep vo...
String function ( ) { return columnName ; }
returns the columnname concode_field_sep DataType columnType concode_elem_sep Boolean isDirectDictionary concode_elem_sep String columnName concode_field_sep DataType getColumnType concode_elem_sep String toString concode_elem_sep Boolean isDirectDictionary
FlushPolicy function ( HRegion arg0 , Configuration arg1 ) { Class < ? extends FlushPolicy > loc0 = getFlushPolicyClass ( arg0 . getTableDesc ( ) , arg1 ) ; FlushPolicy loc1 = ReflectionUtils . newInstance ( loc0 , arg1 ) ; loc1 . configureForRegion ( arg0 ) ; return loc1 ; }
create the flushpolicy configured for the given table . concode_field_sep Log LOG concode_elem_sep String HBASE_FLUSH_POLICY_KEY concode_elem_sep Class<? extends FlushPolicy> DEFAULT_FLUSH_POLICY_CLASS concode_field_sep Class<? extends FlushPolicy> getFlushPolicyClass
boolean function ( Object arg0 , Object arg1 ) { return ( ( arg0 == null || arg1 == null ) ? ( arg0 == arg1 ) : arg0 . equals ( arg1 ) ) ; }
check two objects , each possibly null , are either both null or are equal . concode_field_sep DeferredDiagnosticKind deferredDiagnosticKind concode_elem_sep Log log concode_elem_sep Object deferredDiagnosticArg concode_elem_sep String prefix concode_elem_sep Set<JavaFileObject> sourcesWithReportedWarnings concode_elem...
int function ( Inet4Address arg0 ) { byte [ ] loc0 = arg0 . getAddress ( ) ; return ( ( loc0 [ 3 ] & 0xff ) << 24 ) | ( ( loc0 [ 2 ] & 0xff ) << 16 ) | ( ( loc0 [ 1 ] & 0xff ) << 8 ) | ( loc0 [ 0 ] & 0xff ) ; }
convert a ipv4 address from an inetaddress to an integer concode_field_sep int RESET_IPV4_ADDRESSES concode_elem_sep String TAG concode_elem_sep int RESET_IPV6_ADDRESSES concode_elem_sep int RESET_ALL_ADDRESSES concode_field_sep String[] makeStrings concode_elem_sep void markSocket concode_elem_sep boolean runDhcpRenew...
FlashMap function ( HttpServletRequest arg0 ) { return ( FlashMap ) arg0 . getAttribute ( DispatcherServlet . OUTPUT_FLASH_MAP_ATTRIBUTE ) ; }
return the `` output '' flashmap with attributes to save for a subsequent request . concode_field_sep String REQUEST_DATA_VALUE_PROCESSOR_BEAN_NAME concode_field_sep WebApplicationContext findWebApplicationContext concode_elem_sep WebApplicationContext findWebApplicationContext concode_elem_sep ThemeResolver getThemeRe...
void function ( int arg0 , String arg1 ) { errorCodes = ( int [ ] ) ArrayUtil . resizeArray ( errorCodes , errorCodes . length + 1 ) ; errorKeys = ( String [ ] ) ArrayUtil . resizeArray ( errorKeys , errorKeys . length + 1 ) ; errorCodes [ errorCodes . length - 1 ] = arg0 ; errorKeys [ errorKeys . length - 1 ] = arg1 ;...
adds the error code and the key to the list of errors . this list is populated during construction or addition of elements and is used outside this class to act upon the errors . concode_field_sep String fileName concode_elem_sep boolean resource concode_elem_sep String[] errorKeys concode_elem_sep Properties stringPro...
void function ( ) { if ( running ) { total += System . currentTimeMillis ( ) - startTime ; running = false ; } }
ensures that this object is in the stopped state . if this object is in the running state , then this has the effect of adding to the total attribute the elapsed time since the last transition from stopped to running state and sets the running attribute to false . if this object is not in the running state , this call ...
void function ( E arg0 , MapTypeCallback arg1 ) { JavaScriptObject loc0 = EventImpl . impl . addListener ( jsoPeer , mapEvent . value ( ) , arg1 ) ; handlers . add ( new HandleContainer < E > ( arg0 , loc0 ) ) ; }
add a listener and the event handles associated with it . concode_field_sep MapEvent mapEvent concode_elem_sep List<HandleContainer<E>> handlers concode_elem_sep T listener concode_elem_sep JavaScriptObject jsoPeer concode_elem_sep JavaScriptObject eventHandlerJso concode_field_sep void removeHandler concode_elem_sep v...
void function ( java . lang . Boolean arg0 ) { this . isAspectRatio = arg0 ; }
sets the isaspectratio value for this size . concode_field_sep java.lang.Boolean isAspectRatio concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.Integer width concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer...
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 ( IdentityProvider arg0 ) { try { idPMgtStub . addIdP ( arg0 ) ; } catch ( Exception loc0 ) { log . error ( "srini_string" , loc0 ) ; throw new Exception ( loc0 . getMessage ( ) ) ; } }
adds an identity provider to the given tenant concode_field_sep IdentityProviderMgtServiceStub idPMgtStub concode_elem_sep Log log concode_elem_sep UserAdminStub userAdminStub concode_field_sep String[] getAllLocalClaimUris concode_elem_sep String[] getUserStoreDomains concode_elem_sep IdentityProvider getResidentIdP c...
String function ( ) { return "srini_string" + id + "srini_string" + length + "srini_string" ; }
returns a string representation of this token . concode_field_sep Token next concode_elem_sep byte INTERNAL_LAST concode_elem_sep byte ID_COUNT concode_elem_sep byte COMMENT1 concode_elem_sep int length concode_elem_sep byte COMMENT2 concode_elem_sep byte LABEL concode_elem_sep byte KEYWORD3 concode_elem_sep byte OPERA...
Counters function ( ) { return counters ; }
get the counters for the attempt concode_field_sep int[] clockSplits concode_elem_sep long finishTime concode_elem_sep int[] physMemKbytes concode_elem_sep Counters counters concode_elem_sep TaskType taskType concode_elem_sep String hostname concode_elem_sep long shuffleFinishTime concode_elem_sep int port concode_elem...
void function ( String arg0 ) { this . cloudTrailEvent = arg0 ; }
a json string that contains a representation of the event returned . concode_field_sep String eventId concode_elem_sep java.util.Date eventTime concode_elem_sep String eventName concode_elem_sep com.amazonaws.internal.SdkInternalList<Resource> resources concode_elem_sep String cloudTrailEvent concode_elem_sep String us...
int function ( ) { return ofy ( ) . load ( ) . type ( Device . class ) . count ( ) ; }
gets registered device count . concode_field_sep Logger LOG concode_field_sep List<Device> getAllDevices concode_elem_sep List<Device> findDevicesByGcmGroupId concode_elem_sep Device findDeviceByGcmId concode_elem_sep void unregister concode_elem_sep void updateRegistration concode_elem_sep void register
Token function ( int arg0 , String arg1 ) { switch ( arg0 ) { default : return new Token ( arg0 , arg1 ) ; } }
returns a new token object , by default . however , if you want , you can create and return subclass objects based on the value of ofkind . simply add the cases to the switch for all those special cases . for example , if you have a subclass of token called idtoken that you want to create if ofkind is id , simply add s...
void function ( String arg0 ) { int loc0 = ids . indexOf ( arg0 ) ; if ( loc0 > - 1 ) { tasks . remove ( loc0 ) ; patterns . remove ( loc0 ) ; ids . remove ( loc0 ) ; } }
removes a task and its scheduling pattern from the collector . concode_field_sep ArrayList tasks concode_elem_sep ArrayList ids concode_elem_sep int size concode_elem_sep ArrayList patterns concode_field_sep String add concode_elem_sep int size concode_elem_sep TaskTable getTasks concode_elem_sep void update concode_el...
ESIGetPrepaidSubscriberDetailsResponseType function ( ) { return new ESIGetPrepaidSubscriberDetailsResponseType ( ) ; }
create an instance of esigetprepaidsubscriberdetailsresponsetype concode_field_sep QName _EsiGetPrepaidSubscriberDetailsRequest_QNAME concode_elem_sep QName _EsiGetPrepaidSubscriberDetailsResponse_QNAME concode_field_sep SubscriberInfoType createSubscriberInfoType concode_elem_sep JAXBElement<ESIGetPrepaidSubscriberDet...
void function ( String arg0 ) { if ( arg0 != null ) port = arg0 ; }
sets the value of the port property . concode_field_sep String lazyInit concode_elem_sep String adminUserName concode_elem_sep String port concode_elem_sep String name concode_elem_sep String host concode_elem_sep String adminPassword concode_field_sep void setName concode_elem_sep void setHost concode_elem_sep String ...
Set < DescriptorGraphNode > function ( ) { return Collections . unmodifiableSet ( nodes ) ; }
gets all the nodes of this . concode_field_sep boolean shared concode_elem_sep int maxDistanceToRoot concode_elem_sep Set<DescriptorGraphNode> nodes concode_elem_sep Set<DescriptorGraphLevel> children concode_elem_sep Set<DescriptorGraphLevel> allParents concode_elem_sep int minDistanceToRoot concode_elem_sep Map<Strin...
long function ( ) { return _kaleoCondition . getUserId ( ) ; }
returns the user id of this kaleo condition . concode_field_sep KaleoCondition _kaleoCondition concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel conc...
boolean function ( ) { return true ; }
the clearspacesecurityauditprovider does not retrieve audit entries from clearspace . instead it refers the admin to a url where they can read the logs . concode_field_sep String AUDIT_URL_PREFIX concode_elem_sep Logger Log concode_field_sep List<SecurityAuditEvent> getEvents concode_elem_sep SecurityAuditEvent getEven...
void function ( String arg0 ) { this . workingRevision = arg0 ; }
setter for property workingrevision . concode_field_sep String stickyTag concode_elem_sep File file concode_elem_sep String stickyDate concode_elem_sep String stickyOptions concode_elem_sep String repositoryFileName concode_elem_sep String repositoryRevision concode_elem_sep String workingRevision concode_elem_sep Stri...
String function ( ) { return getName ( false ) ; }
name of the property . this method is implemented to follow the contract of propertyinfo #getname , and therefore it always returns the name of the annotated field . this name is normally not useful for the rest of xjc , which usually wants to access the `` public name '' of the property . a `` public name '' of the pr...
void function ( MessageListener arg0 ) { messageHandler . removeListener ( arg0 ) ; }
remove a parser message listener . concode_field_sep ICode iCode concode_elem_sep MessageHandler messageHandler concode_elem_sep Scanner scanner concode_elem_sep SymTabStack symTabStack concode_field_sep Token currentToken concode_elem_sep void addMessageListener concode_elem_sep ICode getICode concode_elem_sep Token n...
BigInteger function ( ) { int loc0 = buffer . getShort ( 0 ) & 0xFFFF ; byte [ ] loc1 = new byte [ loc0 ] ; buffer . position ( 2 ) ; buffer . get ( loc1 ) ; return new BigInteger ( 1 , loc1 ) ; }
gets the modulus field . concode_field_sep ByteBuffer buffer concode_field_sep void setModulus concode_elem_sep void setExponent concode_elem_sep int length concode_elem_sep String toString concode_elem_sep String toString concode_elem_sep KeyExchangeAlgorithm algorithm concode_elem_sep BigInteger exponent
String function ( ) { return m_userGuest ; }
returns the name of the default guest user . concode_field_sep String DEFAULT_USER_GUEST concode_elem_sep String DEFAULT_GROUP_PROJECTMANAGERS concode_elem_sep String DEFAULT_GROUP_GUESTS concode_elem_sep String m_groupProjectmanagers concode_elem_sep String DEFAULT_USER_ADMIN concode_elem_sep String DEFAULT_USER_DELET...
com . liferay . portal . workflow . kaleo . model . KaleoNode function ( long arg0 ) { return getService ( ) . getKaleoNode ( arg0 ) ; }
returns the kaleo node with the primary key . concode_field_sep ServiceTracker<KaleoNodeLocalService,KaleoNodeLocalService> _serviceTracker concode_field_sep void deleteKaleoDefinitionKaleoNodes concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynam...
Version function ( BitMatrix arg0 ) { int loc0 = arg0 . getHeight ( ) ; int loc1 = arg0 . getWidth ( ) ; return Version . getVersionForDimensions ( loc0 , loc1 ) ; }
creates the version object based on the dimension of the original bit matrix from the datamatrix code . see iso 16022:2006 table 7 - ecc 200 symbol attributes concode_field_sep BitMatrix mappingBitMatrix concode_elem_sep Version version concode_elem_sep BitMatrix readMappingMatrix concode_field_sep Version getVersion c...
Object function ( ) { return attachment ; }
gets the attached object . concode_field_sep Object attachment concode_elem_sep int OP_ACCEPT concode_elem_sep int OP_CONNECT concode_elem_sep int OP_WRITE concode_elem_sep int OP_READ concode_field_sep void cancel concode_elem_sep boolean isAcceptable concode_elem_sep int readyOps concode_elem_sep boolean isConnectabl...
void function ( CharEscaper arg0 , String arg1 , char arg2 ) { String loc0 = computeReplacement ( arg0 , arg2 ) ; Assert . assertNotNull ( loc0 ) ; Assert . assertEquals ( arg1 , loc0 ) ; }
asserts that an escaper escapes the given character into the expected string . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertUnicodeEscaping concode_elem_sep void assertUnescaped concode_elem_sep void assertUnescaped concode_elem_sep void assertBasic
void function ( String arg0 ) { this . algIdExtSource = arg0 ; }
sets the value of the algidextsource property . concode_field_sep Object parent concode_elem_sep STAlgType cryptAlgorithmType concode_elem_sep STAlgClass cryptAlgorithmClass concode_elem_sep String algIdExt concode_elem_sep byte[] salt concode_elem_sep STDocProtect edit concode_elem_sep Boolean enforcement concode_elem...
Example function ( ) { return example ; }
gets the value of the example property . concode_field_sep SourceCode sourceCode concode_elem_sep ResourceType templateRef concode_elem_sep Documentation documentation concode_elem_sep String id concode_elem_sep String title concode_elem_sep Example example concode_field_sep void setTemplateRef concode_elem_sep String ...
int function ( int arg0 ) { return Integer . highestOneBit ( arg0 ) ; }
decrements the given number down to the closest power of two . if the argument is a power of two , it remains unchanged . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isPowerOf2 concode_elem_sep int murmurHash concode_elem_sep int roundUpToPowerOfTwo concode_elem_sep int log2strict concode_elem_s...
int function ( ) { return map . getMaxSize ( ) ; }
returns the maximum size of the cache . concode_field_sep ReadLock rlock concode_elem_sep BoundedLinkedHashMap<String,T> map concode_elem_sep WriteLock wlock concode_field_sep T add concode_elem_sep int size concode_elem_sep T get concode_elem_sep String toString
int function ( ) { return PeList . getTotalMips ( getPeList ( ) ) ; }
gets the total mips . concode_field_sep List<? extends Pe> peList concode_elem_sep RamProvisioner ramProvisioner concode_elem_sep List<? extends Vm> vmList concode_elem_sep List<Vm> vmsMigratingIn concode_elem_sep VmScheduler vmScheduler concode_elem_sep Datacenter datacenter concode_elem_sep int id concode_elem_sep lo...
ResponseEntity < CarteiraDTO > function ( @ PathVariable Long arg0 ) { log . debug ( "srini_string" , arg0 ) ; return Optional . ofNullable ( carteiraRepository . findOne ( arg0 ) ) . map ( carteiraMapper :: carteiraToCarteiraDTO ) . map ( carteiraDTO -> new ResponseEntity < > ( carteiraDTO , HttpStatus . OK ) ) . orEl...
get / carteiras / : id - > get the `` id '' carteira . concode_field_sep CarteiraMapper carteiraMapper concode_elem_sep Logger log concode_elem_sep CarteiraRepository carteiraRepository concode_field_sep ResponseEntity<List<CarteiraDTO>> getAll concode_elem_sep ResponseEntity<CarteiraDTO> create concode_elem_sep Respon...
void function ( ) { int loc0 = in . read ( buf , 0 , buf . length ) ; if ( loc0 == - 1 ) { throw new EOFException ( ) ; } pos = 0 ; end = loc0 ; }
reads new input data into the buffer . call only with pos == end or end == -1 , depending on the desired outcome if the function throws . concode_field_sep Charset charset concode_elem_sep byte[] buf concode_elem_sep InputStream in concode_elem_sep int pos concode_elem_sep byte LF concode_elem_sep byte CR concode_elem_...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
returns the osgi service identifier . concode_field_sep WordsService _service concode_field_sep void clearService concode_elem_sep java.util.List<java.lang.String> getSuggestions concode_elem_sep java.util.List<java.lang.String> checkSpelling concode_elem_sep java.lang.Object invokeMethod concode_elem_sep WordsService ...
void function ( String arg0 , boolean arg1 , String arg2 ) { cleanFilesystem ( new File ( arg0 ) , arg1 , new File ( arg2 ) ) ; }
removes vault files from the given directory , and also removes the given key store file . concode_field_sep String keyStoreType concode_elem_sep String salt concode_elem_sep String keyStorePassword concode_elem_sep String FILE_SEPARATOR concode_elem_sep int keySize concode_elem_sep String VAULT_DAT_FILE concode_elem_s...
void function ( ) { Layer loc0 = new MockLayer ( null ) ; mapContent . addLayer ( loc0 ) ; ReferencedEnvelope loc1 = mapContent . getMaxBounds ( ) ; assertNotNull ( loc1 ) ; assertTrue ( loc1 . isEmpty ( ) ) ; }
test defaultmapcontext handles layers that return null bounds . concode_field_sep ReferencedEnvelope WORLD concode_elem_sep ReferencedEnvelope SMALL_WORLD concode_elem_sep long LISTENER_TIMEOUT concode_elem_sep WaitingMapListener listener concode_elem_sep MapContent mapContent concode_elem_sep double TOL concode_field_...
String function ( ) { return title ; }
gets the value of the title property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String remoteSchema concode_elem_sep String type concode_elem_sep String...
void function ( ) { setValue ( "srini_string" ) ; }
resets the element to an empty string . concode_field_sep String image concode_elem_sep String IMAGE_ALERT concode_elem_sep boolean set concode_elem_sep String IMAGE_BLANK concode_elem_sep String value concode_elem_sep String IMAGE_PROGRESS concode_field_sep String getValue concode_elem_sep void setValue concode_elem_s...
Map < K , V > function ( ) { return new LinkedHashMap < K , V > ( map ) ; }
returns a copy of the current contents of the cache , ordered from least recently accessed to most recently accessed . concode_field_sep int evictionCount concode_elem_sep int putCount concode_elem_sep int hitCount concode_elem_sep int size concode_elem_sep int createCount concode_elem_sep int maxSize concode_elem_sep ...
Object function ( String arg0 ) { return attributeMap . get ( arg0 ) ; }
returns the value of the named attribute , or null if there is no attribute of that name . concode_field_sep String DEFAULT_CONTEXT_CLASSNAME concode_elem_sep ContextFactory theFactory concode_elem_sep String PROPERTIES_FILE concode_elem_sep Map<String,MetricsContext> contextMap concode_elem_sep Map<String,Object> attr...
void function ( Boolean arg0 ) { this . depositIndicator = arg0 ; }
sets the value of the depositindicator property . concode_field_sep String planType concode_elem_sep Boolean depositIndicator concode_elem_sep Boolean eipPlan concode_elem_sep Boolean earlyUpgrade concode_elem_sep BigInteger planContractTerm concode_elem_sep XMLGregorianCalendar subsidyDate concode_elem_sep long serial...
void function ( double arg0 ) { this . value2 = arg0 ; }
sets the y-value for the end of the line . concode_field_sep long serialVersionUID concode_elem_sep Comparable category2 concode_elem_sep Paint paint concode_elem_sep Stroke stroke concode_elem_sep double value2 concode_elem_sep double value1 concode_elem_sep Comparable category1 concode_field_sep Stroke getStroke conc...
boolean function ( ) { try { return Platform . isRunning ( ) ; } catch ( Throwable loc0 ) { } return false ; }
tests if eclipse is running . concode_field_sep IModel inModel concode_elem_sep IModel outModel concode_elem_sep Properties properties concode_field_sep String getMetamodelUri concode_elem_sep InputStream getLibraryAsStream concode_elem_sep boolean transform concode_elem_sep UpstreamModel transform concode_elem_sep voi...
int function ( ) { int loc0 , loc1 ; for ( loc0 = 0 , loc1 = 0 ; loc1 < fBytes . length ; loc0 ++ ) loc1 += ( 0xFF & ( fBytes [ loc1 ] + 1 ) ) ; return loc0 ; }
return the number of keys in the txt record . concode_field_sep byte kAttrSep concode_elem_sep byte[] fBytes concode_field_sep String getKey concode_elem_sep byte[] getValue concode_elem_sep byte[] getValue concode_elem_sep byte[] getRawBytes concode_elem_sep boolean contains concode_elem_sep void set concode_elem_sep ...
String function ( String arg0 ) { return replacementMap . get ( arg0 ) ; }
get the replacement for a metacharacter . concode_field_sep Map<String,String> replacementMap concode_elem_sep BitSet metaCharacterSet concode_field_sep void addMeta concode_elem_sep boolean isMeta
void function ( HsqlProperties arg0 ) { if ( arg0 == null ) { return ; } String loc0 = arg0 . getProperty ( SC_KEY_DATABASE ) ; if ( loc0 != null ) { arg0 . setProperty ( SC_KEY_DATABASE + "srini_string" , loc0 ) ; } }
translates the legacy default database form : database = ... to the 1.7.2 form : database .0 = ... concode_field_sep PlaceHolder placeHolder concode_field_sep void translateDefaultNoSystemExitProperty concode_elem_sep int getDefaultPort concode_elem_sep String[] listLocalInetAddressNames concode_elem_sep void translate...
void function ( int arg0 ) { ( ( ViewGroup . MarginLayoutParams ) mBannerView . getLayoutParams ( ) ) . topMargin = arg0 ; mBannerView . requestLayout ( ) ; }
set the y position of the banner . public , but should only be used by animators . concode_field_sep int ANIMATION_DURATION concode_elem_sep boolean mShown concode_elem_sep Animator mLastAnimator concode_elem_sep TextView mBannerView concode_elem_sep TimeInterpolator INTERPOLATOR concode_elem_sep String PROP_SET_BANNER...
ScheduleUriEnum function ( Uri arg0 ) { final int loc0 = mUriMatcher . match ( arg0 ) ; try { return matchCode ( loc0 ) ; } catch ( UnsupportedOperationException loc1 ) { throw new UnsupportedOperationException ( "srini_string" + arg0 ) ; } }
matches a uri to a scheduleurienum . concode_field_sep SparseArray<ScheduleUriEnum> mEnumsMap concode_elem_sep UriMatcher mUriMatcher concode_field_sep void buildEnumsMap concode_elem_sep ScheduleUriEnum matchCode concode_elem_sep void buildUriMatcher
TreeNode function ( String arg0 ) { if ( children == null ) return ( null ) ; Iterator loc0 = children . iterator ( ) ; while ( loc0 . hasNext ( ) ) { TreeNode loc1 = ( TreeNode ) loc0 . next ( ) ; if ( arg0 . equals ( loc1 . getName ( ) ) ) return ( loc1 ) ; } return ( null ) ; }
return the first child node of this node with the specified name , if there is one ; otherwise , return null . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep String findAttribute concod...
void function ( final PeerNode arg0 ) { synchronized ( arg0 ) { arg0 . setLastFailedConnect ( ) ; } }
acts upon a failure of the given node . sets the node 's last failed connect time stamp . concode_field_sep List<PeerNode> availableRemoteNodes concode_field_sep void availableNodeRemoved concode_elem_sep void availableNodesReset concode_elem_sep void nodeConnectSuccess concode_elem_sep void nodeFailReset concode_elem_...
String function ( ) { throw new AbstractMethodError ( ) ; }
gets the name of the instance field being stored . this value can be null for the mapping that stores element values of a collection . concode_field_sep PlaceHolder placeHolder concode_field_sep void populate concode_elem_sep Object extractValueFrom concode_elem_sep void query concode_elem_sep StringBuilder defineConst...
void function ( String arg0 ) { this . prefix = sanitize ( arg0 ) ; }
sets the prefix to use when converting to and from values that do n't have mnemonics . concode_field_sep boolean numericok concode_elem_sep HashMap strings concode_elem_sep int max concode_elem_sep int CASE_UPPER concode_elem_sep String prefix concode_elem_sep HashMap values concode_elem_sep String description concode_...
Long function ( ) { return id ; }
getters and setters concode_field_sep String childIds concode_elem_sep String directChildIds concode_elem_sep String directParentIds concode_elem_sep String parentIds concode_elem_sep Long id concode_field_sep String getDirectChildIds concode_elem_sep String getDirectParentIds concode_elem_sep void setChildIds concode_...
void function ( ) { buffer = null ; bufline = null ; bufcolumn = null ; }
reset buffer when finished . concode_field_sep int bufpos concode_elem_sep boolean prevCharIsLF concode_elem_sep int bufsize concode_elem_sep int available concode_elem_sep int tabSize concode_elem_sep java.io.Reader inputStream concode_elem_sep int line concode_elem_sep boolean staticFlag concode_elem_sep int bufcolum...
List < String > function ( ) { if ( sqref == null ) { sqref = new ArrayList < String > ( ) ; } return this . sqref ; }
gets the value of the sqref property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the sqref property . for example , to add a new item , do as fol...