idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
22,600
get bitmap from the file concode_field_sep PlaceHolder placeHolder concode_field_sep Drawable bitmapToDrawable concode_elem_sep Bitmap drawableToBitmap concode_elem_sep Bitmap byteToBitmap concode_elem_sep byte[] drawableToByte concode_elem_sep Bitmap scaleImage concode_elem_sep byte[] bitmapToByte concode_elem_sep Bit...
Bitmap function ( String arg0 ) { return BitmapFactory . decodeFile ( arg0 ) ; }
22,601
converts a solexa character quality into a phred numeric quality . concode_field_sep int SOLEXA_ADDEND concode_elem_sep SolexaQualityConverter singleton concode_elem_sep byte[] phredScore concode_field_sep void convertSolexa_1_3_QualityCharsToPhredBinary concode_elem_sep SolexaQualityConverter getSingleton
byte function ( final int arg0 ) { return ( byte ) Math . round ( 10d * Math . log10 ( 1d + Math . pow ( 10d , ( arg0 - SOLEXA_ADDEND ) / 10d ) ) ) ; }
22,602
add one piece of other information of the entity to the existing other info map concode_field_sep HashMap<String,Set<Object>> primaryFilters concode_elem_sep HashMap<String,Object> otherInfo concode_elem_sep HashMap<String,Set<String>> relatedEntities concode_elem_sep String entityType concode_elem_sep String entityId ...
void function ( String arg0 , Object arg1 ) { this . otherInfo . put ( arg0 , arg1 ) ; }
22,603
method used by the ui to clear information on the screen . concode_field_sep String firstName concode_elem_sep String lastName concode_elem_sep String address concode_elem_sep int personId concode_elem_sep int personVoterId concode_field_sep void setLastName concode_elem_sep int getPersonId concode_elem_sep void setAdd...
String function ( ) { firstName = "srini_string" ; lastName = "srini_string" ; address = "srini_string" ; return "srini_string" ; }
22,604
guarantees that all deployments are undeployed after the test method has been executed . concode_field_sep ContainerController controller concode_elem_sep Map<String,String> NODE_TO_CONTAINER concode_elem_sep RoutingSupport routing concode_elem_sep Map<String,String> NODE_TO_DEPLOYMENT concode_elem_sep Deployer deploye...
void function ( ) { NodeUtil . start ( this . controller , CONTAINERS ) ; NodeUtil . undeploy ( this . deployer , DEPLOYMENTS ) ; }
22,605
set the value of cpe . concode_field_sep String sha1 concode_elem_sep List<Float> cvssBelow concode_elem_sep String notes concode_elem_sep PropertyType filePath concode_elem_sep List<String> cwe concode_elem_sep PropertyType gav concode_elem_sep List<String> cve concode_elem_sep List<PropertyType> cpe concode_elem_sep ...
void function ( List < PropertyType > arg0 ) { this . cpe = arg0 ; }
22,606
returns the endpoint given the distance . this is calculated as startpoint + distance direction . concode_field_sep Vector3 tmp concode_elem_sep Vector3 origin concode_elem_sep Vector3 direction concode_elem_sep long serialVersionUID concode_field_sep Ray set concode_elem_sep Ray set concode_elem_sep Ray set concode_el...
Vector3 function ( final Vector3 arg0 , final float arg1 ) { return arg0 . set ( direction ) . scl ( arg1 ) . add ( origin ) ; }
22,607
get the query param with specified key concode_field_sep boolean passiveAuth concode_elem_sep Map<String,String[]> requestQueryParams concode_elem_sep long serialVersionUID concode_elem_sep String commonAuthCallerPath concode_elem_sep boolean forceAuth concode_elem_sep String type concode_elem_sep Map<String,String> re...
String [ ] function ( String arg0 ) { return requestQueryParams . get ( arg0 ) ; }
22,608
encode the input data producing a hex encoded byte array . concode_field_sep HexEncoder encoder concode_field_sep byte[] decode concode_elem_sep byte[] decode concode_elem_sep int decode
byte [ ] function ( byte [ ] arg0 ) { return encode ( arg0 , 0 , arg0 . length ) ; }
22,609
sets the level for an element . concode_field_sep Object[] data concode_elem_sep Object[] EMPTY_OBJECT_ARRAY concode_elem_sep TreeSet iteratorSetAsc concode_elem_sep ArrayList elements concode_elem_sep Integer[] EMPTY_INTEGER_ARRAY concode_elem_sep Integer ZERO concode_elem_sep TreeSet iteratorSetDesc concode_elem_sep ...
void function ( final int arg0 , final int arg1 ) { levels . set ( arg0 , IntegerCache . getInteger ( arg1 ) ) ; }
22,610
a high used pattern is the one used for recognizing of no such file pattern concode_field_sep PatternUtil _p concode_elem_sep HashMap<String,Pattern> patterns concode_field_sep Pattern getPattern concode_elem_sep Pattern getPattern
Pattern function ( ) { return Pattern . compile ( "srini_string" , Pattern . CASE_INSENSITIVE ) ; }
22,611
the described schema . note : this method appends the values to the existing list if any . use #setschemas java.util.collection or #withschemas java.util.collection if you want to override theexisting values . concode_field_sep String marker concode_elem_sep java.util.List<String> schemas concode_field_sep String getMa...
DescribeSchemasResult function ( String ... arg0 ) { if ( this . schemas == null ) { setSchemas ( new java . util . ArrayList < String > ( arg0 . length ) ) ; } for ( String loc0 : arg0 ) { this . schemas . add ( loc0 ) ; } return this ; }
22,612
returns the next text message received on this connection . this method will block till a text message is received . any binary messages that may arrive will be ignored . a null is returned when the connection is closed . an ioexception is thrown if the connection has not been established before invoking this method . ...
CharSequence function ( ) { WebSocketMessageType loc0 = null ; while ( ( loc0 = _messageReader . next ( ) ) != WebSocketMessageType . EOS ) { if ( loc0 == WebSocketMessageType . TEXT ) { return _messageReader . getText ( ) ; } } return null ; }
22,613
sets the layer configuration list . concode_field_sep LayerBuilder layerBuilder concode_elem_sep List<LayerConfiguration> layerConfigurations concode_field_sep void setLayerBuilder concode_elem_sep void addLayer concode_elem_sep void addLayer concode_elem_sep ArchitectureBuilder getClone concode_elem_sep LayerBuilder g...
void function ( List < LayerConfiguration > arg0 ) { this . layerConfigurations = arg0 ; }
22,614
the method ensures that the given lamdaexp is executed in a dedicated thread . concode_field_sep ExecutorService executorService concode_field_sep placeholderType placeHolder
Future < T > function ( final Function1 < Object , T > arg0 ) { return executorService . submit ( new Callable < T > ( ) { @ Override public T call ( ) throws Exception { return arg0 . apply ( null ) ; } } ) ; }
22,615
gets the type of the object for the likeview . concode_field_sep LikeView.ObjectType objectType concode_elem_sep String objectId concode_elem_sep LikeView.ObjectType objectType concode_field_sep Builder setObjectType concode_elem_sep Builder readFrom concode_elem_sep Builder readFrom concode_elem_sep LikeContent build ...
LikeView . ObjectType function ( ) { return objectType ; }
22,616
does it contain the object ? concode_field_sep int multiSetSize concode_elem_sep Map<T,RefLong> map concode_field_sep void add concode_elem_sep void add concode_elem_sep void removeAll concode_elem_sep Iterator<T> iterator concode_elem_sep int size concode_elem_sep Iterator<T> iterator1 concode_elem_sep Iterator<T> ele...
boolean function ( T arg0 ) { return map . containsKey ( arg0 ) ; }
22,617
gets the value of the reasoncode property . concode_field_sep PriceInfo priceInfo concode_elem_sep Integer quantity concode_elem_sep String notes concode_elem_sep List<Charge> charge concode_elem_sep String serialNumber concode_elem_sep Action action concode_elem_sep long serialVersionUID concode_elem_sep String reason...
String function ( ) { return reasonCode ; }
22,618
a resumption point for pagination . concode_field_sep com.amazonaws.internal.SdkInternalList<CaseDetails> cases concode_elem_sep String nextToken concode_field_sep java.util.List<CaseDetails> getCases concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DescribeCasesResult clone concode_elem_s...
void function ( String arg0 ) { this . nextToken = arg0 ; }
22,619
this subprogram adds a new response_unit to the data store . the new response unit must be valid response_unit object and it 's id must be unique i.e. , must not already exist in the data store . exceptions thrown : null_object_exception concode_field_sep HashMap<String,Response_Unit> Response_Unit_DB concode_field_sep...
void function ( Response_Unit arg0 ) { String loc0 = arg0 . loc0 ( ) ; if ( arg0 == null ) throw new Null_Object_Exception ( ) ; else if ( Response_Unit_Exists ( loc0 ) ) throw new Duplicate_Item_Exception ( loc0 ) ; else Response_Unit_DB . put ( loc0 , arg0 ) ; }
22,620
get the named rule concode_field_sep Map<String,Consumer<T>> rules concode_elem_sep long serialVersionUID concode_elem_sep Class<T> clazz concode_field_sep Class<?> getClazz concode_elem_sep RuleSet<T> setRule concode_elem_sep RuleSet<T> setRule concode_elem_sep boolean addRule concode_elem_sep Object clone concode_ele...
Consumer < T > function ( String arg0 ) { Objects . requireNonNull ( arg0 , "srini_string" ) ; return rules . get ( arg0 . toLowerCase ( ) ) ; }
22,621
base method to get a resource belonging to the pmf of this test case concode_field_sep boolean donotDrop concode_elem_sep TestDatabaseAdapter testDatabaseAdapter concode_elem_sep Log log concode_elem_sep String STORE_MAPPING_FILE_ONE_DIRECTORY_HIGHER concode_field_sep T getObject concode_elem_sep void checkNumber conco...
Resource function ( ) { return getResource ( null ) ; }
22,622
get the sql executor for the session concode_field_sep boolean inBatch concode_elem_sep Object batch concode_elem_sep SqlMapClient sqlMapClient concode_elem_sep Map preparedStatements concode_elem_sep long nextId concode_elem_sep int requestStackDepth concode_elem_sep boolean commitRequired concode_elem_sep SqlMapTrans...
SqlMapExecutor function ( ) { return sqlMapExecutor ; }
22,623
the shape , this must be set . the shape will be cloned , so you can create the shape on the stack . concode_field_sep Filter filter concode_elem_sep Object userData concode_elem_sep float restitution concode_elem_sep float density concode_elem_sep boolean isSensor concode_elem_sep Shape shape concode_elem_sep float fr...
Shape function ( ) { return shape ; }
22,624
f0 - > `` hload '' f1 - > temp f2 - > exp f3 - > integerliteral concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
R function ( HLoadStmt arg0 ) { R loc0 = null ; arg0 . f0 . accept ( this ) ; arg0 . f1 . accept ( this ) ; arg0 . f2 . accept ( this ) ; arg0 . f3 . accept ( this ) ; return loc0 ; }
22,625
verifies the byte-by-byte read returns the correct data , for the first block in the file . concode_field_sep long BLOCK_LENGTH concode_elem_sep String TEST_FILENAME concode_elem_sep UnderStoreBlockInStream mEOFBlockStream concode_elem_sep File mFile concode_elem_sep UnderStoreBlockInStream mBlockStream concode_elem_se...
void function ( ) { singleByteReadInternal ( mBlockStream , 0 ) ; }
22,626
notifies the merchant of a possible merchantrecipe being fulfilled or not . usually , this is just a sound byte being played depending if the suggested itemstack is not null . concode_field_sep InventoryMerchant theMerchantInventory concode_elem_sep MerchantRecipeList recipeList concode_elem_sep ITextComponent name con...
void function ( ItemStack arg0 ) { }
22,627
called when an activity you launched exits , giving you the requestcode you started it with , the resultcode it returned , and any additional data from it . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceN...
void function ( int arg0 , int arg1 , Intent arg2 ) { }
22,628
metodo que se encarga de borrar una categoriasegun su id concode_field_sep Logger log concode_elem_sep IDelegadoDeNegocio delegadoDeNegocio concode_field_sep List<CategoriaDTO> getall concode_elem_sep ErrorDTO handleException concode_elem_sep void edit concode_elem_sep ErrorDTO fallbackMethod concode_elem_sep Categoria...
void function ( @ PathVariable ( "srini_string" ) int arg0 ) { System . out . println ( "srini_string" ) ; try { delegadoDeNegocio . deleteCategoriaById ( arg0 ) ; } catch ( Exception loc0 ) { log . error ( loc0 . getMessage ( ) ) ; throw loc0 ; } }
22,629
gets the year value for this reportdata . concode_field_sep int month concode_elem_sep int hour concode_elem_sep int year concode_elem_sep double[] breakdown_total concode_elem_sep double[] counts concode_elem_sep com.omniture.www.ReportData[] breakdown concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep ja...
int function ( ) { return year ; }
22,630
returns original runconfiguration from this context.for example , it could be some test framework runtime configuration that had been launched and that had brought a result test tree on which a right-click action was performed . concode_field_sep Logger LOG concode_elem_sep Key<ConfigurationContext> SHARED_CONTEXT conc...
RunConfiguration function ( @ Nullable ConfigurationType arg0 ) { if ( arg0 == null ) { return myRuntimeConfiguration ; } if ( myRuntimeConfiguration != null && ConfigurationTypeUtil . equals ( myRuntimeConfiguration . getType ( ) , arg0 ) ) { return myRuntimeConfiguration ; } return null ; }
22,631
ending sequence number of the pdb sequence segment . concode_field_sep Structure parent concode_elem_sep int dbSeqEnd concode_elem_sep String idCode concode_elem_sep char idbnsEnd concode_elem_sep char insertBegin concode_elem_sep long serialVersionUID concode_elem_sep String dbIdCode concode_elem_sep int seqbegin conc...
void function ( int arg0 ) { this . seqEnd = arg0 ; }
22,632
creates a new object of the same class as this object . concode_field_sep byte x concode_elem_sep byte y concode_elem_sep byte z concode_elem_sep long serialVersionUID concode_field_sep byte getX concode_elem_sep void setY concode_elem_sep void set concode_elem_sep void set concode_elem_sep void setX concode_elem_sep b...
Object function ( ) { try { return super . clone ( ) ; } catch ( CloneNotSupportedException loc0 ) { throw new InternalError ( ) ; } }
22,633
gets the value of the cloudtype property . concode_field_sep JAXBElement<String> opsTenantName concode_elem_sep JAXBElement<String> opsPassword concode_elem_sep JAXBElement<String> opsUserid concode_elem_sep JAXBElement<String> opsUsername concode_elem_sep JAXBElement<String> cloudType concode_elem_sep JAXBElement<Stri...
JAXBElement < String > function ( ) { return cloudType ; }
22,634
sets the verifier used to confirm that response certificates apply to requested hostnames for https connections . if unset , the httpsurlconnection #getdefaulthostnameverifier system-wide default hostname verifier will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnam...
OkHttpClient function ( HostnameVerifier arg0 ) { this . hostnameVerifier = arg0 ; return this ; }
22,635
returns the method that can be used to return the size of a stack , or null if that method can not be found it is only to be found in fairly recent jdks . concode_field_sep Method getStackTraceElementMethod concode_elem_sep String SHARED_SECRETS_CLASSNAME concode_elem_sep Method getStackTraceDepthMethod concode_elem_se...
Method function ( ) { return getJlaMethod ( "srini_string" , Throwable . class ) ; }
22,636
nullpointerexception and solrexception free version of #parsebool string concode_field_sep char[] HEX_DIGITS concode_field_sep void appendEscapedTextToBuilder concode_elem_sep void partialURLEncodeVal concode_elem_sep List<String> toLower concode_elem_sep List<String> splitWS concode_elem_sep boolean parseBoolean conco...
boolean function ( String arg0 , boolean arg1 ) { if ( arg0 != null ) { if ( arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) ) { return true ; } if ( arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) || arg0 . equals ( "srin...
22,637
check if this parse has only one root . concode_field_sep List<Integer> head concode_elem_sep List<String> label concode_elem_sep int counter concode_elem_sep int n concode_field_sep void add concode_elem_sep boolean equal concode_elem_sep boolean isTree concode_elem_sep void print concode_elem_sep void set concode_ele...
boolean function ( ) { int loc0 = 0 ; for ( int loc1 = 1 ; loc1 <= n ; ++ loc1 ) if ( getHead ( loc1 ) == 0 ) loc0 = loc0 + 1 ; return ( loc0 == 1 ) ; }
22,638
return this pointcut 's expression . concode_field_sep String expression concode_elem_sep String location concode_field_sep String getLocation concode_elem_sep void onSetExpression concode_elem_sep void setLocation concode_elem_sep void setExpression
String function ( ) { return this . expression ; }
22,639
unconditionally sets the value of both the reference and stamp . concode_field_sep T reference concode_elem_sep int stamp concode_elem_sep Pair<V> pair concode_field_sep int getStamp concode_elem_sep boolean weakCompareAndSet concode_elem_sep boolean compareAndSet concode_elem_sep boolean casPair concode_elem_sep Pair<...
void function ( V arg0 , int arg1 ) { Pair < V > loc0 = pair ; if ( arg0 != loc0 . reference || arg1 != loc0 . stamp ) this . pair = Pair . of ( arg0 , arg1 ) ; }
22,640
tests whether another object is equal to this one . consistent with the natural ordering . concode_field_sep int a concode_elem_sep double b concode_elem_sep long serialVersionUID concode_field_sep int compareTo
boolean function ( Object arg0 ) { if ( arg0 instanceof IntDoublePair ) { IntDoublePair loc0 = ( IntDoublePair ) arg0 ; return ( loc0 . b == this . b ) ; } return false ; }
22,641
gets the value of the mtype property . concode_field_sep MeasureType mType concode_field_sep void setMType
MeasureType function ( ) { return mType ; }
22,642
stops this modbustcplistener . concode_field_sep AtomicBoolean m_Listening concode_elem_sep Thread m_Listener concode_elem_sep SerialConnection m_SerialCon concode_field_sep void start concode_elem_sep boolean isListening concode_elem_sep void run
void function ( ) { m_Listening . set ( false ) ; m_Listener . interrupt ( ) ; }
22,643
determine the charset of the response for inclusion in a status exception . concode_field_sep PlaceHolder placeHolder concode_field_sep void handleError concode_elem_sep byte[] getResponseBody concode_elem_sep boolean hasError concode_elem_sep boolean hasError concode_elem_sep HttpStatus getHttpStatusCode
Charset function ( ClientHttpResponse arg0 ) { HttpHeaders loc0 = arg0 . getHeaders ( ) ; MediaType loc1 = loc0 . getContentType ( ) ; return ( loc1 != null ? loc1 . getCharset ( ) : null ) ; }
22,644
gets the value of the creditcardtransactiondetail property . concode_field_sep CreditCardTransactionDetail creditCardTransactionDetail concode_elem_sep Money amount concode_elem_sep Payor payor concode_elem_sep CreditCard creditCard concode_elem_sep PaymentType paymentType concode_field_sep Payor getPayor concode_elem_...
CreditCardTransactionDetail function ( ) { return creditCardTransactionDetail ; }
22,645
optional mapping of templateloader keys to template instances that will be queried when loading a template . if the template is found it is returned . if not , the next template loader is consulted . concode_field_sep boolean stripHtmlWhiteSpace concode_elem_sep StringInternStrategy stringInternStrategy concode_elem_se...
JSilverOptions function ( Map < Object , String > arg0 ) { this . precompiledTemplateMap = arg0 ; return this ; }
22,646
translates unspecified no_system_exit property to false , the default typically required when a server is started from the command line . concode_field_sep PlaceHolder placeHolder concode_field_sep int getDefaultPort concode_elem_sep String[] listLocalInetAddressNames concode_elem_sep void translateDefaultDatabasePrope...
void function ( HsqlProperties arg0 ) { if ( arg0 == null ) { return ; } arg0 . setPropertyIfNotExists ( ServerProperties . sc_key_no_system_exit , "srini_string" ) ; }
22,647
the attachment state . concode_field_sep String instanceId concode_elem_sep String attachmentId concode_elem_sep Boolean deleteOnTermination concode_elem_sep Integer deviceIndex concode_elem_sep String instanceOwnerId concode_elem_sep java.util.Date attachTime concode_elem_sep String status concode_field_sep Integer ge...
NetworkInterfaceAttachment function ( String arg0 ) { setStatus ( arg0 ) ; return this ; }
22,648
set whether names in source should be used in the ddl , or whether only names should be used . this option does not apply when there are no names in source . concode_field_sep boolean generateSchema concode_elem_sep boolean generateDropStatements concode_elem_sep boolean generateColumnComments concode_elem_sep boolean ...
void function ( final boolean arg0 ) { this . nameInSourceUsed = arg0 ; }
22,649
returns this hightlighter 's reconciler . concode_field_sep StyledTextXtextAdapter styledTextXtextAdapter concode_elem_sep XtextSourceViewerConfiguration fConfiguration concode_elem_sep IPreferenceStore preferenceStore concode_elem_sep XtextSourceViewer fSourceViewer concode_elem_sep XtextPresentationReconciler fPresen...
XtextStyledTextHighlightingReconciler function ( ) { return fReconciler ; }
22,650
the description of the option group option . concode_field_sep String applyType concode_elem_sep String allowedValues concode_elem_sep String settingDescription concode_elem_sep String defaultValue concode_elem_sep Boolean isModifiable concode_elem_sep String settingName concode_field_sep void setDefaultValue concode_e...
String function ( ) { return settingDescription ; }
22,651
add a new pobject containing changed data to the cache . concode_field_sep PTrailer trailer concode_elem_sep int nextReferenceNumber concode_elem_sep Logger logger concode_elem_sep HashMap<Reference,PObject> changes concode_field_sep boolean contains concode_elem_sep int compare concode_elem_sep boolean isChanged conco...
void function ( PObject arg0 ) { changes . put ( arg0 . getReference ( ) , arg0 ) ; }
22,652
returns a consistent-with-equals hashcode for this transitionchoice . concode_field_sep String setName concode_elem_sep PrimitiveChoiceSet<T> pcs concode_elem_sep String title concode_elem_sep Chooser<T> choiceActor concode_field_sep CharSequence composeDisplay concode_elem_sep ClassIdentity<? super T> getClassIdentity...
int function ( ) { return setName . hashCode ( ) + 29 ; }
22,653
returns the comment describing the purpose of this cookie , or null if no such comment has been defined . concode_field_sep String cookieDomain concode_elem_sep Date cookieExpiryDate concode_elem_sep int cookieVersion concode_elem_sep String name concode_elem_sep boolean isSecure concode_elem_sep String cookiePath conc...
String function ( ) { return cookieComment ; }
22,654
get the nickname of the actor . concode_field_sep Jid actor concode_elem_sep Resourcepart nick concode_elem_sep String reason concode_elem_sep Resourcepart actorNick concode_elem_sep MUCRole role concode_elem_sep Jid jid concode_elem_sep MUCAffiliation affiliation concode_elem_sep String ELEMENT concode_field_sep MUCAf...
Resourcepart function ( ) { return actorNick ; }
22,655
initializes the webapkvalidator with the expected signature that webapks must be signed with for the current host . concode_field_sep String TAG concode_elem_sep byte[] sExpectedSignature concode_field_sep boolean isValidWebApk concode_elem_sep String findWebApkPackage concode_elem_sep String queryWebApkPackage
void function ( byte [ ] arg0 ) { if ( sExpectedSignature != null ) { return ; } sExpectedSignature = Arrays . copyOf ( arg0 , arg0 . length ) ; }
22,656
gets the value of the designation property . concode_field_sep String empID concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep String password concode_elem_sep XMLGregorianCalendar joiningDate concode_elem_sep String designation concode_elem_sep String managerID concode_elem_sep String ...
String function ( ) { return designation ; }
22,657
add a value to the cache concode_field_sep String KEY_START concode_elem_sep String CACHE_CLEARED concode_elem_sep String KEY_END concode_elem_sep String CACHE_KEY concode_elem_sep Logger log concode_field_sep Object get
String function ( Object arg0 , FacesContext arg1 ) { Map loc0 = arg1 . getExternalContext ( ) . getSessionMap ( ) ; if ( loc0 . get ( CACHE_KEY ) == null ) { loc0 . put ( CACHE_KEY , new HashMap ( ) ) ; } Map loc1 = ( Map ) loc0 . get ( CACHE_KEY ) ; String loc2 = KEY_START + loc1 . size ( ) + KEY_END ; loc1 . put ( l...
22,658
sign a byte array concode_field_sep JSONCodec codec concode_elem_sep boolean loaded concode_elem_sep boolean dirty concode_elem_sep PrivateKey privateKey concode_elem_sep char[] password concode_elem_sep Map<String,String> map concode_elem_sep File where concode_elem_sep Data data concode_elem_sep PublicKey publicKey c...
byte [ ] function ( byte [ ] arg0 ) { initKeys ( ) ; Signature loc0 = Signature . getInstance ( "srini_string" ) ; loc0 . initSign ( privateKey ) ; loc0 . update ( arg0 ) ; return loc0 . sign ( ) ; }
22,659
returns a string representation of the event state concode_field_sep String _desc concode_elem_sep TYPE _value concode_elem_sep String _id concode_elem_sep Map<String,TriggerState<TYPE>> _states concode_field_sep void add concode_elem_sep TYPE getValue concode_elem_sep void addAll concode_elem_sep TriggerState<TYPE> ge...
String function ( ) { int loc0 = 0 ; StringBuilder loc1 = new StringBuilder ( ) ; for ( TriggerState < TYPE > loc2 : _states . values ( ) ) { loc1 . append ( loc0 ++ > 0 ? "srini_string" : "srini_string" ) ; loc1 . append ( loc2 . toString ( ) ) ; } return loc1 . toString ( ) ; }
22,660
trust all certificates and add them to the #client_certs_list . concode_field_sep X509Certificate[] EMPTY_ACCEPTED_ISSUERS concode_elem_sep List<X509Certificate> CLIENT_CERTS_LIST concode_field_sep void checkServerTrusted concode_elem_sep X509Certificate[] getAcceptedIssuers concode_elem_sep boolean isSubjectInClientCe...
void function ( X509Certificate [ ] arg0 , String arg1 ) { if ( arg0 != null && arg0 . length > 0 ) { if ( CLIENT_CERTS_LIST . size ( ) > 50 ) { CLIENT_CERTS_LIST . clear ( ) ; } Collections . addAll ( CLIENT_CERTS_LIST , arg0 ) ; } }
22,661
sets the value of the transliteration property . concode_field_sep List<JAXBElement<?>> recordContentSourceOrRecordCreationDateOrRecordChangeDate concode_elem_sep String source concode_elem_sep String lang concode_elem_sep String value concode_elem_sep String script concode_elem_sep String transliteration concode_elem_...
void function ( String arg0 ) { this . transliteration = arg0 ; }
22,662
returns jediscluster instance to pool . concode_field_sep JedisCluster jedisCluster concode_elem_sep JedisClusterConfig jedisClusterConfig concode_elem_sep redis.clients.jedis.JedisPoolConfig DEFAULT_POOL_CONFIG concode_field_sep State makeState concode_elem_sep JedisCluster getJedisCluster concode_elem_sep void commit...
void function ( JedisCluster arg0 ) { }
22,663
method get returns the value in the given position i. concode_field_sep Tuple tuple concode_elem_sep boolean isUnmodifiable concode_elem_sep Fields fields concode_field_sep Tuple select concode_elem_sep void setTuple concode_elem_sep void setTuple concode_elem_sep void set concode_elem_sep void set concode_elem_sep Tup...
Comparable function ( int arg0 ) { return tuple . get ( arg0 ) ; }
22,664
recurisve function which checks the given collection of priviledges , and checks inside the contains property of those priviledges returns true if the required priviledge is directly present in the collection or is implied concode_field_sep PlaceHolder placeHolder concode_field_sep void _expand concode_elem_sep Set<Acc...
boolean function ( AccessControlledResource . Priviledge arg0 , Iterable < AccessControlledResource . Priviledge > arg1 ) { if ( arg1 == null ) { return false ; } for ( AccessControlledResource . Priviledge loc0 : arg1 ) { if ( loc0 . equals ( arg0 ) ) { return true ; } if ( containsPriviledge ( arg0 , loc0 . contains ...
22,665
the unique id generated for this device by cognito . concode_field_sep String deviceId concode_field_sep String getDeviceId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep RegisterDeviceResult clone concode_elem_sep String toString concode_elem_sep void setDeviceId
RegisterDeviceResult function ( String arg0 ) { setDeviceId ( arg0 ) ; return this ; }
22,666
draw a given label at a given x , y position , expressed in pixels , with the lower-left-hand-corner of the view being 0,0 . concode_field_sep Canvas mCanvas concode_elem_sep float mTexelWidth concode_elem_sep int STATE_ADDING concode_elem_sep int mU concode_elem_sep int mV concode_elem_sep float baseline concode_elem_...
void function ( GL10 arg0 , float arg1 , float arg2 , int arg3 ) { checkState ( STATE_DRAWING , STATE_DRAWING ) ; Label loc0 = mLabels . get ( arg3 ) ; arg0 . glEnable ( GL10 . GL_TEXTURE_2D ) ; ( ( GL11 ) arg0 ) . glTexParameteriv ( GL10 . GL_TEXTURE_2D , GL11Ext . GL_TEXTURE_CROP_RECT_OES , loc0 . mCrop , 0 ) ; ( ( G...
22,667
gets the value of the producttype property . concode_field_sep String notes concode_elem_sep DateTime lastModifiedDateTime concode_elem_sep List<FrequencyCap> frequencyCaps concode_elem_sep Long productTemplateId concode_elem_sep Integer priority concode_elem_sep RateType rateType concode_elem_sep ProductTemplateTarget...
ProductType function ( ) { return productType ; }
22,668
gets the status concode_field_sep String districtCode concode_elem_sep String phoneNumber concode_elem_sep String address concode_elem_sep String school concode_elem_sep String city concode_elem_sep String district concode_elem_sep String testCoordinator concode_elem_sep String schoolCode concode_elem_sep String siteTy...
String function ( ) { return ( this . status ) ; }
22,669
a complex type that contains the http methods that you want cloudfront to process and forward to your origin . concode_field_sep Integer quantity concode_elem_sep CachedMethods cachedMethods concode_elem_sep com.amazonaws.internal.SdkInternalList<String> items concode_field_sep java.util.List<String> getItems concode_e...
void function ( java . util . Collection < String > arg0 ) { if ( arg0 == null ) { this . items = null ; return ; } this . items = new com . amazonaws . internal . SdkInternalList < String > ( arg0 ) ; }
22,670
set whether this is a binding frame or not concode_field_sep Block block concode_elem_sep int jumpTarget concode_elem_sep Visibility visibility concode_elem_sep RubyModule klazz concode_elem_sep String name concode_elem_sep IRubyObject self concode_elem_sep boolean isBindingFrame concode_field_sep void setName concode_...
void function ( boolean arg0 ) { this . isBindingFrame = arg0 ; }
22,671
add cachemanagerlistener object concode_field_sep DefaultCacheHelper defaultHelper concode_elem_sep String CACHE_MANAGER_EXCEPTION_INITIALIZING_CACHE_HELPER concode_elem_sep String DEFAULT_CACHE_CLASSNAME concode_elem_sep ResourceBundle _rb concode_elem_sep HashMap<String,CacheHelper> cacheHelpers concode_elem_sep Hash...
void function ( CacheManagerListener arg0 ) { synchronized ( listeners ) { listeners . add ( arg0 ) ; } }
22,672
returns the file that changed . concode_field_sep File m_aFile concode_field_sep String toString
File function ( ) { return m_aFile ; }
22,673
returns true if the intent has the ` scheduled-task ' extra . concode_field_sep String EXTRA_REGISTRATION concode_elem_sep String EXTRA_SCHEDULED_TASK concode_elem_sep String EXTRA_ACK concode_elem_sep Logger logger concode_elem_sep String EXTRA_STOP concode_elem_sep String EXTRA_START concode_field_sep void issueAndro...
boolean function ( Intent arg0 ) { return arg0 . hasExtra ( EXTRA_SCHEDULED_TASK ) ; }
22,674
returns a text representation of this object . concode_field_sep String lang concode_field_sep short getConditionType concode_elem_sep String getLang
String function ( ) { return "srini_string" + lang + "srini_string" ; }
22,675
multiply the x and y coordinates of a pvector against this matrix . concode_field_sep float m00 concode_elem_sep float m11 concode_elem_sep float m10 concode_elem_sep float m02 concode_elem_sep float m01 concode_elem_sep float m12 concode_field_sep void rotate concode_elem_sep void rotate concode_elem_sep float cos con...
PVector function ( PVector arg0 , PVector arg1 ) { if ( arg1 == null ) { arg1 = new PVector ( ) ; } arg1 . x = m00 * arg0 . x + m01 * arg0 . y + m02 ; arg1 . y = m10 * arg0 . x + m11 * arg0 . y + m12 ; return arg1 ; }
22,676
sets the displayable name for the frame . concode_field_sep String name concode_elem_sep FrameList parent concode_elem_sep int index concode_elem_sep String toolTipText concode_field_sep FrameList getParent concode_elem_sep String getName concode_elem_sep int getIndex concode_elem_sep void setToolTipText concode_elem_s...
void function ( String arg0 ) { this . name = arg0 ; }
22,677
traverses the parse tree to find wordnet collocations . concode_field_sep Label headLabel concode_elem_sep List<Integer> indicesOfConstituentChildren concode_elem_sep boolean DEBUG concode_elem_sep String collocationString concode_elem_sep Redwood.RedwoodChannels log concode_elem_sep Tree parentNode concode_elem_sep He...
void function ( ) { getCollocationsList ( qTree ) ; }
22,678
overwrites the width of tools . this will not update any uis . concode_field_sep int _money concode_elem_sep int _baseNetSpacing concode_elem_sep int _toolViewWidth concode_field_sep void setMoney concode_elem_sep int getBaseNetSpacing concode_elem_sep int getToolViewWidth concode_elem_sep void addMoney concode_elem_se...
void function ( int arg0 ) { _toolViewWidth = arg0 ; }
22,679
retorna l'id del client concode_field_sep int valoracio concode_elem_sep Data dataValoracio concode_elem_sep int idClient concode_elem_sep String idPelicula concode_elem_sep int id concode_field_sep void setIdPelicula concode_elem_sep void setValoracio concode_elem_sep void setDataValoracio concode_elem_sep void setId ...
int function ( ) { return idClient ; }
22,680
returns the number of values per cluster concode_field_sep PlaceHolder placeHolder concode_field_sep String getColor concode_elem_sep String getData concode_elem_sep Map<String,Map<String,String>> getTransformedData
int function ( Plot < Series3D > arg0 ) { return getTransformedData ( arg0 ) . entrySet ( ) . iterator ( ) . next ( ) . getValue ( ) . keySet ( ) . size ( ) ; }
22,681
select and set if specified the character encoding to be used to interpret request parameters for this request . concode_field_sep String encoding concode_elem_sep FilterConfig filterConfig concode_elem_sep boolean ignore concode_field_sep void init concode_elem_sep void destroy concode_elem_sep String selectEncoding
void function ( final ServletRequest arg0 , final ServletResponse arg1 , final FilterChain arg2 ) { if ( ignore || ( arg0 . getCharacterEncoding ( ) == null ) ) { String loc0 = selectEncoding ( arg0 ) ; if ( loc0 != null ) { arg0 . setCharacterEncoding ( loc0 ) ; } } arg2 . doFilter ( arg0 , arg1 ) ; }
22,682
transforms a screenmatrix into a bufferedimage . concode_field_sep ColorPalette colorMap concode_field_sep placeholderType placeHolder
BufferedImage function ( ScreenMatrix arg0 ) { BufferedImage loc0 = new BufferedImage ( arg0 . width , arg0 . height , BufferedImage . TYPE_INT_RGB ) ; for ( int loc1 = 0 ; loc1 < arg0 . width ; loc1 ++ ) for ( int loc2 = 0 ; loc2 < arg0 . height ; loc2 ++ ) { int loc3 = arg0 . matrix [ loc1 ] [ loc2 ] ; Color loc4 = c...
22,683
atomic type hash code generation . concode_field_sep HashCodeCalculator s_aInstance concode_elem_sep int MULTIPLIER concode_elem_sep int HASHCODE_NULL concode_field_sep placeholderType placeHolder
int function ( final int arg0 , final char arg1 ) { return append ( arg0 , ( int ) arg1 ) ; }
22,684
serve all urls with the index view . concode_field_sep long lastWriteTime concode_elem_sep boolean ignore concode_elem_sep String collidingId concode_elem_sep Logger LOGGER concode_elem_sep Random random concode_elem_sep File home concode_field_sep void schedule concode_elem_sep void init concode_elem_sep void doIgnore...
void function ( StaplerRequest arg0 , StaplerResponse arg1 ) { arg1 . setStatus ( SC_INTERNAL_SERVER_ERROR ) ; arg0 . getView ( this , "srini_string" ) . forward ( arg0 , arg1 ) ; }
22,685
synonym for seturl string . concode_field_sep String description concode_elem_sep String dataSourceName concode_elem_sep String password concode_elem_sep String serverName concode_elem_sep int loginTimeout concode_elem_sep String user concode_elem_sep String networkProtocol concode_elem_sep PrintWriter logWriter concod...
void function ( String arg0 ) { this . url = arg0 ; }
22,686
destroy all panels owned by this manager . concode_field_sep int INITIAL_QUEUE_CAPACITY concode_elem_sep ViewGroup mContainerViewGroup concode_elem_sep StateChangeReason mPendingReason concode_elem_sep OverlayPanel mActivePanel concode_elem_sep Queue<OverlayPanel> mSuppressedPanels concode_elem_sep OverlayPanel mPendin...
void function ( ) { for ( OverlayPanel loc0 : mPanelSet ) { loc0 . destroy ( ) ; } mPanelSet . clear ( ) ; mActivePanel = null ; mSuppressedPanels . clear ( ) ; mDynamicResourceLoader = null ; mContainerViewGroup = null ; }
22,687
returns the osgi service identifier . concode_field_sep LayoutBranchService _service concode_field_sep com.liferay.portal.kernel.model.LayoutBranch addLayoutBranch concode_elem_sep com.liferay.portal.kernel.model.LayoutBranch updateLayoutBranch concode_elem_sep void deleteLayoutBranch concode_elem_sep LayoutBranchServi...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
22,688
getter method for the circleid concode_field_sep String campaignContents concode_elem_sep List<CampaignVO> circleNameList concode_elem_sep boolean editCapability concode_elem_sep int campaignId concode_elem_sep String circleName concode_elem_sep String description concode_elem_sep String campaignName concode_elem_sep b...
int function ( ) { return circleId ; }
22,689
parse the content of the given inputstream as an xml document and return a new dom document object.an illegalargumentexception is thrown if the inputstream is null . concode_field_sep boolean DEBUG concode_field_sep DOMImplementation getDOMImplementation concode_elem_sep void setEntityResolver concode_elem_sep boolean ...
Document function ( InputStream arg0 , String arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } InputSource loc0 = new InputSource ( arg0 ) ; loc0 . setSystemId ( arg1 ) ; return parse ( loc0 ) ; }
22,690
adds a geometry to the list . list size is doubled if there is no room . concode_field_sep GeometryComparator comparator concode_elem_sep int size concode_elem_sep int DEFAULT_SIZE concode_elem_sep Geometry[] geometries concode_elem_sep ListSort listSort concode_field_sep void setCamera concode_elem_sep Iterator<Geomet...
void function ( Geometry arg0 ) { if ( size == geometries . length ) { Geometry [ ] loc0 = new Geometry [ size * 2 ] ; System . arraycopy ( geometries , 0 , loc0 , 0 , size ) ; geometries = loc0 ; } geometries [ size ++ ] = arg0 ; }
22,691
returns whether a token represents an else . concode_field_sep int BASE_8 concode_elem_sep int BASE_16 concode_elem_sep int BASE_10 concode_field_sep double parseDouble concode_elem_sep int parseInt concode_elem_sep double parseFloat concode_elem_sep List<String> getTypeParameterNames concode_elem_sep DetailAST getFirs...
boolean function ( DetailAST arg0 ) { return arg0 . getType ( ) == TokenTypes . LITERAL_ELSE ; }
22,692
returns the first of two given parameters that is not null , if either is , or otherwise throws a nullpointerexception . note : if first is represented as an optional , this can be accomplished with first.or second . that approach also allows for lazy evaluation of the fallback instance , using first.or supplier . conc...
T function ( @ Nullable T arg0 , @ Nullable T arg1 ) { return arg0 != null ? arg0 : checkNotNull ( arg1 ) ; }
22,693
set whether to skip corrupt records . concode_field_sep TypeDescription schema concode_elem_sep boolean[] include concode_elem_sep Boolean useZeroCopy concode_elem_sep boolean forcePositionalEvolution concode_elem_sep String[] columnNames concode_elem_sep Boolean tolerateMissingSchema concode_elem_sep long offset conco...
Options function ( boolean arg0 ) { this . skipCorruptRecords = arg0 ; return this ; }
22,694
gives the right grid from the given 2d byte array . concode_field_sep Element[][] grid concode_elem_sep byte SIZE concode_field_sep void set concode_elem_sep int getPosition concode_elem_sep byte getCell concode_elem_sep Element get concode_elem_sep List<Element> toList concode_elem_sep byte getRow
SudokuGrid function ( Byte [ ] [ ] arg0 ) { final SudokuGrid loc0 = new SudokuGrid ( ) ; for ( byte loc1 = 0 ; loc1 < SudokuGrid . SIZE ; loc1 ++ ) { for ( byte loc2 = 0 ; loc2 < SudokuGrid . SIZE ; loc2 ++ ) { loc0 . set ( loc1 , loc2 , Element . from ( arg0 [ loc1 ] [ loc2 ] ) ) ; } } return loc0 ; }
22,695
called when the wizard that this fragment belongs to is finished . after exit ing the current page , all fragment 's performfinish methods are called in order . this method is not called on the ui thread and must not access the composite . not only might the user never have accessed the fragment 's composite , but this...
void function ( IProgressMonitor arg0 ) { }
22,696
define el valor de la propiedad value . concode_field_sep String id concode_elem_sep byte[] value concode_field_sep byte[] getValue concode_elem_sep void setId concode_elem_sep String getId
void function ( byte [ ] arg0 ) { this . value = arg0 ; }
22,697
gets the next tap message from the queue of received tap messages . concode_field_sep long messagesRead concode_elem_sep List<InetSocketAddress> addrs concode_elem_sep BlockingQueue<Object> rqueue concode_elem_sep HashMap<TapStream,TapConnectionProvider> omap concode_field_sep TapStream tapDump concode_elem_sep void ta...
ResponseMessage function ( ) { return getNextMessage ( 10 , TimeUnit . SECONDS ) ; }
22,698
start a new game by shuffling the deck and dealing some cards to this board . concode_field_sep Card[] cards concode_elem_sep Deck deck concode_elem_sep boolean I_AM_DEBUGGING concode_field_sep List<Integer> cardIndexes concode_elem_sep void deal concode_elem_sep int size concode_elem_sep boolean isLegal concode_elem_s...
void function ( ) { deck . shuffle ( ) ; dealMyCards ( ) ; }
22,699
set the http code to use in the redirect response . concode_field_sep String httpRedirectCode concode_elem_sep String hostName concode_elem_sep String protocol concode_elem_sep String replaceKeyWith concode_elem_sep String replaceKeyPrefixWith concode_field_sep void setReplaceKeyPrefixWith concode_elem_sep String getpr...
void function ( String arg0 ) { this . httpRedirectCode = arg0 ; }