idx int64 0 25k | question stringlengths 68 5.14k | target stringlengths 20 503 |
|---|---|---|
6,700 | gets the current typing handler . concode_field_sep TypedActionHandler myRawHandler concode_elem_sep boolean myHandlersLoaded concode_elem_sep TypedActionHandler myHandler concode_field_sep TypedActionHandler setupHandler concode_elem_sep void actionPerformed concode_elem_sep void ensureHandlersLoaded concode_elem_sep ... | TypedActionHandler function ( ) { ensureHandlersLoaded ( ) ; return myHandler ; } |
6,701 | verify that using a bytearrayinputstream does not allocate a new byte array . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSuccessfulSkip concode_elem_sep void checkFileInputStream concode_elem_sep void testUnsuccessfulSkip concode_elem_sep void testFileInputStream concode_elem_sep void testByte... | void function ( ) { byte [ ] loc0 = new byte [ 8 ] ; InputStream loc1 = new ByteArrayInputStream ( loc0 ) ; try { byte [ ] loc2 = StreamUtil . getBytesFromStream ( loc1 ) ; assertTrue ( Arrays . equals ( loc0 , loc2 ) ) ; } finally { Closeables . close ( loc1 , true ) ; } } |
6,702 | returns a random boolean concode_field_sep java.util.Random rand concode_elem_sep long seed concode_field_sep int nextInt concode_elem_sep int nextInt concode_elem_sep void setSeed concode_elem_sep long nextLong | boolean function ( ) { return rand . nextInt ( 2 ) == 1 ; } |
6,703 | registers a callback against ` eventtype ' for measurement 'm ' . concode_field_sep HashMap<EventType,ArrayList<Measurement>> callbackRegister concode_field_sep boolean unRegisterCallback concode_elem_sep void procEvent concode_elem_sep String deflateFeatureVector | void function ( EventType arg0 , Measurement arg1 ) { if ( ! callbackRegister . containsKey ( arg0 ) ) callbackRegister . put ( arg0 , new ArrayList < Measurement > ( ) ) ; callbackRegister . get ( arg0 ) . add ( arg1 ) ; } |
6,704 | updates all spring connections based on new particle positions concode_field_sep List<ParticleConstraint3D> constraints concode_elem_sep float timeStep concode_elem_sep int numIterations concode_elem_sep List<VerletSpring3D> springs concode_elem_sep AABB worldBounds concode_elem_sep List<ParticleBehavior3D> behaviors c... | void function ( ) { if ( springs . size ( ) > 0 ) { for ( int loc0 = numIterations ; loc0 > 0 ; loc0 -- ) { for ( VerletSpring3D loc1 : springs ) { loc1 . update ( loc0 == 1 ) ; } } } } |
6,705 | asserts that two longs are equal . concode_field_sep PlaceHolder placeHolder concode_field_sep void fail concode_elem_sep void fail concode_elem_sep void assertNull concode_elem_sep void assertNull concode_elem_sep void assertTrue concode_elem_sep void assertTrue concode_elem_sep void assertNotNull concode_elem_sep voi... | void function ( long arg0 , long arg1 ) { assertEquals ( null , arg0 , arg1 ) ; } |
6,706 | sets the cadence . concode_field_sep int cadence concode_elem_sep int heartRate concode_field_sep void setHeartRate concode_elem_sep int getCadence concode_elem_sep int getHeartRate | void function ( int arg0 ) { this . cadence = arg0 ; } |
6,707 | records the names of the classes that have been excluded from condition evaluation . concode_field_sep ConditionEvaluationReport parent concode_elem_sep Condition condition concode_elem_sep SortedMap<String,ConditionAndOutcomes> outcomes concode_elem_sep List<String> exclusions concode_elem_sep AncestorsMatchedConditio... | void function ( Collection < String > arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . exclusions = new ArrayList < String > ( arg0 ) ; } |
6,708 | returns an object that implements the given interface to allow access to non-standard methods , or standard methods not exposed by the proxy . the result may be either the object found to implement the interface or a proxy for that object . if the receiver implements the interface then that is the object . if the recei... | Object function ( Class < ? > arg0 ) { try { return Util . cast ( arg0 , this ) ; } catch ( ClassCastException loc0 ) { throw SQLError . createSQLException ( "srini_string" + arg0 . toString ( ) , SQLError . SQL_STATE_ILLEGAL_ARGUMENT , this . exceptionInterceptor ) ; } } |
6,709 | adds a url to the set associated with ` term ` . concode_field_sep Jedis jedis concode_field_sep boolean isIndexed concode_elem_sep void deleteAllKeys concode_elem_sep Map<String,Integer> getCounts concode_elem_sep Set<String> urlSetKeys concode_elem_sep void main concode_elem_sep void printIndex concode_elem_sep Strin... | void function ( String arg0 , TermCounter arg1 ) { jedis . sadd ( urlSetKey ( arg0 ) , arg1 . getLabel ( ) ) ; } |
6,710 | gets the value of the privateclasses property . concode_field_sep EmptyType inverseClassloading concode_elem_sep List<String> requireBundle concode_elem_sep ClassFilterType hiddenClasses concode_elem_sep List<String> bundleClassPath concode_elem_sep List<String> importPackage concode_elem_sep ClassFilterType nonOverrid... | ClassFilterType function ( ) { return privateClasses ; } |
6,711 | records the last event . concode_field_sep double EPSILON concode_elem_sep SeriesChangeEvent lastEvent concode_field_sep void testClear concode_elem_sep void testIndexOf2 concode_elem_sep void testSetMaximumItemCount2 concode_elem_sep void testCloning concode_elem_sep void testRemove concode_elem_sep void testAdd conco... | void function ( SeriesChangeEvent arg0 ) { this . lastEvent = arg0 ; } |
6,712 | gets the value of the price property . concode_field_sep BigDecimal equipmentCreditLineMonthlyPayment concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep Boolean neverReceived concode_elem_sep String installmentEquipmentId concode_elem_sep BigDecimal lastInstallmentAmount concode... | BigDecimal function ( ) { return price ; } |
6,713 | store the managed bean inside the session scope . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep ValueBinding getValueBinding concode_elem_sep Object getElValue concode_elem_sep void addInfoMessage concode_elem_sep void... | void function ( String arg0 , Object arg1 ) { FacesContext . getCurrentInstance ( ) . getExternalContext ( ) . getSessionMap ( ) . put ( arg0 , arg1 ) ; } |
6,714 | test for spr-1442 . destroyed target should re-associated with thread and not throw npe concode_field_sep DefaultListableBeanFactory beanFactory concode_elem_sep Resource CONTEXT concode_elem_sep int INITIAL_COUNT concode_field_sep void testReuseInSameThread concode_elem_sep void setUp concode_elem_sep void testCanGetS... | void function ( ) { ThreadLocalTargetSource loc0 = ( ThreadLocalTargetSource ) this . beanFactory . getBean ( "srini_string" ) ; loc0 . getTarget ( ) ; loc0 . destroy ( ) ; try { loc0 . getTarget ( ) ; } catch ( NullPointerException loc1 ) { fail ( "srini_string" ) ; } } |
6,715 | set the image extractor . concode_field_sep IImageExtractor extractor concode_field_sep IImageExtractor getExtractor | void function ( IImageExtractor arg0 ) { this . extractor = arg0 ; } |
6,716 | returns snapshot processing time concode_field_sep int numberOfFiles concode_elem_sep long totalSize concode_elem_sep int processedFiles concode_elem_sep boolean aborted concode_elem_sep String failure concode_elem_sep long startTime concode_elem_sep long indexVersion concode_elem_sep long time concode_elem_sep long pr... | long function ( ) { return this . time ; } |
6,717 | gets the value of the sharedcounter property . concode_field_sep XMLGregorianCalendar balanceExpirationDate concode_elem_sep int expirableBalanceInCents concode_elem_sep int totalBalanceInCents concode_elem_sep int nonExpirableBalanceInCents concode_elem_sep BigDecimal expirableBalanceInDollars concode_elem_sep boolean... | SharedCounterType function ( ) { return sharedCounter ; } |
6,718 | method that can be called to do a `` narrowing '' conversions ; that is , to return a type with a raw class that is assignable to the raw class of this type . if this is not possible , an illegalargumentexception is thrown.if class is same as the current raw class , instance itself is returned . concode_field_sep int _... | JavaType function ( Class < ? > arg0 ) { if ( arg0 == _class ) { return this ; } _assertSubclass ( arg0 , _class ) ; JavaType loc0 = _narrow ( arg0 ) ; if ( _valueHandler != null ) { loc0 . setValueHandler ( _valueHandler ) ; } if ( _typeHandler != null ) { loc0 . setTypeHandler ( _typeHandler ) ; } return loc0 ; } |
6,719 | return a relaxednames for the given source camelcase source name . concode_field_sep Pattern CAMEL_CASE_PATTERN concode_elem_sep Pattern SEPARATED_TO_CAMEL_CASE_PATTERN concode_elem_sep char[] SUFFIXES concode_elem_sep String name concode_elem_sep Set<String> values concode_field_sep Iterator<String> iterator concode_e... | RelaxedNames function ( String arg0 ) { StringBuffer loc0 = new StringBuffer ( ) ; for ( char loc1 : arg0 . toCharArray ( ) ) { loc0 . append ( Character . isUpperCase ( loc1 ) && loc0 . length ( ) > 0 && loc0 . charAt ( loc0 . length ( ) - 1 ) != '-' ? "srini_string" + Character . toLowerCase ( loc1 ) : loc1 ) ; } ret... |
6,720 | read an int from a line containing its decimal representation . concode_field_sep Charset charset concode_elem_sep byte[] buf concode_elem_sep InputStream in concode_elem_sep int pos concode_elem_sep byte LF concode_elem_sep byte CR concode_elem_sep int end concode_field_sep String readLine concode_elem_sep void fillBu... | int function ( ) { String loc0 = readLine ( ) ; try { return Integer . parseInt ( loc0 ) ; } catch ( NumberFormatException loc1 ) { throw new IOException ( "srini_string" = "srini_string" ) ; } } |
6,721 | returns the osgi service identifier . concode_field_sep SkinnyService _skinnyService concode_field_sep void setWrappedService concode_elem_sep java.util.List<com.liferay.skinny.model.SkinnyJournalArticle> getSkinnyJournalArticles concode_elem_sep java.util.List<com.liferay.skinny.model.SkinnyDDLRecord> getSkinnyDDLReco... | java . lang . String function ( ) { return _skinnyService . getOSGiServiceIdentifier ( ) ; } |
6,722 | set the batch size . concode_field_sep int defaultBatchSize concode_elem_sep ArrayList<UrParameter> proteinParameters concode_elem_sep boolean loadPsms concode_elem_sep Identification identification concode_elem_sep int loadingIndex concode_elem_sep double defaultMargin concode_elem_sep boolean buffering concode_elem_s... | void function ( int arg0 ) { this . batchSize = arg0 ; } |
6,723 | set the style of how lines of this series will be terminated concode_field_sep Integer xAxis concode_elem_sep List<Object> data concode_elem_sep String color concode_elem_sep Boolean shadow concode_elem_sep String fillAxis concode_elem_sep Boolean show concode_elem_sep String fillToValue concode_elem_sep Integer fillAl... | void function ( LineCap arg0 ) { this . lineCap = arg0 ; } |
6,724 | get the style url . concode_field_sep BreakpointList styleBreakpoints concode_elem_sep ScenarioProperties scenario concode_elem_sep String styleURL concode_elem_sep String inputURL concode_elem_sep BreakpointList inputBreakpoints concode_elem_sep Vector parameters concode_elem_sep int processor concode_field_sep String... | String function ( ) { return styleURL ; } |
6,725 | return the value of the action property . concode_field_sep String branchContractedIcon concode_elem_sep boolean expanded concode_elem_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep String action concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_se... | String function ( ) { return action ; } |
6,726 | removes any temporary files associated with a particular native app call . concode_field_sep UUID callId concode_elem_sep String ATTACHMENTS_DIR_NAME concode_elem_sep Uri imageUri concode_elem_sep boolean isContentUri concode_elem_sep String attachmentUrl concode_elem_sep String TAG concode_elem_sep Bitmap bitmap conco... | void function ( UUID arg0 ) { File loc0 = getAttachmentsDirectoryForCall ( arg0 , false ) ; if ( loc0 != null ) { Utility . deleteDirectory ( loc0 ) ; } } |
6,727 | minimum size of a block that we should start using memory map rather than reading in through normal io operations . this prevents spark from memory mapping very small blocks . in general , memory mapping has high overhead for blocks close to or below the page size of the os . concode_field_sep ConfigProvider conf conco... | int function ( ) { return conf . getInt ( "srini_string" , 2 * 1024 * 1024 ) ; } |
6,728 | responds @value #error_message to the ok 200 response . concode_field_sep String PATH_EXCEPTION concode_elem_sep Logger LOGGER concode_elem_sep String ERROR_MESSAGE concode_field_sep Response testExceptionMapper | Response function ( Exception arg0 ) { LOGGER . info ( "srini_string" , arg0 ) ; return Response . ok ( ) . entity ( ERROR_MESSAGE ) . build ( ) ; } |
6,729 | given an index in the range 0 ... size -1 , sets a new key for the indexth key-value mapping that this sparselonglongarray stores . concode_field_sep long[] mKeys concode_elem_sep long DELETED concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep long[] mValues concode_field_sep long keyAt conco... | void function ( int arg0 , long arg1 ) { if ( mGarbage ) { gc ( ) ; } mKeys [ arg0 ] = arg1 ; } |
6,730 | retuns disk space consumed concode_field_sep String QUOTA_STRING_FORMAT concode_elem_sep String SPACE_QUOTA_STRING_FORMAT concode_elem_sep String HEADER concode_elem_sep long directoryCount concode_elem_sep long quota concode_elem_sep long length concode_elem_sep String STRING_FORMAT concode_elem_sep long spaceConsumed... | long function ( ) { return spaceConsumed ; } |
6,731 | lifts the given partialfunction into a total function that returns an try result . concode_field_sep PlaceHolder placeHolder concode_field_sep int arity concode_elem_sep CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> constant concode_elem_sep Function7<T1,T2,T3,T4,T5,T6,T7,R> recover concode_elem_sep R apply concode_elem_sep... | Function7 < T1 , T2 , T3 , T4 , T5 , T6 , T7 , Try < R >> function ( CheckedFunction7 < ? super T1 , ? super T2 , ? super T3 , ? super T4 , ? super T5 , ? super T6 , ? super T7 , ? extends R > arg0 ) { return ( t1 , t2 , t3 , t4 , t5 , t6 , t7 ) -> Try . of ( ( ) -> arg0 . apply ( t1 , t2 , t3 , t4 , t5 , t6 , t7 ) ) ;... |
6,732 | getter method for children field concode_field_sep String kod concode_elem_sep String type concode_elem_sep int arraySize concode_elem_sep ArrayList<String> names concode_elem_sep String content concode_elem_sep ArrayList<String> types concode_elem_sep boolean lValue concode_elem_sep String name concode_elem_sep boolea... | ArrayList < TreeNode > function ( ) { return this . children ; } |
6,733 | clears the path concode_field_sep PathPoint[] pathPoints concode_elem_sep int count concode_elem_sep String __OBFID concode_field_sep void sortBack concode_elem_sep boolean isPathEmpty concode_elem_sep void sortForward concode_elem_sep PathPoint dequeue concode_elem_sep void changeDistance concode_elem_sep PathPoint ad... | void function ( ) { this . count = 0 ; } |
6,734 | actions added by this plugin . concode_field_sep Class<?>[] supportTransportActions concode_elem_sep GenericAction<Request,Response> action concode_elem_sep Class<? extends TransportAction<Request,Response>> transportAction concode_field_sep List<Class<? extends ActionFilter>> getActionFilters concode_elem_sep List<Res... | List < ActionHandler < ? extends ActionRequest , ? extends ActionResponse >> function ( ) { return Collections . emptyList ( ) ; } |
6,735 | removes value at possition from values array concode_field_sep PlaceHolder placeHolder concode_field_sep List<Integer> createArrayListFilledIncrement concode_elem_sep boolean contains concode_elem_sep Object[] fillArray concode_elem_sep int[] changePosition concode_elem_sep boolean[] changePosition concode_elem_sep int... | Object [ ] function ( Object [ ] arg0 , int arg1 ) { Object [ ] loc0 = ( Object [ ] ) Array . newInstance ( arg0 . getClass ( ) . getComponentType ( ) , arg0 . length - 1 ) ; System . arraycopy ( arg0 , 0 , loc0 , 0 , arg1 ) ; System . arraycopy ( arg0 , arg1 + 1 , loc0 , arg1 , arg0 . length - arg1 - 1 ) ; return loc0... |
6,736 | display a simple alert dialog with the given text and title . concode_field_sep String UTF8 concode_field_sep Bundle parseUrl concode_elem_sep String openUrl concode_elem_sep String encodePostBody concode_elem_sep String read concode_elem_sep JSONObject parseJson concode_elem_sep Bundle decodeUrl concode_elem_sep Strin... | void function ( Context arg0 , String arg1 , String arg2 ) { Builder loc0 = new Builder ( arg0 ) ; loc0 . setTitle ( arg1 ) ; loc0 . setMessage ( arg2 ) ; loc0 . create ( ) . show ( ) ; } |
6,737 | gets the value of the lk property . concode_field_sep String uid concode_elem_sep String ac concode_elem_sep String ver concode_elem_sep byte[] data concode_elem_sep Tkn tkn concode_elem_sep byte[] hmac concode_elem_sep Skey skey concode_elem_sep Uses uses concode_elem_sep String txn concode_elem_sep String tid concode... | String function ( ) { return lk ; } |
6,738 | get an array representation of the cumulative probability distribution . concode_field_sep double TOLERANCE concode_elem_sep long serialVersionUID concode_elem_sep double[] m_cdf concode_field_sep double getCumulativeProbability concode_elem_sep boolean equals concode_elem_sep int getNumSymbols concode_elem_sep String ... | double [ ] function ( ) { double loc0 [ ] = new double [ m_cdf . length ] ; System . arraycopy ( m_cdf , 0 , loc0 , 0 , loc0 . length ) ; return loc0 ; } |
6,739 | gets whether or not this time zone uses daylight time . concode_field_sep TimeZoneBean parent concode_elem_sep boolean useDaylightTime concode_elem_sep String id concode_elem_sep String dislayName concode_elem_sep boolean inDaylightTime concode_field_sep String getDisplayName concode_elem_sep String getTime concode_ele... | String function ( ) { if ( useDaylightTime ) { return "srini_string" ; } else { return "srini_string" ; } } |
6,740 | ensures the truth of an expression involving one or more parameters to the calling method . borrowed from guava . concode_field_sep String ARGUMENT_EMPTY concode_field_sep T checkNotNull concode_elem_sep T checkNotNull concode_elem_sep void checkNotNull concode_elem_sep CharSequence checkNotNullOrEmpty concode_elem_sep... | void function ( boolean arg0 , String arg1 , Object ... arg2 ) { if ( ! arg0 ) throw new IllegalArgumentException ( format ( arg1 , arg2 ) ) ; } |
6,741 | this method de-registers a driver from the manager . concode_field_sep PrintWriter log_writer concode_elem_sep int login_timeout concode_elem_sep PrintStream log_stream concode_elem_sep Vector drivers concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep Connection getCon... | void function ( Driver arg0 ) { if ( drivers . contains ( arg0 ) ) drivers . removeElement ( arg0 ) ; } |
6,742 | returns an array containing all of the elements in this queue . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean add concode_elem_sep boolean offer concode_elem_sep boolean contains concode_elem_sep int size concode_elem_sep void clear concode_elem_sep String toString concode_elem_sep Integer poll co... | Integer [ ] function ( ) { return null ; } |
6,743 | adds new event sink to current tenant of store concode_field_sep EventSinkStore instance concode_elem_sep Map<String,EventSink> eventSinkMap concode_field_sep void removeEventSink concode_elem_sep EventSinkStore getInstance concode_elem_sep EventSink getEventSink concode_elem_sep List<EventSink> getEventSinkList | void function ( EventSink arg0 ) { String loc0 = PrivilegedCarbonContext . getThreadLocalCarbonContext ( ) . getTenantId ( ) + "srini_string" + arg0 . getName ( ) ; eventSinkMap . put ( loc0 , arg0 ) ; } |
6,744 | creates the entry for the given constructor . concode_field_sep FeatureHouseModelBuilder modelBuilder concode_field_sep void caseFieldDeclaration concode_elem_sep void caseMethodDeclaration concode_elem_sep void addField concode_elem_sep ClassBuilder getClassBuilder concode_elem_sep void addMethod | void function ( FSTTerminal arg0 ) { } |
6,745 | make sure you ca n't remove a null command . concode_field_sep String USER concode_elem_sep Set<String> configs concode_elem_sep Cluster c concode_elem_sep String VERSION concode_elem_sep String CONFIG concode_elem_sep String CLUSTER_TYPE concode_elem_sep String NAME concode_field_sep void testOnCreateOrUpdateClusterWi... | void function ( ) { this . c . removeCommand ( null ) ; } |
6,746 | adds a service to the deployment . this method must not be called after the container has started concode_field_sep InjectedValue<ExecutorService> serverExecutor concode_elem_sep ServiceName SERVICE_NAME concode_elem_sep Environment environment concode_elem_sep InjectedValue<WeldSecurityServices> securityServices conco... | void function ( Class < T > arg0 , T arg1 ) { deployment . addWeldService ( arg0 , arg1 ) ; } |
6,747 | set the authorization constraint present flag for this security constraint . concode_field_sep boolean allRoles concode_elem_sep boolean authConstraint concode_elem_sep String userConstraint concode_elem_sep String authRoles[] concode_elem_sep SecurityCollection collections[] concode_elem_sep String displayName concode... | void function ( boolean arg0 ) { this . authConstraint = arg0 ; } |
6,748 | to configure the default cache action . if an action is set in the message header , then the operation from the header takes precedence . concode_field_sep EventOrdering eventOrdering concode_elem_sep CacheConfiguration<?,?> configuration concode_elem_sep String configUri concode_elem_sep Class<?> keyType concode_elem_... | void function ( String arg0 ) { this . action = arg0 ; } |
6,749 | returns the osgi service identifier . concode_field_sep DDMTemplateVersionLocalService _ddmTemplateVersionLocalService concode_field_sep com.liferay.dynamic.data.mapping.model.DDMTemplateVersion createDDMTemplateVersion concode_elem_sep java.util.List<com.liferay.dynamic.data.mapping.model.DDMTemplateVersion> getDDMTem... | java . lang . String function ( ) { return _ddmTemplateVersionLocalService . getOSGiServiceIdentifier ( ) ; } |
6,750 | serialize the thrift object into a java string , using the default jvm charset encoding . concode_field_sep TProtocol protocol_ concode_elem_sep TIOStreamTransport transport_ concode_elem_sep ByteArrayOutputStream baos_ concode_field_sep byte[] serialize | String function ( TBase arg0 ) { return new String ( serialize ( arg0 ) ) ; } |
6,751 | returns the real path of the given uri . if the given uri is a content : / / uri , the real path is retrieved from the media store . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String stripFileProtocol concode_elem_sep String getMimeType concode_elem_sep String getMimeTypeForExtensi... | String function ( Uri arg0 , CordovaInterface arg1 ) { return FileHelper . getRealPath ( arg0 . toString ( ) , arg1 ) ; } |
6,752 | write instance val into buffer buff . concode_field_sep PlaceHolder placeHolder concode_field_sep int encodedLength concode_elem_sep int encode concode_elem_sep boolean isOrderPreserving concode_elem_sep Order getOrder concode_elem_sep boolean isNullable concode_elem_sep Class<Long> encodedClass concode_elem_sep int sk... | int function ( byte [ ] arg0 , int arg1 , long arg2 ) { return Bytes . putLong ( arg0 , arg1 , arg2 ) ; } |
6,753 | returns the bundle symbolic name of this module . concode_field_sep Module _module concode_field_sep boolean isBundle concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_e... | java . lang . String function ( ) { return _module . getBundleSymbolicName ( ) ; } |
6,754 | gets the value of the nilreason 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 nilreason property . for example , to add a new item , d... | List < String > function ( ) { if ( nilReason == null ) { nilReason = new ArrayList < String > ( ) ; } return this . nilReason ; } |
6,755 | sets the value of the arcrole property . concode_field_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 MDMaintenanceInformationType mdMaintenanceInformation concode_elem_sep... | void function ( String arg0 ) { this . arcrole = arg0 ; } |
6,756 | sets the value of the poid property . concode_field_sep Long poid concode_field_sep Long getPoid | void function ( Long arg0 ) { this . poid = arg0 ; } |
6,757 | returns the bundle context of this bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep void start | BundleContext function ( ) { return context ; } |
6,758 | applies this function partially to two arguments . concode_field_sep PlaceHolder placeHolder concode_field_sep Function7<T1,T2,T3,T4,T5,T6,T7,Try<R>> liftTry concode_elem_sep int arity concode_elem_sep CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> constant concode_elem_sep Function7<T1,T2,T3,T4,T5,T6,T7,R> recover concode_e... | CheckedFunction5 < T3 , T4 , T5 , T6 , T7 , R > function ( T1 arg0 , T2 arg1 ) { return ( T3 loc0 , T4 loc1 , T5 loc2 , T6 loc3 , T7 loc4 ) -> apply ( arg0 , arg1 , loc0 , loc1 , loc2 , loc3 , loc4 ) ; } |
6,759 | get parameter value from request scope . concode_field_sep Properties buildProperties concode_field_sep UIComponent findComponent concode_elem_sep ServletContext getServletContext concode_elem_sep Object getManagedBean concode_elem_sep String getActionAttribute concode_elem_sep String getBuildAttribute concode_elem_sep... | String function ( String arg0 ) { return FacesContext . getCurrentInstance ( ) . getExternalContext ( ) . getRequestParameterMap ( ) . get ( arg0 ) ; } |
6,760 | seek forward only should be called reseektokeyinblock ? . if the exact key is found look at the seekbefore variable and : - if true : go to the previous key if it 's true - if false : stay on the exact key if the exact key is not found , then go to the previous key if possible , but remember to leave the scanner in a v... | int function ( byte [ ] arg0 , int arg1 , int arg2 , boolean arg3 ) { if ( USE_POSITION_BEFORE ) { return seekToOrBeforeUsingPositionAtOrBefore ( arg0 , arg1 , arg2 , arg3 ) ; } else { return seekToOrBeforeUsingPositionAtOrAfter ( arg0 , arg1 , arg2 , arg3 ) ; } } |
6,761 | this initialization is used by all resource loaders and must be called to set up common properties shared by all resource loaders concode_field_sep String className concode_elem_sep long modificationCheckInterval concode_elem_sep RuntimeServices rsvc concode_elem_sep boolean isCachingOn concode_field_sep void init conc... | void function ( RuntimeServices arg0 , ExtendedProperties arg1 ) { this . rsvc = arg0 ; isCachingOn = arg1 . getBoolean ( "srini_string" , false ) ; modificationCheckInterval = arg1 . getLong ( "srini_string" , 0 ) ; className = arg1 . getString ( "srini_string" ) ; } |
6,762 | a convenience method for calling the subscriber 's onerror calling this method automatically releases the radio - > calls releaseradio . concode_field_sep ReplaySubject<T> replaySubject concode_elem_sep Priority NORMAL concode_elem_sep Priority LOW concode_elem_sep int priority concode_elem_sep Priority HIGH concode_el... | void function ( Throwable arg0 ) { releaseRadio ( ) ; replaySubject . onError ( arg0 ) ; } |
6,763 | below method will be used to set the carbon table this method will be used in executor side as driver will always have updated table so from driver during query execution and data loading we just need to add the table concode_field_sep Map<String,CarbonTable> tableInfoMap concode_elem_sep CarbonMetadata CARBONMETADATAI... | void function ( CarbonTable arg0 ) { tableInfoMap . put ( convertToLowerCase ( arg0 . getTableUniqueName ( ) ) , arg0 ) ; } |
6,764 | determine the routing key used for this message . this can be derived based on the incoming tuple or a fixed value . default implementation provides no routing key . concode_field_sep PlaceHolder placeHolder concode_field_sep void prepare concode_elem_sep String specifyContentEncoding concode_elem_sep boolean specifyMe... | String function ( Tuple arg0 ) { return "srini_string" ; } |
6,765 | results will include edge objects concode_field_sep TraversalSettings UNLIMITED concode_elem_sep boolean forward concode_elem_sep boolean backward concode_elem_sep int maxDepth concode_elem_sep boolean expandWorkflows concode_elem_sep boolean includeEdges concode_elem_sep int n concode_elem_sep boolean followNPIDs conc... | TraversalSettings function ( ) { includeEdges = true ; return this ; } |
6,766 | returns if checked transactions should be used . default : false equivalent deprecated property : com.arjuna.ats.jts.checkedtransactions concode_field_sep boolean propagateTerminator concode_elem_sep String contextPropMode concode_elem_sep boolean transactionManager concode_elem_sep int commitedTransactionRetryLimit co... | boolean function ( ) { return checkedTransactions ; } |
6,767 | the maximum total read capacity units that your account allows you to provision across all of your tables in this region . concode_field_sep Long tableMaxReadCapacityUnits concode_elem_sep Long tableMaxWriteCapacityUnits concode_elem_sep Long accountMaxWriteCapacityUnits concode_elem_sep Long accountMaxReadCapacityUnit... | void function ( Long arg0 ) { this . accountMaxReadCapacityUnits = arg0 ; } |
6,768 | returns true iff another event line is available and it is part of a complete event . call from the application thread . concode_field_sep ByteBuffer bb concode_elem_sep int positionOfLastSync concode_elem_sep int EVENT_BUFFER_SIZE concode_elem_sep int currentPosition concode_elem_sep EventStruct eventStruct concode_el... | boolean function ( ) { return currentPosition <= positionOfLastSync ; } |
6,769 | evaluate xpath string to an xobject . using this method , xpath namespace prefixes will be resolved from the namespacenode . concode_field_sep PlaceHolder placeHolder concode_field_sep NodeList selectNodeList concode_elem_sep NodeList selectNodeList concode_elem_sep Node selectSingleNode concode_elem_sep Node selectSin... | XObject function ( Node arg0 , String arg1 ) { return eval ( arg0 , arg1 , arg0 ) ; } |
6,770 | create an instance of jaxbelement concode_field_sep QName _LockBookSeat_QNAME concode_elem_sep QName _NotAuthenticatedException_QNAME concode_elem_sep QName _GetFlightByID_QNAME concode_elem_sep QName _ParseException_QNAME concode_elem_sep QName _FlightDoesNotExistException_QNAME concode_elem_sep QName _GetFlightsRespo... | JAXBElement < NotAuthenticatedException > function ( NotAuthenticatedException arg0 ) { return new JAXBElement < NotAuthenticatedException > ( _NotAuthenticatedException_QNAME , NotAuthenticatedException . class , null , arg0 ) ; } |
6,771 | gracefully start the shut down of all threadpools . concode_field_sep ThreadFactory threadFactory concode_elem_sep HashMap<String,ThreadPoolExecutor> executors concode_elem_sep long THREADS_KEEP_ALIVE_SECONDS concode_elem_sep int MAXIMUM_THREADS_PER_VOLUME concode_elem_sep Log LOG concode_elem_sep ThreadGroup threadGro... | void function ( ) { LOG . info ( "srini_string" ) ; for ( Map . Entry < String , ThreadPoolExecutor > loc0 : executors . entrySet ( ) ) { loc0 . getValue ( ) . shutdown ( ) ; } } |
6,772 | finds the index of the given method in the target class . concode_field_sep ProgramClass targetClass concode_elem_sep boolean DEBUG concode_field_sep int findFieldIndex concode_elem_sep void removeInterface concode_elem_sep void addInterface concode_elem_sep void removeMethod concode_elem_sep void addField concode_elem... | int function ( Method arg0 ) { int loc0 = targetClass . u2methodsCount ; Method [ ] loc1 = targetClass . loc1 ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { if ( loc1 [ loc2 ] . equals ( arg0 ) ) { return loc2 ; } } return loc0 ; } |
6,773 | get the param value for the menu item which fired the event . concode_field_sep String param concode_elem_sep String actionFired concode_elem_sep String orientation concode_field_sep void setOrientation concode_elem_sep String getOrientation concode_elem_sep String getActionFired concode_elem_sep void setParam concode_... | String function ( ) { return param ; } |
6,774 | begin timing a query for a specific timing context concode_field_sep T currentTimingType concode_elem_sep long[] counts concode_elem_sep T[] timingTypes concode_elem_sep long[] timings concode_elem_sep long scratch concode_field_sep long stopAndRecordTime concode_elem_sep void merge concode_elem_sep Map<String,Long> to... | void function ( T arg0 ) { assert currentTimingType == null ; assert scratch == 0 ; counts [ arg0 . ordinal ( ) ] += 1 ; currentTimingType = arg0 ; scratch = System . nanoTime ( ) ; } |
6,775 | convenience methods to get the children concode_field_sep DataNode parent concode_elem_sep StatPersisted stat concode_elem_sep Long acl concode_elem_sep byte data[] concode_elem_sep Set<String> children concode_field_sep void serialize concode_elem_sep boolean removeChild concode_elem_sep boolean addChild concode_elem_... | Set < String > function ( ) { return children ; } |
6,776 | returns true if the given state is currently active otherwise false . concode_field_sep long number concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean reset concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep SCInterface getSCInterface... | boolean function ( State arg0 ) { switch ( arg0 ) { case main_region_Start : return stateVector [ 0 ] == State . main_region_Start ; case main_region_A : return stateVector [ 0 ] == State . main_region_A ; case main_region_B : return stateVector [ 0 ] == State . main_region_B ; default : return false ; } } |
6,777 | gets the total number of items in the ineventory . concode_field_sep double inventoryPriceTotal concode_elem_sep ArrayList inventory concode_elem_sep int inventoryUnitTotal concode_field_sep double getInventoryPriceTotal concode_elem_sep void addInventoryItem concode_elem_sep void removeInventoryItem concode_elem_sep A... | int function ( ) { return inventoryUnitTotal ; } |
6,778 | displays the panel corresponding to the provided step . the panel contents are updated with the contents of the userdata object . concode_field_sep WizardStep displayedStep concode_elem_sep HashSet<ButtonActionListener> buttonListeners concode_elem_sep Logger LOG concode_elem_sep CurrentStepPanel currentStepPanel conco... | void function ( WizardStep arg0 , UserData arg1 ) { displayedStep = arg0 ; getButtonsPanel ( ) . updateButtons ( arg0 ) ; getStepsPanel ( ) . setDisplayedStep ( arg0 , arg1 ) ; getCurrentStepPanel ( ) . setDisplayedStep ( arg0 , arg1 ) ; } |
6,779 | decode a webp animated image into a closeableimage . the image is decoded into a ` pinned ' purgeable bitmap . concode_field_sep AnimatedImageFactory mAnimatedImageFactory concode_elem_sep PlatformBitmapFactory mBitmapFactoryWithPool concode_field_sep CloseableImage decodeImage concode_elem_sep CloseableStaticBitmap de... | CloseableImage function ( final CloseableReference < PooledByteBuffer > arg0 , final ImageDecodeOptions arg1 ) { return mAnimatedImageFactory . decodeWebP ( arg0 , arg1 ) ; } |
6,780 | gets the mpi subversion . concode_field_sep int version concode_elem_sep int subVersion concode_field_sep int getVersion | int function ( ) { return subVersion ; } |
6,781 | returns , efficiently , all the non-overridden methods in this class and its superclasses that are annotated . concode_field_sep Map<Class<? extends Annotation>,List<FrameworkMethod>> methodsForAnnotations concode_elem_sep MethodComparator METHOD_COMPARATOR concode_elem_sep FieldComparator FIELD_COMPARATOR concode_elem... | List < FrameworkMethod > function ( ) { List < FrameworkMethod > loc0 = collectValues ( methodsForAnnotations ) ; Collections . sort ( loc0 , METHOD_COMPARATOR ) ; return loc0 ; } |
6,782 | returns an iterator over the headers with a given name in this group . concode_field_sep List headers concode_elem_sep long serialVersionUID concode_field_sep Header getCondensedHeader concode_elem_sep void setHeaders concode_elem_sep void addHeader concode_elem_sep void updateHeader concode_elem_sep Header[] getHeader... | HeaderIterator function ( final String arg0 ) { return new BasicListHeaderIterator ( this . headers , arg0 ) ; } |
6,783 | returns a list of view elements of the given edit parts . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_elem_sep ArrayList<IGraphicalEditPart> getOrderedTreeChildren concode_elem_s... | List < View > function ( List < IGraphicalEditPart > arg0 ) { final List < View > loc0 = new ArrayList < View > ( ) ; for ( final IGraphicalEditPart loc1 : arg0 ) { loc0 . add ( loc1 . getNotationView ( ) ) ; } return loc0 ; } |
6,784 | implement xsmartstepintohandler and return its instance from this method to enable smart step into action concode_field_sep XDebugSession mySession concode_elem_sep ProcessHandler myProcessHandler concode_field_sep ProcessHandler getProcessHandler concode_elem_sep boolean isValuesCustomSorted concode_elem_sep boolean c... | XSmartStepIntoHandler < ? > function ( ) { return null ; } |
6,785 | set the ids of the default channels to be set on the service . if not set , the application-wide defaults will be used . if no application-wide defaults can be found , a best guess will be made using the first available channel with an appropriate endpoint . concode_field_sep BeanFactory beanFactory concode_elem_sep St... | void function ( String [ ] arg0 ) { this . defaultChannels = StringUtils . trimArrayElements ( arg0 ) ; } |
6,786 | returns the x location of the ant . concode_field_sep int m_maxMoves concode_elem_sep int m_pickedUpFromYLoc concode_elem_sep String CVS_REVISION concode_elem_sep int m_moves concode_elem_sep int m_carrying concode_elem_sep int m_initX concode_elem_sep int m_initY concode_elem_sep int m_xpos concode_elem_sep int m_ypos... | int function ( ) { return m_xpos ; } |
6,787 | sets the value of the returnval property . concode_field_sep ManagedObjectReference returnval concode_field_sep ManagedObjectReference getReturnval | void function ( ManagedObjectReference arg0 ) { this . returnval = arg0 ; } |
6,788 | used by the whitebox gui to tell if this plugin is still running . 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 ... | boolean function ( ) { return amIActive ; } |
6,789 | 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 ; } |
6,790 | publishes the given error signal to the subscriber of this publisher . concode_field_sep boolean publisherCompleted concode_elem_sep Throwable publisherError concode_elem_sep Subscriber<? super Void> subscriber concode_elem_sep AtomicReference<State> state concode_elem_sep WriteResultPublisher publisher concode_elem_se... | void function ( Throwable arg0 ) { if ( logger . isTraceEnabled ( ) ) { logger . trace ( this . state + "srini_string" + arg0 ) ; } this . state . get ( ) . publishError ( this , arg0 ) ; } |
6,791 | return a string representation of this treenode . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_elem_sep String findAttribute concode_elem_sep String getName... | String function ( ) { StringBuffer loc0 = new StringBuffer ( ) ; toString ( loc0 , 0 , this ) ; return ( loc0 . toString ( ) ) ; } |
6,792 | set the name . concode_field_sep int defaultValue concode_elem_sep String name concode_elem_sep int headerParam concode_elem_sep Boolean booleanValue concode_elem_sep Integer integerValue concode_elem_sep Short shortValue concode_elem_sep long serialVersionUID concode_elem_sep Double doubleValue concode_elem_sep int id... | void function ( String arg0 ) { this . name = arg0 ; } |
6,793 | plaintext that contains the unpredictable byte string . bytebuffer s are stateful . calling their get methodschanges their position . we recommend using java.nio.bytebuffer #asreadonlybuffer to create a read-only viewof the buffer with an independent position , and calling get methods on this rather than directly on th... | java . nio . ByteBuffer function ( ) { return this . plaintext ; } |
6,794 | obtenir le nombre d'allumettes encore en jeu . concode_field_sep int nombreAllumettes concode_field_sep JeuProxy requete concode_elem_sep void retirer | int function ( ) { return this . nombreAllumettes ; } |
6,795 | writes the base address of the given native object at the given offset of this native object . concode_field_sep Unsafe unsafe concode_elem_sep long address concode_elem_sep int pageSize concode_elem_sep ByteOrder byteOrder concode_elem_sep long allocationAddress concode_field_sep NativeObject getObject concode_elem_se... | void function ( int arg0 , NativeObject arg1 ) { switch ( addressSize ( ) ) { case 8 : putLong ( arg0 , arg1 . address ) ; break ; case 4 : putInt ( arg0 , ( int ) ( arg1 . address & 0x00000000FFFFFFFF ) ) ; break ; default : throw new InternalError ( "srini_string" ) ; } } |
6,796 | gets the value of the ordereipinfo property . concode_field_sep OrderEIPInfoType orderEIPInfo concode_elem_sep long serialVersionUID concode_elem_sep OrderSummaryType orderSummary concode_elem_sep OrderAddressType orderBillToAddress concode_elem_sep OrderAddressType orderShipToAddress concode_elem_sep OrderPricingInfoT... | OrderEIPInfoType function ( ) { return orderEIPInfo ; } |
6,797 | returns the result of interpretting the object as an instance of ` property difference ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep ComparePackage modelPackage concode_field_sep Object doSwitch concode_elem_sep Object doSwitch concode_elem_sep Object d... | Object function ( PropertyDifference arg0 ) { return null ; } |
6,798 | sets a byte at specified position . concode_field_sep byte[] data concode_elem_sep int size concode_elem_sep long serialVersionUID concode_field_sep void add concode_elem_sep void add concode_elem_sep void add concode_elem_sep void add concode_elem_sep void add concode_elem_sep void add concode_elem_sep void writeExter... | void function ( int arg0 , byte arg1 ) { assert arg0 >= 0 ; assert arg0 < size ; data [ arg0 ] = arg1 ; } |
6,799 | called when a column is inserted on the specified sheet . tells the formula parser to update all of its cell references beyond this column concode_field_sep ExternalSheet workbook concode_elem_sep WorkbookSettings settings concode_elem_sep byte[] tokenData concode_elem_sep WorkbookMethods nameTable concode_elem_sep Par... | void function ( int arg0 , int arg1 , boolean arg2 ) { root . columnInserted ( arg0 , arg1 , arg2 ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.