code
stringlengths
20
663
nl
stringlengths
68
7.19k
void function ( java . lang . String arg0 ) { this . teclaPulsada = arg0 ; }
sets the teclapulsada value for this ctheader . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String teclaPulsada concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String usuario concode_field_sep org.apache.axi...
long function ( Blob arg0 , long arg1 ) { if ( ! isInLimits ( Integer . MAX_VALUE , 0 , arg0 . length ( ) ) ) { throw Util . outOfRangeArgument ( ) ; } byte [ ] loc0 = arg0 . getBytes ( 1 , ( int ) arg0 . length ( ) ) ; return position ( loc0 , arg1 ) ; }
retrieves the byte position in the blob value designated by this blob object at which pattern begins . concode_field_sep BlobDataID blob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep int setBytes concode_elem_sep int setBytes concode_elem_sep void truncate concode_elem_se...
Prototype function ( Prototype arg0 ) { synchronized ( internTable ) { String loc0 = arg0 . getDescriptor ( ) ; Prototype loc1 = internTable . get ( loc0 ) ; if ( loc1 != null ) { return loc1 ; } internTable . put ( loc0 , arg0 ) ; return arg0 ; } }
puts the given instance in the intern table if it 's not already there . if a conflicting value is already in the table , then leave it . return the interned value . concode_field_sep StdTypeList parameterTypes concode_elem_sep String descriptor concode_elem_sep StdTypeList parameterFrameTypes concode_elem_sep Type ret...
CertPathValidator function ( String arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } Engine . SpiAndProvider loc0 = ENGINE . getInstance ( arg0 , null ) ; return new CertPathValidator ( ( CertPathValidatorSpi ) loc0 . spi , loc0 . provider , arg0 ) ; }
returns a new certification path validator for the specified algorithm . concode_field_sep String SERVICE concode_elem_sep String DEFAULTPROPERTY concode_elem_sep Engine ENGINE concode_elem_sep String PROPERTYNAME concode_elem_sep Provider provider concode_elem_sep CertPathValidatorSpi spiImpl concode_elem_sep String a...
InvocationBuilder function ( boolean arg0 ) { this . resultDeserialized = arg0 ; return this ; }
sets the automatic deserialized option for the result . concode_field_sep int DEFAULT_REPLICA_INDEX concode_elem_sep long callTimeout concode_elem_sep Operation op concode_elem_sep ExecutionCallback<Object> executionCallback concode_elem_sep int replicaIndex concode_elem_sep long DEFAULT_CALL_TIMEOUT concode_elem_sep i...
void function ( int arg0 ) { this . maxPoolSize = arg0 ; }
set the maximum thread pool size of the core render service . the default is 15 . this number will need to be adjusted based on the characteristics of the application . note that increasing the number of threads past a certain number based on os , jvm , etc can actually decrease performance as thread context switching ...
void function ( Canvas arg0 ) { Paint loc0 = new Paint ( ) ; loc0 . setColor ( color ) ; arg0 . drawCircle ( x , y , size , loc0 ) ; }
draws the target concode_field_sep int size concode_elem_sep int color concode_elem_sep int x concode_elem_sep Random rand concode_elem_sep int y concode_field_sep int getX concode_elem_sep int getSize concode_elem_sep int getY concode_elem_sep void setColor
Path function ( ) { if ( sysDir == null ) { sysDir = new Path ( client . getSystemDir ( ) ) ; } return sysDir ; }
grab the jobtracker system directory path where job-specific files will be placed . concode_field_sep Path sysDir concode_elem_sep Path jobHistoryDir concode_elem_sep ClientProtocolProvider clientProtocolProvider concode_elem_sep UserGroupInformation ugi concode_elem_sep Log LOG concode_elem_sep ServiceLoader<ClientPro...
boolean function ( ) { return ( triggers . length == 0 ) ; }
returns whether or not this trigger sequence is empty . concode_field_sep int HASH_FACTOR concode_elem_sep int HASH_INITIAL concode_elem_sep int hashCode concode_elem_sep int HASH_CODE_NOT_COMPUTED concode_elem_sep Trigger[] triggers concode_field_sep Trigger[] getTriggers concode_elem_sep int hashCode concode_elem_sep...
void function ( View arg0 , View arg1 , int arg2 , int arg3 ) { int [ ] loc0 = new int [ 2 ] ; arg1 . getLocationOnScreen ( loc0 ) ; int [ ] loc1 = new int [ 2 ] ; arg0 . getLocationOnScreen ( loc1 ) ; assertEquals ( "srini_string" , arg2 , loc0 [ 0 ] - loc1 [ 0 ] ) ; assertEquals ( "srini_string" , arg3 , loc0 [ 1 ] -...
assert that a view has a particular x and y position on the visible screen . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertHorizontalCenterAligned concode_elem_sep void assertBaselineAligned concode_elem_sep void assertGroupNotContains concode_elem_sep void assertLeftAligned concode_elem_sep vo...
Vector2 function ( float arg0 , float arg1 ) { this . x += arg0 ; this . y += arg1 ; return this ; }
adds the given components to this vector concode_field_sep long serialVersionUID concode_elem_sep Vector2 tmp concode_elem_sep float x concode_elem_sep float y concode_elem_sep Vector2 Zero concode_elem_sep Vector2 X concode_elem_sep Vector2 Y concode_field_sep Vector2 sub concode_elem_sep Vector2 sub concode_elem_sep ...
void function ( String arg0 , List < String > arg1 , boolean arg2 ) { for ( int loc0 = 0 ; loc0 < arg0 . length ( ) ; loc0 ++ ) { StringBuilder loc1 = new StringBuilder ( arg0 ) ; loc1 . deleteCharAt ( loc0 ) ; if ( ! arg1 . contains ( loc1 . toString ( ) ) && ( ! arg2 || dict . isWord ( loc1 . toString ( ) ) ) && ! ar...
add to the currentlist strings that are one character deletion away from the input string . concode_field_sep Dictionary dict concode_elem_sep int THRESHOLD concode_field_sep void insertions concode_elem_sep void subsitution concode_elem_sep List<String> suggestions concode_elem_sep void main concode_elem_sep List<Stri...
VectorClock function ( long arg0 , VectorClock arg1 , int ... arg2 ) { for ( int loc0 : arg2 ) arg1 = arg1 . incremented ( ( short ) loc0 , arg0 ) ; return arg1 ; }
record events for the given sequence of nodes concode_field_sep Random SEEDED_RANDOM concode_elem_sep String LETTERS concode_elem_sep String CHARACTERS concode_elem_sep String DIGITS concode_elem_sep Random UNSEEDED_RANDOM concode_field_sep String randomString concode_elem_sep VectorClock increment concode_elem_sep Gre...
int function ( ) { int loc0 = 0 ; for ( int [ ] loc1 : matrix ) { for ( int loc2 : loc1 ) { loc0 = loc0 + loc2 ; } } return loc0 ; }
method to return the total using a nested for-each loop concode_field_sep int[][] matrix concode_field_sep void print concode_elem_sep void setMatrix concode_elem_sep int getTotal concode_elem_sep void fillPattern1 concode_elem_sep void fillCount
double function ( String arg0 ) { return ( ( Double ) get ( arg0 ) ) . doubleValue ( ) ; }
convenience method to avoid common casts . concode_field_sep LazyDynaMap policyProperties concode_field_sep BigInteger getBigInteger concode_elem_sep Object getObject concode_elem_sep byte getByte concode_elem_sep void set concode_elem_sep Date getTime concode_elem_sep BigDecimal getBigDecimal concode_elem_sep float ge...
R function ( R arg0 ) { int loc0 = n - arg0 . n ; int [ ] loc1 = subtractValues ( values , arg0 . values ) ; if ( isValidValues ( loc0 , loc1 ) ) return new R ( loc0 , loc1 ) ; else return null ; }
attempts to subtract one r from another . returns an optional as it can fail if it would result in negative size elements . concode_field_sep int[] values concode_elem_sep int sum concode_elem_sep int dims concode_elem_sep int n concode_field_sep double getProbabilityOfSelecting concode_elem_sep int getBoxIndex concode...
void function ( final long arg0 ) { mpf . set_maxsize ( arg0 ) ; }
set the maximum size for the file backing the database . attempts to allocate new pages in the file after the limit has been reached will fail . this method may be called at any time during the life of the application . concode_field_sep DbMpoolFile mpf concode_field_sep void setNoFile concode_elem_sep void setUnlink c...
int function ( ) { return revalidationQueueSize ; }
returns the current maximum queue size for background revalidations . concode_field_sep int DEFAULT_ASYNCHRONOUS_WORKERS_MAX concode_elem_sep float heuristicCoefficient concode_elem_sep long heuristicDefaultLifetime concode_elem_sep float DEFAULT_HEURISTIC_COEFFICIENT concode_elem_sep int asynchronousWorkersMax concode...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getConfigurationItems ( ) != null ) loc0 . append ( "srini_string" + getConfigurationItems ( ) + "srini_string" ) ; if ( getNextToken ( ) != null ) loc0 . append ( "srini_string" + getNextToken ( ) ) ; loc0 . appe...
returns a string representation of this object ; useful for testing and debugging . concode_field_sep com.amazonaws.internal.SdkInternalList<ConfigurationItem> configurationItems concode_elem_sep String nextToken concode_field_sep java.util.List<ConfigurationItem> getConfigurationItems concode_elem_sep void setNextToke...
boolean function ( final K arg0 ) { return mInternalMap . containsKey ( arg0 ) ; }
checks whether the map contains the specified key . concode_field_sep Map<K,List<V>> mInternalMap concode_elem_sep long serialVersionUID concode_field_sep Map<String,V> getUniqueMap concode_elem_sep String addUniqueEntry concode_elem_sep List<V> values concode_elem_sep void clear concode_elem_sep boolean isEmpty concod...
void function ( Throwable arg0 ) { synchronized ( this . mutex ) { this . state = State . FAILURE ; this . result = arg0 ; while ( ! this . failureCallbacks . isEmpty ( ) ) { this . failureCallbacks . poll ( ) . onFailure ( arg0 ) ; } } }
trigger a listenablefuturecallback #onfailure throwable call on alladded callbacks with the given throwable . concode_field_sep Object mutex concode_elem_sep Queue<SuccessCallback<? super T>> successCallbacks concode_elem_sep Queue<FailureCallback> failureCallbacks concode_elem_sep State state concode_elem_sep Object r...
void function ( PageContentBean arg0 ) { if ( arg0 != null && arg0 . isPageContent ( ) ) { this . selectedPanel = arg0 ; } }
sets the selected panel to the specified panel . concode_field_sep PageContentBean selectedPanel concode_field_sep PageContentBean getSelectedPanel
JGAPRequest [ ] function ( JGAPRequest arg0 ) { final int loc0 = 20 ; JGAPRequest [ ] loc1 = new JGAPRequest [ loc0 ] ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { Configuration loc3 = getConfiguration ( ) . newInstance ( loc2 + "srini_string" , "srini_string" + loc2 ) ; loc1 [ loc2 ] = ( JGAPRequest ) arg0 . newIns...
creates 20 single requests out of one . the single requests are each processed by one worker at a time . concode_field_sep String CVS_REVISION concode_elem_sep Configuration m_config concode_field_sep Configuration getConfiguration
boolean function ( float arg0 , float arg1 ) { return arg0 >= minX && arg0 <= maxX && arg1 >= minY && arg1 <= maxY ; }
returns true if the axis aligned bounding box contains the point . concode_field_sep float minY concode_elem_sep float minX concode_elem_sep float maxY concode_elem_sep float maxX concode_elem_sep Pool<FloatArray> polygonPool concode_elem_sep Array<BoundingBoxAttachment> boundingBoxes concode_elem_sep Array<FloatArray>...
WebElement function ( By arg0 , int arg1 , WebElement arg2 ) { return Locator . findElementWithTimeout ( arg0 , arg1 , arg2 ) ; }
finds the first webelement using the given method , with a timeout . concode_field_sep WebDriver driver concode_elem_sep WebElement userServicesForm concode_field_sep T getWebFragment concode_elem_sep T getWebFragment concode_elem_sep List<WebElement> findElementsWithTimeout concode_elem_sep T asPage concode_elem_sep b...
Scope function ( ) { return createInterfaceScope ( "srini_string" ) ; }
interface abc : operation paramop param1 : integer , param2 : boolean : string operation stringop in event voidevent in event intevent : integer var intvar : integer var boolvar : boolean concode_field_sep ILinker linker concode_elem_sep StextResourceFactory factory concode_elem_sep IParser parser concode_field_sep Ste...
boolean function ( ) { return saveRawResponse ; }
returns status to save the raw response for profile and contacts . default value is false . concode_field_sep List<String> pluginsScopes concode_elem_sep String requestTokenUrl concode_elem_sep String _consumerSecret concode_elem_sep Class<?> providerImplClass concode_elem_sep boolean saveRawResponse concode_elem_sep S...
void function ( String arg0 ) { this . name = arg0 ; }
sets the value of the name property . concode_field_sep String loc concode_elem_sep String providerID concode_elem_sep String name concode_field_sep void setProviderID concode_elem_sep String getLoc concode_elem_sep String getName concode_elem_sep String getProviderID concode_elem_sep void setLoc
void function ( JsonWriter arg0 , JobState arg1 ) { arg1 . toJson ( arg0 , this . keepConfig ) ; }
write a single jobstate to json document . concode_field_sep boolean keepConfig concode_elem_sep StateStore<? extends JobState> jobStateStore concode_elem_sep String JOB_STATE_STORE_TABLE_SUFFIX concode_elem_sep Logger LOGGER concode_field_sep void convertAll concode_elem_sep void writeJobStates concode_elem_sep void m...
boolean function ( StreetEdge arg0 ) { if ( canBeTraversedInternal ( arg0 ) ) { return true ; } else if ( hasBikeWalkingRequirements ( ) && bikeWalkingRequirements . canBeTraversedInternal ( arg0 ) ) { return true ; } return false ; }
returns true if this streetedge can be traversed . also checks if we can walk our bike on this streetedge . concode_field_sep double maxWheelchairSlope concode_elem_sep TraverseModeSet modes concode_elem_sep TraversalRequirements bikeWalkingRequirements concode_elem_sep double maxWalkDistance concode_elem_sep boolean w...
ArrayList < PointND > function ( ArrayList < PointND > arg0 , Transform arg1 ) { ArrayList < PointND > loc0 = new ArrayList < PointND > ( ) ; for ( int loc1 = 0 ; loc1 < arg0 . size ( ) ; loc1 ++ ) { PointND loc2 = arg1 . transform ( arg0 . get ( loc1 ) ) ; loc0 . add ( loc2 ) ; } return loc0 ; }
transforms a list of given points and returns them as new instances in a new list of points . concode_field_sep PlaceHolder placeHolder concode_field_sep PointND getStandardDeviation concode_elem_sep ArrayList<PointND> extractClusterCenter concode_elem_sep PointND getGeometricCenter concode_elem_sep ArrayList<PointND> ...
void function ( int arg0 , int arg1 ) { int [ ] loc0 = new int [ arg0 ] ; int [ ] loc1 = new int [ arg1 ] ; hashTable = loc0 ; linkTable = loc1 ; resetTables ( ) ; }
reset the structure with a new size as empty . concode_field_sep int[] hashTable concode_elem_sep boolean fixedSize concode_elem_sep int newNodePointer concode_elem_sep int elementCount concode_elem_sep int[] linkTable concode_elem_sep int reclaimedNodePointer concode_field_sep void resetTables concode_elem_sep int get...
String function ( ) { if ( space == null ) { return "srini_string" ; } else { return space ; } }
gets the value of the space property . concode_field_sep DeletedFlagType deleted concode_elem_sep BigInteger bytes concode_elem_sep String id concode_elem_sep String value concode_elem_sep String space concode_field_sep void setSpace concode_elem_sep void setBytes concode_elem_sep String getValue concode_elem_sep Delet...
void function ( String arg0 ) { this . document = arg0 ; }
sets the value of the document property for this object . constraints : length : 0 - 102400 concode_field_sep String document concode_elem_sep String name concode_elem_sep String comment concode_elem_sep String id concode_elem_sep String type concode_elem_sep Integer version concode_field_sep Integer getVersion concode...
int function ( ) { int loc0 = next . invoke ( msgs [ 0 ] , this ) ; return loc0 ; }
invoke a java hook . the xenv is the representation of the current execution environment the jni_env_t concode_field_sep JkHandler next concode_elem_sep WorkerEnv wEnv concode_elem_sep int JK_STATUS_HEAD concode_elem_sep Object notes[] concode_elem_sep int JK_STATUS_CLOSED concode_elem_sep long xEnvP concode_elem_sep l...
List < LdapSchemaTemplateDTO > function ( ) { return data ; }
get the list of ldap schema templates . concode_field_sep List<LdapSchemaTemplateDTO> data concode_field_sep void setData
int function ( ) { return multicastPort ; }
gets the multicast port . concode_field_sep boolean DEFAULT_LOOPBACK_MODE_ENABLED concode_elem_sep String multicastGroup concode_elem_sep int multicastTimeToLive concode_elem_sep Set<String> trustedInterfaces concode_elem_sep boolean DEFAULT_ENABLED concode_elem_sep int DEFAULT_MULTICAST_TTL concode_elem_sep int DEFAUL...
T function ( final Date arg0 ) { this . creationDate = arg0 ; return ( T ) this ; }
add the `` creation-date '' parameter . concode_field_sep String fileName concode_elem_sep Date modificationDate concode_elem_sep long size concode_elem_sep Date readDate concode_elem_sep String type concode_elem_sep Date creationDate concode_elem_sep Map<String,String> parameters concode_elem_sep long size concode_fie...
long function ( ) { return id ; }
returns id this endpointid on a jvm . concode_field_sep JVMId jvmId concode_elem_sep int COUNTER_MODULO concode_elem_sep String name concode_elem_sep long[] ENDPOINT_COUNTER concode_elem_sep long serialVersionUID concode_elem_sep long id concode_field_sep String getName concode_elem_sep EndpointId readEndpointId concod...
void function ( @ NotNull DefaultActionGroup arg0 , @ NotNull DefaultActionGroup arg1 , @ NotNull DefaultActionGroup arg2 ) { }
override this method to provide additional actions in ` debug ' tool window concode_field_sep XDebugSession mySession concode_elem_sep ProcessHandler myProcessHandler concode_field_sep XSmartStepIntoHandler<?> getSmartStepIntoHandler concode_elem_sep ProcessHandler getProcessHandler concode_elem_sep boolean isValuesCus...
Object function ( Object arg0 ) { reporter . updateCounter ++ ; if ( arg0 == null ) { nullKeyExists = false ; nullKeyMapping = null ; } return table . remove ( arg0 ) ; }
removes a mapping from this map . the key and its corresponding element are taken out of the map . concode_field_sep boolean nullKeyExists concode_elem_sep Reporter reporter concode_elem_sep int updateCounter concode_elem_sep float DEFAULT_LOAD_FACTOR concode_elem_sep Object nullKeyMapping concode_elem_sep int initCoun...
long function ( ) { return _portletItem . getPortletItemId ( ) ; }
returns the portlet item id of this portlet item . concode_field_sep PortletItem _portletItem concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName...
void function ( String arg0 ) { log . error ( arg0 ) ; throw new SecureVaultException ( arg0 ) ; }
helper methods for handle errors . concode_field_sep Log log concode_field_sep String getProperty concode_elem_sep T getProperty concode_elem_sep Properties loadProperties concode_elem_sep byte[] asBytes
void function ( Effect arg0 ) { this . effectsStore . get ( KEY_WRITE_EFFECTS ) . addEffect ( arg0 ) ; }
adds a write effect to the storage . concode_field_sep String KEY_WRITE_EFFECTS concode_elem_sep Map<ILevel,List<Effect>> effects concode_elem_sep Map<String,EffectTypeStore> effectsStore concode_field_sep Set<ILevel> getWriteEffectSet concode_elem_sep List<Effect> getEffects concode_elem_sep List<Effect> getWriteEffec...
String function ( final StatusLine arg0 , LineFormatter arg1 ) { if ( arg1 == null ) arg1 = BasicLineFormatter . DEFAULT ; return arg1 . formatStatusLine ( null , arg0 ) . toString ( ) ; }
formats a status line . concode_field_sep BasicLineFormatter DEFAULT concode_field_sep String formatHeader concode_elem_sep CharArrayBuffer formatHeader concode_elem_sep int estimateProtocolVersionLen concode_elem_sep CharArrayBuffer initBuffer concode_elem_sep String formatProtocolVersion concode_elem_sep String forma...
T function ( JSONObject arg0 ) { return fromJson ( arg0 . toString ( ) ) ; }
transofrma un objeto en formato json a un objeto de clase t. concode_field_sep Gson gson concode_elem_sep Class<?> clazz concode_field_sep String toJson concode_elem_sep List<T> parseArray
TypeToken < ? > function ( ) { return type ; }
returns the type of the parameter . concode_field_sep ImmutableList<Annotation> annotations concode_elem_sep int position concode_elem_sep TypeToken<?> type concode_elem_sep Invokable<?,?> declaration concode_field_sep Invokable<?,?> getDeclaringInvokable concode_elem_sep A[] getAnnotationsByType concode_elem_sep boole...
Builder function ( int arg0 ) { mNotification . arg0 = arg0 ; if ( ( arg0 & Notification . DEFAULT_LIGHTS ) != 0 ) { mNotification . flags |= Notification . FLAG_SHOW_LIGHTS ; } return this ; }
set the default notification options that will be used . the value should be one or more of the following fields combined with bitwise-or : notification #default_sound , notification #default_vibrate , notification #default_lights . for all default values , use notification #default_all . concode_field_sep Notification...
List < AnyType > function ( ) { if ( unsignedDataObjectProperty == null ) { unsignedDataObjectProperty = new ArrayList < AnyType > ( ) ; } return this . unsignedDataObjectProperty ; }
gets the value of the unsigneddataobjectproperty 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 unsigneddataobjectproperty property . f...
boolean function ( ) { if ( repeating == null ) { return false ; } else { return repeating ; } }
gets the value of the repeating property . concode_field_sep String _default concode_elem_sep Link link concode_elem_sep Map<QName,String> otherAttributes concode_elem_sep QName type concode_elem_sep List<Object> any concode_elem_sep Boolean required concode_elem_sep String path concode_elem_sep Boolean repeating conco...
String function ( ) { return this . description ; }
the description for documentation purposes concode_field_sep ModelEntity modelEntity concode_elem_sep String description concode_field_sep ModelEntity getModelEntity
void function ( ) { out . flush ( ) ; }
flush the output stream . concode_field_sep String charsetName concode_elem_sep Locale US_LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_e...
void function ( final int arg0 , final byte [ ] arg1 ) { encodeBigEndian ( arg0 , arg1 , 0 ) ; }
encode integer as a series of 4 bytes into buf starting at position 0 within that buffer . concode_field_sep PlaceHolder placeHolder concode_field_sep int decodeBigEndian concode_elem_sep int decodeBigEndian concode_elem_sep byte setBit concode_elem_sep short setBit concode_elem_sep int setBit concode_elem_sep long set...
void function ( double arg0 ) { balance = balance + arg0 ; }
makes a deposit into this account . concode_field_sep double balance concode_field_sep void monthEnd concode_elem_sep double getBalance concode_elem_sep void withdraw
InstanceHealthSummary function ( Integer arg0 ) { setPending ( arg0 ) ; return this ; }
grey . an operation is in progress on an instance within the command timeout . concode_field_sep Integer pending concode_elem_sep Integer severe concode_elem_sep Integer warning concode_elem_sep Integer noData concode_elem_sep Integer ok concode_elem_sep Integer degraded concode_elem_sep Integer unknown concode_elem_se...
double [ ] [ ] function ( ) { return projection ; }
returns the projection matrix . when gha converges , the column of projection matrix are the first p eigenvectors of covariance matrix , ordered by decreasing eigenvalues . the dimension reduced data can be obtained by y = w x. concode_field_sep int p concode_elem_sep double r concode_elem_sep double[] wy concode_elem_...
String function ( ) { TimeZone loc0 = TimeZone . getTimeZone ( id ) ; Calendar loc1 = Calendar . getInstance ( loc0 ) ; if ( loc0 . inDaylightTime ( loc1 . getTime ( ) ) ) { return "srini_string" ; } return "srini_string" ; }
gets the state of daylight time in this time zone . 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_sep boolean isRelevantCompone...
long function ( TimeZone arg0 ) { Calendar loc0 = Calendar . getInstance ( arg0 ) ; return getFirstMillisecond ( loc0 ) ; }
returns the first millisecond of the time period , evaluated within a specific time zone . concode_field_sep TimeZone DEFAULT_TIME_ZONE concode_elem_sep Calendar WORKING_CALENDAR concode_field_sep RegularTimePeriod next concode_elem_sep RegularTimePeriod createInstance concode_elem_sep long getLastMillisecond concode_e...
void function ( boolean arg0 ) { this . serializeNulls = arg0 ; }
whether to use the gsonbuilder #serializenulls option when writingjson . this is a shortcut for setting up a gson as follows : new gsonbuilder . serializenulls . create ; concode_field_sep String dateFormatPattern concode_elem_sep boolean disableHtmlEscaping concode_elem_sep boolean prettyPrinting concode_elem_sep Gson...
NetworkConfig function ( int arg0 ) { this . port = arg0 ; return this ; }
sets the port the hazelcast member will try to bind on . concode_field_sep int port concode_elem_sep Collection<Integer> outboundPorts concode_elem_sep SSLConfig sslConfig concode_elem_sep SymmetricEncryptionConfig symmetricEncryptionConfig concode_elem_sep int PORT_AUTO_INCREMENT concode_elem_sep String publicAddress ...
String function ( ) { return this . getPrefix ( ) + this . getNick ( ) ; }
returns the nick of the user complete with their prefix if they have one , e.g. '' @dave '' . concode_field_sep String _prefix concode_elem_sep String _lowerNick concode_elem_sep String _nick concode_field_sep String getPrefix concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals...
Object function ( int arg0 , int arg1 ) { return client . sendRpcAndWait ( SERVICE , "srini_string" , arg0 , arg1 ) ; }
select a skin for the target champion . concode_field_sep RtmpClient client concode_elem_sep String SERVICE concode_field_sep Object observeGame concode_elem_sep Object observeGame concode_elem_sep Object selectSpells concode_elem_sep Object banChampion concode_elem_sep Game createPracticeGame concode_elem_sep boolean ...
java . lang . String function ( ) { return _memberRequest . getUserUuid ( ) ; }
returns the user uuid of this member request . concode_field_sep MemberRequest _memberRequest 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 conco...
Clouds function ( ) { return clouds ; }
returns clouds data . concode_field_sep Atmosphere atmosphere concode_elem_sep Temperature temperature concode_elem_sep Precipitation precipitation concode_elem_sep String VIRTUAL_TEMP_MINMAX concode_elem_sep Wind wind concode_elem_sep String[] VIRTUAL_PROPERTIES concode_elem_sep String error concode_elem_sep Station s...
JAXBElement < String > function ( ) { return id ; }
gets the value of the id property . concode_field_sep JAXBElement<String> opstenantname concode_elem_sep JAXBElement<String> tokenId concode_elem_sep JAXBElement<String> ip concode_elem_sep JAXBElement<String> tenantId concode_elem_sep JAXBElement<String> opsusername concode_elem_sep JAXBElement<String> id concode_elem...
Criteria function ( ) { return lastBestProviderCriteria ; }
non-android accessor . gets the criteria value used in the last call to #getbestprovider android.location.criteria , boolean concode_field_sep ArrayList<Listener> gpsStatusListeners concode_elem_sep Map<String,Location> lastKnownLocations concode_elem_sep boolean lastBestProviderEnabledOnly concode_elem_sep Criteria la...
String function ( ) { return tableName ; }
gettablename concode_field_sep List<String> colName concode_elem_sep List<String> colValue concode_elem_sep int priority concode_elem_sep String tableName concode_field_sep String colValueToString concode_elem_sep String lstToString concode_elem_sep int getPriority concode_elem_sep ITableInfo addColValue concode_elem_s...
long function ( int arg0 , long arg1 ) { while ( true ) { long loc0 = array [ arg0 ] ; if ( compareAndSetRaw ( arg0 , loc0 , arg1 ) ) return loc0 ; } }
atomically sets the element at position i to the given valueand returns the old value . concode_field_sep long[] array concode_elem_sep long serialVersionUID concode_field_sep long getAndIncrement concode_elem_sep void set concode_elem_sep long incrementAndGet concode_elem_sep boolean weakCompareAndSet concode_elem_sep...
MultiPolygonBuilder function ( ) { return new MultiPolygonBuilder ( ) ; }
create a new collection of polygons concode_field_sep PlaceHolder placeHolder concode_field_sep PointBuilder newPoint concode_elem_sep PointBuilder newPoint concode_elem_sep MultiLineStringBuilder newMultiLinestring concode_elem_sep CircleBuilder newCircleBuilder concode_elem_sep LineStringBuilder newLineString concode...
double function ( ) { double loc0 = 0 ; for ( Transaction loc1 : this . transactions ) { loc0 += loc1 . getAmount ( ) ; } return loc0 ; }
get the balance of this account by adding the amounts of the transactions . concode_field_sep String name concode_elem_sep User holder concode_elem_sep ArrayList<Transaction> transactions concode_elem_sep String uuid concode_field_sep String getUUID concode_elem_sep void printTransHistory concode_elem_sep void addTrans...
ResourceType function ( ) { return new ResourceType ( ) ; }
create an instance of resourcetype concode_field_sep QName _Action_QNAME concode_elem_sep QName _AttributeValue_QNAME concode_elem_sep QName _ResourceContent_QNAME concode_elem_sep QName _Response_QNAME concode_elem_sep QName _StatusCode_QNAME concode_elem_sep QName _Request_QNAME concode_elem_sep QName _StatusDetail_Q...
void function ( String arg0 ) { this . syncState = arg0 ; }
sets the sync state . concode_field_sep boolean moreChangesAvailable concode_elem_sep List<TChange> changes concode_elem_sep String syncState concode_field_sep void add concode_elem_sep TChange getChangeAtIndex concode_elem_sep Iterator<TChange> iterator concode_elem_sep void setMoreChangesAvailable concode_elem_sep bo...
void function ( AssertionInfo arg0 , Throwable arg1 , String arg2 ) { checkNotNull ( arg2 , "srini_string" ) ; assertNotNull ( arg0 , arg1 ) ; if ( arg1 . getMessage ( ) != null && arg1 . getMessage ( ) . matches ( arg2 ) ) return ; throw failures . failure ( arg0 , shouldHaveMessageMatchingRegex ( arg1 , arg2 ) ) ; }
asserts that the message of the actual throwable matches with the given regular expression . concode_field_sep Throwables INSTANCE concode_elem_sep Failures failures concode_field_sep void assertHasCauseInstanceOf concode_elem_sep void assertHasMessageStartingWith concode_elem_sep Throwables instance concode_elem_sep v...
void function ( ) { for ( KernelExtension loc0 : kernelExtensions . keySet ( ) ) { loc0 . starting ( kernelExtensions . get ( loc0 ) ) ; } }
notifies the extensions that the kernel is starting concode_field_sep Multimap<KernelExtension<?>,Plugin> kernelExtensions concode_elem_sep ClassLoader contextClassLoader concode_elem_sep Collection<Plugin> fetchedPlugins concode_field_sep void fetchExtensions concode_elem_sep void stopped concode_elem_sep void stoppin...
SSLContext function ( ) { return sslContext ; }
returns a configured sslcontext . this context supports creating sslengine s and for the loaded truststore and keystore . an sslengine must be created for each connection . concode_field_sep boolean needClientAuth concode_elem_sep String[] enabledProtocols concode_elem_sep String tmfAlgorithm concode_elem_sep SSLContex...
boolean function ( State arg0 ) { switch ( arg0 ) { case main_region_Start : return stateVector [ 0 ] == State . main_region_Start ; case main_region_A : return stateVector [ 0 ] == State . main_region_A ; case main_region_B : return stateVector [ 0 ] == State . main_region_B ; default : return false ; } }
returns true if the given state is currently active otherwise false . concode_field_sep long number concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean reset concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep SCInterface getSCInterface...
boolean function ( ) { if ( elapsedCycles > 0 ) { this . elapsedCycles -- ; return true ; } return false ; }
checks to see if a cycle has elapsed for this clock yet . if so , the number of elapsed cycles will be decremented by one . concode_field_sep boolean isPaused concode_elem_sep float excessCycles concode_elem_sep float millisPerCycle concode_elem_sep int elapsedCycles concode_elem_sep long lastUpdate concode_field_sep b...
String function ( ) { return processorClass ; }
gets the value of the processorclass property . concode_field_sep String processorClass concode_elem_sep String dialect concode_elem_sep List<KeyValueType> property concode_field_sep void add concode_elem_sep void setDialect concode_elem_sep String getDialect concode_elem_sep List<KeyValueType> getProperty concode_elem...
String function ( ) { return mMimeType ; }
retrieves the mime type associated with this object . concode_field_sep HashMap<String,Object> mAttributes concode_elem_sep byte[] mData concode_elem_sep String mMimeType concode_elem_sep int mInfoType concode_field_sep Iterator<String> keyIterator concode_elem_sep Iterator<Object> iterator concode_elem_sep Object get ...
Scheduler function ( ) { return INSTANCE . newThreadScheduler ; }
creates and returns a scheduler that creates a new thread for each unit of work . unhandled errors will be delivered to the scheduler thread 's java.lang.thread.uncaughtexceptionhandler . concode_field_sep Scheduler computationScheduler concode_elem_sep Schedulers INSTANCE concode_elem_sep Scheduler ioScheduler concode...
void function ( int [ ] arg0 , T arg1 ) { values [ getTableAccessOffset ( arg0 ) ] = arg1 ; }
set a single value in the factor table . concode_field_sep T[] values concode_elem_sep int[] dimensions concode_field_sep int[] getDimensions concode_elem_sep Iterator<int[]> iterator concode_elem_sep Iterator<int[]> fastPassByReferenceIterator concode_elem_sep NDArray<T> cloneArray concode_elem_sep int combinatorialNe...
String function ( ) { return iceFacesId ; }
gets the icefaces id of this response . concode_field_sep long sequenceNumber concode_elem_sep String entityBody concode_elem_sep String viewNumber concode_elem_sep String iceFacesId concode_field_sep String getViewNumber concode_elem_sep long getSequenceNumber concode_elem_sep String getEntityBody concode_elem_sep boo...
Coord function ( int arg0 ) { return bins . get ( arg0 ) ; }
returns a particular histogram bin . concode_field_sep int nusedbins concode_elem_sep ArrayList<Coord> bins concode_elem_sep int nbins concode_elem_sep double x concode_elem_sep double y concode_elem_sep Random prng concode_field_sep void add concode_elem_sep ArrayList<DoubleWritable> serialize concode_elem_sep void al...
String function ( ) { return this . name ; }
returns a string representing the object . concode_field_sep SortOrder ASCENDING concode_elem_sep SortOrder DESCENDING concode_elem_sep long serialVersionUID concode_elem_sep String name concode_field_sep Object readResolve concode_elem_sep int hashCode concode_elem_sep boolean equals
String function ( ) { return this . getParams ( ) . httpString ( ) ; }
gets the generated query string portion of the endpoint url if applicable generated string will not include leading ? so that consuming code can decide whether to add this themselves since the generated query string may be being used in addition to an existing query string . concode_field_sep UpdateRequest request conc...
boolean function ( ) { return independent ; }
used when assigning clusters . concode_field_sep int RETAIN_ON_AMOUNT concode_elem_sep String[] outputs concode_elem_sep int cluster concode_elem_sep int clientId concode_elem_sep boolean independent concode_elem_sep String query concode_elem_sep String[] inputs concode_elem_sep int retainCriterion concode_elem_sep int...
String function ( Date arg0 , Date arg1 ) { if ( arg0 == null || arg1 == null || arg0 . getTime ( ) > arg1 . getTime ( ) ) { return "srini_string" ; } return getDuration ( ( arg1 . getTime ( ) - arg0 . getTime ( ) ) / 1000 ) ; }
calculates the duration between two dates and returns a string in the format hhh : mm : ss concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
long function ( ) { if ( failure != null ) { return - 1 ; } return response . getVersion ( ) ; }
the version of the action . concode_field_sep String STATUS_FIELD concode_elem_sep String _ID concode_elem_sep String _TYPE concode_elem_sep String STATUS concode_elem_sep String opType concode_elem_sep String ID_FIELD concode_elem_sep String index concode_elem_sep Throwable cause concode_elem_sep String type concode_e...
String function ( String arg0 ) { return null ; }
always return null concode_field_sep PlaceHolder placeHolder concode_field_sep URL getResource concode_elem_sep boolean handleSecurity
void function ( ) { final HelpFormatter loc0 = new HelpFormatter ( ) ; loc0 . printHelp ( "srini_string" + Main . class . getName ( ) + "srini_string" , OPTS ) ; System . exit ( 1 ) ; }
prints the usage information . concode_field_sep Options OPTS concode_field_sep void traverse concode_elem_sep Configuration loadConfig concode_elem_sep List<File> getFilesToProcess concode_elem_sep void main concode_elem_sep AuditListener createListener concode_elem_sep Checker createChecker concode_elem_sep Propertie...
int function ( ) { if ( globalMessageId < Constants . MESSAGE_ID_MAX ) { ++ globalMessageId ; } else globalMessageId = Constants . MESSAGE_ID_MIN ; return globalMessageId ; }
creates a new , global message id for a new coap message concode_field_sep BasicCoapChannelManager instance concode_elem_sep HashMap<Integer,SocketInformation> socketMap concode_elem_sep int globalMessageId concode_elem_sep Logger logger concode_elem_sep CoapSocketHandler socketHandler concode_elem_sep CoapServer serve...
String function ( ) { return "srini_string" + ToolManager . getCurrentPlacement ( ) . getContext ( ) ; }
returns context id / site/site id concode_field_sep String SHOW_ME concode_elem_sep String SET_HIDE_ALL_STRING concode_elem_sep String changeAllMsg concode_elem_sep Logger LOG concode_elem_sep String privacyStatus concode_elem_sep PrivacyManager privacyManager concode_elem_sep String checkboxText concode_elem_sep Selec...
byte [ ] function ( String arg0 ) { byte [ ] loc0 = new BigInteger ( "srini_string" + arg0 , 16 ) . toByteArray ( ) ; byte [ ] loc1 = new byte [ loc0 . length - 1 ] ; for ( int loc2 = 0 ; loc2 < loc1 . length ; loc2 ++ ) loc1 [ loc2 ] = loc0 [ loc2 + 1 ] ; return loc1 ; }
this method converts hex string to byte concode_field_sep String HMAC_SHA512 concode_elem_sep int lookAheadWindow concode_elem_sep String HMAC_SHA256 concode_elem_sep int DEFAULT_NUMBER_DIGITS concode_elem_sep String HMAC_SHA1 concode_elem_sep int[] DIGITS_POWER concode_elem_sep String DEFAULT_ALGORITHM concode_elem_se...
NodoSimple < T > function ( ) { return siguiente ; }
retorna nodo siguiente del nodo sobre el que se invoca concode_field_sep T contenido concode_elem_sep NodoSimple<T> siguiente concode_field_sep void setSiguiente concode_elem_sep T getContenido concode_elem_sep void setContenido
int function ( ) { return uid == null ? 0 : uid . hashCode ( ) ; }
returns the hash code of the activator . concode_field_sep long serialVersionUID concode_elem_sep UID uid concode_elem_sep Activator activator concode_elem_sep ActivationGroup group concode_field_sep void writeObject concode_elem_sep boolean equals concode_elem_sep Remote activate concode_elem_sep String toString conco...
JSONObject function ( JSONArray arg0 , JSONTokener arg1 ) { JSONArray loc0 = rowToJSONArray ( arg1 ) ; return loc0 != null ? loc0 . toJSONObject ( arg0 ) : null ; }
produce a jsonobject from a row of comma delimited text , using a parallel jsonarray of strings to provides the names of the elements . concode_field_sep PlaceHolder placeHolder concode_field_sep String getValue concode_elem_sep JSONArray toJSONArray concode_elem_sep JSONArray toJSONArray concode_elem_sep JSONArray toJ...
void function ( String arg0 ) { this . sort = arg0 ; }
sets the sort column . concode_field_sep String sort concode_elem_sep boolean ascending concode_field_sep String getSort 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
String function ( OptionHandler arg0 ) { return arg0 . getClass ( ) . getName ( ) + "srini_string" + Utils . joinOptions ( arg0 . getOptions ( ) ) ; }
returns the specification of the given optionhandler class + options concode_field_sep Random m_Random concode_elem_sep boolean m_Debug concode_field_sep Enumeration listOptions concode_elem_sep boolean getDebug concode_elem_sep Random getRandom concode_elem_sep Flipper forName concode_elem_sep void setOptions concode_...
LdapQuery function ( String arg0 ) { return new LdapQueryImpl ( arg0 ) ; }
required by ldapfactory interface . returns an ldap query , ready to be sent to an ldapdirectory concode_field_sep PlaceHolder placeHolder concode_field_sep LdapDirectory createServer concode_elem_sep LdapDirectorySettings createServerSettings concode_elem_sep LdapSearchSettings createSearchSettings
List < GpmChoiceBoxValue > function ( List < Translation > arg0 ) { List < GpmChoiceBoxValue > loc0 = new ArrayList < GpmChoiceBoxValue > ( ) ; for ( Translation loc1 : arg0 ) { loc0 . add ( new GpmChoiceBoxValue ( loc1 . getValue ( ) , loc1 . getTranslatedValue ( ) ) ) ; } return loc0 ; }
utility method to build a choicebox list with translation values . concode_field_sep String displayedValue concode_elem_sep String value concode_elem_sep String displayedImage concode_field_sep List<GpmChoiceBoxValue> buildFromStrings concode_elem_sep String getValue concode_elem_sep String getDisplayedValue concode_el...