idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
11,700
if staging table does n't exist , it will create a staging table . concode_field_sep PlaceHolder placeHolder concode_field_sep String getAlterTableLocationQuery concode_elem_sep List<String> getDropStagingTableQuery concode_elem_sep List<String> getBackupQueries concode_elem_sep List<String> getCreateStagingTableQuery ...
String function ( String arg0 , String arg1 , String arg2 , String arg3 ) { return getCreateTableQuery ( arg0 , arg1 , arg2 ) + "srini_string" + PartitionUtils . getQuotedString ( arg3 ) ; }
11,701
merges the contents of another pixa into this one . concode_field_sep int mNativePixa concode_elem_sep int mHeight concode_elem_sep int mWidth concode_elem_sep int mIndex concode_elem_sep boolean mRecycled concode_field_sep Pix next concode_elem_sep Rect getBoxRect concode_elem_sep int nativeGetPix concode_elem_sep boo...
boolean function ( Pixa arg0 ) { return nativeJoin ( mNativePixa , arg0 . mNativePixa ) ; }
11,702
list of selectors that define the query . an object must satisfy all of the selectors to match the query . concode_field_sep com.amazonaws.internal.SdkInternalList<Selector> selectors concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Query clone concode_elem_sep String toString concode_ele...
Query function ( java . util . Collection < Selector > arg0 ) { setSelectors ( arg0 ) ; return this ; }
11,703
is is in library boolean . concode_field_sep long sequenceNumber concode_elem_sep String fileName concode_elem_sep String scene7Url concode_elem_sep Object comments concode_elem_sep String filePath concode_elem_sep Object imageLocationCodeDTO concode_elem_sep long inspectionImagesId concode_elem_sep Object isUpdated co...
boolean function ( ) { return isInLibrary ; }
11,704
returns the absolute movement speed of an entity in coordinate space concode_field_sep int candidates_allowdrops[][] concode_elem_sep int candidates[][] concode_field_sep AS_PathEntity translateAStarPathtoPathEntity concode_elem_sep boolean isLadder concode_elem_sep AStarNode[] getAccessNodesSorted concode_elem_sep boo...
double function ( EntityLiving arg0 ) { return Math . sqrt ( ( arg0 . motionX * arg0 . motionX ) + ( arg0 . motionZ * arg0 . motionZ ) ) ; }
11,705
load a class . load a class from the same classloader as the passed loadclass , or if none then use #loadclass string concode_field_sep PlaceHolder placeHolder concode_field_sep URL getResource concode_elem_sep ResourceBundle getResourceBundle
Class function ( Class arg0 , String arg1 ) { if ( arg0 != null && arg0 . getClassLoader ( ) != null ) return arg0 . getClassLoader ( ) . loadClass ( arg1 ) ; return loadClass ( arg1 ) ; }
11,706
check if the right-hand side type may be assigned to the left-hand side type , assuming setting by reflection . considers primitive wrapper classes as assignable to the corresponding primitive types . concode_field_sep String INTERNAL_ARRAY_PREFIX concode_elem_sep String CGLIB_CLASS_SEPARATOR concode_elem_sep char PACK...
boolean function ( Class < ? > arg0 , Class < ? > arg1 ) { return ( arg0 . isAssignableFrom ( arg1 ) || arg0 . equals ( primitiveWrapperTypeMap . get ( arg1 ) ) ) ; }
11,707
loads the value from the variable with the given index . concode_field_sep int size concode_elem_sep TopValue TOP_VALUE concode_elem_sep Value[] values concode_field_sep void store concode_elem_sep ReferenceValue aload concode_elem_sep Value getValue concode_elem_sep int size concode_elem_sep IntegerValue iload concode...
Value function ( int arg0 ) { if ( arg0 < 0 || arg0 >= size ) { throw new IndexOutOfBoundsException ( "srini_string" + arg0 + "srini_string" + size + "srini_string" ) ; } return values [ arg0 ] ; }
11,708
free up any memory used by the deduplicator . concode_field_sep Map<BitSet,BitSet> canonicalBitSets concode_elem_sep Map<IntArray,IntArray> canonicalIntArrays concode_elem_sep String[] array concode_elem_sep Map<String,String> canonicalStrings concode_elem_sep long serialVersionUID concode_elem_sep Map<StringArray,Stri...
void function ( ) { canonicalIntArrays . clear ( ) ; canonicalStrings . clear ( ) ; canonicalBitSets . clear ( ) ; canonicalStringArrays . clear ( ) ; }
11,709
ensures that this object is in the stopped state . if this object is in the running state , then this has the effect of adding to the total attribute the elapsed time since the last transition from stopped to running state and sets the running attribute to false . if this object is not in the running state , this call ...
void function ( ) { if ( running ) { total += System . currentTimeMillis ( ) - startTime ; running = false ; } }
11,710
are we currently logging to stdout ? concode_field_sep boolean format concode_elem_sep Logger LOG concode_elem_sep boolean logToStdout concode_field_sep void setFormat concode_elem_sep void setLogToStdout concode_elem_sep void logStatement concode_elem_sep void logStatement concode_elem_sep boolean isFormat
boolean function ( ) { return logToStdout ; }
11,711
get the profiles that are applied else get default profiles . concode_field_sep String SPRING_PROFILE_DEFAULT concode_field_sep void addDefaultProfile
String [ ] function ( Environment arg0 ) { String [ ] loc0 = arg0 . getActiveProfiles ( ) ; if ( loc0 . length == 0 ) { return arg0 . getDefaultProfiles ( ) ; } return loc0 ; }
11,712
locate matching attribute value boolean . concode_field_sep MultifactorAuthenticationProperties.BaseProvider.Bypass bypass concode_elem_sep Logger LOGGER concode_elem_sep long serialVersionUID concode_field_sep boolean isAuthenticationRequestHonored concode_elem_sep boolean locateMatchingCredentialType concode_elem_sep...
boolean function ( final String arg0 , final String arg1 , final Map < String , Object > arg2 ) { return locateMatchingAttributeValue ( arg0 , arg1 , arg2 , true ) ; }
11,713
create a new terms aggregation with the given name . concode_field_sep PlaceHolder placeHolder concode_field_sep GeoBoundsBuilder geoBounds concode_elem_sep DateRangeBuilder dateRange concode_elem_sep DateHistogramBuilder dateHistogram concode_elem_sep RangeBuilder range concode_elem_sep SumBuilder sum concode_elem_sep...
TermsBuilder function ( String arg0 ) { return new TermsBuilder ( arg0 ) ; }
11,714
sets the value of the value property . concode_field_sep String library concode_elem_sep String name concode_elem_sep List<Variant> variant concode_elem_sep String technology concode_elem_sep List<Attribute> attribute concode_elem_sep String deviceset concode_elem_sep String device concode_elem_sep String value concode...
void function ( String arg0 ) { this . value = arg0 ; }
11,715
dispatch lifecycle joinpoint . concode_field_sep PlaceHolder placeHolder concode_field_sep void configure concode_elem_sep void configure concode_elem_sep Object instantiateBean concode_elem_sep Joinpoint createJoinpoint
void function ( BeanInfo arg0 , Object arg1 , LifecycleConfig arg2 , String arg3 ) { if ( arg2 != null && arg2 . isIgnored ( ) ) return ; Joinpoint loc0 = createJoinpoint ( arg0 , arg1 , arg2 , arg3 ) ; if ( loc0 != null ) loc0 . dispatch ( ) ; }
11,716
create a new failure object with the given value . concode_field_sep DATATYPE m_aObj concode_elem_sep ESuccess m_eSuccess concode_field_sep boolean isSet concode_elem_sep DATATYPE getIfFailureOrNull concode_elem_sep DATATYPE getIfSuccessOrNull concode_elem_sep boolean isFailure concode_elem_sep DATATYPE getIfSuccess co...
SuccessWithValue < DATATYPE > function ( @ Nullable final DATATYPE arg0 ) { return new SuccessWithValue < DATATYPE > ( ESuccess . FAILURE , arg0 ) ; }
11,717
translates a bit set to its number version concode_field_sep PlaceHolder placeHolder concode_field_sep Long reverseBinary concode_elem_sep BitSet fromLong concode_elem_sep BitSet reverse
Long function ( BitSet arg0 ) { Long loc0 = 0L ; long loc1 = 1 ; for ( int loc2 = 0 ; loc2 < arg0 . length ( ) ; loc2 ++ ) { loc0 += arg0 . get ( loc2 ) ? loc1 : 0 ; loc1 *= 2 ; } return loc0 ; }
11,718
get resultset type concode_field_sep String m_sql concode_elem_sep long serialVersionUID concode_elem_sep int m_resultSetType concode_elem_sep String m_trxName concode_elem_sep int m_resultSetConcurrency concode_field_sep String getSql concode_elem_sep int getResultSetConcurrency concode_elem_sep String getTrxName conc...
int function ( ) { return m_resultSetType ; }
11,719
use this only if you know what you 're doing . you should rarely need to iterate over all controllers in a world ! concode_field_sep HashMap<Long,Set<IMultiblockPart>> partsAwaitingChunkLoad concode_elem_sep Object orphanedPartsMutex concode_elem_sep Set<MultiblockControllerBase> deadControllers concode_elem_sep Set<IM...
Set < MultiblockControllerBase > function ( ) { return Collections . unmodifiableSet ( controllers ) ; }
11,720
gets the value of the modulus property . concode_field_sep byte[] modulus concode_elem_sep byte[] exponent concode_field_sep void setModulus concode_elem_sep void setExponent concode_elem_sep byte[] getExponent
byte [ ] function ( ) { return modulus ; }
11,721
let 's split the givenname into two . concode_field_sep Log log concode_field_sep String getAdminUserNameFromTenantId concode_elem_sep String getLastNamefromUserStoreManager concode_elem_sep String[] getNames concode_elem_sep String getClaimfromUserStoreManager concode_elem_sep String getFirstName concode_elem_sep Stri...
String [ ] function ( RealmService arg0 , String arg1 ) { String [ ] loc0 = new String [ 0 ] ; if ( ! arg1 . trim ( ) . equals ( "srini_string" ) ) { loc0 = arg1 . split ( "srini_string" , 2 ) ; } return loc0 ; }
11,722
the format for the exported image . concode_field_sep String diskImageFormat concode_elem_sep String containerFormat concode_elem_sep String s3Prefix concode_elem_sep String s3Bucket concode_field_sep String getContainerFormat concode_elem_sep ExportToS3TaskSpecification withS3Bucket concode_elem_sep ExportToS3TaskSpec...
ExportToS3TaskSpecification function ( String arg0 ) { setDiskImageFormat ( arg0 ) ; return this ; }
11,723
get the process cpu kernel time . supported platforms : all . concode_field_sep XContentBuilderString SYS concode_elem_sep XContentBuilderString PERCENT concode_elem_sep XContentBuilderString TOTAL_VIRTUAL concode_elem_sep long openFileDescriptors concode_elem_sep XContentBuilderString TOTAL_VIRTUAL_IN_BYTES concode_el...
TimeValue function ( ) { return sys ( ) ; }
11,724
approach to navigation that will grab our params via the request map this is meant to be used with a full page refresh as metadata called on each page refresh as postvalidate listener concode_field_sep PlaceHolder placeHolder concode_field_sep void renderUIbasedOnExample concode_elem_sep void loadDefaultNavigation conc...
void function ( ) { Map < String , String > loc0 = FacesContext . getCurrentInstance ( ) . getExternalContext ( ) . getRequestParameterMap ( ) ; navigate ( loc0 . get ( NavigationModel . GROUP_PARAM ) , loc0 . get ( NavigationModel . EXAMPLE_PARAM ) ) ; }
11,725
go to previous page in history . we manage our own history concode_field_sep PluginManager pluginManager concode_elem_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep BroadcastReceiver receiver concode_elem_sep SystemWebView webView concode_elem_sep CordovaWebView parentWebV...
boolean function ( ) { if ( webView . canGoBack ( ) ) { webView . goBack ( ) ; return true ; } return false ; }
11,726
adds an object to the mru . concode_field_sep int DEFAULT_MAX_SIZE concode_elem_sep String CONFIG_FILE_NAME concode_elem_sep int _maxSize concode_elem_sep LinkedList _mruFileList concode_field_sep String[] getMRUFileList concode_elem_sep void set concode_elem_sep void set concode_elem_sep String getFilename concode_ele...
void function ( Object arg0 ) { int loc0 = _mruFileList . indexOf ( arg0 ) ; if ( loc0 == - 1 ) { _mruFileList . add ( 0 , arg0 ) ; setMaxSize ( _maxSize ) ; } else { moveToTop ( loc0 ) ; } }
11,727
size of a string as if it was a nullable simple string concode_field_sep PlaceHolder placeHolder concode_field_sep int sizeOfSimpleString concode_elem_sep void writeAsSimpleString concode_elem_sep Long readNullableLong concode_elem_sep int sizeOfNullableDouble concode_elem_sep Double readNullableDouble concode_elem_sep...
int function ( String arg0 ) { if ( arg0 == null ) { return DataConstants . SIZE_BOOLEAN ; } else { return DataConstants . SIZE_BOOLEAN + sizeOfSimpleString ( arg0 ) ; } }
11,728
did it succeeed ? concode_field_sep T result concode_elem_sep Handler<AsyncResult<T>> handler concode_elem_sep Throwable throwable concode_elem_sep boolean failed concode_elem_sep boolean succeeded concode_field_sep T result concode_elem_sep void checkComplete concode_elem_sep Future<T> setHandler concode_elem_sep void...
boolean function ( ) { return succeeded ; }
11,729
terminates supplied instance by releasing internal resources . concode_field_sep TestNodeRegistry registry concode_elem_sep AtomicInteger nodeIndex concode_elem_sep boolean mockNetwork concode_elem_sep int count concode_elem_sep AtomicInteger PORTS concode_elem_sep ConcurrentMap<Integer,Address> addressMap concode_fiel...
void function ( HazelcastInstance arg0 ) { Address loc0 = getNode ( arg0 ) . loc0 ; terminateInstance ( arg0 ) ; registry . removeInstance ( loc0 ) ; }
11,730
this method is invoked by the jaxb implementation on each instance when unmarshalling completes . concode_field_sep Object parent concode_elem_sep boolean visibility concode_elem_sep CTOfficeArtExtensionList extLst concode_elem_sep String dockstate concode_elem_sep double width concode_elem_sep CTWebExtensionPartRef we...
void function ( Unmarshaller arg0 , Object arg1 ) { setParent ( arg1 ) ; }
11,731
create a gantt chart . concode_field_sep boolean flag concode_elem_sep JFreeChart chart concode_field_sep IntervalCategoryDataset createDataset concode_elem_sep Date date concode_elem_sep void chartChanged concode_elem_sep void testSetSeriesURLGenerator concode_elem_sep void testReplaceDataset concode_elem_sep void set...
JFreeChart function ( ) { return ChartFactory . createGanttChart ( "srini_string" , "srini_string" , "srini_string" , null , true , true , true ) ; }
11,732
convert a well-formed but not necessarily valid xml string into a jsonobject . some information may be lost in this transformation because json is a data format and xml is a document format . xml uses elements , attributes , and content text , while json uses unordered collections of name/value pairs and arrays of valu...
JSONObject function ( String arg0 ) { JSONObject loc0 = new JSONObject ( ) ; XMLTokener loc1 = new XMLTokener ( arg0 ) ; while ( loc1 . more ( ) && loc1 . skipPast ( "srini_string" ) ) { parse ( loc1 , loc0 , null ) ; } return loc0 ; }
11,733
retrieves the database metadata for the connection associated with this jdbctemplate . concode_field_sep Connection connection concode_elem_sep Log LOG concode_elem_sep int nullType concode_field_sep boolean queryForBoolean concode_elem_sep Connection getConnection concode_elem_sep int queryForInt concode_elem_sep List...
DatabaseMetaData function ( ) { return connection . getMetaData ( ) ; }
11,734
gets the value of the href property . concode_field_sep CoordinateSystemAltType coordinateSystemAlt concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type ...
String function ( ) { return href ; }
11,735
#gettype type - specific binary values . concode_field_sep ImmutableList.Builder<String> infoValues concode_elem_sep int type concode_elem_sep int ttl concode_elem_sep String dName concode_elem_sep int type concode_elem_sep int ttl concode_elem_sep List<String> infoValues concode_field_sep Builder rrBuilder concode_ele...
List < String > function ( ) { return infoValues ; }
11,736
posts a request into a queue . if there is no active task , starts a new one . otherwise just remembers the request in the queue . later it can be achieved by #poprequests . concode_field_sep Object LOCK concode_elem_sep boolean myActive concode_elem_sep Consumer<Result> myResultHandler concode_elem_sep Logger LOG conc...
void function ( @ NotNull Request arg0 ) { synchronized ( LOCK ) { myAwaitingRequests . add ( arg0 ) ; LOG . debug ( "srini_string" + arg0 ) ; if ( ! myActive ) { startNewBackgroundTask ( ) ; LOG . debug ( "srini_string" ) ; myActive = true ; } } }
11,737
locate the column index corresponding to the given column name via the cache . concode_field_sep ResultSet rs concode_elem_sep ColumnNameCache columnNameCache concode_elem_sep CoreMessageLogger LOG concode_elem_sep Class[] PROXY_INTERFACES concode_elem_sep SqlExceptionHelper sqlExceptionHelper concode_field_sep Object[...
int function ( String arg0 ) { return columnNameCache . getIndexForColumnName ( arg0 , rs ) ; }
11,738
the type of object to be returned from #getobject . concode_field_sep PlaceHolder placeHolder concode_field_sep JobExecutionDao createJobExecutionDao concode_elem_sep StepExecutionDao createStepExecutionDao concode_elem_sep boolean isSingleton concode_elem_sep JobInstanceDao createJobInstanceDao concode_elem_sep Execut...
Class < JobExplorer > function ( ) { return JobExplorer . class ; }
11,739
makes an instance . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
ScopedClassPool function ( ClassLoader arg0 , ClassPool arg1 , ScopedClassPoolRepository arg2 ) { return new ScopedClassPool ( arg0 , arg1 , arg2 , false ) ; }
11,740
reinitialise . concode_field_sep int bufpos concode_elem_sep boolean prevCharIsLF concode_elem_sep int bufsize concode_elem_sep int available concode_elem_sep int tabSize concode_elem_sep java.io.Reader inputStream concode_elem_sep int line concode_elem_sep boolean staticFlag concode_elem_sep int bufcolumn[] concode_el...
void function ( java . io . InputStream arg0 , String arg1 ) { ReInit ( arg0 , arg1 , 1 , 1 , 4096 ) ; }
11,741
return all the springs in the simulator concode_field_sep Set<Spring> mActiveSprings concode_elem_sep boolean mIdle concode_elem_sep SpringLooper mSpringLooper concode_elem_sep CopyOnWriteArraySet<SpringSystemListener> mListeners concode_elem_sep Map<String,Spring> mSpringRegistry concode_field_sep void removeAllListen...
List < Spring > function ( ) { Collection < Spring > loc0 = mSpringRegistry . values ( ) ; List < Spring > loc1 ; if ( loc0 instanceof List ) { loc1 = ( List < Spring > ) loc0 ; } else { loc1 = new ArrayList < Spring > ( loc0 ) ; } return Collections . unmodifiableList ( loc1 ) ; }
11,742
get the image for the submit button . concode_field_sep String IMAGE_DISABLED concode_elem_sep String IMAGE_ENABLED concode_elem_sep boolean status concode_field_sep boolean isDisabled concode_elem_sep boolean getStatus concode_elem_sep void setStatus
String function ( ) { if ( status ) return IMAGE_ENABLED ; else return IMAGE_DISABLED ; }
11,743
returns the ibuffer for the imember represented by this calllocation . concode_field_sep int fLineNumber concode_elem_sep IMember fMember concode_elem_sep String fCallText concode_elem_sep int fStart concode_elem_sep int fEnd concode_elem_sep int UNKNOWN_LINE_NUMBER concode_elem_sep IMember fCalledMember concode_field_...
IBuffer function ( ) { IBuffer loc0 = null ; try { IOpenable loc1 = fMember . getOpenable ( ) ; if ( loc1 != null && fMember . exists ( ) ) { loc0 = loc1 . getBuffer ( ) ; } } catch ( JavaScriptModelException loc1 ) { JavaScriptPlugin . log ( loc1 ) ; } return loc0 ; }
11,744
test of getfirst method , of class headersmap . concode_field_sep StringKeyIgnoreCaseMultivaluedMap map concode_field_sep void testEqualsAndHashCode concode_elem_sep void testClear concode_elem_sep void testRemove concode_elem_sep void testEntrySet concode_elem_sep void testPut concode_elem_sep void tearDown concode_el...
void function ( ) { map . add ( "srini_string" , "srini_string" ) ; map . add ( "srini_string" , "srini_string" ) ; map . add ( "srini_string" , "srini_string" ) ; assertEquals ( 3 , map . get ( "srini_string" ) . size ( ) ) ; assertEquals ( "srini_string" , map . getFirst ( "srini_string" ) ) ; }
11,745
accessor method for retrieving paged query . concode_field_sep int pageIndex concode_elem_sep String basicQuery concode_elem_sep GetResponseBuilder jiraConnection concode_elem_sep int pageSize concode_elem_sep Log logger concode_elem_sep JSONArray jsonOutputArray concode_elem_sep String pagingQuery concode_field_sep St...
String function ( ) { return this . pagingQuery ; }
11,746
get the next n bits but do n't increase input pointer . n must be less or equal 16 and if you if this call succeeds , you must drop at least n-8 bits in the next call . concode_field_sep int bits_in_buffer concode_elem_sep int buffer concode_elem_sep int window_start concode_elem_sep byte[] window concode_elem_sep int ...
int function ( int arg0 ) { if ( bits_in_buffer < arg0 ) { if ( window_start == window_end ) return - 1 ; buffer |= ( window [ window_start ++ ] & 0xff | ( window [ window_start ++ ] & 0xff ) << 8 ) << bits_in_buffer ; bits_in_buffer += 16 ; } return buffer & ( ( 1 << arg0 ) - 1 ) ; }
11,747
turns a valid cypher query and returns it with keywords in uppercase , and new-lines in the appropriate places . concode_field_sep org.neo4j.cypher.ExecutionEngine inner concode_field_sep org.neo4j.cypher.ExecutionEngine createInnerEngine concode_elem_sep ExtendedExecutionResult profile concode_elem_sep ExtendedExecuti...
String function ( String arg0 ) { return inner . prettify ( arg0 ) ; }
11,748
return address reference for specified protoype no way this could ever work . lets see if any code ever tries to call it and see what we can do from there concode_field_sep PlaceHolder placeHolder concode_field_sep Object getPrototype concode_elem_sep Object resolveAddress concode_elem_sep int tie concode_elem_sep int ...
int function ( String arg0 ) { throw new RuntimeException ( "srini_string" ) ; }
11,749
getname concode_field_sep SyslogdConfig m_syslogdConfig concode_elem_sep String m_ForwardingRegexp concode_elem_sep UeiList m_UeiList concode_elem_sep String m_DiscardUei concode_elem_sep int m_dgPort concode_elem_sep HideMessage m_HideMessages concode_elem_sep int m_MatchingGroupHost concode_elem_sep int m_MatchingGro...
String function ( ) { return "srini_string" + getIpAddress ( ) + "srini_string" + m_dgPort + "srini_string" ; }
11,750
this method resets the outgoing events . concode_field_sep boolean event1 concode_elem_sep long myVar concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean return_ID concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_elem_sep boolean event2 concode_field_sep SCInterface get...
void function ( ) { }
11,751
gets the value of the maxprice property . concode_field_sep BigDecimal minPrice concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal maxPrice concode_field_sep void setMaxPrice concode_elem_sep BigDecimal getMinPrice concode_elem_sep void setMinPrice
BigDecimal function ( ) { return maxPrice ; }
11,752
returns a deep copy of this iterator . cloned iterators may not be restartable . the iterator being cloned may or may not become non-restartable as a side effect of this operation . concode_field_sep int _position concode_elem_sep int _startNode concode_elem_sep int _last concode_elem_sep boolean _includeSelf concode_e...
DTMAxisIterator function ( ) { try { final DTMAxisIteratorBase loc0 = ( DTMAxisIteratorBase ) super . loc0 ( ) ; loc0 . _isRestartable = false ; return loc0 ; } catch ( CloneNotSupportedException loc0 ) { throw new org . apache . xml . utils . WrappedRuntimeException ( loc0 ) ; } }
11,753
does the database support the use of catalog name in procedure calls concode_field_sep boolean supportsSchemasInProcedureCalls concode_elem_sep boolean storesLowerCaseIdentifiers concode_elem_sep boolean procedureColumnMetaDataUsed concode_elem_sep List<CallParameterMetaData> callParameterMetaData concode_elem_sep Log ...
boolean function ( ) { return this . supportsCatalogsInProcedureCalls ; }
11,754
alias for #getordefault string , object , coercing to a number concode_field_sep HashMap<String,Object> defaults concode_elem_sep LinkedList<ModuleConfig> allConfigs concode_elem_sep File parent_file concode_elem_sep File base_file concode_elem_sep HashMap<String,Object> full_config concode_field_sep void init concode_...
Number function ( String arg0 , Number arg1 ) { return ( Number ) getOrDefault ( arg0 , arg1 ) ; }
11,755
adds configures , and prepares a data source in a single step . concode_field_sep Map<String,UniversalDataSource> datasources concode_elem_sep Logger logger concode_field_sep UniversalDataSource add concode_elem_sep void prepare concode_elem_sep List<String> names concode_elem_sep void release concode_elem_sep Universa...
UniversalDataSource function ( String arg0 , String arg1 , TungstenProperties arg2 ) { UniversalDataSource loc0 = this . add ( arg0 , arg1 , arg2 ) ; loc0 . configure ( ) ; loc0 . prepare ( ) ; return loc0 ; }
11,756
gets the value of the results 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 results property . for example , to add a new item , do as...
List < Order > function ( ) { if ( results == null ) { results = new ArrayList < Order > ( ) ; } return this . results ; }
11,757
gets the value of the sub 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 sub property . for example , to add a new item , do as follows...
List < DerivativeInstrumentPartySubIDsGrpBlockT > function ( ) { if ( sub == null ) { sub = new ArrayList < DerivativeInstrumentPartySubIDsGrpBlockT > ( ) ; } return this . sub ; }
11,758
sets namespace and storagespace take by the directory rooted at this inode . this should be used carefully . it does not check for quota violations . concode_field_sep long DEFAULT_STORAGE_SPACE_QUOTA concode_elem_sep QuotaCounts quota concode_elem_sep QuotaCounts usage concode_elem_sep long DEFAULT_NAMESPACE_QUOTA con...
void function ( long arg0 , long arg1 , EnumCounters < StorageType > arg2 ) { usage . setNameSpace ( arg0 ) ; usage . setStorageSpace ( arg1 ) ; usage . setTypeSpaces ( arg2 ) ; }
11,759
get datetime concode_field_sep byte[] _byte concode_elem_sep String password concode_elem_sep BigDecimal number concode_elem_sep Float _float concode_elem_sep Integer integer concode_elem_sep Double _double concode_elem_sep String string concode_elem_sep DateTime dateTime concode_elem_sep byte[] binary concode_elem_sep...
DateTime function ( ) { return dateTime ; }
11,760
returns the hash code for this date . concode_field_sep long MILLIS_DAY concode_elem_sep int month concode_elem_sep int year concode_elem_sep int day concode_field_sep EasyDate add concode_elem_sep int getYear concode_elem_sep int daysTo concode_elem_sep boolean equals concode_elem_sep boolean isLeapYear concode_elem_s...
int function ( ) { return year * 400 + month * 31 + day ; }
11,761
sets the apply value for this customerrefundapply . concode_field_sep java.lang.Double amount concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Boolean apply concode_elem_sep java.lang.Long line concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String type concod...
void function ( java . lang . Boolean arg0 ) { this . apply = arg0 ; }
11,762
get the duration of the audio file . concode_field_sep int MEDIA_ERR_NONE_ACTIVE concode_elem_sep AudioHandler handler concode_elem_sep String audioFile concode_elem_sep int MEDIA_ERR_ABORTED concode_elem_sep int MEDIA_POSITION concode_elem_sep int state concode_elem_sep int MEDIA_ERROR concode_elem_sep String tempFile...
float function ( String arg0 ) { if ( this . recorder != null ) { return ( - 2 ) ; } if ( this . mPlayer != null ) { return this . duration ; } else { this . prepareOnly = true ; this . startPlaying ( arg0 ) ; return this . duration ; } }
11,763
return the limiter associated with this quota without updating internal last query stats concode_field_sep long lastUpdate concode_elem_sep QuotaLimiter globalLimiter concode_elem_sep long lastQuery concode_field_sep long getLastQuery concode_elem_sep boolean isBypass concode_elem_sep void setQuotas concode_elem_sep vo...
QuotaLimiter function ( ) { return globalLimiter ; }
11,764
returns true if field type is an actual . concode_field_sep boolean canBeNull concode_elem_sep String fieldName concode_elem_sep boolean isActual concode_elem_sep String decodeCast concode_elem_sep String decodeCall concode_elem_sep String typeName concode_elem_sep String encodeCall concode_elem_sep TypeReference typeR...
boolean function ( ) { return isActual ; }
11,765
the source folder being watched . concode_field_sep File sourceFolder concode_elem_sep Set<ChangedFile> files concode_field_sep Iterator<ChangedFile> iterator concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep Set<ChangedFile> getFiles
File function ( ) { return this . sourceFolder ; }
11,766
return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep int maxItems concode_elem_sep int spellTreshold concode_elem_sep java.lang.Boolean totalCountOnFirstResult concode_elem_sep java.lang.String conceptName concode_elem_sep org.talend.mdm.webservice.WSWhereItem whe...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
11,767
other attribute sets are equal if they are empty too . concode_field_sep PlaceHolder placeHolder concode_field_sep AttributeSet getResolveParent concode_elem_sep Object getAttribute concode_elem_sep boolean containsAttributes concode_elem_sep Enumeration getAttributeNames concode_elem_sep boolean isDefined concode_elem...
boolean function ( AttributeSet arg0 ) { return arg0 . getAttributeCount ( ) == 0 ; }
11,768
returns the number of elements contained in the hashtable . concode_field_sep int valueTable[] concode_elem_sep int elementSize concode_elem_sep Object keyTable[] concode_elem_sep int threshold concode_field_sep boolean containsKey concode_elem_sep int hashCode concode_elem_sep int get concode_elem_sep void clear conco...
int function ( ) { return elementSize ; }
11,769
caches the feeds in the entity cache if it is enabled . concode_field_sep FeedPersistence _persistence concode_field_sep int countAll concode_elem_sep List<Feed> findWithDynamicQuery concode_elem_sep List<Feed> findWithDynamicQuery concode_elem_sep List<Feed> findWithDynamicQuery concode_elem_sep Feed update concode_el...
void function ( List < Feed > arg0 ) { getPersistence ( ) . cacheResult ( arg0 ) ; }
11,770
the type of the zone concode_field_sep Optional<String> primarySrc concode_elem_sep int typeCode concode_elem_sep String accountId concode_elem_sep Optional<String> primarySrc concode_elem_sep int code concode_elem_sep String name concode_elem_sep String id concode_elem_sep Type type concode_elem_sep String ownerId con...
int function ( ) { return typeCode ; }
11,771
append either the value true or the value false . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int top concode_elem_sep int maxdepth concode_elem_sep Writer writer concode_elem_sep JSONObject stack[] concode_field_sep void pop concode_elem_sep JSONWriter array concode_elem_sep JSONWriter ...
JSONWriter function ( boolean arg0 ) { return this . append ( arg0 ? "srini_string" : "srini_string" ) ; }
11,772
tick concode_field_sep boolean isAccumulative concode_elem_sep long start concode_elem_sep int MACHEPS_EXPONENT concode_elem_sep PrintStream out concode_elem_sep PrintStream err concode_elem_sep long previous concode_elem_sep Semaphore JOB_SEMAPHORE concode_elem_sep int DOUBLE_PRECISION concode_elem_sep String JOB_SEPA...
long function ( String arg0 ) { final long loc0 = System . currentTimeMillis ( ) ; final long loc1 = loc0 - ( isAccumulative ? start : previous ) ; if ( arg0 != null ) { out . format ( "srini_string" , loc1 , millis2String ( loc1 ) + "srini_string" , arg0 ) ; out . flush ( ) ; } previous = loc0 ; return loc1 ; }
11,773
initialises the secure random byte generator . concode_field_sep SecureRandom randomGen concode_field_sep String encrypt
void function ( ) { try { randomGen = SecureRandom . getInstance ( "srini_string" ) ; } catch ( NoSuchAlgorithmException loc0 ) { throw new RuntimeException ( loc0 . getMessage ( ) , loc0 ) ; } }
11,774
shortcut for booleanproperty name , false concode_field_sep Logger logger concode_field_sep int intProperty concode_elem_sep double sysPropertyDouble concode_elem_sep double doubleProperty concode_elem_sep void setProperty concode_elem_sep void setSystemProperty concode_elem_sep String property concode_elem_sep String ...
boolean function ( String arg0 ) { return booleanProperty ( arg0 , false ) ; }
11,775
gets the value of the domesticroamingdatawarning property . concode_field_sep LastUsageDateTimeType lastUsageDateTime concode_elem_sep Boolean dpfIndicator concode_elem_sep List<LegacyDataUsage> legacyDataUsage concode_elem_sep EstimatedDPFUsage estimatedDPFUsage concode_elem_sep List<Bucket> buckets concode_elem_sep R...
Boolean function ( ) { return domesticRoamingDataWarning ; }
11,776
sort the list concode_field_sep Node fromNode concode_elem_sep boolean sorted concode_elem_sep ArrayList<Edge> list concode_elem_sep Node toNode concode_field_sep void setSorted concode_elem_sep boolean getSorted concode_elem_sep Node getFromNode concode_elem_sep ArrayList<Edge> getList concode_elem_sep Node getToNode ...
void function ( ) { EdgeParallelComparator loc0 = new EdgeParallelComparator ( ) ; Collections . sort ( list , loc0 ) ; sorted = true ; }
11,777
draw the marble . concode_field_sep int mLives concode_elem_sep int mColor concode_elem_sep int mRadius concode_elem_sep View mView concode_elem_sep int mX concode_elem_sep int mY concode_field_sep int getLives concode_elem_sep void init concode_elem_sep int getX concode_elem_sep int getY concode_elem_sep void death co...
void function ( Canvas arg0 , Paint arg1 ) { arg1 . setColor ( mColor ) ; arg0 . drawCircle ( mX , mY , mRadius , arg1 ) ; }
11,778
string for the human readable name of the symbol . concode_field_sep String _stack_type concode_elem_sep String _name concode_elem_sep int _index concode_elem_sep int _use_count concode_field_sep int use_count concode_elem_sep String stack_type concode_elem_sep boolean is_non_term concode_elem_sep void note_use concode...
String function ( ) { return _name ; }
11,779
closes this udpmasterconnection . concode_field_sep InetAddress m_Address concode_elem_sep UDPMasterTerminal m_Terminal concode_elem_sep int m_Timeout concode_elem_sep int m_Port concode_elem_sep boolean m_Connected concode_field_sep void setTimeout concode_elem_sep UDPTerminal getTerminal concode_elem_sep int getPort ...
void function ( ) { if ( m_Connected ) { try { m_Terminal . deactivate ( ) ; } catch ( Exception loc0 ) { if ( Modbus . debug ) loc0 . printStackTrace ( ) ; } m_Connected = false ; } }
11,780
get an indexfilter that filters out bindings from linkages other than that specified concode_field_sep IndexFilter ALL concode_elem_sep IndexFilter CPP_DECLARED_OR_IMPLICIT concode_elem_sep IndexFilter C_DECLARED_OR_IMPLICIT concode_elem_sep IndexFilter CPP_DECLARED_OR_IMPLICIT_NO_INSTANCE concode_elem_sep IndexFilter ...
IndexFilter function ( final int arg0 ) { return new IndexFilter ( ) { @ Override public boolean acceptLinkage ( ILinkage arg1 ) { return arg0 == arg1 . getLinkageID ( ) ; } } ; }
11,781
gets the register count , as a code unit . this will throw if the value is out of the range of an unsigned code unit . concode_field_sep IndexType indexType concode_elem_sep InstructionCodec format concode_elem_sep int index concode_elem_sep int opcode concode_elem_sep int target concode_elem_sep long literal concode_f...
short function ( ) { int loc0 = getRegisterCount ( ) ; if ( ( loc0 & ~ 0xffff ) != 0 ) { throw new DexException ( "srini_string" + Hex . u8 ( loc0 ) ) ; } return ( short ) loc0 ; }
11,782
get the reference instance . concode_field_sep Reference reference concode_elem_sep long serialVersionUID concode_elem_sep String aoProperty concode_elem_sep ResourceAdapter ra concode_field_sep String getAoProperty concode_elem_sep void setResourceAdapter concode_elem_sep void setReference concode_elem_sep int hashCod...
Reference function ( ) { return reference ; }
11,783
called by the system when the user grants permissions concode_field_sep Activity activity concode_elem_sep CordovaPlugin permissionResultCallback concode_elem_sep int resultCode concode_elem_sep int activityResultRequestCode concode_elem_sep Intent intent concode_elem_sep Bundle savedPluginState concode_elem_sep String...
void function ( int arg0 , String [ ] arg1 , int [ ] arg2 ) { if ( permissionResultCallback != null ) { permissionResultCallback . onRequestPermissionResult ( arg0 , arg1 , arg2 ) ; permissionResultCallback = null ; } }
11,784
creates a function that returns a on instance with zero value concode_field_sep Map<CronFieldName,Function<CronField,CronField>> mappings concode_elem_sep Function<Cron,Cron> cronRules concode_elem_sep CronDefinition to concode_field_sep Function<Cron,Cron> setQuestionMark concode_elem_sep Function<CronField,CronField>...
Function < CronField , CronField > function ( final CronFieldName arg0 ) { return field -> { FieldConstraints loc0 = FieldConstraintsBuilder . instance ( ) . forField ( arg0 ) . createConstraintsInstance ( ) ; return new CronField ( arg0 , new On ( new IntegerFieldValue ( 0 ) ) , loc0 ) ; } ; }
11,785
processes the order concode_field_sep Random ran concode_elem_sep int counter concode_field_sep Order generateOrder
String function ( Order arg0 ) { return "srini_string" + arg0 . getId ( ) + "srini_string" + arg0 . getItem ( ) + "srini_string" + arg0 . getAmount ( ) + "srini_string" + arg0 . getDescription ( ) ; }
11,786
executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c...
boolean function ( String arg0 , String arg1 , CallbackContext arg2 ) { JSONArray loc0 = new JSONArray ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; }
11,787
inject new values and update the submit button . concode_field_sep PlaceHolder placeHolder concode_field_sep void beforePhase concode_elem_sep PhaseId getPhaseId
void function ( PhaseEvent arg0 ) { Application loc0 = FacesContext . getCurrentInstance ( ) . getApplication ( ) ; AddressFormProcessor loc1 = ( ( AddressBean ) loc0 . createValueBinding ( "srini_string" ) . getValue ( FacesContext . getCurrentInstance ( ) ) ) . getAddressFormProcessor ( ) ; loc1 . inject ( ) ; loc1 ....
11,788
implementation of : g s = - 3/4 s3 + 3/2 s2 + 1/4 s , with s from 0 to 1 concode_field_sep PlaceHolder placeHolder concode_field_sep int ranInt concode_elem_sep BufferedImage getDistortedImage
double function ( double arg0 ) { if ( arg0 < 0.0D ) return 0.0D ; if ( arg0 > 1.0D ) return arg0 ; else return - 0.75D * arg0 * arg0 * arg0 + 1.5D * arg0 * arg0 + 0.25D * arg0 ; }
11,789
get the periodicity . concode_field_sep int startIndex concode_elem_sep Marker marker concode_elem_sep int endIndex concode_elem_sep int n concode_field_sep Marker getMarker concode_elem_sep int getStartIndex concode_elem_sep int getEndIndex
int function ( ) { return n ; }
11,790
returns the hostname verifier it should be used in httpsurlconnections . concode_field_sep Mode mode concode_elem_sep String DEFAULT_SSL_ENABLED_PROTOCOLS concode_elem_sep String SSL_ENABLED_PROTOCOLS concode_elem_sep boolean requireClientCert concode_elem_sep SSLContext context concode_elem_sep HostnameVerifier hostna...
HostnameVerifier function ( ) { if ( mode != Mode . CLIENT ) { throw new IllegalStateException ( "srini_string" ) ; } return hostnameVerifier ; }
11,791
get window target concode_field_sep PlaceHolder placeHolder concode_field_sep PropertyObject getControl concode_elem_sep PropertyObject getControl concode_elem_sep PropertyObject getControl concode_elem_sep ClarionKey newKey concode_elem_sep ClarionReal newReal concode_elem_sep ClarionAny newAny concode_elem_sep Clario...
AbstractWindowTarget function ( ) { return CWin . getInstance ( ) . getTarget ( ) ; }
11,792
returns the y value scaled by the specified amount and rounded to an int . concode_field_sep double x concode_elem_sep double y concode_elem_sep double rot[][] concode_field_sep RotatablePoint rotate concode_elem_sep RotatablePoint rotate concode_elem_sep RotatablePoint rotate concode_elem_sep RotatablePoint clone conc...
int function ( double arg0 ) { return ( int ) Math . round ( y * arg0 ) ; }
11,793
the entry point into this applications . concode_field_sep String expectedStartDate concode_elem_sep Calendar calendar concode_elem_sep String TABLE_ID concode_elem_sep SimpleDateFormat queryDateFormat concode_elem_sep String PASSWORD concode_elem_sep String DATA_FEED_URL concode_elem_sep int numberOfDays concode_elem_...
void function ( String [ ] arg0 ) { BackfillDates loc0 = new BackfillDates ( ) ; loc0 . execute ( ) ; }
11,794
returns the number of rows matching the dynamic query . concode_field_sep ListTypeLocalService _listTypeLocalService concode_field_sep com.liferay.portal.model.ListType getListType concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , com . liferay . portal . kernel . dao . orm . Projection arg1 ) { return _listTypeLocalService . dynamicQueryCount ( arg0 , arg1 ) ; }
11,795
adds the given participant to the manager . concode_field_sep String LINE concode_elem_sep IJavaScriptBreakpointParticipant[] NO_PARTICIPANTS concode_elem_sep IConfigurationElement element concode_elem_sep String SCRIPT concode_elem_sep String FUNCTION concode_elem_sep Map participants concode_elem_sep String ALL conco...
void function ( String arg0 , IJavaScriptBreakpointParticipant arg1 ) { initialize ( ) ; Assert . isNotNull ( arg0 ) ; ArrayList loc0 = ( ArrayList ) this . participants . get ( arg0 ) ; if ( loc0 == null ) { loc0 = new ArrayList ( ) ; this . participants . put ( arg0 , loc0 ) ; } if ( ! loc0 . contains ( arg1 ) ) { lo...
11,796
returns the fully qualified class name of this email address . concode_field_sep EmailAddress _emailAddress concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean is...
java . lang . String function ( ) { return _emailAddress . getClassName ( ) ; }
11,797
return the correlation id of this response . concode_field_sep Exception exception concode_elem_sep String metaData concode_elem_sep E response concode_elem_sep boolean earlyResponseHandling concode_elem_sep String correlationId concode_elem_sep long serialVersionUID concode_elem_sep Long sequenceId concode_elem_sep bo...
String function ( ) { return correlationId ; }
11,798
sets the item count . concode_field_sep boolean includeUpperBound concode_elem_sep double upperBound concode_elem_sep double lowerBound concode_elem_sep boolean includeLowerBound concode_elem_sep long serialVersionUID concode_elem_sep int itemCount concode_field_sep boolean accepts concode_elem_sep int getItemCount con...
void function ( int arg0 ) { this . itemCount = arg0 ; }
11,799
sets the os . concode_field_sep int OTHER_POLICY_DIFFERENT_RATING concode_elem_sep int SPACE_SHARED concode_elem_sep String os concode_elem_sep double timeZone concode_elem_sep int ADVANCE_RESERVATION concode_elem_sep double costPerBw concode_elem_sep int OTHER_POLICY_SAME_RATING concode_elem_sep double costPerStorage ...
void function ( String arg0 ) { this . os = arg0 ; }