idx int64 0 100k | question stringlengths 68 7.19k | target stringlengths 20 663 |
|---|---|---|
32,300 | gets empty item view concode_field_sep WheelView wheel concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep View getItem concode_elem_sep void recycleView concode_elem_sep List<View> addView concode_elem_sep void... | View function ( ) { return getCachedView ( emptyItems ) ; } |
32,301 | compute the buckets and start the service concode_field_sep int bucketSpanInMillis concode_elem_sep long endOBucketsInMillis concode_elem_sep long expiryTimeInMillis concode_elem_sep Timer bucketSlidingTimer concode_elem_sep Bucket<T>[] buckets concode_elem_sep boolean isOuter concode_elem_sep Logger logger concode_ele... | void function ( ) { setBucketSpanInMillis ( ( int ) ( spanTimeInMillis > ( long ) bucketSpanInMillis ? bucketSpanInMillis : spanTimeInMillis ) ) ; if ( buckets == null ) { recomputeNumBuckets ( ) ; } startService ( ) ; } |
32,302 | gets the value of the note 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 note property . for example , to add a new item , do as follo... | List < Note > function ( ) { if ( note == null ) { note = new ArrayList < Note > ( ) ; } return this . note ; } |
32,303 | add an instance of the given object to the pool concode_field_sep long serialVersionUID concode_elem_sep ArrayList m_freeStack concode_elem_sep DTMIterator m_orig concode_field_sep DTMIterator getInstanceOrThrow concode_elem_sep DTMIterator getInstance | void function ( DTMIterator arg0 ) { m_freeStack . add ( arg0 ) ; } |
32,304 | un-pause the scheduler . equivalent to setidlestate unpaused . concode_field_sep Runnable runnable concode_elem_sep IdleState idleState concode_elem_sep long scheduledTime concode_elem_sep boolean isExecutingRunnable concode_elem_sep Thread associatedThread concode_elem_sep long currentTime concode_elem_sep List<Schedu... | void function ( ) { setIdleState ( UNPAUSED ) ; } |
32,305 | find all permission entities . concode_field_sep Provider<EntityManager> entityManagerProvider concode_elem_sep DaoUtils daoUtils concode_field_sep PermissionEntity findAmbariAdminPermission concode_elem_sep PermissionEntity merge concode_elem_sep PermissionEntity findById concode_elem_sep PermissionEntity findPermissi... | List < PermissionEntity > function ( ) { TypedQuery < PermissionEntity > loc0 = entityManagerProvider . get ( ) . createQuery ( "srini_string" , PermissionEntity . class ) ; return daoUtils . selectList ( loc0 ) ; } |
32,306 | this method was generated by mybatis generator . this method sets the value of the database column user_info . password concode_field_sep String password concode_elem_sep Date addTime concode_elem_sep Date updateTime concode_elem_sep Integer type concode_elem_sep Integer userId concode_elem_sep String email concode_ele... | void function ( String arg0 ) { this . password = arg0 ; } |
32,307 | puts a new stoptime concode_field_sep Shape shape concode_elem_sep Service service concode_elem_sep String name concode_elem_sep String tripId concode_elem_sep List<Link> links concode_elem_sep String serviceId concode_elem_sep SortedMap<Integer,StopTime> stopTimes concode_elem_sep List<Frequency> frequencies concode_f... | void function ( Integer arg0 , StopTime arg1 ) { stopTimes . put ( arg0 , arg1 ) ; } |
32,308 | call this to remove the highlights of the search results . override this if you draw your own highlights and you 'll probably just want to reset the attributesets to the entire text and not call this super . concode_field_sep AttributeSet defaultStyle concode_elem_sep List<TextBlockSearchEditor.SearchResult> currentHig... | void function ( ) { removeExistingHighlights ( ) ; } |
32,309 | retrieves the generated id for the savepoint that this savepoint object represents . concode_field_sep String name concode_elem_sep jdbcConnection connection concode_field_sep String getSavepointName concode_elem_sep String toString | int function ( ) { throw jdbcUtil . notSupported ; } |
32,310 | template method for determining the global rollback-only flag of the underlying transaction , if any . this implementation always returns false . concode_field_sep boolean rollbackOnly concode_elem_sep Object savepoint concode_elem_sep boolean completed concode_field_sep boolean isLocalRollbackOnly concode_elem_sep Obj... | boolean function ( ) { return false ; } |
32,311 | returns an index for which #valueat would return thespecified key , or a negative number if no keys map to the specified value . beware that this is a linear search , unlike lookups by key , and that multiple keys can map to the same value and this will find only one of them . concode_field_sep int[] mKeys concode_elem... | int function ( boolean arg0 ) { for ( int loc0 = 0 ; loc0 < mSize ; loc0 ++ ) if ( mValues [ loc0 ] == arg0 ) return loc0 ; return - 1 ; } |
32,312 | returns the total number of backups synchronous plus asynchronous ; the returned value will always equal or bigger than 0 . concode_field_sep int initialPermits concode_elem_sep int DEFAULT_ASYNC_BACKUP_COUNT concode_elem_sep int asyncBackupCount concode_elem_sep int DEFAULT_SYNC_BACKUP_COUNT concode_elem_sep String na... | int function ( ) { return asyncBackupCount + backupCount ; } |
32,313 | returns the callback host address . concode_field_sep String UTF_ENCODING concode_elem_sep int DEFAULT_PORT_RF concode_elem_sep int cuxdPort concode_elem_sep String gatewayType concode_elem_sep String ISO_ENCODING concode_elem_sep int reconnectInterval concode_elem_sep String GATEWAY_TYPE_AUTO concode_elem_sep int hmIp... | String function ( ) { return callbackHost ; } |
32,314 | gets the name . concode_field_sep MultivaluedMap<String,String> queryParams concode_elem_sep String whereClause concode_elem_sep int startPage concode_elem_sep String PAGE_SIZE_DEFAULT_PROPERTY concode_elem_sep String EMPTY_ORDER_BY_CLAUSE concode_elem_sep String name concode_elem_sep int pageSize concode_elem_sep int ... | String function ( ) { return name ; } |
32,315 | getlisteners concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listenerList concode_elem_sep int index concode_elem_sep ChangeEvent changeEvent concode_field_sep void removeChangeListener concode_elem_sep ChangeListener[] getChangeListeners concode_elem_sep void fireStateChanged concode_elem_se... | T [ ] function ( Class < T > arg0 ) { return listenerList . getListeners ( arg0 ) ; } |
32,316 | return the package name of class c. concode_field_sep PlaceHolder placeHolder concode_field_sep String getSimpleName | String function ( Class < ? > arg0 ) { String loc0 = arg0 . getName ( ) ; int loc1 = loc0 . lastIndexOf ( "srini_string" ) ; if ( loc1 > 0 ) { return loc0 . substring ( 0 , loc1 ) ; } return null ; } |
32,317 | sets the value of the hilmtpx property . concode_field_sep BigDecimal lowLmtPx concode_elem_sep BigInteger pxLmtTyp concode_elem_sep BigDecimal trdgRefPx concode_elem_sep BigDecimal hiLmtPx concode_field_sep BigDecimal getHiLmtPx concode_elem_sep void setLowLmtPx concode_elem_sep BigDecimal getLowLmtPx concode_elem_sep... | void function ( BigDecimal arg0 ) { this . hiLmtPx = arg0 ; } |
32,318 | create an instance of jaxbelement concode_field_sep QName _InfoFromServerResponse_QNAME concode_elem_sep QName _GetCurrentTime_QNAME concode_elem_sep QName _FindUserResponse_QNAME concode_elem_sep QName _CreateUserResponse_QNAME concode_elem_sep QName _CreateUser_QNAME concode_elem_sep QName _GetAll_QNAME concode_elem_... | JAXBElement < InfoFromServerResponse > function ( InfoFromServerResponse arg0 ) { return new JAXBElement < InfoFromServerResponse > ( _InfoFromServerResponse_QNAME , InfoFromServerResponse . class , null , arg0 ) ; } |
32,319 | forwards this event to the current listener , if there is one . sets the current listener to null afterwards . concode_field_sep TransferDropTargetListener[] fListeners concode_elem_sep TransferDropTargetListener fCurrentListener concode_elem_sep int fOriginalDropType concode_field_sep void dragOperationChanged concode... | void function ( final DropTargetEvent arg0 ) { updateCurrentListener ( arg0 ) ; if ( getCurrentListener ( ) != null ) { SafeRunner . run ( new SafeRunnable ( ) { public void run ( ) throws Exception { getCurrentListener ( ) . drop ( arg0 ) ; } } ) ; } setCurrentListener ( null , arg0 ) ; } |
32,320 | get a new stanza / packet collector configuration instance . concode_field_sep ArrayBlockingQueue<Stanza> resultQueue concode_elem_sep long waitStart concode_elem_sep boolean cancelled concode_elem_sep StanzaFilter packetFilter concode_elem_sep XMPPConnection connection concode_elem_sep PacketCollector collectorToReset... | Configuration function ( ) { return new Configuration ( ) ; } |
32,321 | this method was generated by mybatis generator . this method returns the value of the database column reply.topicid concode_field_sep Integer zancount concode_elem_sep Integer topicid concode_elem_sep Date createtime concode_elem_sep Integer pointid concode_elem_sep Integer opposecount concode_elem_sep Byte enable conc... | Integer function ( ) { return topicid ; } |
32,322 | this method was generated by mybatis generator . this method sets the value of the database column boss_accounting_cycle_record . cur_accounting_time concode_field_sep String modifyUser concode_elem_sep Integer oriAccountingTime concode_elem_sep Integer curAccountingTime concode_elem_sep Date modifyTime concode_elem_se... | void function ( Integer arg0 ) { this . curAccountingTime = arg0 ; } |
32,323 | gets the value of the storeid property . concode_field_sep String storeAddress1 concode_elem_sep String storeAddress2 concode_elem_sep String storeLicenseNum concode_elem_sep String storeZipCode concode_elem_sep String storeFax concode_elem_sep String storePhone concode_elem_sep String storeName concode_elem_sep String... | String function ( ) { return storeId ; } |
32,324 | setter for coupledpaymentinfo concode_field_sep String note concode_elem_sep String msgSubID concode_elem_sep UserSelectedOptionType userSelectedOptions concode_elem_sep String successPageRedirectRequested concode_elem_sep List<CoupledPaymentInfoType> coupledPaymentInfo concode_elem_sep String billingAgreementID concod... | void function ( List < CoupledPaymentInfoType > arg0 ) { this . coupledPaymentInfo = arg0 ; } |
32,325 | get the ip address of this principal . concode_field_sep InetAddress inetAddress concode_field_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals concode_elem_sep InetAddressPrincipal clone concode_elem_sep String toString | InetAddress function ( ) { return inetAddress ; } |
32,326 | returns line number n concode_field_sep String m_label concode_elem_sep String m_rsource concode_elem_sep String m_rtarget concode_elem_sep Vector m_lines concode_elem_sep Node m_source concode_elem_sep Node m_target concode_field_sep void setSource concode_elem_sep void setRtarget concode_elem_sep Node getTarget conco... | String function ( int arg0 ) { if ( arg0 < m_lines . size ( ) ) { return ( String ) m_lines . elementAt ( arg0 ) ; } else { return null ; } } |
32,327 | performs a modifier key press after focusing on an element . equivalent to : actions.click element . sendkeys thekey ; concode_field_sep Mouse mouse concode_elem_sep Keyboard keyboard concode_elem_sep WebDriver driver concode_elem_sep CompositeAction action concode_field_sep Actions release concode_elem_sep Actions rel... | Actions function ( WebElement arg0 , Keys arg1 ) { action . addAction ( new KeyDownAction ( keyboard , mouse , ( Locatable ) arg0 , arg1 ) ) ; return this ; } |
32,328 | adds a header to this builder . concode_field_sep Map<String,String> headers concode_elem_sep long totalSize concode_elem_sep String reasonPhrase concode_elem_sep String contentType concode_elem_sep InputStream content concode_elem_sep int statusCode concode_field_sep Builder setHeaders concode_elem_sep Builder addHead... | Builder function ( String arg0 , String arg1 ) { headers . put ( arg0 , arg1 ) ; return this ; } |
32,329 | returns the element identifier . concode_field_sep String elementId concode_elem_sep TopoElementType type concode_elem_sep boolean keepSubdued concode_field_sep boolean subdued concode_elem_sep TopoElementType type concode_elem_sep void keepSubdued | String function ( ) { return elementId ; } |
32,330 | sets the handler for tasks which can not be executed by the thread pool . 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_el... | void function ( ThreadPoolRejectedPolicy arg0 ) { this . rejectedPolicy = arg0 ; } |
32,331 | custom box sdk configuration , not required normally concode_field_sep BoxApiName apiName concode_elem_sep String userPassword concode_elem_sep String clientId concode_elem_sep boolean revokeOnShutdown concode_elem_sep Map<String,Object> httpParams concode_elem_sep IAuthSecureStorage authSecureStorage concode_elem_sep ... | void function ( IBoxConfig arg0 ) { this . boxConfig = arg0 ; } |
32,332 | returns a relevance score between a term and a document based on a corpus . concode_field_sep double bAnchor concode_elem_sep double b concode_elem_sep double bBody concode_elem_sep double wBody concode_elem_sep double k1 concode_elem_sep double bTitle concode_elem_sep double delta concode_elem_sep double wTitle concod... | double function ( double arg0 , long arg1 , long arg2 ) { if ( arg0 <= 0 ) return 0.0 ; double loc0 = ( k1 + 1 ) * arg0 / ( arg0 + k1 ) ; double loc1 = Math . log ( ( arg1 - arg2 + 0.5 ) / ( arg2 + 0.5 ) ) ; return ( loc0 + delta ) * loc1 ; } |
32,333 | specify which proxy to use for http connections . concode_field_sep String proxyAutoconfigUrl concode_elem_sep String socksUsername concode_elem_sep String socksPassword concode_elem_sep boolean autodetect concode_elem_sep String httpProxy concode_elem_sep ProxyType proxyType concode_elem_sep String noProxy concode_ele... | Proxy function ( String arg0 ) { verifyProxyTypeCompatibility ( ProxyType . MANUAL ) ; this . proxyType = ProxyType . MANUAL ; this . httpProxy = arg0 ; return this ; } |
32,334 | returns the non-null address type given to the constructor . concode_field_sep String addrType concode_field_sep int hashCode concode_elem_sep Object getContent concode_elem_sep boolean equals concode_elem_sep String toString | String function ( ) { return addrType ; } |
32,335 | todo remove concode_field_sep ObjectMapper JSON_MAPPER concode_elem_sep XmlMapper XML_MAPPER concode_elem_sep Map<String,Class<?>> VIEW_CLASSES concode_field_sep Class<?> getViewClass concode_elem_sep void toJsonWithView concode_elem_sep String toXmlAsString concode_elem_sep void toXml concode_elem_sep XmlMapper getXml... | String function ( Object arg0 , Class < ? > arg1 ) { return JSON_MAPPER . writerWithView ( arg1 ) . writeValueAsString ( arg0 ) ; } |
32,336 | create the right appender based on spark configuration concode_field_sep PlaceHolder placeHolder concode_field_sep void appendStreamToFile concode_elem_sep boolean stopped concode_elem_sep void openFile concode_elem_sep void closeFile concode_elem_sep java.lang.Thread writingThread concode_elem_sep void stop concode_el... | org . apache . spark . util . logging . FileAppender function ( java . io . InputStream arg0 , java . io . File arg1 , org . apache . spark . SparkConf arg2 ) { throw new RuntimeException ( ) ; } |
32,337 | convenience accessor for value of android : theme attribute . concode_field_sep String UI_OPTIONS concode_elem_sep String ALLOW_TASK_REPARENTING concode_elem_sep String LAUNCH_MODE concode_elem_sep String WINDOW_SOFT_INPUT_MODE concode_elem_sep String ICON concode_elem_sep String ALWAYS_RETAIN_TASK_STATE concode_elem_s... | String function ( ) { return attrs . get ( withXMLNS ( THEME ) ) ; } |
32,338 | stops the cache and network dispatchers . concode_field_sep Map<String,Queue<Request<?>>> mWaitingRequests concode_elem_sep Set<Request<?>> mCurrentRequests concode_elem_sep PriorityBlockingQueue<Request<?>> mCacheQueue concode_elem_sep CacheDispatcher mCacheDispatcher concode_elem_sep ResponseDelivery mDelivery concod... | void function ( ) { if ( mCacheDispatcher != null ) { mCacheDispatcher . quit ( ) ; } for ( int loc0 = 0 ; loc0 < mDispatchers . length ; loc0 ++ ) { if ( mDispatchers [ loc0 ] != null ) { mDispatchers [ loc0 ] . quit ( ) ; } } } |
32,339 | sets the value of the status property . concode_field_sep String ref concode_elem_sep String original concode_elem_sep List<Integer> evidence concode_elem_sep String description concode_elem_sep LocationType location concode_elem_sep String id concode_elem_sep String type concode_elem_sep List<String> variation concode... | void function ( String arg0 ) { this . status = arg0 ; } |
32,340 | get the size of an object . the object is not null concode_field_sep PlaceHolder placeHolder concode_field_sep Class[] getInitiatedClasses concode_elem_sep Class[] getAllLoadedClasses concode_elem_sep void redefineClasses concode_elem_sep boolean isRedefineClassesSupported | long function ( Object arg0 ) { return 0 ; } |
32,341 | set the sax inputsource to be used for the source . concode_field_sep String FEATURE concode_elem_sep XMLReader reader concode_elem_sep InputSource inputSource concode_field_sep String getSystemId concode_elem_sep InputSource sourceToInputSource concode_elem_sep void setSystemId concode_elem_sep void setXMLReader conco... | void function ( InputSource arg0 ) { this . inputSource = arg0 ; } |
32,342 | log a warn message with an associated throwable . concode_field_sep org.apache.log4j.Logger logger concode_elem_sep String FQCN concode_field_sep void trace concode_elem_sep void trace concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep boolean isInfoEnabled concode_elem_sep boolean isErrorEnabled ... | void function ( final Object arg0 , final Throwable arg1 ) { this . logger . log ( FQCN , WARN , arg0 , arg1 ) ; } |
32,343 | gets the timeunit corresponding to this timebucket . concode_field_sep Map<String,TimeBucket> BUCKET_TO_TYPE concode_elem_sep TimeBucketComparator INSTANCE concode_elem_sep Pattern TIME_BUCKET_NAME_PATTERN concode_elem_sep Map<String,TimeBucket> SUFFIX_TO_TIME_BUCKET concode_elem_sep Map<TimeUnit,TimeBucket> TIME_UNIT_... | TimeUnit function ( ) { return timeUnit ; } |
32,344 | instructs the webview to proceed with the authentication with the given credentials . concode_field_sep HttpAuthHandler handler concode_field_sep void cancel | void function ( String arg0 , String arg1 ) { this . handler . proceed ( arg0 , arg1 ) ; } |
32,345 | return true if it 's in the form '' fn function_body '' concode_field_sep boolean isEscaped concode_elem_sep String name concode_elem_sep boolean allColumns concode_elem_sep String attribute concode_elem_sep KeepExpression keep concode_elem_sep ExpressionList parameters concode_elem_sep boolean distinct concode_field_s... | boolean function ( ) { return isEscaped ; } |
32,346 | converts an array of raw binary data into a string of ascii 0 and 1 characters . concode_field_sep char[] EMPTY_CHAR_ARRAY concode_elem_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep int BIT_2 concode_elem_sep int BIT_3 concode_elem_sep int BIT_6 concode_elem_sep int BIT_4 concode_elem_sep int BIT_5 concode_elem_sep int[... | String function ( byte [ ] arg0 ) { return new String ( toAsciiChars ( arg0 ) ) ; } |
32,347 | used to communicate a cancel operation from the whitebox gui . 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 amIActive concode_field_sep String getN... | void function ( boolean arg0 ) { cancelOp = arg0 ; } |
32,348 | destroys the filter . this implementation is a nop . concode_field_sep ThreadLocal<FileSystem> FILE_SYSTEM_TL concode_field_sep void init concode_elem_sep void setFileSystem concode_elem_sep void doFilter concode_elem_sep FileSystemAccess getFileSystemAccess | void function ( ) { } |
32,349 | negates the built expression . concode_field_sep boolean not concode_elem_sep Expression expression concode_field_sep ValueBuilder prepend concode_elem_sep ValueBuilder onNewValueBuilder concode_elem_sep ValueBuilder tokenize concode_elem_sep ValueBuilder tokenize concode_elem_sep ValueBuilder tokenize concode_elem_sep... | ValueBuilder function ( ) { not = true ; return this ; } |
32,350 | create the adapteralreadyexists typecode emtpy structure , named `` adapteralreadyexists '' . concode_field_sep TypeCode typeCode concode_field_sep AdapterAlreadyExists extract concode_elem_sep AdapterAlreadyExists read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep void write | TypeCode function ( ) { if ( typeCode == null ) { ORB loc0 = OrbRestricted . Singleton ; StructMember [ ] loc1 = new StructMember [ 0 ] ; typeCode = loc0 . create_exception_tc ( id ( ) , "srini_string" , loc1 ) ; } return typeCode ; } |
32,351 | sets the value of the unlockeligibleenddate property . concode_field_sep BigInteger deviceLockPeriod concode_elem_sep XMLGregorianCalendar unlockEligibleEndDate concode_elem_sep Boolean unlockEligibleBySupplyChainOverride concode_elem_sep XMLGregorianCalendar unlockEligibleStartDate concode_elem_sep BigInteger unlockEl... | void function ( XMLGregorianCalendar arg0 ) { this . unlockEligibleEndDate = arg0 ; } |
32,352 | returns the shift setting for this shortcut . concode_field_sep boolean usesShift concode_elem_sep long serialVersionUID concode_elem_sep int key concode_field_sep int getKey concode_elem_sep String paramString concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals concode_elem_se... | boolean function ( ) { return ( usesShift ) ; } |
32,353 | process : null arguemnt for annotation repository concode_field_sep Annotations annotations concode_field_sep void testProcessConnectionDefinition concode_elem_sep void testProcessActivation concode_elem_sep void testProcessConnectorFail concode_elem_sep void tearDown concode_elem_sep void testProcessNullArguments conc... | void function ( ) { annotations . process ( null , null , null ) ; } |
32,354 | attach image data to this ximage concode_field_sep int XYBITMAP_FORMAT concode_elem_sep RawData structure concode_elem_sep int LEAST_SIGNIFICANT_B_FIRST_ORDER concode_elem_sep int ZPIXMAP_FORMAT concode_elem_sep int MOST_SIGNIFICANT_B_FIRST_ORDER concode_elem_sep boolean ownsData concode_elem_sep int XYPIXMAP_FORMAT co... | void function ( int [ ] arg0 , int arg1 ) { dataRef = arg0 ; internalSetData ( arg0 , arg1 ) ; } |
32,355 | 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... | HsqlProperties function ( String arg0 ) { if ( StringUtil . isEmpty ( arg0 ) ) { return null ; } HsqlProperties loc0 = new HsqlProperties ( arg0 ) ; try { loc0 . load ( ) ; } catch ( Exception loc1 ) { } return loc0 ; } |
32,356 | returns a server socket bound to the specified port . the socket is configured with the socket options given to this factory . concode_field_sep HsqlSocketFactory sslImpl concode_elem_sep HsqlSocketFactory plainImpl concode_elem_sep String DEFAULT_SSL_PROVIDER_CLASS concode_elem_sep String DEFAULT_SSL_PROVIDER_NAME con... | ServerSocket function ( int arg0 ) { return new ServerSocket ( arg0 ) ; } |
32,357 | sets the width and height of the dimension . concode_field_sep float width concode_elem_sep float height concode_field_sep float getHeight concode_elem_sep String toString concode_elem_sep float getWidth concode_elem_sep Dimension toDimension | void function ( int arg0 , int arg1 ) { width = arg0 ; height = arg1 ; } |
32,358 | a list of source fields to map to the field . returns a reference to this object so that method calls can be chained together . constraints : pattern : \ s a-z a-z0-9 _ \ ? \ s , \ s a-z a-z0-9 _ \ ? \ s concode_field_sep String sourceFields concode_elem_sep Boolean returnEnabled concode_elem_sep Long defaultValue conc... | IntArrayOptions function ( String arg0 ) { this . sourceFields = arg0 ; return this ; } |
32,359 | sets the value of the maxresults property . concode_field_sep GuestAuthentication auth concode_elem_sep Integer maxResults concode_elem_sep ManagedObjectReference vm concode_elem_sep String filePath concode_elem_sep Integer index concode_elem_sep ManagedObjectReference _this concode_elem_sep String matchPattern concode... | void function ( Integer arg0 ) { this . maxResults = arg0 ; } |
32,360 | the prefix for the specified amazon s3 bucket . concode_field_sep ConfigSnapshotDeliveryProperties configSnapshotDeliveryProperties concode_elem_sep String snsTopicARN concode_elem_sep String s3BucketName concode_elem_sep String name concode_elem_sep String s3KeyPrefix concode_field_sep void setName concode_elem_sep St... | String function ( ) { return this . s3KeyPrefix ; } |
32,361 | helper method - loads a testmodel from the given uri concode_field_sep String VALIDATION_TESTMODEL_DIR concode_elem_sep IModelSequencer sequencer concode_field_sep ExecutionFlow loadExecutionFlowFromResource concode_elem_sep Statechart loadStatechartFromResource concode_elem_sep String getModelDirectory | Statechart function ( URI arg0 ) { ResourceSet loc0 = new ResourceSetImpl ( ) ; Resource loc1 = loc0 . getResource ( arg0 , true ) ; Statechart loc2 = ( Statechart ) EcoreUtil . getObjectByType ( loc1 . getContents ( ) , SGraphPackage . Literals . STATECHART ) ; return loc2 ; } |
32,362 | returns a hashcode for the specified value . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | int function ( double arg0 ) { long loc0 = Double . doubleToLongBits ( arg0 ) ; return ( int ) ( loc0 ^ ( loc0 >>> 32 ) ) ; } |
32,363 | gets the column labels for the result set . concode_field_sep PlaceHolder placeHolder concode_field_sep Object getCsvValue concode_elem_sep List<String> getRowStringValues concode_elem_sep ResultSet combineResultSets concode_elem_sep Object getApiValue concode_elem_sep String createRowSeperator concode_elem_sep List<In... | List < String > function ( ResultSet arg0 ) { return Lists . transform ( Lists . newArrayList ( arg0 . getColumnTypes ( ) ) , new Function < ColumnType , String > ( ) { public String apply ( ColumnType arg1 ) { return arg1 . getLabelName ( ) ; } } ) ; } |
32,364 | setter for the field threshold . concode_field_sep boolean hellbent concode_elem_sep String svarToCheck concode_elem_sep String svarOperator concode_elem_sep boolean bAnyPlayer concode_elem_sep String presentDefined concode_elem_sep String sIsPresent concode_elem_sep int nCardsInHand concode_elem_sep String lifeTotal c... | void function ( boolean arg0 ) { threshold = arg0 ; } |
32,365 | retrieves the next compiled statement identifier in the sequence . concode_field_sep Database database concode_elem_sep IntKeyHashMap schemaMap concode_elem_sep LongKeyHashMap csidMap concode_elem_sep long next_cs_id concode_elem_sep LongKeyIntValueHashMap useMap concode_field_sep Statement compile concode_elem_sep voi... | long function ( ) { next_cs_id ++ ; return next_cs_id ; } |
32,366 | sets the value of the credentiallevel property . concode_field_sep String credentialLevel concode_field_sep String getCredentialLevel | void function ( String arg0 ) { this . credentialLevel = arg0 ; } |
32,367 | gets the value of the predicates 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 predicates property . for example , to add a new item ,... | List < Predicate > function ( ) { if ( predicates == null ) { predicates = new ArrayList < Predicate > ( ) ; } return this . predicates ; } |
32,368 | the distributionlist type . concode_field_sep DistributionList distributionList concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ListDistributionsResult clone concode_elem_sep DistributionList getDistributionList concode_elem_sep String toString concode_elem_sep ListDistributionsResult wi... | void function ( DistributionList arg0 ) { this . distributionList = arg0 ; } |
32,369 | initializes the wrapper for use . concode_field_sep int adaptiveMaxHeight concode_elem_sep boolean prepared concode_elem_sep Format format concode_elem_sep boolean shouldSpliceIn concode_elem_sep boolean spliceConfigured concode_elem_sep Extractor extractor concode_elem_sep int trigger concode_elem_sep int adaptiveMaxW... | void function ( Allocator arg0 ) { this . allocator = arg0 ; extractor . init ( this ) ; } |
32,370 | notifies client window location or status changes concode_field_sep Component clientComponent concode_field_sep void disableInputMethod concode_elem_sep Component getClientComponent concode_elem_sep void setAWTFocussedComponent concode_elem_sep void setClientComponent concode_elem_sep boolean haveActiveClient concode_e... | void function ( Rectangle arg0 ) { } |
32,371 | getcommentscanner concode_field_sep IPredicateRule[] partitioningRules concode_elem_sep SVGSourceConfiguration instance concode_elem_sep String[] CONTENT_TYPES concode_elem_sep String DEFAULT concode_elem_sep String CDATA concode_elem_sep String TAG concode_elem_sep String SCRIPT concode_elem_sep String PRE_PROCESSOR c... | ITokenScanner function ( ) { return new CommentScanner ( getToken ( "srini_string" ) ) ; } |
32,372 | a value to use for the field if the field is n't specified for a document . constraints : length : 0 - 1024 concode_field_sep String sourceFields concode_elem_sep Boolean returnEnabled concode_elem_sep String analysisScheme concode_elem_sep String defaultValue concode_elem_sep Boolean highlightEnabled concode_field_sep... | void function ( String arg0 ) { this . defaultValue = arg0 ; } |
32,373 | set getsetting to posn . concode_field_sep OnNotchAdvance _onNotchAdvance concode_elem_sep Map<Integer,Integer> _forwardMapping concode_elem_sep int ALPHABET_SIZE concode_elem_sep Map<Integer,Integer> _backwardMapping concode_elem_sep int _setting concode_elem_sep Set<Integer> _notches concode_field_sep int toIndex con... | void function ( int arg0 ) { assert 0 <= arg0 && arg0 < ALPHABET_SIZE ; _setting = arg0 ; } |
32,374 | send a command to the nikobus . sending is done asynchronously . this method will return immediately . concode_field_sep Logger log concode_elem_sep boolean stopped concode_elem_sep LinkedBlockingQueue<NikobusCommand> sendQueue concode_elem_sep NikobusInterface serialInterface concode_field_sep void stop concode_elem_s... | void function ( NikobusCommand arg0 ) { if ( isCommandRedundant ( arg0 ) ) { return ; } sendQueue . add ( arg0 ) ; } |
32,375 | tests that the prefixlist #prefixlist list constructor with an empty string constructsitems correctly . concode_field_sep PlaceHolder placeHolder concode_field_sep void prefixListTest2 concode_elem_sep void toStringTest concode_elem_sep void prefixListTest | void function ( ) { PrefixList loc0 = new PrefixList ( ImmutableList . of ( "srini_string" ) ) ; Assert . assertTrue ( loc0 . inList ( "srini_string" ) ) ; Assert . assertTrue ( loc0 . outList ( "srini_string" ) ) ; } |
32,376 | the meta information of the server certificate , such as its name , path , id , and arn . concode_field_sep String certificateChain concode_elem_sep ServerCertificateMetadata serverCertificateMetadata concode_elem_sep String certificateBody concode_field_sep String getCertificateChain concode_elem_sep int hashCode conc... | void function ( ServerCertificateMetadata arg0 ) { this . serverCertificateMetadata = arg0 ; } |
32,377 | gets the container of an eobject . concode_field_sep FileContentMap load concode_elem_sep EPackage eRootPackage concode_elem_sep Map eAllContents concode_elem_sep Map eClass2containments concode_elem_sep Map eClass2subTypes concode_field_sep List getContainmentNames concode_elem_sep EReference eContainmentFeature conco... | EObject function ( EObject arg0 ) { return arg0 . eContainer ( ) ; } |
32,378 | return the content-length header or -1 if unknown . concode_field_sep String CONTENT_LENGTH concode_elem_sep String ACK concode_elem_sep Map<String,List<String>> headers concode_elem_sep String LOGIN concode_elem_sep String SERVER concode_elem_sep String SESSION concode_elem_sep String PASSCODE concode_elem_sep String ... | long function ( ) { String loc0 = getFirst ( CONTENT_LENGTH ) ; return ( loc0 != null ? Long . parseLong ( loc0 ) : - 1 ) ; } |
32,379 | this method calculates the time in microseconds when all work initiated by this node has been completed . where async execution is performed , this could mean the work continues beyond the scope of the node that initiates the work . concode_field_sep long duration concode_elem_sep Set<Property> properties concode_elem_... | long function ( ) { return overallEndTime ( ) ; } |
32,380 | returns the data format for sending messages . concode_field_sep SearchType searchType concode_elem_sep Logger LOG concode_elem_sep AS400ConnectionPool connectionPool concode_elem_sep String searchKey concode_elem_sep Jt400Type type concode_elem_sep String userID concode_elem_sep boolean keyed concode_elem_sep String o... | Format function ( ) { return format ; } |
32,381 | determines whether this instance is valid or not . concode_field_sep String mSubscriptionId concode_elem_sep String mAccountId concode_elem_sep byte[] mData concode_elem_sep String mMimeType concode_field_sep String getSubscriptionId concode_elem_sep String getMimeType concode_elem_sep String getAccountId concode_elem_... | boolean function ( ) { return ( null != mMimeType && ! mMimeType . equals ( "srini_string" ) && null != mData && mData . length > 0 ) ; } |
32,382 | gets the id that identifies the co-location group . concode_field_sep boolean locationLocked concode_elem_sep SharedSlot sharedSlot concode_elem_sep CoLocationGroup group concode_field_sep Instance getLocation concode_elem_sep boolean isAssigned concode_elem_sep void lockLocation concode_elem_sep boolean isAssignedAndA... | AbstractID function ( ) { return this . group . getId ( ) ; } |
32,383 | gets the studentcourses list of course id 's . concode_field_sep String selectedCourse concode_elem_sep Course currentCourse concode_elem_sep List studentCourses concode_elem_sep List courseItems concode_elem_sep String selectedStudent concode_elem_sep Student newStudent concode_elem_sep List studentItems concode_elem_... | List function ( ) { return studentCourses ; } |
32,384 | computes disparity using the bm algorithm for a rectified stereo pair . the method executes the bm algorithm on a rectified stereo pair . see the stereo_match.cpp opencv sample on how to prepare images and call the method . note that the method is not constant , thus you should not use the same stereobm instance from w... | void function ( Mat arg0 , Mat arg1 , Mat arg2 ) { compute_1 ( nativeObj , arg0 . nativeObj , arg1 . nativeObj , arg2 . nativeObj ) ; return ; } |
32,385 | sets target index concode_field_sep int groupId concode_elem_sep int destIndex concode_elem_sep int slotId concode_elem_sep int sourceIndex concode_field_sep int getSourceIndex concode_elem_sep void setSourceIndex concode_elem_sep void setGroupId concode_elem_sep void setSlotId concode_elem_sep int getSlotId concode_el... | void function ( int arg0 ) { this . destIndex = arg0 ; } |
32,386 | sets the jira change item id 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 v... | void function ( long arg0 ) { _jiraChangeItem . setJiraChangeItemId ( arg0 ) ; } |
32,387 | execute the interactor concode_field_sep Subscription mSubscription concode_elem_sep PostExecutionThread mPostExecutionThread concode_elem_sep ExecutionThread mExecutionThread concode_field_sep void unsubscribe | void function ( Observable < T > arg0 , Subscriber < T > arg1 ) { mSubscription = arg0 . subscribeOn ( mExecutionThread . getScheduler ( ) ) . observeOn ( mPostExecutionThread . getScheduler ( ) ) . subscribe ( arg1 ) ; } |
32,388 | the token to use when requesting the next set of items . if there are no additional items to return , the string is empty . concode_field_sep com.amazonaws.internal.SdkInternalList<AutoScalingInstanceDetails> autoScalingInstances concode_elem_sep String nextToken concode_field_sep java.util.List<AutoScalingInstanceDeta... | String function ( ) { return this . nextToken ; } |
32,389 | determines amount of purchased items . concode_field_sep StoreTable storeTable concode_elem_sep Random random concode_elem_sep Effect cartEffect concode_elem_sep ArrayList purchasedList concode_field_sep String getItemString concode_elem_sep ArrayList getPurchasedList concode_elem_sep void setCartEffect concode_elem_se... | int function ( ) { Iterator loc0 = purchasedList . iterator ( ) ; int loc1 = 0 ; while ( loc0 . hasNext ( ) ) { loc1 += ( ( CartItem ) loc0 . next ( ) ) . getPurchasedQuantity ( ) ; } return ( loc1 ) ; } |
32,390 | gets and sets the lastupdatedtime for taglistdto concode_field_sep String previous concode_elem_sep String createdTime concode_elem_sep List<TagDTO> list concode_elem_sep String lastUpdatedTime concode_elem_sep String next concode_elem_sep Integer count concode_field_sep String getPrevious concode_elem_sep void setLast... | String function ( ) { return lastUpdatedTime ; } |
32,391 | should use read-write lock to do synchronization . this method is designed for called from cacheable 's implementation . the cache supports add multiple cacheable objects with same key , in this case , it will create a list to keep all of these same key objects , then put the list to cache . this feature is to support ... | void function ( Object arg0 , Cacheable arg1 ) { try { writeLock ( ) ; ensureCapacity ( ) ; addInternal ( arg0 , arg1 ) ; } finally { writeUnlock ( ) ; } } |
32,392 | add an option that contains a short-name and a long-name . it may be specified as requiring an argument . concode_field_sep Map<String,Option> longOpts concode_elem_sep Map<String,OptionGroup> optionGroups concode_elem_sep List<Object> requiredOpts concode_elem_sep long serialVersionUID concode_elem_sep Map<String,Opti... | Options function ( String arg0 , String arg1 , boolean arg2 , String arg3 ) { addOption ( new Option ( arg0 , arg1 , arg2 , arg3 ) ) ; return this ; } |
32,393 | add a listener to the list concode_field_sep List<ControlsListener> listeners concode_field_sep boolean pinch concode_elem_sep boolean tap concode_elem_sep boolean touchDown concode_elem_sep boolean longPress concode_elem_sep boolean panStop concode_elem_sep boolean zoom concode_elem_sep boolean fling concode_elem_sep ... | void function ( ControlsListener arg0 ) { listeners . add ( arg0 ) ; } |
32,394 | check if this particle is being oriented based on it 's velocity concode_field_sep Image image concode_elem_sep float size concode_elem_sep float originalLife concode_elem_sep SGL GL concode_elem_sep int usePoints concode_elem_sep float vely concode_elem_sep Color color concode_elem_sep float velx concode_elem_sep int ... | boolean function ( ) { return oriented ; } |
32,395 | copy content from input stream into output stream . concode_field_sep String DEFAULT_SOUND concode_elem_sep String STORAGE_FOLDER concode_elem_sep Context context concode_field_sep Uri getUriForResourcePath concode_elem_sep Uri getUriFromAsset concode_elem_sep Uri parse concode_elem_sep Bitmap getIconFromDrawable conco... | void function ( InputStream arg0 , OutputStream arg1 ) { byte [ ] loc0 = new byte [ 1024 ] ; int loc1 ; while ( ( loc1 = arg0 . loc1 ( loc0 ) ) != - 1 ) { arg1 . write ( loc0 , 0 , loc1 ) ; } } |
32,396 | register a name register . concode_field_sep NameRegister _register concode_field_sep NameRegister getRegistry concode_elem_sep String incrementHostName concode_elem_sep String incrementHostName concode_elem_sep String incrementHostName concode_elem_sep boolean checkName concode_elem_sep boolean checkName concode_elem_... | void function ( NameRegister arg0 ) { if ( _register != null ) { throw new IllegalStateException ( "srini_string" ) ; } if ( arg0 != null ) { _register = arg0 ; } } |
32,397 | todo : if we add anything interesting to report , we should report it here concode_field_sep List<? extends HasWord> originalSentence concode_elem_sep State initialState concode_elem_sep List<State> bestParses concode_elem_sep ShiftReduceParser parser concode_elem_sep boolean success concode_elem_sep boolean unparsable... | boolean function ( List < ? extends HasWord > arg0 , PrintWriter arg1 ) { boolean loc0 = parse ( arg0 ) ; return loc0 ; } |
32,398 | obtains the clipboard support object that i rely on to make decisions about copy/paste semantics . concode_field_sep int TOTAL_WORK concode_elem_sep IClipboardSupport clipboardSupport concode_elem_sep int WORK_UNIT concode_elem_sep IProgressMonitor monitor concode_field_sep boolean isCancelled concode_elem_sep void cat... | IClipboardSupport function ( ) { return clipboardSupport ; } |
32,399 | utility for loading example tab set content include . concode_field_sep ArrayList<ExampleResource> tldResources concode_elem_sep String defaultId concode_elem_sep String descriptionPath concode_elem_sep String selectedExamplePath concode_elem_sep String resourcesPath concode_elem_sep org.icemobile.samples.mobileshowcas... | void function ( ActionEvent arg0 ) { String loc0 = ( String ) arg0 . getComponent ( ) . getAttributes ( ) . get ( "srini_string" ) ; if ( loc0 != null ) { selectedExamplePath = loc0 ; } } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.