idx int64 0 100k | question stringlengths 68 7.19k | target stringlengths 20 663 |
|---|---|---|
5,700 | returns value . concode_field_sep double count concode_elem_sep String value concode_field_sep void setValue concode_elem_sep double getCount concode_elem_sep void setCount | String function ( ) { return value ; } |
5,701 | whether this profile is the default profile there can only be one . concode_field_sep Long keepAliveTime concode_elem_sep Integer maxQueueSize concode_elem_sep Boolean allowCoreThreadTimeOut concode_elem_sep Integer poolSize concode_elem_sep Boolean defaultProfile concode_elem_sep long serialVersionUID concode_elem_sep... | Boolean function ( ) { return defaultProfile != null && defaultProfile ; } |
5,702 | the list name to consume activities from . concode_field_sep ActivityTypeRegistrationOptions activityTypeRegistrationOptions concode_elem_sep Map<String,Object> clientConfigurationParameters concode_elem_sep String stateResultType concode_elem_sep AmazonSimpleWorkflowClient amazonSWClient concode_elem_sep ActivitySched... | void function ( String arg0 ) { this . activityList = arg0 ; } |
5,703 | method to allow a patient who has been waiting 25 minutes to be moved to top of queue concode_field_sep InSitu insitu concode_elem_sep Integer status concode_field_sep boolean calculateQueueSize concode_elem_sep boolean redirectEmergencyPatient concode_elem_sep void calculateStatus concode_elem_sep boolean thirtyMinute... | void function ( LinkedList < Patient > arg0 ) { Collections . sort ( arg0 , new SortPatientComparator ( ) ) ; } |
5,704 | puts the specified object in the pool , making it eligible to be returned by #obtain . if the pool already contains #max free objects , the specified object is reset but not added to the pool . concode_field_sep int max concode_elem_sep int peak concode_elem_sep Array<T> freeObjects concode_field_sep T obtain concode_e... | void function ( T arg0 ) { if ( arg0 == null ) throw new IllegalArgumentException ( "srini_string" ) ; if ( freeObjects . size < max ) { freeObjects . add ( arg0 ) ; peak = Math . max ( peak , freeObjects . size ) ; } if ( arg0 instanceof Poolable ) ( ( Poolable ) arg0 ) . reset ( ) ; } |
5,705 | sets the value of the methodname property . concode_field_sep String description concode_elem_sep String methodName concode_field_sep String getMethodName concode_elem_sep void setDescription concode_elem_sep String getDescription | void function ( final String arg0 ) { this . methodName = arg0 ; } |
5,706 | rearranges an array of objects in uniformly random order under the assumption that math.random generates independent and uniformly distributed numbers between 0 and 1 . concode_field_sep PlaceHolder placeHolder concode_field_sep void main | void function ( Object [ ] arg0 ) { int loc0 = arg0 . length ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { int loc2 = loc1 + ( int ) ( Math . random ( ) * ( loc0 - loc1 ) ) ; Object loc3 = arg0 [ loc2 ] ; arg0 [ loc2 ] = arg0 [ loc1 ] ; arg0 [ loc1 ] = loc3 ; } } |
5,707 | add an attribute with multiple values to the certification request we are building . concode_field_sep boolean leaveOffEmpty concode_elem_sep X500Name subject concode_elem_sep List attributes concode_elem_sep SubjectPublicKeyInfo publicKeyInfo concode_field_sep PKCS10CertificationRequest build concode_elem_sep PKCS10Ce... | PKCS10CertificationRequestBuilder function ( ASN1ObjectIdentifier arg0 , ASN1Encodable [ ] arg1 ) { attributes . add ( new Attribute ( arg0 , new DERSet ( arg1 ) ) ) ; return this ; } |
5,708 | return the configuration used by this object . concode_field_sep Configuration conf concode_field_sep void checkNativeCodeLoaded concode_elem_sep Decompressor createDecompressor concode_elem_sep CompressionOutputStream createOutputStream concode_elem_sep CompressionOutputStream createOutputStream concode_elem_sep Class... | Configuration function ( ) { return conf ; } |
5,709 | get the maximum number of rows that are to be returned . concode_field_sep int offset concode_elem_sep long serialVersionUID concode_elem_sep int rowLimit concode_elem_sep Limit NONE concode_elem_sep int hcode concode_field_sep boolean isUnlimited concode_elem_sep int hashCode concode_elem_sep boolean hasRowLimited con... | int function ( ) { return rowLimit ; } |
5,710 | date on which the identity pool was last modified . concode_field_sep java.util.Date lastModifiedDate concode_elem_sep Long dataStorage concode_elem_sep Long syncSessionsCount concode_elem_sep String identityPoolId concode_field_sep void setIdentityPoolId concode_elem_sep IdentityPoolUsage withSyncSessionsCount concode... | java . util . Date function ( ) { return this . lastModifiedDate ; } |
5,711 | get the vert.x instance concode_field_sep Context context concode_elem_sep Vertx vertx concode_field_sep void init concode_elem_sep void stop concode_elem_sep void stop concode_elem_sep List<String> processArgs concode_elem_sep String deploymentID concode_elem_sep void start concode_elem_sep void start concode_elem_sep... | Vertx function ( ) { return vertx ; } |
5,712 | constructs a string with all attributes in name = value format . concode_field_sep String firstName concode_elem_sep long serialVersionUID concode_elem_sep int intField concode_field_sep int getIntField concode_elem_sep void setIntField concode_elem_sep void setFirstName concode_elem_sep String getFirstName | String function ( ) { final String loc0 = "srini_string" ; StringBuilder loc1 = new StringBuilder ( ) ; loc1 . append ( "srini_string" ) . append ( "srini_string" ) . append ( firstName ) . append ( loc0 ) . append ( "srini_string" ) . append ( intField ) . append ( loc0 ) . append ( "srini_string" ) ; return loc1 . to... |
5,713 | translation-time validation of the attributes . this is a convenience method on the associated tagextrainfo class . concode_field_sep String BODY_CONTENT_EMPTY concode_elem_sep boolean dynamicAttributes concode_elem_sep TagExtraInfo tagExtraInfo concode_elem_sep String displayName concode_elem_sep String tagClassName c... | boolean function ( TagData arg0 ) { TagExtraInfo loc0 = getTagExtraInfo ( ) ; if ( loc0 == null ) { return true ; } return loc0 . isValid ( arg0 ) ; } |
5,714 | old-style action extension point . concode_field_sep PlaceHolder placeHolder concode_field_sep Collection<Object> createComponents concode_elem_sep List<ExecutorBuilder<?>> getExecutorBuilders concode_elem_sep List<String> getSettingsFilter concode_elem_sep List<Setting<?>> getSettings concode_elem_sep void onIndexModu... | void function ( ActionModule arg0 ) { } |
5,715 | called when a shard is marked as active ie . was previously inactive and is now active again . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterIndexCreated concode_elem_sep void beforeIndexShardClosed concode_elem_sep void beforeIndexDeleted concode_elem_sep void beforeIndexClosed concode_elem_sep... | void function ( IndexShard arg0 ) { } |
5,716 | returns a copy of the given array of identifiers , #quoteifjavakeyword string quoting keyword identifiers as necessary concode_field_sep String[] tokensArray concode_elem_sep String RUN_INFO_CLASS concode_elem_sep HashSet<String> tokens concode_field_sep String quoteJavaKeywordsInFilename concode_elem_sep String quoteJ... | String [ ] function ( String [ ] arg0 ) { String [ ] loc0 = new String [ arg0 . length ] ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 [ loc1 ] = quoteIfJavaKeyword ( arg0 [ loc1 ] ) ; } return loc0 ; } |
5,717 | executes one tick on the interpreter one step concode_field_sep Actor actor concode_elem_sep Deque<Task> tasks concode_elem_sep Set<Node> startedNodes concode_elem_sep Debugger debugger concode_elem_sep Node root concode_elem_sep Task TERMINAL concode_elem_sep Map<Task,List<Task>> startedTasks concode_field_sep Task st... | int function ( float arg0 ) { if ( debugger == null || debugger . beforeTick ( ) ) { startedNodes . clear ( ) ; while ( step ( arg0 ) ) { continue ; } if ( debugger != null ) { debugger . afterTick ( ) ; } } return startedNodes . size ( ) ; } |
5,718 | initialize the specified lookups , either immediately or when the injector is created . concode_field_sep List<Element> lookups concode_elem_sep InjectorImpl injector concode_field_sep Provider<T> getProvider concode_elem_sep MembersInjector<T> getMembersInjector | void function ( Errors arg0 ) { injector . lookups = injector ; new LookupProcessor ( arg0 ) . process ( injector , lookups ) ; } |
5,719 | called when the webview does a top-level navigation or refreshes . plugins should stop any long-running processes and clean up internal state . does nothing by default . concode_field_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onOverrideUrlL... | void function ( ) { } |
5,720 | determine whether the actual routingtable has been changed concode_field_sep DiscoveryNodes nodes concode_elem_sep Map<ShardId,Set<String>> ignoredShardToNodes concode_elem_sep AllocationExplanation explanation concode_elem_sep boolean ignoreDisable concode_elem_sep boolean debugDecision concode_elem_sep AllocationDeci... | boolean function ( ) { return this . changed ; } |
5,721 | updates the sync d l object in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep SyncDLObjectLocalService _syncDLObjectLocalService concode_field_sep int getSyncDLObjectsCount concode_elem_sep long getLatestModifiedTime concode_elem_sep void setWrappedS... | com . liferay . sync . model . SyncDLObject function ( com . liferay . sync . model . SyncDLObject arg0 ) { return _syncDLObjectLocalService . updateSyncDLObject ( arg0 ) ; } |
5,722 | process a `` start '' event for this engine . concode_field_sep Engine engine concode_elem_sep Log log concode_elem_sep StringManager sm concode_field_sep void lifecycleEvent concode_elem_sep void stop | void function ( ) { if ( engine . getLogger ( ) . isDebugEnabled ( ) ) engine . getLogger ( ) . debug ( sm . getString ( "srini_string" ) ) ; } |
5,723 | get the breakpoint associated with the given marker concode_field_sep IWorkbenchPart fPart concode_elem_sep IStructuredSelection fSelection concode_elem_sep IAction fAction concode_field_sep void breakpointsAdded concode_elem_sep void setAction concode_elem_sep IBreakpointManager getBreakpointManager concode_elem_sep v... | IBreakpoint function ( IMarker arg0 ) { return getBreakpointManager ( ) . getBreakpoint ( arg0 ) ; } |
5,724 | returns the number of plugin settings . concode_field_sep PluginSettingLocalService _service concode_field_sep com.liferay.portal.kernel.model.PluginSetting addPluginSetting concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionable... | int function ( ) { return getService ( ) . getPluginSettingsCount ( ) ; } |
5,725 | writes the list of triggers to the shared preferences . concode_field_sep String TRIGGERS_PREF_KEY concode_elem_sep CopyOnWriteArrayList<TriggerRepositoryObserver> mTriggerObservers concode_elem_sep SharedPreferences mPreferences concode_elem_sep Context mContext concode_elem_sep Multimap<String,Trigger> mTriggers conc... | void function ( ) { SharedPreferences . Editor loc0 = mPreferences . edit ( ) ; final String loc1 = serializeTriggersToString ( mTriggers ) ; if ( loc1 != null ) { loc0 . putString ( TRIGGERS_PREF_KEY , loc1 ) ; } loc0 . commit ( ) ; } |
5,726 | gets the list of dependencies . concode_field_sep InputStream inputStream concode_elem_sep List<ComposerDependency> composerDependencies concode_elem_sep Logger LOGGER concode_elem_sep JsonReader jsonReader concode_field_sep void process | List < ComposerDependency > function ( ) { return composerDependencies ; } |
5,727 | the name of the node . concode_field_sep String nodeName concode_elem_sep TransportAddress address concode_elem_sep ImmutableList<DiscoveryNode> EMPTY_LIST concode_elem_sep Version version concode_elem_sep ImmutableMap<String,String> attributes concode_elem_sep String nodeId concode_field_sep Version getVersion concode... | String function ( ) { return name ( ) ; } |
5,728 | writes the given array of bytes to the blob value that this blob object represents , starting at position pos , and returns the number of bytes written . concode_field_sep BlobDataID blob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep void truncate concode_elem_sep boolean... | int function ( long arg0 , byte [ ] arg1 ) { throw Util . notSupported ( ) ; } |
5,729 | checks whether or not two doubles are equal and prints the result . concode_field_sep PlaceHolder placeHolder concode_field_sep void main concode_elem_sep void checkUpdate | void function ( double arg0 , double arg1 , String arg2 , double arg3 ) { if ( Math . abs ( arg0 - arg1 ) <= arg3 * Math . max ( arg0 , arg1 ) ) { System . out . println ( "srini_string" + arg2 + "srini_string" + arg0 + "srini_string" + arg1 ) ; } else { System . out . println ( "srini_string" + arg2 + "srini_string" +... |
5,730 | get a helix instance name . concode_field_sep PlaceHolder placeHolder concode_field_sep void createGobblinHelixCluster | String function ( String arg0 , int arg1 ) { return arg0 + "srini_string" + arg1 ; } |
5,731 | used to retrieve the plugin tool 's name . this is a short , unique name containing no spaces . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIAct... | String function ( ) { return "srini_string" ; } |
5,732 | returns help regarding command line parameters concode_field_sep MessageRouterIfc router concode_elem_sep String DEF_CONFIGURATOR concode_elem_sep String NAME concode_elem_sep String CONFIGURATOR_PROP_KEY concode_elem_sep String HARDENED_MODE_KEY concode_elem_sep String serverName concode_elem_sep ConfiguratorAbstract ... | String function ( ) { return "srini_string" + "srini_string" + "srini_string" + "srini_string" + "srini_string" ; } |
5,733 | create an instance of helloworldresponse concode_field_sep PlaceHolder placeHolder concode_field_sep HelloWorld createHelloWorld | HelloWorldResponse function ( ) { return new HelloWorldResponse ( ) ; } |
5,734 | set the expand value . concode_field_sep String filter concode_elem_sep String expand concode_elem_sep String select concode_elem_sep DateTimeRfc1123 ocpDate concode_elem_sep Integer maxResults concode_elem_sep String clientRequestId concode_elem_sep Boolean returnClientRequestId concode_elem_sep Integer timeout concod... | JobListFromJobScheduleOptions function ( String arg0 ) { this . expand = arg0 ; return this ; } |
5,735 | getter method for circle concode_field_sep Integer templetId concode_elem_sep String agentId concode_elem_sep Integer customerType concode_elem_sep String sendTo concode_elem_sep Date endDate concode_elem_sep String templetType concode_elem_sep long serialVersionUID concode_elem_sep String circleID concode_elem_sep Str... | String function ( ) { return circle ; } |
5,736 | returns all the legacy facility hosts . concode_field_sep LegacyFacilityHostPersistence _persistence concode_field_sep int countAll concode_elem_sep void cacheResult concode_elem_sep void cacheResult concode_elem_sep List<LegacyFacilityHost> findWithDynamicQuery concode_elem_sep List<LegacyFacilityHost> findWithDynamic... | java . util . List < de . uhh . l2g . plugins . migration . model . LegacyFacilityHost > function ( ) { return getPersistence ( ) . findAll ( ) ; } |
5,737 | similar to readfully . skips bytes in a loop . concode_field_sep int BLOCKSIZE concode_field_sep void cleanup concode_elem_sep void readFully concode_elem_sep void closeStream concode_elem_sep void closeSocket concode_elem_sep void copyBytes concode_elem_sep void copyBytes concode_elem_sep void copyBytes | void function ( final InputStream arg0 , long arg1 ) { while ( arg1 > 0 ) { final long loc0 = arg0 . skip ( arg1 ) ; if ( loc0 < 0 ) { throw new IOException ( "srini_string" ) ; } arg1 -= loc0 ; } } |
5,738 | returns the name of this acousticmodel , or null if it has no name . concode_field_sep int which concode_elem_sep int rightContextSize concode_elem_sep int leftContextSize concode_elem_sep HMM hmm concode_elem_sep HMMStateArc[] EMPTY_ARC concode_elem_sep HMMState[] hmmStates concode_elem_sep String RIGHT_CONTEXT_SIZE c... | String function ( ) { return name ; } |
5,739 | gets the value of the direction property . concode_field_sep String name concode_elem_sep VarType type concode_elem_sep String value concode_elem_sep String direction concode_field_sep void setName concode_elem_sep String getValue concode_elem_sep String getName concode_elem_sep VarType getType concode_elem_sep void se... | String function ( ) { if ( direction == null ) { return "srini_string" ; } else { return direction ; } } |
5,740 | attempts to establish a connection with the data source that this datasource object represents . concode_field_sep int loginTimeout concode_elem_sep PrintWriter logWriter concode_elem_sep String user concode_elem_sep String database concode_elem_sep String password concode_field_sep void setPassword concode_elem_sep St... | Connection function ( ) { return getConnection ( user , password ) ; } |
5,741 | returns the midnight julian date from the calendar object . concode_field_sep double J1970 concode_elem_sep double MILLISECONDS_PER_DAY concode_field_sep double endOfDayDateToJulianDate concode_elem_sep Calendar toCalendar concode_elem_sep Calendar truncateToMidnight concode_elem_sep Range getRange concode_elem_sep dou... | double function ( Calendar arg0 ) { return dateToJulianDate ( truncateToMidnight ( arg0 ) ) ; } |
5,742 | this method returns the current date in the format : mm/dd/yyyy concode_field_sep String defaultDatePattern concode_elem_sep String timePattern concode_elem_sep Logger logger concode_field_sep String getDateTimePattern concode_elem_sep String getDateTime concode_elem_sep Date convertStringToDate concode_elem_sep Date c... | Calendar function ( ) { Date loc0 = new Date ( ) ; SimpleDateFormat loc1 = new SimpleDateFormat ( getDatePattern ( ) ) ; String loc2 = loc1 . format ( loc0 ) ; Calendar loc3 = new GregorianCalendar ( ) ; loc3 . setTime ( convertStringToDate ( loc2 ) ) ; return loc3 ; } |
5,743 | retrieves the state associated with this tcl console in the circuit state , generating the state if necessary . concode_field_sep TclWrapperListenerThread tclWrapperListenerThread concode_elem_sep InstanceState instanceState concode_elem_sep Value prevClockValue concode_elem_sep SocketClient tclClient concode_elem_sep ... | TclComponentData function ( InstanceState arg0 ) { TclComponentData loc0 = ( TclComponentData ) arg0 . getData ( ) ; if ( loc0 == null ) { loc0 = new TclComponentData ( arg0 ) ; arg0 . setData ( loc0 ) ; } return loc0 ; } |
5,744 | returns the groovy version concode_field_sep MetaClassRegistry META_CLASS_REGISTRY concode_elem_sep Map<String,GroovyRunner> RUNNER_REGISTRY concode_elem_sep MetaClass objectMetaClass concode_elem_sep boolean keepJavaMetaClasses concode_elem_sep boolean USE_REFLECTION concode_field_sep boolean isUseReflection concode_e... | String function ( ) { return ReleaseInfo . getVersion ( ) ; } |
5,745 | gets the topic . concode_field_sep List<GeographicCodeClient> geographicCode concode_elem_sep List<String> occupation concode_elem_sep String xmlLang concode_elem_sep List<HierarchicalGeographicTypeClient> hierarchicalGeographic concode_elem_sep List<TitleInfoTypeClient> titleInfo concode_elem_sep List<String> coordina... | List < String > function ( ) { return topic ; } |
5,746 | set the behind view content to an explicit view . this view is placed directly into the behind view 's view hierarchy . it can itself be a complex view hierarchy . concode_field_sep boolean mEnableSlide concode_elem_sep Activity mActivity concode_elem_sep View mViewBehind concode_elem_sep boolean mOnPostCreateCalled co... | void function ( View arg0 , LayoutParams arg1 ) { mViewBehind = arg0 ; mSlidingMenu . setMenu ( mViewBehind ) ; } |
5,747 | gets the db location . concode_field_sep String dbName concode_elem_sep String comment concode_elem_sep String dbLocation concode_elem_sep Map<String,String> props concode_field_sep String getName concode_elem_sep Map<String,String> getProperties concode_elem_sep String getComment concode_elem_sep String toString | String function ( ) { return dbLocation ; } |
5,748 | returns the column 's data format . valid formats are : text-single - > single line or word of text text-private - > instead of showing the user what they typed , you show to protect it text-multi - > multiple lines of text entry list-single - > given a list of choices , pick one list-multi - > given a list of choices ... | String function ( ) { return type ; } |
5,749 | calls isleapyear to print correct statement . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isLeapYear concode_elem_sep void main | void function ( int arg0 ) { if ( isLeapYear ( arg0 ) ) { System . out . printf ( "srini_string" , arg0 ) ; } else { System . out . printf ( "srini_string" , arg0 ) ; } } |
5,750 | gets the value of the manualmemo property . concode_field_sep String subscriber concode_elem_sep Boolean manualMemo concode_elem_sep long serialVersionUID concode_elem_sep AccountModeEnum accountMode concode_elem_sep CodeAndDescription memoType concode_elem_sep List<NameValuePair> parameterValue concode_elem_sep Boolea... | Boolean function ( ) { return manualMemo ; } |
5,751 | specifies that the parser produced by this code will provide support for xml namespaces . by default the value of this is set to false . concode_field_sep boolean validating concode_elem_sep boolean namespaceAware concode_field_sep boolean isNamespaceAware concode_elem_sep void setFeature concode_elem_sep void setValid... | void function ( boolean arg0 ) { this . namespaceAware = arg0 ; } |
5,752 | create a vector from the given angle in radians and magnitude concode_field_sep Vector2D X_UNIT_VECTOR concode_elem_sep float x concode_elem_sep Vector2D ZERO_VECTOR concode_elem_sep Vector2D X_NEG_UNIT_VECTOR concode_elem_sep float y concode_elem_sep Vector2D Y_NEG_UNIT_VECTOR concode_elem_sep float THREEHALFPI concod... | Vector2D function ( final float arg0 , final float arg1 ) { return new Vector2D ( ( float ) Math . cos ( arg0 ) * arg1 , ( float ) Math . sin ( arg0 ) * arg1 ) ; } |
5,753 | query the location of the archive concode_field_sep String ANDROIDID concode_elem_sep String NETCFG concode_elem_sep Properties credentials concode_elem_sep String CREDCFG concode_elem_sep String authToken concode_elem_sep String PROXYPASS concode_elem_sep String PROXYPORT concode_elem_sep String USERAGENT concode_elem... | File function ( ) { return root ; } |
5,754 | one or more values for the account attribute . concode_field_sep com.amazonaws.internal.SdkInternalList<AccountAttributeValue> attributeValues concode_elem_sep String attributeName concode_field_sep java.util.List<AccountAttributeValue> getAttributeValues concode_elem_sep void setAttributeName concode_elem_sep void set... | AccountAttribute function ( java . util . Collection < AccountAttributeValue > arg0 ) { setAttributeValues ( arg0 ) ; return this ; } |
5,755 | create a file with a length of filelen concode_field_sep short replication concode_elem_sep MiniDFSCluster cluster concode_elem_sep Log LOG concode_elem_sep ClientProtocol[] clients concode_elem_sep String FILE_NAME concode_elem_sep Random RANDOM concode_elem_sep Path FILE_PATH concode_field_sep Configuration createCon... | void function ( int arg0 , long arg1 ) { final FileSystem loc0 = cluster . getFileSystem ( arg0 ) ; DFSTestUtil . createFile ( loc0 , FILE_PATH , arg1 , replication , RANDOM . nextLong ( ) ) ; DFSTestUtil . waitReplication ( loc0 , FILE_PATH , replication ) ; } |
5,756 | parses the mp4 file . concode_field_sep long mPos concode_elem_sep RandomAccessFile fis concode_elem_sep byte[] pps concode_elem_sep String TAG concode_elem_sep byte[] sps concode_elem_sep RandomAccessFile mFile concode_elem_sep byte[] buffer concode_elem_sep long pos concode_elem_sep int ppsLength concode_elem_sep int... | MP4Parser function ( String arg0 ) { return new MP4Parser ( arg0 ) ; } |
5,757 | sets the maximum size estimate . concode_field_sep List<String> list concode_elem_sep ConcurrentMap<String,AttributeValues> attributes concode_field_sep List<String> getInterfaceDescriptions concode_elem_sep void clearResourceType concode_elem_sep boolean containsAttribute concode_elem_sep void addInterfaceDescription ... | void function ( String arg0 ) { findAttributeValues ( LinkFormat . MAX_SIZE_ESTIMATE ) . setOnly ( arg0 ) ; } |
5,758 | close this stream . concode_field_sep PushableStream<T> pushableStream concode_elem_sep int MAXLEN concode_elem_sep long rawValueCounter concode_elem_sep long writtenCodewordCounter concode_elem_sep OutputStream outData concode_elem_sep Class<T> datatype concode_elem_sep boolean debug concode_elem_sep RunLength<T> curr... | void function ( ) { if ( buffer != null ) try { emit ( ) ; flushBuffer ( ) ; } finally { if ( pushableStream != null ) pushableStream . close ( ) ; else outData . close ( ) ; outLen . close ( ) ; buffer = null ; } } |
5,759 | retrieves the remarks , if any , recorded against the specified column . concode_field_sep short tableIndexOther concode_elem_sep int HALF_MAX_INT concode_elem_sep int bestRowNotPseudo concode_elem_sep int bestRowTransaction concode_elem_sep int hnd_column_remarks concode_elem_sep int hnd_table_remarks concode_elem_sep... | String function ( int arg0 ) { String loc0 ; if ( table . getTableType ( ) != TableBase . INFO_SCHEMA_TABLE ) { return null ; } loc0 = getName ( ) + "srini_string" + getColName ( arg0 ) ; return BundleHandler . getString ( hnd_column_remarks , loc0 ) ; } |
5,760 | the frequency of the recurring charge . concode_field_sep String recurringChargeFrequency concode_elem_sep Double recurringChargeAmount concode_field_sep Double getRecurringChargeAmount concode_elem_sep RecurringCharge withRecurringChargeFrequency concode_elem_sep void setRecurringChargeAmount concode_elem_sep int hash... | void function ( String arg0 ) { this . recurringChargeFrequency = arg0 ; } |
5,761 | sets the zoom factor . concode_field_sep ChartPanel chartPanel concode_elem_sep double zoomFactor concode_field_sep void mouseWheelMoved concode_elem_sep double getZoomFactor concode_elem_sep void handleZoomable | void function ( double arg0 ) { this . zoomFactor = arg0 ; } |
5,762 | read string until newline or end of stream concode_field_sep boolean saveUploadedFilesToDisk concode_elem_sep HttpSession session concode_elem_sep int maxUploadSize concode_elem_sep boolean hasSession concode_elem_sep Hashtable uploadStatus concode_elem_sep File uploadDirectory concode_elem_sep int MAX_BOUNDARY_SIZE co... | String function ( DSpaceTokenStream arg0 ) { } |
5,763 | the name of the log stream . concode_field_sep String logStreamName concode_elem_sep Boolean searchedCompletely concode_field_sep String getLogStreamName concode_elem_sep SearchedLogStream withLogStreamName concode_elem_sep void setSearchedCompletely concode_elem_sep Boolean isSearchedCompletely concode_elem_sep int ha... | void function ( String arg0 ) { this . logStreamName = arg0 ; } |
5,764 | returns the string representation for this object . the returned string is in the form `` cxf u '' with c standing for the cross feed and f for the feed direction resolution . u denotes the units name if one is supplied . concode_field_sep long serialVersionUID concode_elem_sep int crossFeedResolution concode_elem_sep ... | String function ( int arg0 , String arg1 ) { if ( arg1 == null ) return getCrossFeedResolution ( arg0 ) + "srini_string" + getFeedResolution ( arg0 ) ; return ( "srini_string" + getCrossFeedResolution ( arg0 ) + "srini_string" + getFeedResolution ( arg0 ) + "srini_string" + arg1 ) ; } |
5,765 | same as #obtain , but sets the values of the target , what , and obj members . concode_field_sep Message next concode_elem_sep boolean dispatching concode_elem_sep Creator<Message> CREATOR concode_elem_sep Bundle data concode_elem_sep Object mPoolSync concode_elem_sep int MAX_POOL_SIZE concode_elem_sep long when concod... | Message function ( Handler arg0 , int arg3 , Object arg4 ) { Message loc0 = obtain ( ) ; loc0 . target = arg0 ; loc0 . arg3 = arg3 ; loc0 . arg4 = arg4 ; return loc0 ; } |
5,766 | gets the value of the criterionparametertype property . concode_field_sep String criterionParameterType concode_field_sep void setCriterionParameterType | String function ( ) { return criterionParameterType ; } |
5,767 | set a default padding left/top/right / bottom for this node . concode_field_sep CSSNode mParent concode_elem_sep CSSNode nextAbsoluteChild concode_elem_sep CSSStyle style concode_elem_sep ArrayList<CSSNode> mChildren concode_elem_sep int lineIndex concode_elem_sep MeasureFunction mMeasureFunction concode_elem_sep Cache... | void function ( int arg0 , float arg1 ) { if ( style . arg1 . setDefault ( arg0 , arg1 ) ) { dirty ( ) ; } } |
5,768 | this method resets the incoming events time events included . concode_field_sep boolean evInCValue concode_elem_sep double evEValue concode_elem_sep String evInFValue concode_elem_sep boolean evInD concode_elem_sep boolean evInE concode_elem_sep long varE concode_elem_sep boolean evInB concode_elem_sep String varD conc... | void function ( ) { sCInterface . clearEvents ( ) ; sCIIfA . clearEvents ( ) ; evInA = false ; evInB = false ; evInC = false ; evInD = false ; evInE = false ; evInF = false ; } |
5,769 | stop a service ; if it is null do nothing . exceptions are caught and logged at warn level . but not throwables . this operation is intended to be used in cleanup operations concode_field_sep Log LOG concode_field_sep void init concode_elem_sep void stop concode_elem_sep void start concode_elem_sep void ensureCurrentSt... | Exception function ( Service arg0 ) { try { stop ( arg0 ) ; } catch ( Exception loc0 ) { LOG . warn ( "srini_string" + arg0 . getName ( ) + "srini_string" + loc0 , loc0 ) ; return loc0 ; } return null ; } |
5,770 | this method is used to compare two reservation objects . concode_field_sep int reservationId concode_elem_sep int patronId concode_elem_sep int mediaId concode_elem_sep Date reservationDate concode_field_sep int getReservationId concode_elem_sep void setPatronId concode_elem_sep void setReservationDate concode_elem_sep... | boolean function ( Reservation arg0 ) { return this . mediaId == arg0 . mediaId && this . patronId == arg0 . patronId && this . reservationDate . equals ( arg0 . reservationDate ) ; } |
5,771 | returns the number of attributes contained in the attribute set of this relation . concode_field_sep Map<Comparable,ComparableSet> attributeMap concode_elem_sep boolean changesDisallowed concode_elem_sep ComparableSet allAttributes concode_elem_sep Map<Comparable,ComparableSet> objectMap concode_elem_sep ComparableSet ... | int function ( ) { return allAttributes . size ( ) ; } |
5,772 | tests if a string is not null . concode_field_sep PlaceHolder placeHolder concode_field_sep long checkNotNegative concode_elem_sep int checkNotNegative concode_elem_sep int checkAsyncBackupCount concode_elem_sep void checkFalse concode_elem_sep long checkNegative concode_elem_sep Iterator<T> checkHasNext concode_elem_s... | E function ( E arg0 , String arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( format ( "srini_string" , arg1 ) ) ; } return arg0 ; } |
5,773 | indicates that current chart instance supports image map interaction concode_field_sep String plotPointShape concode_elem_sep boolean enableDynamicValues concode_elem_sep boolean areaMapEnabled concode_elem_sep int CUSTOM_CHART_TYPE concode_elem_sep String xAxisTitle concode_elem_sep boolean barChartOrientationHorizont... | boolean function ( ) { return areaMapEnabled ; } |
5,774 | construct the component instance . upon return , the object instance should have injections and lifecycle invocations completed already . concode_field_sep Class<?> componentClass concode_elem_sep Map<Method,InterceptorFactory> interceptorFactoryMap concode_elem_sep Interceptor postConstructInterceptor concode_elem_sep... | BasicComponentInstance function ( ManagedReference arg0 , boolean arg1 ) { return constructComponentInstance ( arg0 , arg1 , Collections . emptyMap ( ) ) ; } |
5,775 | convenience method for #adddisabledsmackclass string . concode_field_sep List<XMPPInputOutputStream> compressionHandlers concode_elem_sep ParsingExceptionCallback defaultCallback concode_elem_sep SmackDebuggerFactory debuggerFactory concode_elem_sep List<String> defaultMechs concode_elem_sep int defaultPacketReplyTimeo... | void function ( Class < ? > arg0 ) { addDisabledSmackClass ( arg0 . getName ( ) ) ; } |
5,776 | the policy adjustment types . concode_field_sep com.amazonaws.internal.SdkInternalList<AdjustmentType> adjustmentTypes concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep java.util.List<AdjustmentType> getAdjustmentTypes concode_elem_sep DescribeAdjustmentTypesResult clone concode_elem_sep S... | DescribeAdjustmentTypesResult function ( java . util . Collection < AdjustmentType > arg0 ) { setAdjustmentTypes ( arg0 ) ; return this ; } |
5,777 | use this method when the shell is being executed as a top level shell . concode_field_sep String application concode_elem_sep String user concode_field_sep String getApplication concode_elem_sep String getUser concode_elem_sep void main concode_elem_sep void discoverCommands concode_elem_sep Session createSession conco... | void function ( String arg0 [ ] ) { ThreadIOImpl loc0 = new ThreadIOImpl ( ) ; loc0 . start ( ) ; InputStream loc1 = unwrap ( System . loc1 ) ; PrintStream loc2 = wrap ( unwrap ( System . loc2 ) ) ; PrintStream loc3 = wrap ( unwrap ( System . loc3 ) ) ; run ( loc0 , arg0 , loc1 , loc2 , loc3 ) ; } |
5,778 | converts a millipoint-based transformation matrix to points . concode_field_sep float IN2CM concode_elem_sep int IN2PT concode_elem_sep float IN2MM concode_field_sep double pt2mm concode_elem_sep double mm2pt concode_elem_sep double mm2in concode_elem_sep double mpt2in concode_elem_sep double mm2mpt concode_elem_sep do... | AffineTransform function ( AffineTransform arg0 ) { return org . apache . xmlgraphics . util . UnitConv . mptToPt ( arg0 ) ; } |
5,779 | returns the @artifact containing final watch extension bundle . concode_field_sep ImmutableSet<Attribute> extensionDependencyAttributes concode_elem_sep ImmutableSet<Attribute> applicationDependencyAttributes concode_elem_sep SplitTransition<BuildOptions> MINIMUM_OS_AND_SPLIT_ARCH_TRANSITION concode_field_sep Artifact ... | Artifact function ( RuleContext arg0 ) { return arg0 . getImplicitOutputArtifact ( ReleaseBundlingSupport . IPA ) ; } |
5,780 | error log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void set... | void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . arg2 ( arg0 , arg1 , arg2 ) ; } |
5,781 | get how long in seconds a client-supplied created element is allowed to be in the future . the default is 60 seconds to avoid common problems relating to clock skew . concode_field_sep Logger LOG concode_elem_sep long DEFAULT_MAX_LIFETIME concode_elem_sep boolean acceptClientLifetime concode_elem_sep long lifetime conc... | long function ( ) { return futureTimeToLive ; } |
5,782 | configure the authorization endpoint concode_field_sep String minCliVersion concode_elem_sep String loggingEndpoint concode_elem_sep String description concode_elem_sep String appSshHostKeyFingerprint concode_elem_sep String authorizationEndpoint concode_elem_sep Integer version concode_elem_sep String tokenEndpoint co... | GetInfoResponse function ( String arg0 ) { this . authorizationEndpoint = arg0 ; return this ; } |
5,783 | returns an org.elasticsearch.index.engine.engine.warmer used to warm new searchers before they are used for searching . concode_field_sep boolean forceNewTranslog concode_elem_sep CodecService codecService concode_elem_sep String INDEX_FORCE_NEW_TRANSLOG concode_elem_sep IndexSettings indexSettings concode_elem_sep Sha... | Engine . Warmer function ( ) { return warmer ; } |
5,784 | sets the maximum number of retries concode_field_sep Long retryDelay concode_elem_sep Integer maximumRetries concode_elem_sep Boolean randomBackOff concode_elem_sep Long maximumRetryDelay concode_elem_sep Boolean exponentialBackOff concode_field_sep Boolean getRandomBackOff concode_elem_sep OptimisticLockRetryPolicyDef... | OptimisticLockRetryPolicyDefinition function ( int arg0 ) { setMaximumRetries ( arg0 ) ; return this ; } |
5,785 | create an instance of progressgetrequest concode_field_sep QName _ProgressRequest_QNAME concode_elem_sep QName _ProgressResponse_QNAME concode_field_sep ProgressResumeRequestVerb createProgressResumeRequestVerb concode_elem_sep ProgressGetResponse createProgressGetResponse concode_elem_sep ProgressPauseResponse createP... | ProgressGetRequest function ( ) { return new ProgressGetRequest ( ) ; } |
5,786 | adds an int property to a map . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_el... | JSONBuilder function ( String arg0 , int arg1 ) { appendCommaAndKey ( arg0 ) ; params . append ( arg1 ) ; return this ; } |
5,787 | creates the junit.framework.testsuite testsuite for all the test . concode_field_sep PlaceHolder placeHolder concode_field_sep void main | Test function ( ) { return new JUnit4TestAdapter ( AllTests . class ) ; } |
5,788 | retrieves a byte sequence representing the md5 digest of the specified byte sequence . concode_field_sep MessageDigest md5 concode_field_sep String encode | byte [ ] function ( byte [ ] arg0 ) { synchronized ( MD5 . class ) { if ( md5 == null ) { try { md5 = MessageDigest . getInstance ( "srini_string" ) ; } catch ( NoSuchAlgorithmException loc0 ) { throw new RuntimeException ( loc0 . toString ( ) ) ; } } return md5 . digest ( arg0 ) ; } } |
5,789 | specifies whether the method requires a valid apikey . concode_field_sep Boolean apiKeyRequired concode_elem_sep String authorizationType concode_field_sep String getAuthorizationType concode_elem_sep void setAuthorizationType concode_elem_sep Boolean getApiKeyRequired concode_elem_sep int hashCode concode_elem_sep boo... | void function ( Boolean arg0 ) { this . apiKeyRequired = arg0 ; } |
5,790 | get custom serializer concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String real_name concode_elem_sep java.math.BigInteger id concode_elem_sep java.l... | org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; } |
5,791 | closes the record file . concode_field_sep String filename concode_elem_sep Transaction tx concode_elem_sep TableInfo ti concode_elem_sep int currentblknum concode_elem_sep RecordPage rp concode_field_sep boolean next concode_elem_sep boolean atLastBlock concode_elem_sep RID currentRid concode_elem_sep void appendBlock... | void function ( ) { rp . close ( ) ; } |
5,792 | the `` large range correction '' formula from the hyperloglog algorithm , adapted for 64 bit hashes . only appropriate for estimators whose value exceeds the return of #largeestimatorcutoff int , int . concode_field_sep int REG_WIDTH_INDEX_MULTIPLIER concode_elem_sep long[] PW_MASK concode_elem_sep double[] TWO_TO_L co... | double function ( final int arg0 , final int arg1 , final double arg2 ) { final double loc0 = TWO_TO_L [ ( REG_WIDTH_INDEX_MULTIPLIER * arg1 ) + arg0 ] ; return - 1 * loc0 * Math . log ( 1.0 - ( arg2 / loc0 ) ) ; } |
5,793 | compares stored encoded password with new encoded password concode_field_sep boolean loggedin concode_elem_sep String encodedPass concode_elem_sep String lastName concode_elem_sep String bio concode_elem_sep String[] address concode_elem_sep java.util.UUID profilePic concode_elem_sep String encodedAddress concode_elem_... | boolean function ( String arg0 ) { return encodedPass . contentEquals ( new StringBuffer ( arg0 ) ) ; } |
5,794 | reads an unsigned int in little-endian byte order from the buffer at the given offset . casts to a long to allow proper numerical comparison . concode_field_sep long DOS_EPOCH concode_elem_sep int DOS_YEAR_OFFSET concode_elem_sep long MAX_DOS_DATE concode_elem_sep int DOS_DAY_OFFSET concode_elem_sep int DOS_MONTH_OFFSE... | long function ( byte [ ] arg0 , int arg1 ) { return get32 ( arg0 , arg1 ) & 0xffffffffL ; } |
5,795 | returns a table with the enumeration values for this object . the default implementation just returns null . concode_field_sep long serialVersionUID concode_elem_sep int value concode_field_sep int getValue concode_elem_sep int hashCode concode_elem_sep int getOffset concode_elem_sep Object clone concode_elem_sep Strin... | EnumSyntax [ ] function ( ) { return null ; } |
5,796 | override this method to do any cleanup needed after generation concode_field_sep String SCT_GENERATOR_CONSOLE concode_elem_sep IGeneratorBridge bridge concode_elem_sep MessageConsoleStream error concode_elem_sep Injector injector concode_elem_sep MessageConsoleStream info concode_field_sep void refreshTargetProject con... | void function ( GeneratorEntry arg0 ) { } |
5,797 | show toast in short time by system concode_field_sep PlaceHolder placeHolder concode_field_sep void showMessageLong concode_elem_sep void showMessageLong | void function ( final Context arg0 , final int arg1 ) { Toast . makeText ( arg0 , arg1 , Toast . LENGTH_SHORT ) . show ( ) ; } |
5,798 | parse the response content as node and apply the given hamcrest matcher . concode_field_sep XmlExpectationsHelper xmlHelper concode_elem_sep JsonExpectationsHelper jsonHelper concode_field_sep ResultMatcher contentTypeCompatibleWith concode_elem_sep ResultMatcher contentTypeCompatibleWith concode_elem_sep ResultMatcher... | ResultMatcher function ( final Matcher < ? super Node > arg0 ) { return new ResultMatcher ( ) { @ Override public void match ( MvcResult arg1 ) throws Exception { String loc0 = arg1 . getResponse ( ) . getContentAsString ( ) ; xmlHelper . assertNode ( loc0 , arg0 ) ; } } ; } |
5,799 | set value from char using normalized index concode_field_sep PlaceHolder placeHolder concode_field_sep char cArrayGet concode_elem_sep void fArraySet concode_elem_sep byte bArrayGet concode_elem_sep void zArraySet concode_elem_sep double dArrayGet concode_elem_sep boolean isOrigFArray concode_elem_sep void dArraySet co... | void function ( char [ ] arg0 , int arg1 , char arg2 ) { try { arg0 [ arg1 ] = arg2 ; } catch ( Throwable loc0 ) { arg0 [ DefaultGroovyMethodsSupport . normaliseIndex ( arg1 , arg0 . length ) ] = arg2 ; } } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.