idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
2,800 | gets the value of the icon 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 icon property . for example , to add a new item , do as follo... | List < IconType > function ( ) { if ( icon == null ) { icon = new ArrayList < IconType > ( ) ; } return this . icon ; } |
2,801 | creates a griddatafactory initialized with defaults . initial values are : align swt.fill , swt.fill exclude false grab false , false span 1,1 concode_field_sep GridData data concode_field_sep GridDataFactory fillDefaultsInternal concode_elem_sep GridDataFactory align concode_elem_sep GridDataFactory grab concode_elem_... | GridDataFactory function ( ) { return new GridDataFactory ( ) . fillDefaultsInternal ( ) ; } |
2,802 | returns the name for this instance of the object . if you are using the dot notation for a naming conventions , this will return the last node in name . concode_field_sep long serialVersionUID concode_elem_sep BaseID id concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Object clone concode... | String function ( ) { return getID ( ) . getName ( ) ; } |
2,803 | setup this image with the pdf document . concode_field_sep PDFDeviceColorSpace colorSpace concode_elem_sep byte[] bitmaps concode_elem_sep int bitsPerComponent concode_elem_sep boolean multipleFiltersAllowed concode_elem_sep PDFReference maskRef concode_elem_sep PDFFilter pdfFilter concode_elem_sep int width concode_el... | void function ( PDFDocument arg0 ) { this . pdfDoc = arg0 ; } |
2,804 | set the order to descending , sorted by the supplied comparator . concode_field_sep Optional<Predicate<Event>> filter concode_elem_sep Function<List<Event>,Stream<Event>> orderedStreamer concode_elem_sep List<Event> events concode_field_sep EventReplayer filter concode_elem_sep Stream<Event> reverseStream concode_elem_... | EventReplayer function ( Comparator < Event > arg0 ) { return new EventReplayer ( events , eventList -> eventList . stream ( ) . sorted ( arg0 . reversed ( ) ) , filter ) ; } |
2,805 | gets the value of the name property . concode_field_sep BudgetBudgetPeriod period concode_elem_sep Money amount concode_elem_sep BudgetBudgetDeliveryMethod deliveryMethod concode_elem_sep Integer referenceCount concode_elem_sep String name concode_elem_sep Boolean isExplicitlyShared concode_elem_sep Long budgetId conco... | String function ( ) { return name ; } |
2,806 | called by the modeleditorpage to signal a selection change concode_field_sep ISelection selection concode_elem_sep ModelEditorPage sourcePage concode_elem_sep ArrayList listeners concode_elem_sep ISelectionChangedListener theSelectionChangedListener concode_elem_sep ModelEditor modelEditor concode_field_sep void fireSe... | void function ( SelectionChangedEvent arg0 ) { if ( isVisible ( sourcePage ) ) { setSelection ( arg0 . getSelection ( ) ) ; } } |
2,807 | converts a card type array into a host type array , possibly verbosely . prints all data to out if out is not null . if out is null then line_start is not used . otherwise it must be a format string with at most one integer conversion , which is printed with the current index to out before the data . note that in place... | void function ( PrintWriter arg0 , String arg1 , APDU_Serializable [ ] arg2 , APDU_Serializable [ ] arg3 ) { check_compatibility ( arg2 , arg3 ) ; if ( arg2 != null ) { for ( int loc0 = 0 ; loc0 < arg2 . length ; loc0 ++ ) { if ( arg0 != null ) output ( arg0 , arg1 , arg3 , loc0 ) ; from ( arg2 [ loc0 ] , arg3 [ loc0 ]... |
2,808 | persisting existing entity , should throws entityexistsexception concode_field_sep UserTransaction tx concode_elem_sep EntityManager em concode_field_sep String failInFirstCall concode_elem_sep Employee createEmployee concode_elem_sep int[] getEmployeeIDsNoEM concode_elem_sep String failAfterCalls concode_elem_sep Stri... | void function ( ) { Employee loc0 = em . find ( Employee . class , 1212 ) ; if ( loc0 == null ) { loc0 = createEmployee ( "srini_string" , "srini_string" , 1212 ) ; em . persist ( loc0 ) ; em . flush ( ) ; } em . persist ( createEmployee ( loc0 . getName ( ) , loc0 . getAddress ( ) , loc0 . getId ( ) ) ) ; } |
2,809 | gets server time . concode_field_sep boolean dialogRendered concode_elem_sep DateFormat selectedFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep DateFormat serverFormat concode_elem_sep int renderInterval concode_elem_sep ArrayList allTimeZoneList concode_elem_sep Hashtable checkboxStates concode_... | String function ( ) { return formatCurrentTime ( serverFormat ) ; } |
2,810 | creates a reverse map name corresponding to an address contained in an array of 4 integers between 0 and 255 for an ipv4 address or 16 integers between 0 and 255 for an ipv6 address . concode_field_sep Name inaddr6 concode_elem_sep Name inaddr4 concode_field_sep placeholderType placeHolder | Name function ( int [ ] arg0 ) { byte [ ] loc0 = new byte [ arg0 . length ] ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { if ( arg0 [ loc1 ] < 0 || arg0 [ loc1 ] > 0xFF ) throw new IllegalArgumentException ( "srini_string" + "srini_string" + "srini_string" ) ; loc0 [ loc1 ] = ( byte ) arg0 [ loc1 ] ; } retu... |
2,811 | returns the variance of the dirichlet . concode_field_sep double C concode_elem_sep Logger log concode_elem_sep Random rng concode_elem_sep double[] alphas concode_field_sep double sampleFromGamma concode_elem_sep double getCDF concode_elem_sep double getDensity concode_elem_sep double[] sample concode_elem_sep Map<dou... | double [ ] function ( ) { double [ ] loc0 = new double [ alphas . length ] ; double loc1 = Math . pow ( getAlphaSum ( ) , 2 ) * ( getAlphaSum ( ) + 1 ) ; for ( int loc2 = 0 ; loc2 < alphas . length ; loc2 ++ ) { double loc3 = alphas [ loc2 ] * ( getAlphaSum ( ) - alphas [ loc2 ] ) ; loc0 [ loc2 ] = loc3 / loc1 ; } retu... |
2,812 | resets #nexttlsmode to the first option . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> proxySelectorProxies concode_elem_sep ConnectionPool pool concode_elem_sep Dns dns co... | void function ( ) { nextTlsMode = ( address . getSslSocketFactory ( ) != null ) ? TLS_MODE_MODERN : TLS_MODE_COMPATIBLE ; } |
2,813 | the sha256 tree hash value that amazon glacier calculated for the part . this field is never null . concode_field_sep String rangeInBytes concode_elem_sep String sHA256TreeHash concode_field_sep void setSHA256TreeHash concode_elem_sep String getRangeInBytes concode_elem_sep PartListElement withRangeInBytes concode_elem... | String function ( ) { return sHA256TreeHash ; } |
2,814 | the amount of disk this machine has gb concode_field_sep Map<String,JsonBall> metadata concode_elem_sep Date created concode_elem_sep Type type concode_elem_sep Set<String> ips concode_elem_sep ImmutableSet.Builder<String> ips concode_elem_sep ImmutableMap.Builder<String,JsonBall> metadata concode_elem_sep String name ... | int function ( ) { return diskSizeGb ; } |
2,815 | sets the whiteboxpluginhost to which the plugin tool is tied . this is the class that the plugin will send all feedback messages , progress updates , and return objects . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgress... | void function ( WhiteboxPluginHost arg0 ) { myHost = arg0 ; } |
2,816 | marks this quadedge as being deleted . this does not free the memory used by this quadedge quartet , but indicates that this edge no longer participates in a subdivision . concode_field_sep QuadEdge next concode_elem_sep Vertex vertex concode_elem_sep QuadEdge rot concode_elem_sep Object data concode_field_sep QuadEdge... | void function ( ) { rot = null ; } |
2,817 | returns the property value associated to the ppropname name concode_field_sep String DATAPLUGINSROOT concode_elem_sep String PROCEDUREPLUGINSROOT concode_elem_sep String DATAFILESPATH concode_elem_sep Properties instance concode_elem_sep String DICTIONARIESPATH concode_elem_sep String WINIDAMSFILES concode_elem_sep Str... | String function ( String arg0 ) { String loc0 = null ; loc0 = properties . getProperty ( arg0 ) ; return setPropertyVariablesValues ( loc0 ) ; } |
2,818 | return the filename extensions that are recognized by one of our subclasses . concode_field_sep Factory[] sSubclassFactories concode_elem_sep File mInputFile concode_elem_sep char[] HEX_CHARS concode_elem_sep ArrayList<String> sSupportedExtensions concode_elem_sep HashMap<String,Factory> sExtensionMap concode_elem_sep ... | String [ ] function ( ) { return sSupportedExtensions . toArray ( new String [ sSupportedExtensions . size ( ) ] ) ; } |
2,819 | gets the value of the camera property . concode_field_sep String deviceType concode_elem_sep Boolean certifiedOpenBox concode_elem_sep String colorImagePath concode_elem_sep String wearingStyle concode_elem_sep String memory concode_elem_sep String shape concode_elem_sep String color concode_elem_sep String weight conc... | String function ( ) { return camera ; } |
2,820 | get the byte stream for this input source . the getencoding method will return the character encoding for this byte stream , or null if unknown . concode_field_sep String systemId concode_elem_sep Reader characterStream concode_elem_sep InputStream byteStream concode_elem_sep String encoding concode_elem_sep String pub... | InputStream function ( ) { return byteStream ; } |
2,821 | gets the value of the changes property . concode_field_sep Issue issue concode_elem_sep Changes changes concode_field_sep void setChanges concode_elem_sep Issue getIssue concode_elem_sep void setIssue | Changes function ( ) { return changes ; } |
2,822 | the length of the the underlying object 's data . concode_field_sep Reference reference concode_elem_sep char[] hexChar concode_elem_sep StringBuilder stringData concode_field_sep String getHexString concode_elem_sep StringBuilder stringToHex concode_elem_sep String getDecryptedLiteralString concode_elem_sep String enc... | int function ( ) { return stringData . length ( ) ; } |
2,823 | sets the value of the value property . concode_field_sep Object parent concode_elem_sep long index concode_elem_sep String value concode_field_sep String getValue concode_elem_sep Object getParent concode_elem_sep long getIndex concode_elem_sep void setIndex concode_elem_sep void afterUnmarshal concode_elem_sep void se... | void function ( String arg0 ) { this . value = arg0 ; } |
2,824 | get custom serializer concode_field_sep com.netsuite.webservices.platform.core_2014_2.RecordRef[] recordRefList concode_elem_sep java.lang.Integer totalRecords concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_el... | 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 ) ; } |
2,825 | hook for blocking the loading of external resources . this will be called when the webview 's shouldinterceptrequest wants to know whether to open a connection to an external resource . return false to block the request : if any plugin returns false , cordova will block the request . if all plugins return null , the de... | Boolean function ( String arg0 ) { return null ; } |
2,826 | returns tiff_float data as an array of floats . a classcastexception will be thrown if the field is not of type tiff_float . concode_field_sep int TIFF_SSHORT concode_elem_sep int TIFF_SBYTE concode_elem_sep Object data concode_elem_sep int TIFF_SRATIONAL concode_elem_sep int TIFF_BYTE concode_elem_sep int TIFF_DOUBLE ... | float [ ] function ( ) { return ( float [ ] ) data ; } |
2,827 | returns all element nodes that are contained in a list of nodes . concode_field_sep DocumentBuilderFactory docBuilderFactory concode_field_sep DocumentBuilder getDocBuilder concode_elem_sep String getNodeTextContents concode_elem_sep void initDocBuilderFactory concode_elem_sep NSObject parse concode_elem_sep NSObject p... | List < Node > function ( NodeList arg0 ) { List < Node > loc0 = new ArrayList < Node > ( arg0 . getLength ( ) ) ; for ( int loc1 = 0 ; loc1 < arg0 . getLength ( ) ; loc1 ++ ) { if ( arg0 . item ( loc1 ) . getNodeType ( ) == Node . ELEMENT_NODE ) { loc0 . add ( arg0 . item ( loc1 ) ) ; } } return loc0 ; } |
2,828 | `` closes '' the specified tags on a spannable by updating the spans to be endpoint-exclusive so that future text appended to the end will not take on the same styling . do not call this method directly . concode_field_sep PlaceHolder placeHolder concode_field_sep CharSequence normal concode_elem_sep CharSequence color... | void function ( Spannable arg0 , Object [ ] arg1 ) { int loc0 = arg0 . length ( ) ; for ( Object loc1 : arg1 ) { if ( loc0 > 0 ) { arg0 . setSpan ( loc1 , 0 , loc0 , Spanned . SPAN_EXCLUSIVE_EXCLUSIVE ) ; } else { arg0 . removeSpan ( loc1 ) ; } } } |
2,829 | reads a byte value . concode_field_sep RandomAccessFile raf concode_elem_sep long length concode_elem_sep Buffers bm concode_elem_sep int off concode_elem_sep boolean changed concode_field_sep long cursor concode_elem_sep void cursor concode_elem_sep void writeToken concode_elem_sep void writeToken concode_elem_sep int... | byte function ( ) { return ( byte ) read ( ) ; } |
2,830 | check if targeted column value in the row indexed i is less than the search target object . concode_field_sep int[][] data concode_elem_sep int count concode_elem_sep int targetSearchValue concode_elem_sep int sortedColumn concode_elem_sep int targetSearchColumn concode_field_sep void putPair concode_elem_sep void add ... | boolean function ( int arg0 ) { return targetSearchValue > data [ targetSearchColumn ] [ arg0 ] ; } |
2,831 | 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 ; } |
2,832 | file types defined by org.apache.commons.net.ftp.ftp constants : org.apache.commons.net.ftp.ftp #ascii_file_type org.apache.commons.net.ftp.ftp #ebcdic_file_type org.apache.commons.net.ftp.ftp #binary_file_type default org.apache.commons.net.ftp.ftp #local_file_type concode_field_sep int port concode_elem_sep Log logge... | void function ( int arg0 ) { this . fileType = arg0 ; } |
2,833 | gets a hexadecimal stringbuffer representation of this object 's data , which is in fact the raw data contained in this object . concode_field_sep Reference reference concode_elem_sep Logger logger concode_elem_sep StringBuilder stringData concode_field_sep String getHexString concode_elem_sep StringBuilder hexToString... | StringBuilder function ( ) { return stringData ; } |
2,834 | deletes the shopping order item with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep ShoppingOrderItemLocalService _shoppingOrderItemLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com... | com . liferay . shopping . model . ShoppingOrderItem function ( long arg0 ) { return _shoppingOrderItemLocalService . deleteShoppingOrderItem ( arg0 ) ; } |
2,835 | specify the target class explicitly , to avoid any kind of access to the target bean for example , to avoid initialization of a factorybean instance . default is to detect the type automatically , through a gettype call on the beanfactory or even a full getbean call as fallback . concode_field_sep String targetBeanName... | void function ( Class < ? > arg0 ) { this . targetClass = arg0 ; } |
2,836 | gets object stored under given qualifier and given key concode_field_sep Class<? extends Annotation> qualifier concode_elem_sep Map<QualifiedKey,Object> cache concode_elem_sep Class<?> key concode_field_sep DroneContext add concode_elem_sep DroneContext add concode_elem_sep int hashCode concode_elem_sep boolean equals ... | T function ( Class < T > arg0 , Class < ? extends Annotation > arg1 ) { return arg0 . cast ( cache . get ( new QualifiedKey ( arg0 , arg1 ) ) ) ; } |
2,837 | get the support level for this bitstream format - one of unknown , known or supported . concode_field_sep List<String> fileExtensions concode_elem_sep int SUPPORTED concode_elem_sep BitstreamFormatService bitstreamFormatService concode_elem_sep int KNOWN concode_elem_sep String description concode_elem_sep int supportL... | int function ( ) { return supportLevel ; } |
2,838 | check if the right-hand side type may be assigned to the left-hand side type , assuming setting by reflection . considers primitive wrapper classes as assignable to the corresponding primitive types . concode_field_sep Map<Class,Class> primitiveWrappers concode_elem_sep Map<Class,Class> wrapperPrimitives concode_field_... | boolean function ( Class arg0 , Class arg1 ) { return ( arg0 . isAssignableFrom ( arg1 ) || arg0 . equals ( wrapperPrimitives . get ( arg1 ) ) ) ; } |
2,839 | returns the next quoted string is s quotes included . throws a parserexception if the next substring in s is not a quoted string . concode_field_sep String s concode_elem_sep int pos concode_field_sep String nextToken concode_elem_sep void match concode_elem_sep void skipWhiteSpace concode_elem_sep void checkPosition | String function ( ) { int loc0 = pos ; match ( '"' ) ; checkPosition ( ) ; while ( s . charAt ( pos ) != '"' ) { ++ pos ; checkPosition ( ) ; } match ( '"' ) ; return s . substring ( loc0 , pos ) ; } |
2,840 | tag key , a string . the key must not start with `` aws : '' . concode_field_sep String value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String getValue concode_elem_sep Tag withValue concode_elem_sep int hashCode concode_elem_sep void setValue concode_elem_sep boolean equals concode_e... | Tag function ( String arg0 ) { setKey ( arg0 ) ; return this ; } |
2,841 | get dev machine of specific workspace . dev machine should be in running state concode_field_sep HashMap<String,Instance> instances concode_elem_sep HashMap<String,MachineImpl> machines concode_field_sep MachineImpl toMachine concode_elem_sep List<MachineImpl> getMachines concode_elem_sep void addMachine concode_elem_s... | MachineImpl function ( String arg0 ) { for ( Instance loc0 : instances . values ( ) ) { if ( loc0 . getWorkspaceId ( ) . equals ( arg0 ) && loc0 . getConfig ( ) . isDev ( ) ) { return toMachine ( loc0 ) ; } } throw new NotFoundException ( "srini_string" + arg0 + "srini_string" ) ; } |
2,842 | performs key-value look up in disk cache . if value is not found in disk cache staging area then disk cache read is scheduled on background thread . any error manifests itself as cache miss , i.e. the returned task resolves to null . concode_field_sep Executor mWriteExecutor concode_elem_sep ImageCacheStatsTracker mIma... | Task < EncodedImage > function ( CacheKey arg0 , AtomicBoolean arg1 ) { final EncodedImage loc0 = mStagingArea . get ( arg0 ) ; if ( loc0 != null ) { return foundPinnedImage ( arg0 , loc0 ) ; } return getAsync ( arg0 , arg1 ) ; } |
2,843 | recycle this context for future use by another wing element concode_field_sep ObjectManager objectManager concode_elem_sep char DIVIDER concode_elem_sep Log logger concode_elem_sep String componentName concode_field_sep String getComponentName concode_elem_sep ObjectManager getObjectManager concode_elem_sep void setLog... | void function ( ) { this . componentName = null ; this . objectManager = null ; } |
2,844 | application server calls this method to force any cleanup on the managedconnection instance . concode_field_sep HelloWorldManagedConnectionFactory mcf concode_elem_sep List<javax.resource.spi.ConnectionEventListener> listeners concode_elem_sep Object connection concode_elem_sep PrintWriter writer concode_field_sep void... | void function ( ) { } |
2,845 | returns the wind direction based on degree . concode_field_sep PlaceHolder placeHolder concode_field_sep Double celsiusToFahrenheit concode_elem_sep Double millimetersToInches concode_elem_sep double getSeaLevelPressure concode_elem_sep Double mpsToKmh concode_elem_sep Double kmhToKnots concode_elem_sep Double convertU... | String function ( Integer arg0 ) { String [ ] loc0 = new String [ ] { "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_strin... |
2,846 | return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String notes concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Long id concode_elem_sep com.google.api.ads.dfp.axis.v201502.Date startDat... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
2,847 | provides the error handler to both subsequent nodes of this filter stage . concode_field_sep EventConsumer rest concode_elem_sep DeclHandler declFirst concode_elem_sep LexicalHandler lexFirst concode_elem_sep ContentHandler docFirst concode_elem_sep DeclHandler declRest concode_elem_sep EventConsumer first concode_elem... | void function ( ErrorHandler arg0 ) { first . setErrorHandler ( arg0 ) ; rest . setErrorHandler ( arg0 ) ; } |
2,848 | this method is deprecated , #set_result same parameter . concode_field_sep PlaceHolder placeHolder concode_field_sep void set_exception concode_elem_sep Context ctx concode_elem_sep void set_result concode_elem_sep String op_name concode_elem_sep void arguments concode_elem_sep void except concode_elem_sep void params ... | void function ( Any arg0 ) { throw new NO_IMPLEMENT ( ) ; } |
2,849 | sets up the schema which maps xml schema types to attribute types . concode_field_sep XSDSchema schema concode_elem_sep Schema typeSchema concode_elem_sep Schema typeMappingProfile concode_elem_sep Logger LOGGER concode_elem_sep Set<XSD> dependencies concode_field_sep Schema getTypeMappingProfile concode_elem_sep QName... | Schema function ( ) { return new SchemaImpl ( getNamespaceURI ( ) ) ; } |
2,850 | close current browser . concode_field_sep boolean external concode_elem_sep int x concode_elem_sep int width concode_elem_sep IBrowser browserAdapter concode_elem_sep int y concode_elem_sep IBrowser newBrowserAdapter concode_elem_sep String browserAdapterId concode_elem_sep boolean sizeSet concode_elem_sep String newBr... | void function ( ) { browserAdapter . close ( ) ; } |
2,851 | prints a message at info priority . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void println... | void function ( String arg0 , String arg1 , Throwable arg2 ) { println ( INFO , arg0 , arg1 , arg2 ) ; } |
2,852 | adds a listener object that is notified about changes in global comments . concode_field_sep HashBiMap<INaviView,Integer> viewsToId concode_elem_sep SQLProvider provider concode_elem_sep SQLProviderListener providerListener concode_elem_sep ListenerProvider<ViewManagerListener> listeners concode_elem_sep Map<SQLProvide... | void function ( final ViewManagerListener arg0 ) { listeners . addListener ( arg0 ) ; } |
2,853 | sets the name of this user tram cap . concode_field_sep UserTramCap _userTramCap concode_field_sep void setMaTramCap concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getMaHuyen concode_ele... | void function ( java . lang . String arg0 ) { _userTramCap . setName ( arg0 ) ; } |
2,854 | set the value of the current parameter . concode_field_sep Connection conn concode_elem_sep Statement stat concode_elem_sep HashMap<String,PreparedStatement> prepared concode_elem_sep PreparedStatement prep concode_elem_sep int index concode_field_sep Prepared prepare concode_elem_sep List<Map<String,Object>> query con... | Prepared function ( String arg0 ) { try { prep . setString ( ++ index , arg0 ) ; return this ; } catch ( SQLException loc0 ) { throw convert ( loc0 ) ; } } |
2,855 | set param value concode_field_sep PlaceHolder placeHolder concode_field_sep Object getListenerByClassName concode_elem_sep Object getTagLibByUri concode_elem_sep String getFilterMappingString concode_elem_sep String getContextParamValue concode_elem_sep Object getFilterMappingByKey concode_elem_sep Object getServletMap... | void function ( Map arg0 , String arg1 , String arg2 ) { if ( arg1 == null ) return ; if ( arg0 == null ) arg0 = new HashMap ( ) ; ContextParamBean loc0 = ( ContextParamBean ) arg0 . get ( arg1 ) ; if ( loc0 == null ) { loc0 = new ContextParamBean ( arg1 , arg2 ) ; arg0 . put ( arg1 , loc0 ) ; return ; } loc0 . setValu... |
2,856 | signs the data computes the secure hash concode_field_sep byte[] opad concode_elem_sep byte OPAD concode_elem_sep int blockLength concode_elem_sep MessageDigest digest concode_elem_sep byte[] ipad concode_elem_sep byte IPAD concode_field_sep void init concode_elem_sep int digestLength concode_elem_sep void clear concod... | byte [ ] function ( ) { byte [ ] loc0 = digest . digest ( ) ; digest . reset ( ) ; digest . update ( opad ) ; return digest . digest ( loc0 ) ; } |
2,857 | performs a correct deep clone of the properties object by capturing all properties in the default s and placing them directly into the new properties object . if the input is an instance of unmodifiableproperties , this method returns an unmodifiableproperties instance around a new flattened copy of the underlying prop... | Properties function ( Properties arg0 ) { return clone ( arg0 , null , false ) ; } |
2,858 | gets a string from the resource bundle and formats it with the argument concode_field_sep ResourceBundle fgResourceBundle concode_elem_sep String RESOURCE_BUNDLE concode_field_sep String getString | String function ( String arg0 ) { return getString ( arg0 ) ; } |
2,859 | allows to select a mode . the `` mode '' is an attribute of the diagram and will be set . concode_field_sep SCSimulator simulator concode_elem_sep String statechartFile concode_field_sep void testChangeStateConfiguration2 concode_elem_sep void setUp concode_elem_sep void testChangeStateConfiguration | void function ( Double arg0 ) { simulator . changeStateConfiguration ( ) ; assertTrue ( "srini_string" = "srini_string" , simulator . setItem ( "srini_string" , arg0 ) ) ; simulator . changeStateConfiguration ( ) ; } |
2,860 | get database host concode_field_sep int m_databaseCount concode_elem_sep String ALLOW_CLIENT_QUERY_DB_PWD concode_elem_sep int m_versionCount concode_elem_sep CLogger log concode_elem_sep int m_no concode_elem_sep int s_no concode_field_sep String getMainVersion concode_elem_sep String getDbPwd concode_elem_sep String ... | String function ( ) { m_databaseCount ++ ; log . info ( "srini_string" + m_databaseCount ) ; return CConnection . get ( ) . getDbHost ( ) ; } |
2,861 | sets the description value for this projectattachmentdata . concode_field_sep java.util.Calendar date_submitted concode_elem_sep java.lang.String filename concode_elem_sep java.math.BigInteger size concode_elem_sep java.lang.String content_type concode_elem_sep java.math.BigInteger user_id concode_elem_sep java.lang.Ob... | void function ( java . lang . String arg0 ) { this . description = arg0 ; } |
2,862 | allow override . concode_field_sep InputStream in concode_elem_sep CSVConfig config concode_elem_sep boolean hasFieldHeader concode_field_sep void guessFixedWidth concode_elem_sep boolean hasFieldHeader concode_elem_sep CSVConfig guess concode_elem_sep void guessFixedWidthSeperator concode_elem_sep void setHasFieldHead... | InputStream function ( ) { return in ; } |
2,863 | returns the property identifier . concode_field_sep int maxElems concode_elem_sep byte pdt concode_elem_sep byte wLevel concode_elem_sep byte rLevel concode_elem_sep short oindex concode_elem_sep short otype concode_elem_sep short id concode_elem_sep short pindex concode_elem_sep int currElems concode_elem_sep boolean ... | short function ( ) { return id ; } |
2,864 | revert the mask removal done while reading the code words . the bit matrix should revert to its original state . concode_field_sep boolean mirror concode_elem_sep BitMatrix bitMatrix concode_elem_sep Version parsedVersion concode_elem_sep FormatInformation parsedFormatInfo concode_field_sep Version readVersion concode_... | void function ( ) { if ( parsedFormatInfo == null ) { return ; } DataMask loc0 = DataMask . forReference ( parsedFormatInfo . getDataMask ( ) ) ; int loc1 = bitMatrix . getHeight ( ) ; loc0 . unmaskBitMatrix ( bitMatrix , loc1 ) ; } |
2,865 | skip some steps concode_field_sep char symbol concode_elem_sep long delta concode_elem_sep long limit concode_elem_sep long value concode_field_sep boolean contains concode_elem_sep int hashCode concode_elem_sep ArithmeticProgression valueOf concode_elem_sep boolean equals concode_elem_sep long getSteps concode_elem_se... | long function ( long arg0 ) { if ( arg0 < 0 ) throw new IllegalArgumentException ( "srini_string" + arg0 ) ; return value + arg0 * delta ; } |
2,866 | depth first algorithm for crawling the social network concode_field_sep Twitter twitter concode_elem_sep String rootUser concode_elem_sep int maxDepth concode_elem_sep PersistentCache repository concode_field_sep List<User> adaptUsers concode_elem_sep UserProfile ensureUserProfile concode_elem_sep void main concode_ele... | void function ( User arg0 ) { LinkedList < User > loc0 = new LinkedList < User > ( ) ; loc0 . add ( arg0 ) ; while ( ! loc0 . isEmpty ( ) ) { User loc1 = loc0 . remove ( ) ; UserProfile loc2 = ensureUserProfile ( repository , twitter , loc1 ) ; for ( User loc3 : loc2 . getFriends ( ) ) { loc0 . add ( loc3 ) ; } } } |
2,867 | releases thread-local tiles cached for performance reasons . allowed allowed caller : maskblit/consumer-thread concode_field_sep ArrayList<JulesTile> idleTileWorkerCacheList concode_elem_sep int IDLE_TILE_SYNC_GRANULARITY concode_elem_sep ArrayList<JulesTile> idleBuffers concode_elem_sep ArrayList<JulesTile> idleTileCo... | void function ( ) { releaseTiles ( idleTileConsumerCacheList ) ; } |
2,868 | return type metadata object concode_field_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String state concode_field_sep void setName concode_elem_sep java.lang.Stri... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
2,869 | returns the stroke used to draw the connecting line . concode_field_sep long serialVersionUID concode_elem_sep Comparable category2 concode_elem_sep Paint paint concode_elem_sep Stroke stroke concode_elem_sep double value2 concode_elem_sep double value1 concode_elem_sep Comparable category1 concode_field_sep void setCa... | Stroke function ( ) { return this . stroke ; } |
2,870 | assigns labels to components , for accessibility purpose . concode_field_sep JLabel receivedLabel concode_elem_sep JTabbedPane tabbedPane concode_elem_sep LogsPane logsPane concode_elem_sep MailsListPane mailsListPane concode_elem_sep JPanel mainPanel concode_elem_sep PortTextField portText concode_elem_sep StartServer... | void function ( ) { portLabel . setLabelFor ( portText . get ( ) ) ; saveMessages . setLabelFor ( saveMsgTextField . get ( ) ) ; receivedLabel . setLabelFor ( nbReceivedLabel . get ( ) ) ; } |
2,871 | sets the internal state of fullclassname , classname , & packagename . concode_field_sep Localizer localizer concode_elem_sep String EXPAND_ARGUMENTS concode_elem_sep LocalizableMessageFactory messageFactory concode_elem_sep String fullClassName concode_elem_sep String OPTIMIZE concode_elem_sep boolean optimize concode... | void function ( String arg0 ) { fullClassName = arg0 ; int loc0 = fullClassName . lastIndexOf ( '.' ) ; if ( loc0 >= 0 ) { packageName = fullClassName . substring ( 0 , loc0 ) ; className = fullClassName . substring ( loc0 + 1 , fullClassName . length ( ) ) ; } else { packageName = null ; className = fullClassName ; } ... |
2,872 | the identifiers of the list of steps added to the job flow . concode_field_sep com.amazonaws.internal.SdkInternalList<String> stepIds concode_field_sep AddJobFlowStepsResult withStepIds concode_elem_sep AddJobFlowStepsResult withStepIds concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep AddJ... | java . util . List < String > function ( ) { if ( stepIds == null ) { stepIds = new com . amazonaws . internal . SdkInternalList < String > ( ) ; } return stepIds ; } |
2,873 | will warmup , then try twice and fail the first time . expected result : p concode_field_sep int counter3 concode_elem_sep Logger LOGGER concode_elem_sep int counter concode_elem_sep int counter2 concode_elem_sep PassFailResults pfr concode_elem_sep boolean warmupvariable concode_field_sep void runBeforeMethod concode_... | void function ( ) { LOGGER . info ( "srini_string" ) ; warmupvariable = ! warmupvariable ; Assert . assertTrue ( warmupvariable , "srini_string" ) ; } |
2,874 | gets the menu id . concode_field_sep boolean viewIcons concode_elem_sep String code concode_elem_sep boolean hasChildren concode_elem_sep boolean isAdminsMenu concode_elem_sep String initialPath concode_elem_sep Integer snapshotHistory concode_elem_sep String functionality concode_elem_sep String snapshotName concode_e... | Integer function ( ) { return menuId ; } |
2,875 | implements reload specific operations concode_field_sep int pageSize concode_elem_sep Class<T> entityClass concode_elem_sep int scrollerPage concode_elem_sep long serialVersionUID concode_elem_sep int PAGE_SIZE concode_elem_sep Repository<T> repository concode_elem_sep int SCROLLER_PAGE concode_elem_sep Logger logger c... | void function ( ) { this . model = null ; } |
2,876 | gets named boolean property concode_field_sep int PROP_CTRACE_LEN concode_elem_sep String DEFAULT_PROPS[] concode_elem_sep String PROP_FILE concode_elem_sep String PREFIX concode_elem_sep DebugSettings instance concode_elem_sep Logger log concode_elem_sep Properties props concode_elem_sep String PROP_CTRACE concode_fie... | boolean function ( String arg0 , boolean arg1 ) { String loc0 = getString ( arg0 , String . valueOf ( arg1 ) ) ; return loc0 . equalsIgnoreCase ( "srini_string" ) ; } |
2,877 | gets the value of the altids property . concode_field_sep ArrayOfString altIDs concode_elem_sep String dsID concode_elem_sep String logMessage concode_elem_sep byte[] dsContent concode_elem_sep String checksumType concode_elem_sep String checksum concode_elem_sep String pid concode_elem_sep boolean force concode_elem_s... | ArrayOfString function ( ) { return altIDs ; } |
2,878 | end the prefix mapping . concode_field_sep List newNamespaces concode_elem_sep Stack namespaceStack concode_elem_sep String identifier concode_elem_sep StringBuffer characterContent concode_elem_sep PrintWriter printWriter concode_elem_sep String prefix concode_elem_sep boolean endStartTag concode_elem_sep String toAdd... | void function ( final String arg0 ) { } |
2,879 | sets the value of the logical property . concode_field_sep String modify concode_elem_sep TypeRightBrackets closeBracket concode_elem_sep String from concode_elem_sep TypeLeftBrackets openBracket concode_elem_sep String to concode_elem_sep TypeCtVocabOp operatorID concode_elem_sep String prompt concode_elem_sep TypeLog... | void function ( TypeLogicalOperator arg0 ) { this . logical = arg0 ; } |
2,880 | set the index of this parameter in the operation signature . concode_field_sep String name concode_elem_sep int index concode_elem_sep String description concode_field_sep void setName concode_elem_sep String getName concode_elem_sep int getIndex concode_elem_sep void setDescription concode_elem_sep String getDescripti... | void function ( int arg0 ) { this . index = arg0 ; } |
2,881 | the minimum size in code points of a payload field in the indexed documents concode_field_sep CountDownLatch startLatch concode_elem_sep CopyOnWriteArrayList<Throwable> failures concode_elem_sep int minFieldSize concode_elem_sep int maxFieldSize concode_elem_sep ESLogger logger concode_elem_sep CountDownLatch stopLatch... | void function ( int arg0 ) { minFieldSize = arg0 ; } |
2,882 | returns the page size . concode_field_sep int pageNumber concode_elem_sep int size concode_elem_sep List<E> elements concode_elem_sep long totalElements concode_field_sep long getTotalElements concode_elem_sep int getPageNumber concode_elem_sep List<E> getElements | int function ( ) { return size ; } |
2,883 | returns the operator set used by this execution context . concode_field_sep Operators operators concode_elem_sep Stack<Object> stack concode_field_sep Number popNumber concode_elem_sep int popInt concode_elem_sep Stack<Object> getStack concode_elem_sep float popReal | Operators function ( ) { return this . operators ; } |
2,884 | build entity criteria for signing credential . concode_field_sep List overrideBlackListedSignatureAlgorithms concode_elem_sep Logger LOGGER concode_elem_sep List overrideSignatureAlgorithms concode_elem_sep List overrideWhiteListedAlgorithms concode_elem_sep List overrideSignatureReferenceDigestMethods concode_elem_sep... | void function ( final RequestAbstractType arg0 , final CriteriaSet arg1 ) { arg1 . add ( new EntityIdCriterion ( SamlIdPUtils . getIssuerFromSamlRequest ( arg0 ) ) ) ; arg1 . add ( new EntityRoleCriterion ( SPSSODescriptor . DEFAULT_ELEMENT_NAME ) ) ; } |
2,885 | define valor do atributo nome . concode_field_sep List caracteristicas concode_elem_sep Date dataFim concode_elem_sep String sistema concode_elem_sep Integer categoria concode_elem_sep String imagem concode_elem_sep long serialVersionUID concode_elem_sep Integer idEmpresa concode_elem_sep String nome concode_elem_sep I... | void function ( String arg0 ) { this . nome = arg0 ; } |
2,886 | method that can be overridden to do any additional processing concode_field_sep PlaceHolder placeHolder concode_field_sep List<ClassAnnotationInformationFactory> annotationInformationFactories concode_elem_sep void deploy concode_elem_sep void undeploy | void function ( final DeploymentPhaseContext arg0 , final DeploymentUnit arg1 ) { } |
2,887 | sets when to flush a new bulk request based on the number of actions currently added . defaults to 1000 . can be set to -1 to disable it . concode_field_sep BulkRequestHandler bulkRequestHandler concode_elem_sep int concurrentRequests concode_elem_sep AtomicLong executionIdGen concode_elem_sep Listener listener concode... | Builder function ( int arg0 ) { this . bulkActions = arg0 ; return this ; } |
2,888 | returns the osgi service identifier . concode_field_sep SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService concode_field_sep void setWrappedService concode_elem_sep void addRequestInterpreter concode_elem_sep com.liferay.portlet.social.model.SocialRequestFeedEntry interpret concode_elem_sep void... | java . lang . String function ( ) { return _socialRequestInterpreterLocalService . getOSGiServiceIdentifier ( ) ; } |
2,889 | gets the polling period . concode_field_sep String CONSOLE_DEFAULT_UNIT concode_elem_sep String CONSOLE_KEY_PERIOD concode_elem_sep ConsoleReporter mReporter concode_elem_sep int CONSOLE_DEFAULT_PERIOD concode_elem_sep String CONSOLE_KEY_UNIT concode_elem_sep Properties mProperties concode_field_sep void stop concode_e... | int function ( ) { String loc0 = mProperties . getProperty ( CONSOLE_KEY_PERIOD ) ; return loc0 != null ? Integer . parseInt ( loc0 ) : CONSOLE_DEFAULT_PERIOD ; } |
2,890 | adds an arbitrary header field with the given value to the article header . these headers will be written before the from , to , subject , and cc fields when the simplesmtpheader is convertered to a string . an example use would be : header.addheaderfield `` organization '' , `` foobar , inc. '' ; concode_field_sep Str... | void function ( String arg0 , String arg1 ) { } |
2,891 | clients should invoke this method when they encounter a connectivity failure on a connection returned by this route selector . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> ... | void function ( Connection arg0 , IOException arg1 ) { Route loc0 = arg0 . getRoute ( ) ; if ( loc0 . getProxy ( ) . type ( ) != Proxy . Type . DIRECT && proxySelector != null ) { proxySelector . connectFailed ( uri , loc0 . getProxy ( ) . address ( ) , arg1 ) ; } routeDatabase . failed ( loc0 , arg1 ) ; } |
2,892 | get the abscissa of the vector . concode_field_sep Vector1D NEGATIVE_INFINITY concode_elem_sep long serialVersionUID concode_elem_sep Vector1D ZERO concode_elem_sep Vector1D POSITIVE_INFINITY concode_elem_sep double x concode_elem_sep Vector1D NaN concode_elem_sep Vector1D ONE concode_field_sep double getNorm1 concode_... | double function ( ) { return x ; } |
2,893 | resets the given input . concode_field_sep Map<Integer,Input> keys concode_field_sep void add concode_elem_sep boolean isPressed concode_elem_sep int getValue concode_elem_sep void keyPressed concode_elem_sep void clear concode_elem_sep void keyReleased concode_elem_sep Input remove | void function ( int arg0 ) { synchronized ( this . keys ) { if ( this . keys . containsKey ( arg0 ) ) { this . keys . get ( arg0 ) . reset ( ) ; } } } |
2,894 | the block device mapping for the disk . concode_field_sep String snapshotId concode_elem_sep String format concode_elem_sep String description concode_elem_sep String deviceName concode_elem_sep String url concode_elem_sep UserBucket userBucket concode_field_sep UserBucket getUserBucket concode_elem_sep void setSnapsho... | String function ( ) { return deviceName ; } |
2,895 | returns the opcode of this instruction . concode_field_sep List<TypeAnnotationNode> visibleTypeAnnotations concode_elem_sep AbstractInsnNode next concode_elem_sep int TYPE_INSN concode_elem_sep int LOOKUPSWITCH_INSN concode_elem_sep int INT_INSN concode_elem_sep AbstractInsnNode prev concode_elem_sep int METHOD_INSN co... | int function ( ) { return opcode ; } |
2,896 | the minimum level at which this changer should be applied . for example this could be a changer at the table level , but always to be applied to all tables of a root . concode_field_sep boolean dryRun concode_elem_sep PrintStream stream concode_elem_sep boolean quiet concode_elem_sep DBSystemRoot base concode_field_sep... | Class < ? extends DBStructureItem < ? >> function ( ) { return null ; } |
2,897 | sets the cached . concode_field_sep FooComponent[] components concode_elem_sep List fees concode_elem_sep List bazez concode_elem_sep String code concode_elem_sep List subs concode_elem_sep FooProxy foo concode_elem_sep Collection bag concode_elem_sep Date[] timeArray concode_elem_sep FooProxy[] fooArray concode_elem_s... | void function ( Set arg0 ) { this . cached = arg0 ; } |
2,898 | ends the animation . this causes the animation to assign the end value of the property being animated , then calling the android.animation.animator.animatorlistener #onanimationend animator method onits listeners . this method must be called on the thread that is running the animation . concode_field_sep ArrayList<Anim... | void function ( ) { } |
2,899 | sets the radius of the outlier ellipse . concode_field_sep double radius concode_elem_sep Point2D point concode_field_sep Point2D getPoint concode_elem_sep double getX concode_elem_sep double getY concode_elem_sep void setPoint concode_elem_sep boolean equals concode_elem_sep boolean overlaps concode_elem_sep String to... | void function ( double arg0 ) { this . radius = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.