idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
16,800
retrieves the sql type name for this serialstruct object . this is the name used in the sql definition of the structured type concode_field_sep long serialVersionUID concode_elem_sep String SQLTypeName concode_elem_sep Object attribs[] concode_field_sep Object[] getAttributes concode_elem_sep Object[] getAttributes con...
String function ( ) { return SQLTypeName ; }
16,801
set second concode_field_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep Logger log concode_elem_sep Byte first concode_elem_sep ResourceAdapter ra concode_elem_sep Short second concode_field_sep ManagedConnection createManagedConnection concode_elem_sep void setResourceAdapter concode...
void function ( Short arg0 ) { this . second = arg0 ; }
16,802
prints a message at warn priority . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void println...
void function ( String arg0 , Throwable arg1 ) { w ( arg0 , null , arg1 ) ; }
16,803
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 ) ; } } ) ; }
16,804
closes the execution context and releases the underlying resources concode_field_sep ESLogger logger concode_elem_sep RestResponse response concode_elem_sep RestClient restClient concode_elem_sep Stash stash concode_elem_sep RestSpec restSpec concode_field_sep String actualBody concode_elem_sep String bodyAsString conc...
void function ( ) { if ( restClient != null ) { restClient . close ( ) ; } }
16,805
registers a callback to be called before and after method invocation concode_field_sep Logger log concode_elem_sep long serialVersionUID concode_elem_sep Set<CallbackData> callbackSet concode_field_sep void unregisterCallback concode_elem_sep void errorCallback concode_elem_sep void postInvokeCallback concode_elem_sep ...
void function ( InvocationCallback arg0 , Class < ? > arg1 ) { synchronized ( callbackSet ) { callbackSet . add ( new CallbackData ( arg0 , arg1 ) ) ; } if ( log . isDebugEnabled ( ) ) { log . debug ( "srini_string" + arg0 . getClass ( ) . getName ( ) + "srini_string" + arg1 . getName ( ) ) ; } }
16,806
whether it has a particular attribute concode_field_sep SessionNameField s concode_elem_sep ConnectionField c concode_elem_sep TimeField t concode_elem_sep Vector<AttributeField> av concode_elem_sep SdpField v concode_elem_sep Vector<MediaDescriptor> media concode_elem_sep OriginField o concode_field_sep void init conc...
boolean function ( String arg0 ) { for ( int loc0 = 0 ; loc0 < av . size ( ) ; loc0 ++ ) { if ( ( ( AttributeField ) av . elementAt ( loc0 ) ) . getAttributeName ( ) . equals ( arg0 ) ) return true ; } return false ; }
16,807
sets the old value of this j i r a change item . concode_field_sep JIRAChangeItem _jiraChangeItem concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setFie...
void function ( java . lang . String arg0 ) { _jiraChangeItem . setOldValue ( arg0 ) ; }
16,808
gets the value of the autopaysettings property . concode_field_sep long serialVersionUID concode_elem_sep AutoPaySettingsType autoPaySettings concode_elem_sep boolean canEnroll concode_elem_sep boolean enrolled concode_elem_sep AutomatedPaymentStatusType paymentStatus concode_field_sep AutomatedPaymentStatusType getPay...
AutoPaySettingsType function ( ) { return autoPaySettings ; }
16,809
set global flag to ignore checksums . by default it is set to false . concode_field_sep String AUTO_DOWNLOAD_SETTING concode_elem_sep String DISABLE_CHECKSUMS_SETTING concode_elem_sep GrapeEngine instance concode_elem_sep boolean enableAutoDownload concode_elem_sep boolean enableGrapes concode_elem_sep boolean disableC...
void function ( boolean arg0 ) { Grape . arg0 = arg0 ; }
16,810
creates a hashmap instance . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
HashMap < K , V > function ( ) { return new HashMap < K , V > ( ) ; }
16,811
returns the id of the job this allocated slot belongs to . concode_field_sep JobID jobID concode_elem_sep SharedSlot parent concode_elem_sep int status concode_elem_sep int CANCELLED concode_elem_sep Instance instance concode_elem_sep AbstractID groupID concode_elem_sep int slotNumber concode_elem_sep AtomicIntegerFiel...
JobID function ( ) { return this . jobID ; }
16,812
edits a global function comment . concode_field_sep PlaceHolder placeHolder concode_field_sep void setName concode_elem_sep void resolveFunction concode_elem_sep void deleteGlobalFunctionComment concode_elem_sep Integer appendGlobalFunctionComment concode_elem_sep void setDescription
void function ( final AbstractSQLProvider arg0 , final INaviFunction arg1 , final Integer arg2 , final Integer arg3 , final String arg4 ) { PostgreSQLCommentFunctions . editComment ( arg0 , arg2 , arg3 , arg4 ) ; }
16,813
encode binary data to base64 concode_field_sep PlaceHolder placeHolder concode_field_sep String hexSHA1 concode_elem_sep byte[] decodeBASE64 concode_elem_sep byte[] hexStringToByte concode_elem_sep String UUID concode_elem_sep String hexMD5 concode_elem_sep String byteToHexString
String function ( byte [ ] arg0 ) { return new String ( Base64 . encodeBase64 ( arg0 ) ) ; }
16,814
return all collations . will include # of hits and misspelling-to-correction details if `` spellcheck.collateextendedresults was true . concode_field_sep int endOffset concode_elem_sep String original concode_elem_sep List<Collation> collations concode_elem_sep List<Integer> alternativeFrequencies concode_elem_sep Stri...
List < Collation > function ( ) { return collations ; }
16,815
factory to create the predicate . if the collection is size zero , the predicate always returns true . if the collection is size one , then that predicate is returned . concode_field_sep Predicate[] iPredicates concode_elem_sep long serialVersionUID concode_field_sep boolean evaluate concode_elem_sep Predicate[] getPre...
Predicate function ( Collection arg0 ) { Predicate [ ] loc0 = FunctorUtils . validate ( arg0 ) ; if ( loc0 . length == 0 ) { return TruePredicate . INSTANCE ; } if ( loc0 . length == 1 ) { return loc0 [ 0 ] ; } return new AllPredicate ( loc0 ) ; }
16,816
performs a dynamic query on the database and returns a range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end to com.l...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 ) { return _syncDeviceLocalService . arg0 ( arg0 , arg1 , arg2 ) ; }
16,817
get the child node before which the result nodes will be inserted . if no node was set via #domresult node node , node nextsibling , #domresult node node , node nextsibling , string systemid or #setnextsibling node nextsibling , then null will be returned . concode_field_sep String FEATURE concode_elem_sep Node node co...
Node function ( ) { return nextSibling ; }
16,818
this method returns the cubicsplinesegments pointed to by index concode_field_sep int numSegments concode_elem_sep CubicSplineSegment[] cubicSplineSegment concode_elem_sep float totalCurveLength concode_field_sep void setSegments concode_elem_sep float getTotalCurveLength concode_elem_sep void computeTotalCurveLength
CubicSplineSegment function ( int arg0 ) { return this . cubicSplineSegment [ arg0 ] ; }
16,819
returns the value of a cell in the matrix . concode_field_sep long serialVersionUID concode_elem_sep double[] m_Elements concode_field_sep AlgVector add concode_elem_sep void scalarMultiply concode_elem_sep void setElements concode_elem_sep void main concode_elem_sep int numElements concode_elem_sep double dotMultiply ...
double function ( int arg0 ) { return m_Elements [ arg0 ] ; }
16,820
this semaphore implementation does not use the database . concode_field_sep HashSet<String> locks concode_elem_sep String DEFAULT_TRANSACTION_MANANGER_LOCATION concode_elem_sep ThreadLocal<HashSet<String>> lockOwners concode_elem_sep Logger log concode_elem_sep String transactionManagerJNDIName concode_elem_sep String ...
boolean function ( ) { return false ; }
16,821
returns an instance of a sasl buffer given the buffer 's encoded contents , excluding the buffer 's header bytes . calls the method with the same name and three arguments as : getinstance raw , 0 , raw.length . concode_field_sep ByteArrayInputStream in concode_elem_sep int length concode_field_sep byte[] getOS concode_...
InputBuffer function ( byte [ ] arg0 ) { return getInstance ( arg0 , 0 , arg0 . length ) ; }
16,822
return type metadata object concode_field_sep int resultado concode_elem_sep java.lang.String mensagem concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_sep int getResultado concode_elem_sep void setResulta...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
16,823
get application context . concode_field_sep Class<?> defaultReceiver concode_elem_sep Class<?> receiver concode_elem_sep String PREF_KEY concode_elem_sep Context context concode_elem_sep Options options concode_elem_sep NotificationCompat.Builder builder concode_field_sep void cancel concode_elem_sep boolean wasInThePa...
Context function ( ) { return context ; }
16,824
return version name , or the string `` 0 '' if it ca n't be read concode_field_sep PlaceHolder placeHolder concode_field_sep PackageInfo getPackageInfo concode_elem_sep boolean isDebugBuild concode_elem_sep int getVersionCode
String function ( Context arg0 ) { PackageInfo loc0 = getPackageInfo ( arg0 ) ; if ( loc0 != null ) { return loc0 . versionName ; } return "srini_string" ; }
16,825
creates a new threadpoolexecutor to serve the agi requests . the nature of this pool defines how many concurrent requests can be handled . the default implementation returns a dynamic thread pool defined by the poolsize and maximumpoolsize properties . you can override this method to change this behavior . for example ...
ThreadPoolExecutor function ( ) { return new ThreadPoolExecutor ( poolSize , ( maximumPoolSize < poolSize ) ? poolSize : maximumPoolSize , 50000L , TimeUnit . MILLISECONDS , new SynchronousQueue < Runnable > ( ) , new DaemonThreadFactory ( ) ) ; }
16,826
returns a listener that should be called on engine failure concode_field_sep CodecService codecService concode_elem_sep OpenMode openMode concode_elem_sep IndexSettings indexSettings concode_elem_sep Setting<String> INDEX_CODEC_SETTING concode_elem_sep ShardId shardId concode_elem_sep Store store concode_elem_sep Trans...
Engine . EventListener function ( ) { return eventListener ; }
16,827
increase the play count by 1 concode_field_sep int playCount concode_elem_sep String filename concode_elem_sep String artist concode_elem_sep String length concode_elem_sep String title concode_field_sep void setLength concode_elem_sep String getTitle concode_elem_sep String getFilename concode_elem_sep String getArtis...
void function ( ) { playCount ++ ; }
16,828
this method increments a known value for the current time each time this method is called . the first value is 1 . concode_field_sep long timeIncrement concode_field_sep long incrementTime
long function ( ) { return timeIncrement ++ ; }
16,829
get the main panel for cli gui . concode_field_sep CommandLine cmdLine concode_elem_sep CLIOutput output concode_elem_sep CommandContext cmdCtx concode_elem_sep CommandExecutor executor concode_elem_sep JPanel mainPanel concode_elem_sep boolean isStandalone concode_elem_sep JTabbedPane tabs concode_field_sep void setCo...
JPanel function ( ) { return mainPanel ; }
16,830
set the value for message . concode_field_sep String fieldName concode_elem_sep String message concode_field_sep void setFieldName concode_elem_sep String getMessage concode_elem_sep String getFieldName
void function ( String arg0 ) { this . message = arg0 ; }
16,831
gets the checks if is enabled . concode_field_sep int vehicleInformationModelId concode_elem_sep VehicleFuelTypeModel vehicleFuelTypeModel concode_elem_sep VehicleTypeModel vehicleTypeModel concode_elem_sep List<UserVehicleModel> userVehicleModels concode_elem_sep boolean isEnabled concode_elem_sep VehicleModel vehicle...
boolean function ( ) { return this . isEnabled ; }
16,832
write a boundary marker concode_field_sep OutputStream _os concode_elem_sep Random RANDOM_GEN concode_elem_sep URLConnection _connection concode_elem_sep String BOUNDARY concode_field_sep void writeName concode_elem_sep void newline concode_elem_sep InputStream post concode_elem_sep String randomString concode_elem_sep...
void function ( ) { write ( "srini_string" ) ; write ( BOUNDARY ) ; }
16,833
compares two longs concode_field_sep PlaceHolder placeHolder concode_field_sep int divideByAndCeilToInt concode_elem_sep int divideByAndRoundToInt concode_elem_sep boolean isPowerOfTwo concode_elem_sep long divideByAndRoundToLong concode_elem_sep String bytesToHex concode_elem_sep int nextPowerOfTwo concode_elem_sep lo...
int function ( long arg0 , long arg1 ) { if ( arg0 > arg1 ) { return + 1 ; } else if ( arg1 > arg0 ) { return - 1 ; } else { return 0 ; } }
16,834
sets the quantity value for this inventoryassignment . concode_field_sep java.lang.String internalId concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef toBinNumber concode_elem_sep java.lang.Boolean quantityAvailable concode_elem_sep java.lang.Double quantity concode_elem_sep org.apache.axis.descr...
void function ( java . lang . Double arg0 ) { this . quantity = arg0 ; }
16,835
get the flag indicating whether a transaction context should always be propagated . concode_field_sep boolean OTS_NEED_TRAN_CONTEXT concode_elem_sep boolean OTS_ALWAYS_PROPAGATE concode_field_sep boolean getNeedTranContext
boolean function ( ) { return OTS_ALWAYS_PROPAGATE ; }
16,836
join another table . concode_field_sep Object[] groupByExpressions concode_elem_sep ArrayList<Token> conditions concode_elem_sep IdentityHashMap<Object,SelectColumn<T>> aliasMap concode_elem_sep long offset concode_elem_sep ArrayList<UpdateColumn> updateColumnDeclarations concode_elem_sep long limit concode_elem_sep Se...
QueryJoin function ( U arg0 ) { TableDefinition < T > loc0 = ( TableDefinition < T > ) db . define ( arg0 . getClass ( ) ) ; SelectTable < T > loc1 = new SelectTable ( db , this , arg0 , false ) ; loc0 . initSelectObject ( loc1 , arg0 , aliasMap ) ; joins . add ( loc1 ) ; return new QueryJoin ( this , loc1 ) ; }
16,837
read the size of the next block from inputstream concode_field_sep byte[] recordBytes concode_elem_sep ByteArrayInputStream recordStream concode_field_sep Object decodeSingleValue concode_elem_sep byte[] getRecordBytes concode_elem_sep int[] decodeIntArray concode_elem_sep int[] decodeIntArray concode_elem_sep double r...
int function ( final InputStream arg0 ) { return BCF2Type . INT32 . read ( arg0 ) ; }
16,838
gets selected time zone time . this is the time zone selected by one of six commandbuttons from the map in the ui . concode_field_sep DateFormat selectedFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep DateFormat serverFormat concode_elem_sep int renderInterval concode_elem_sep ArrayList allTimeZo...
String function ( ) { return formatCurrentTime ( selectedFormat ) ; }
16,839
a list that contains the descriptions of the specified configuration recorders . concode_field_sep com.amazonaws.internal.SdkInternalList<ConfigurationRecorder> configurationRecorders concode_field_sep DescribeConfigurationRecordersResult withConfigurationRecorders concode_elem_sep DescribeConfigurationRecordersResult ...
java . util . List < ConfigurationRecorder > function ( ) { if ( configurationRecorders == null ) { configurationRecorders = new com . amazonaws . internal . SdkInternalList < ConfigurationRecorder > ( ) ; } return configurationRecorders ; }
16,840
retrieves the internal state of this object , as a string . the retreived value is : super.tostring + '' running = '' + running + '' , starttime = '' + starttime + '' , total = '' + total + '' '' ; concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastSt...
String function ( ) { return super . toString ( ) + "srini_string" + running + "srini_string" + startTime + "srini_string" + total + "srini_string" ; }
16,841
sets the value of the authenticationtoken property . concode_field_sep String partnerId concode_elem_sep String authenticationToken concode_elem_sep String partnerAccount concode_field_sep String getAuthenticationToken concode_elem_sep String getPartnerAccount concode_elem_sep String getPartnerId concode_elem_sep void ...
void function ( String arg0 ) { this . authenticationToken = arg0 ; }
16,842
create a xmleventreader from the given list of xmlevent . concode_field_sep PlaceHolder placeHolder concode_field_sep XMLReader createXMLReader concode_elem_sep XMLReader createXMLReader concode_elem_sep boolean isStaxSource concode_elem_sep boolean isStaxResult concode_elem_sep ContentHandler createContentHandler conc...
XMLEventReader function ( List < XMLEvent > arg0 ) { return new ListBasedXMLEventReader ( arg0 ) ; }
16,843
returns the log-density of the standard normal . concode_field_sep double PSI concode_elem_sep int chisqDistribution concode_elem_sep double logPSI concode_elem_sep int undefinedDistribution concode_elem_sep int normalDistribution concode_field_sep double pchisq concode_elem_sep double pchisq concode_elem_sep DoubleVec...
double function ( double arg0 ) { return logPSI - arg0 * arg0 / 2. ; }
16,844
called whenever the osgi framework starts our bundle concode_field_sep Logger logger concode_field_sep void stop
void function ( BundleContext arg0 ) { logger . debug ( "srini_string" ) ; }
16,845
returns true if the input limit has been reached . concode_field_sep boolean reached concode_elem_sep long value concode_field_sep long getValue concode_elem_sep void reached
boolean function ( ) { return this . reached ; }
16,846
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String nextToken concode_elem_sep java.util.List<String> branches concode_field_sep java.util.List<String> getBranches concode_elem_sep void setNextToken concode_elem_sep int hashCode concode_elem_sep boolean equals co...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getBranches ( ) != null ) loc0 . append ( "srini_string" + getBranches ( ) + "srini_string" ) ; if ( getNextToken ( ) != null ) loc0 . append ( "srini_string" + getNextToken ( ) ) ; loc0 . append ( "srini_string" ...
16,847
make a request to the facebook graph api without any parameters . see http://developers.facebook.com/docs/api note that this method is asynchronous and the callback will be invoked in a background thread ; operations that affect the ui will need to be posted to the ui thread or an appropriate handler . this method is d...
void function ( String arg0 , RequestListener arg1 , final Object arg2 ) { request ( arg0 , new Bundle ( ) , "srini_string" , arg1 , arg2 ) ; }
16,848
update the direction and length from the current dx , dy . concode_field_sep double dx concode_elem_sep double dy concode_elem_sep double length concode_elem_sep int direction concode_field_sep void add concode_elem_sep int getDirection concode_elem_sep void revertVertical concode_elem_sep void scale concode_elem_sep v...
void function ( ) { this . direction = ( int ) Math . toDegrees ( Math . atan2 ( dy , dx ) ) ; this . length = Math . sqrt ( dx * dx + dy * dy ) ; }
16,849
adds the message id to be reused this method is invoked when an ack is received for a given message , so that its id could be reused note : this should be called after calling call necessary operations related to ack handling , so that there will not be any state inconsistencies concode_field_sep Log log concode_elem_s...
void function ( int arg0 ) { messageIds . add ( arg0 ) ; }
16,850
returns true if this abilityrefchoiceset is equal to the given object . equality is defined as being another abilityrefchoiceset object with equal underlying contents . concode_field_sep Nature nature concode_elem_sep CDOMSingleRef<AbilityCategory> category concode_elem_sep Set<CDOMReference<Ability>> abilityRefSet con...
boolean function ( Object arg0 ) { if ( arg0 == this ) { return true ; } if ( arg0 instanceof AbilityRefChoiceSet ) { AbilityRefChoiceSet loc0 = ( AbilityRefChoiceSet ) arg0 ; return abilityRefSet . equals ( loc0 . abilityRefSet ) ; } return false ; }
16,851
returns an unmodifiable copy of the bean deployment archives set concode_field_sep ServiceRegistry serviceRegistry concode_elem_sep BeansXml beansXml concode_elem_sep Set<EjbDescriptor<?>> ejbDescriptors concode_elem_sep Module module concode_elem_sep boolean root concode_elem_sep Set<BeanDeploymentArchive> beanDeploym...
Collection < BeanDeploymentArchive > function ( ) { return Collections . unmodifiableCollection ( new HashSet < BeanDeploymentArchive > ( beanDeploymentArchives ) ) ; }
16,852
gets the certificacao value for this valordediagnostico . concode_field_sep java.lang.String valorReferencia2 concode_elem_sep com.gvt.www.ws.eai.oss.OSSTurbonetDiagnosticoBandaLarga.EnumCertificacao certificacao concode_elem_sep java.lang.String valorAtual concode_elem_sep java.lang.Object __equalsCalc concode_elem_se...
com . gvt . www . ws . eai . oss . OSSTurbonetDiagnosticoBandaLarga . EnumCertificacao function ( ) { return certificacao ; }
16,853
returns the number of points comprising this geoshape . a point and circle have only one point center of cricle , a box has two points the south-west and north-east corners and a polygon has a variable number of points > = 3 . concode_field_sep float latitude concode_elem_sep float[][] coordinates concode_elem_sep Spat...
int function ( ) { switch ( getType ( ) ) { case POINT : return 1 ; case CIRCLE : return 1 ; case BOX : return 2 ; case POLYGON : return coordinates [ 0 ] . length ; default : throw new IllegalStateException ( "srini_string" + getType ( ) ) ; } }
16,854
adds the given container concode_field_sep String VIRTUAL_PATH_SEPARATOR concode_elem_sep Pattern removeDiac concode_elem_sep SwiftTreeModel model concode_elem_sep List<FileIFace> filesToRefresh concode_elem_sep Map<ContainerIFace,VirtualFile> containers concode_elem_sep Map<String,VirtualFile> virtualFiles concode_ele...
void function ( ContainerIFace iface ) { VirtualFile f = containers . get ( iface ) ; if ( f != null ) return ; f = new ContainerVirtualFile ( virtualFileNotifier , model . getRoot ( ) , iface ) ; containers . put ( iface , f ) ; onFilesAdded ( iface , iface . getFiles ( ) ) ; iface . addFileListener ( this ) ; model ....
16,855
returns a random item from the array , or zero if the array is empty . concode_field_sep boolean ordered concode_elem_sep int size concode_elem_sep float[] items concode_field_sep void add concode_elem_sep void set concode_elem_sep void shrink concode_elem_sep void clear concode_elem_sep void insert concode_elem_sep fl...
float function ( ) { if ( size == 0 ) return 0 ; return items [ MathUtils . random ( 0 , size - 1 ) ] ; }
16,856
retrieves a new hsqlproperties object , if possible , loaded from the specified file . concode_field_sep PlaceHolder placeHolder concode_field_sep void translateDefaultNoSystemExitProperty concode_elem_sep int getDefaultPort concode_elem_sep String[] listLocalInetAddressNames concode_elem_sep void translateDefaultDatab...
ServerProperties function ( int arg0 , String arg1 , String arg2 ) { boolean loc0 ; if ( StringUtil . isEmpty ( arg1 ) ) { return null ; } ServerProperties loc1 = new ServerProperties ( arg0 , arg1 , arg2 ) ; try { loc0 = loc1 . load ( ) ; } catch ( Exception loc2 ) { return null ; } return loc0 ? loc1 : null ; }
16,857
returns true if the user is connected to wifi concode_field_sep int TYPE_UNKNOWN concode_field_sep NetworkInfo getActiveNetworkInfo concode_elem_sep boolean isAirplaneModeOn concode_elem_sep boolean checkConnection concode_elem_sep boolean isNetworkAvailable concode_elem_sep int getActiveNetworkType
boolean function ( Context arg0 ) { return ( getActiveNetworkType ( arg0 ) == ConnectivityManager . TYPE_WIFI ) ; }
16,858
returns the cache object or null if one does n't exist . concode_field_sep Log log concode_elem_sep SimpleLog appLog concode_elem_sep boolean logStatements concode_elem_sep LockFile lf concode_elem_sep boolean syncFile concode_field_sep void checkpoint concode_elem_sep int getLogSize concode_elem_sep void synchLog conc...
DataFileCache function ( ) { if ( log != null ) { return log . getCache ( ) ; } else { return null ; } }
16,859
small icon resource id for the local notification . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep String getText concode_elem_sep long getRepeatIn...
int function ( ) { String loc0 = options . optString ( "srini_string" , "srini_string" ) ; return assets . getResIdForDrawable ( loc0 ) ; }
16,860
return the `` processing inside an include '' flag . concode_field_sep Response response concode_field_sep void setRequest concode_elem_sep void setStream concode_elem_sep String getInfo concode_elem_sep Request getRequest concode_elem_sep Response getWrappedResponse concode_elem_sep ServletResponse getResponse concode...
boolean function ( ) { return ( response . getIncluded ( ) ) ; }
16,861
the response body will be assumed to be gzipped if the gzip header has been set . concode_field_sep int GZIP_MAGIC_NUMBER_BYTE_1 concode_elem_sep Map<String,Serializable> requestAttributes concode_elem_sep long timeToLiveSeconds concode_elem_sep java.util.Set<String> IGNORED_INTERFACES concode_elem_sep long ONE_YEAR_IN...
boolean function ( ) { for ( Header < ? extends Serializable > loc0 : responseHeaders ) { if ( "srini_string" . equals ( loc0 . getValue ( ) ) ) { return true ; } } return false ; }
16,862
returns the sql statement which retrieves the resource id from the specified table . concode_field_sep PlaceHolder placeHolder concode_field_sep String getResourceIdAndFilePath concode_elem_sep String getBodySql concode_elem_sep String getAddFilesizeColumnSql concode_elem_sep String getDropBoxQuotaQuerySql concode_elem...
String function ( String arg0 ) { return "srini_string" + arg0 + "srini_string" ; }
16,863
read length bytes from position of a file channel concode_field_sep int WRITE_CHUNK_SIZE concode_elem_sep int READ_CHUNK_SIZE concode_field_sep void readFromFileChannelWithEofException concode_elem_sep void readFromFileChannelWithEofException concode_elem_sep void writeToChannel concode_elem_sep void writeToChannel con...
byte [ ] function ( FileChannel arg0 , long arg1 , int arg2 ) { byte [ ] loc0 = new byte [ arg2 ] ; readFromFileChannelWithEofException ( arg0 , arg1 , loc0 , 0 , arg2 ) ; return loc0 ; }
16,864
sets the value of the type property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep SVPlatformNeutralServiceSpecificationType svPlatformNeutralServiceSpecification concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep Strin...
void function ( String arg0 ) { this . type = arg0 ; }
16,865
returns the time the origin response was received by the caching module . concode_field_sep Date date concode_elem_sep Map<String,String> variantMap concode_elem_sep StatusLine statusLine concode_elem_sep HeaderGroup responseHeaders concode_elem_sep Resource resource concode_elem_sep Date requestDate concode_elem_sep l...
Date function ( ) { return responseDate ; }
16,866
format : resourcetypeid : resourcekey actual delimiter is clusterkey.delim concode_field_sep String resourceKey concode_elem_sep List<ClusterKey.Node> hierarchy concode_elem_sep int resourceTypeId concode_elem_sep String key concode_elem_sep String DELIM_NODE concode_elem_sep long serialVersionUID concode_elem_sep int ...
String function ( ) { return resourceTypeId + DELIM + resourceKey ; }
16,867
find out the current project name concode_field_sep boolean ignoreProjectTag concode_elem_sep Project project concode_elem_sep Vector<Target> targetVector concode_elem_sep String currentProjectName concode_elem_sep Map<String,Target> currentTargets concode_elem_sep Target currentTarget concode_elem_sep File buildFile c...
String function ( ) { return currentProjectName ; }
16,868
sets the value of the template property . concode_field_sep MetaData.Template template concode_elem_sep MetaData.WorkflowImpl workflowImpl concode_elem_sep String workflowImplId concode_elem_sep ParametersMetaData parametersMetaData concode_elem_sep String templateName concode_elem_sep String templateDescription concod...
void function ( MetaData . Template arg0 ) { this . template = arg0 ; }
16,869
get the jni signaure for a constructor . concode_field_sep HashMap<String,String> NATIVE_TYPES concode_elem_sep HashMap<String,String> CLASS_DESCRIPTORS concode_elem_sep HashMap<String,String> NATIVE_ARRAY_TYPES concode_field_sep boolean isStatic concode_elem_sep String getClassDescriptor concode_elem_sep String getMem...
String function ( Constructor < ? > arg0 ) { return getSignature ( arg0 . getParameterTypes ( ) , void . class ) ; }
16,870
sets the value of the id property . concode_field_sep String id concode_elem_sep String mimeType concode_elem_sep String encoding concode_elem_sep List<Object> content concode_field_sep String getEncoding concode_elem_sep String getMimeType concode_elem_sep void setEncoding concode_elem_sep List<Object> getContent conc...
void function ( String arg0 ) { this . id = arg0 ; }
16,871
tests bytebufferkeyvaluepartitionreader #close works . concode_field_sep ByteBufferKeyValuePartitionReader mReader concode_elem_sep byte[] VALUE1 concode_elem_sep byte[] KEY1 concode_elem_sep ExpectedException mThrown concode_elem_sep byte[] VALUE2 concode_elem_sep ByteBuffer sBuffer concode_elem_sep byte[] KEY2 concod...
void function ( ) { mReader . close ( ) ; mReader . close ( ) ; }
16,872
sets the authenticator used to respond to challenges from the remote web server or proxy server . if unset , the java.net.authenticator #setdefault system-wide default authenticator will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep Conne...
OkHttpClient function ( OkAuthenticator arg0 ) { this . authenticator = arg0 ; return this ; }
16,873
returns the enumerated type which specifies cycling behavior . concode_field_sep ColorSpaceEnum colorSpace concode_elem_sep int transparency concode_elem_sep CycleMethodEnum REPEAT concode_elem_sep CycleMethodEnum cycleMethod concode_elem_sep float[] fractions concode_elem_sep ColorSpaceEnum SRGB concode_elem_sep Color...
CycleMethodEnum function ( ) { return cycleMethod ; }
16,874
checks if the given class is persistable with hibernate and has an id of type string . concode_field_sep Collection hibernatableStringIdClasses concode_elem_sep String jndiName concode_elem_sep JbpmSessionFactory instance concode_elem_sep Configuration configuration concode_elem_sep SessionFactory sessionFactory concod...
boolean function ( Class arg0 ) { if ( hibernatableStringIdClasses == null ) initHibernatableClasses ( ) ; return hibernatableStringIdClasses . contains ( arg0 ) ; }
16,875
returns the portal preferences with the primary key or returns null if it could not be found . concode_field_sep PortalPreferencesPersistence _persistence concode_field_sep int countAll concode_elem_sep void cacheResult concode_elem_sep void cacheResult concode_elem_sep PortalPreferences findByO_O concode_elem_sep Port...
PortalPreferences function ( long arg0 ) { return getPersistence ( ) . fetchByPrimaryKey ( arg0 ) ; }
16,876
returns an array containing the names of all registered fold handlers . concode_field_sep Map<String,FoldHandler> folds concode_field_sep FoldHandler getFoldHandler concode_elem_sep void addFoldHandler
String [ ] function ( ) { return folds . keySet ( ) . toArray ( new String [ folds . size ( ) ] ) ; }
16,877
return the correctly-typed class of the given object . concode_field_sep ThreadMXBean threadBean concode_elem_sep Map<Class<?>,Constructor<?>> CONSTRUCTOR_CACHE concode_elem_sep Class<?>[] EMPTY_ARRAY concode_elem_sep long previousLogTime concode_field_sep int getCacheSize concode_elem_sep String getTaskName concode_el...
Class < T > function ( T arg0 ) { return ( Class < T > ) arg0 . getClass ( ) ; }
16,878
redefinisana equals metoda koja poredi objekte klase strategija na osnovu naziva . concode_field_sep List<SwotStrat> sanse concode_elem_sep List<SwotStrat> pretnje concode_elem_sep double sumaUkupnihAtraktivnosti concode_elem_sep List<SwotStrat> slabosti concode_elem_sep String naziv concode_elem_sep List<SwotStrat> sn...
boolean function ( Object arg0 ) { if ( arg0 != null ) { if ( arg0 instanceof Strategija ) { Strategija loc0 = ( Strategija ) arg0 ; return naziv . equals ( loc0 . getNaziv ( ) ) ; } } return false ; }
16,879
gets a date/time formatter instance using the specified style , time zone and locale . concode_field_sep ConcurrentMap<MultipartKey,F> cInstanceCache concode_elem_sep Object[] keys concode_elem_sep int hashCode concode_elem_sep int NONE concode_elem_sep ConcurrentMap<MultipartKey,String> cDateTimeInstanceCache concode_...
F function ( final int arg0 , final int arg1 , final TimeZone arg2 , final Locale arg3 ) { return getDateTimeInstance ( Integer . valueOf ( arg0 ) , Integer . valueOf ( arg1 ) , arg2 , arg3 ) ; }
16,880
returns the mime type of the data specified by the given uri string . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String getRealPathFromURI_API11to18 concode_elem_sep String stripFileProtocol concode_elem_sep String getRealPath concode_elem_sep String getRealPath concode_elem_sep St...
String function ( String arg0 , CordovaInterface arg1 ) { String loc0 = null ; Uri loc1 = Uri . parse ( arg0 ) ; if ( arg0 . startsWith ( "srini_string" ) ) { loc0 = arg1 . getActivity ( ) . getContentResolver ( ) . getType ( loc1 ) ; } else { loc0 = getMimeTypeForExtension ( loc1 . getPath ( ) ) ; } return loc0 ; }
16,881
a list of product codes . concode_field_sep String volumeId concode_elem_sep com.amazonaws.internal.SdkInternalList<ProductCode> productCodes concode_elem_sep Boolean autoEnableIO concode_field_sep Boolean isAutoEnableIO concode_elem_sep DescribeVolumeAttributeResult withVolumeId concode_elem_sep DescribeVolumeAttribut...
DescribeVolumeAttributeResult function ( java . util . Collection < ProductCode > arg0 ) { setProductCodes ( arg0 ) ; return this ; }
16,882
calls casexxx for each class of the model until one returns a non null result ; it yields that result . concode_field_sep DiagramPackage modelPackage concode_field_sep Object caseDiagramLink concode_elem_sep Object caseAbstractDiagramEntity concode_elem_sep Object caseDiagramContainer concode_elem_sep Object caseDiagra...
Object function ( EObject arg0 ) { return doSwitch ( arg0 . eClass ( ) , arg0 ) ; }
16,883
copy a file from source to destination . concode_field_sep int DEFAULT_BUFFER_SIZE concode_field_sep int copyStream
void function ( File arg0 , File arg1 ) { FileOutputStream loc0 = new FileOutputStream ( arg1 ) ; FileInputStream loc1 = new FileInputStream ( arg0 ) ; copyStream ( loc1 , loc0 ) ; loc0 . flush ( ) ; loc0 . close ( ) ; loc1 . close ( ) ; }
16,884
test if the authorization factory gets the username provided by the authenticator , if sesstionstate is created without username concode_field_sep String username concode_field_sep HiveAuthorizer createHiveAuthorizer concode_elem_sep void setupDataNucleusFreeHive concode_elem_sep void setup concode_elem_sep void testSe...
void function ( ) { SessionState loc0 = new SessionState ( getAuthV2HiveConf ( ) ) ; setupDataNucleusFreeHive ( loc0 . getConf ( ) ) ; SessionState . start ( loc0 ) ; Assert . assertEquals ( "srini_string" , loc0 . getAuthenticator ( ) . getUserName ( ) , HiveAuthorizerStoringUserNameFactory . username ) ; }
16,885
create an instance of setratesresponse concode_field_sep PlaceHolder placeHolder concode_field_sep SetRates createSetRates concode_elem_sep ArRate createArRate concode_elem_sep Rate createRate concode_elem_sep Branch createBranch concode_elem_sep CResponse createCResponse
SetRatesResponse function ( ) { return new SetRatesResponse ( ) ; }
16,886
gets the value of the nowidget property . concode_field_sep Layout layout concode_elem_sep List<JAXBElement<?>> pageOrGroupOrLine concode_elem_sep String flavour concode_elem_sep String name concode_elem_sep Boolean nowidget concode_elem_sep String align concode_elem_sep String clazz concode_elem_sep String target conc...
Boolean function ( ) { return nowidget ; }
16,887
gets the value given the key . note that it does not work with hash values or list values concode_field_sep Logger LOG concode_elem_sep Jedis jedis concode_elem_sep String host concode_elem_sep int port concode_elem_sep int timeOut concode_elem_sep int dbIndex concode_elem_sep int keyExpiryTime concode_elem_sep Transac...
Object function ( Object arg0 ) { if ( isInTransaction ( ) ) { throw new RuntimeException ( "srini_string" ) ; } return jedis . get ( arg0 . toString ( ) ) ; }
16,888
returns a hash code value for the object . concode_field_sep Logger log concode_elem_sep String name concode_elem_sep long serialVersionUID concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void endpointActivation concode_elem_sep void stop concode_elem_sep void endpointDeactivation concod...
int function ( ) { int loc0 = 17 ; if ( name != null ) { loc0 += 31 * loc0 + 7 * name . hashCode ( ) ; } else { loc0 += 31 * loc0 + 7 ; } return loc0 ; }
16,889
the rest status . concode_field_sep ActionWriteResponse response concode_elem_sep Failure failure concode_elem_sep String opType concode_elem_sep String index concode_elem_sep Throwable cause concode_elem_sep int id concode_elem_sep String type concode_elem_sep RestStatus status concode_field_sep long getVersion concod...
RestStatus function ( ) { return this . status ; }
16,890
get query start time . concode_field_sep Set<Exp> activeNativeExpansions concode_elem_sep Execution execution concode_elem_sep Query query concode_elem_sep ResultStyle resultStyle concode_elem_sep Dialect currentDialect concode_elem_sep int nonAllPositionCount concode_elem_sep int recursionCheckCommandCount concode_ele...
Date function ( ) { return queryStartTime ; }
16,891
handles secret codes to launch arbitrary activities in the form of #### . if a secret code is encountered an intent is started with the android_secret_code : / / uri . concode_field_sep String MMI_IMEI_DISPLAY concode_elem_sep boolean DBG concode_elem_sep String TAG concode_field_sep boolean handleChars concode_elem_se...
boolean function ( Context arg0 , String arg1 ) { int loc0 = arg1 . length ( ) ; if ( loc0 > 8 && arg1 . startsWith ( "srini_string" ) && arg1 . endsWith ( "srini_string" ) ) { Intent loc1 = new Intent ( Intents . SECRET_CODE_ACTION , Uri . parse ( "srini_string" + arg1 . substring ( 4 , loc0 - 4 ) ) ) ; arg0 . sendBro...
16,892
set the location of the ehcache config file . a typical value is '' / web-inf/ehcache.xml '' . default is `` ehcache.xml '' in the root of the class path , or if not found , `` ehcache-failsafe.xml '' in the ehcache jar default ehcache initialization . concode_field_sep boolean shared concode_elem_sep boolean locallyMa...
void function ( Resource arg0 ) { this . configLocation = arg0 ; }
16,893
gets the action attribute value from the specified event for the given name . action attributes are specified by < f : attribute / > . concode_field_sep Logger log concode_elem_sep Properties buildProperties concode_field_sep String getRequestParameter concode_elem_sep UIComponent findComponent concode_elem_sep Servlet...
String function ( ActionEvent arg0 , String arg1 ) { return ( String ) arg0 . getComponent ( ) . getAttributes ( ) . get ( arg1 ) ; }
16,894
sets the a3 of this country . concode_field_sep Country _country concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getNameCurrentValue concode_elem_sep java.lang.String getName concode_ele...
void function ( java . lang . String arg0 ) { _country . setA3 ( arg0 ) ; }
16,895
the currently nominated error that occurred during executing the commmand . concode_field_sep DaemonContext daemonContext concode_elem_sep Throwable exception concode_elem_sep Object result concode_elem_sep DaemonConnection connection concode_elem_sep List<DaemonCommandAction> actions concode_elem_sep Command command c...
Throwable function ( ) { return this . exception ; }
16,896
return the value associated with the column : language . concode_field_sep String commonName concode_elem_sep Country country concode_elem_sep String formalName concode_elem_sep Map<Serializable,Integer> SAVED_HASHES concode_elem_sep Integer hashCode concode_elem_sep Language language concode_elem_sep Integer id concod...
Language function ( ) { return this . language ; }
16,897
utility method for building selectitem from a series of localised entries in a messagebundle . the selectitem value is the messagebundle key , and the label is the localised messagebundle value . concode_field_sep Log logger concode_elem_sep Effect valueChangeEffect concode_field_sep void effectChangeListener concode_e...
SelectItem [ ] function ( String arg0 , String arg1 , int arg2 , int arg3 ) { int loc0 = arg3 - arg2 + 1 ; SelectItem [ ] loc1 = new SelectItem [ loc0 ] ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { String loc3 = arg0 + Integer . toString ( arg2 + loc2 ) + arg1 ; loc1 [ loc2 ] = buildSelectItem ( loc3 ) ; } return l...
16,898
adds a sequence of events to this sequence . concode_field_sep List<DiffXEvent> sequence concode_elem_sep Iterator<DiffXEvent> iterator concode_elem_sep PrefixMapping prefixMapping concode_field_sep DiffXEvent getEvent concode_elem_sep DiffXEvent next concode_elem_sep DiffXEvent removeEvent concode_elem_sep void mapPre...
void function ( EventSequence arg0 ) { for ( int loc0 = 0 ; loc0 < arg0 . size ( ) ; loc0 ++ ) { this . sequence . add ( arg0 . getEvent ( loc0 ) ) ; } }
16,899
add message when validate failure . concode_field_sep boolean invalid concode_elem_sep String emailAddressPattern concode_elem_sep Controller controller concode_elem_sep ActionInvocation invocation concode_elem_sep String datePattern concode_elem_sep boolean shortCircuit concode_field_sep void setShortCircuit concode_e...
void function ( String arg0 , T arg1 ) { invalid = true ; controller . setAttr ( arg0 , arg1 ) ; if ( shortCircuit ) { throw new ValidateException ( ) ; } }