idx int64 0 100k | question stringlengths 68 7.19k | target stringlengths 20 663 |
|---|---|---|
33,200 | set name concode_field_sep Logger log concode_elem_sep String name concode_field_sep String getName concode_elem_sep void endpointActivation concode_elem_sep void stop concode_elem_sep int hashCode concode_elem_sep void endpointDeactivation concode_elem_sep boolean equals concode_elem_sep void start concode_elem_sep XA... | void function ( String arg0 ) { this . name = arg0 ; } |
33,201 | get tags concode_field_sep String name concode_elem_sep List<String> photoUrls concode_elem_sep List<Tag> tags concode_elem_sep Category category concode_elem_sep Long id concode_elem_sep String value concode_elem_sep StatusEnum status concode_field_sep void setName concode_elem_sep StatusEnum fromValue concode_elem_se... | List < Tag > function ( ) { return tags ; } |
33,202 | initializes this timezonebean 's properties . concode_field_sep DateFormat currentFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep String GMT7DAYLIGHTLOCATION concode_elem_sep String GMT9DAYLIGHTLOCATION concode_elem_sep String GMT8DAYLIGHTLOCATION concode_elem_sep String GMT10DAYLIGHTLOCATION con... | void function ( ) { currentFormat = new SimpleDateFormat ( "srini_string" ) ; serverTimeZone = TimeZone . getDefault ( ) ; selectedTimeZone = TimeZone . getTimeZone ( "srini_string" ) ; checkedTimeZoneList = new ArrayList ( ) ; } |
33,203 | inserts the peer into the table . if the name is found to exist , the operation is rejected and an exception is thrown . concode_field_sep Hashtable<String,Peer> _htNamePeer concode_field_sep Peer getPeer | void function ( Peer arg0 ) { if ( _htNamePeer . containsKey ( arg0 . getPeerName ( ) ) ) { throw new InvalidPeerException ( "srini_string" ) ; } else { _htNamePeer . put ( arg0 . getPeerName ( ) , arg0 ) ; } } |
33,204 | tests loading the attributes from a non-existing file . should return an empty map . concode_field_sep String MAP_FILE concode_elem_sep String TEST_USER concode_elem_sep String KERBEROS_PRINCIPAL concode_elem_sep String BAD_KEY concode_elem_sep String NO_MAP_FILE concode_elem_sep String X500_DN concode_elem_sep String ... | void function ( ) { Map < String , String > loc0 = AttributeMapLoader . buildClaimsMapFile ( NO_MAP_FILE ) ; assertNotNull ( loc0 ) ; assertTrue ( loc0 . isEmpty ( ) ) ; } |
33,205 | helper to get a package from the bootstrap class loader . concode_field_sep HashMap bootjars concode_elem_sep HashMap definedPackages concode_elem_sep Instrumentation instrumenter concode_field_sep URL getResource concode_elem_sep Class defineClass concode_elem_sep Map packageAssertionStatus concode_elem_sep String[] g... | Package function ( String arg0 ) { return ( Package ) definedPackages . get ( arg0 ) ; } |
33,206 | style the specified value according to default conventions . concode_field_sep ValueStyler DEFAULT_VALUE_STYLER concode_field_sep placeholderType placeHolder | String function ( Object arg0 ) { return DEFAULT_VALUE_STYLER . style ( arg0 ) ; } |
33,207 | sets the value of the id property . concode_field_sep String id concode_elem_sep List<Object> content concode_elem_sep String target concode_field_sep String getTarget concode_elem_sep List<Object> getContent concode_elem_sep void setTarget concode_elem_sep String getId | void function ( String arg0 ) { this . id = arg0 ; } |
33,208 | retrieves the set of audit trail entries which are instances of this model element concode_field_sep int index concode_elem_sep int iteratorPosition concode_elem_sep HashSet<ProcessInstance> processInstances concode_elem_sep LightweightModelElements parent concode_elem_sep int position concode_elem_sep ArrayList<String... | Set < AuditTrailEntry > function ( ) { return parent . getInstancesForModelElement ( index ) ; } |
33,209 | check to see if the item can be used for inbitmap concode_field_sep Handler handler concode_elem_sep int BUFFER_SIZE concode_elem_sep ImageView imageView concode_elem_sep IBitmapProcessor bitmapProcessor concode_elem_sep ImageLoadingListener loadingListener concode_elem_sep int image_height concode_elem_sep String imag... | boolean function ( Bitmap arg0 , BitmapFactory . Options arg1 ) { int loc0 = arg1 . outWidth / arg1 . inSampleSize ; int loc1 = arg1 . outHeight / arg1 . inSampleSize ; return arg0 . getWidth ( ) == loc0 && arg0 . getHeight ( ) == loc1 ; } |
33,210 | applies the cells to the org.apache.camel.exchange . concode_field_sep PlaceHolder placeHolder concode_field_sep HBaseData resolveModel concode_elem_sep void applyGetResults | void function ( Message arg0 , HBaseData arg1 ) { if ( arg1 == null ) { return ; } arg0 . setBody ( arg1 ) ; } |
33,211 | adds a listener to the set of listeners that are sent events through the life of an animation , such as start , repeat , and end . concode_field_sep ArrayList<AnimatorListener> mListeners concode_field_sep void cancel concode_elem_sep Animator setDuration concode_elem_sep ArrayList<AnimatorListener> getListeners concod... | void function ( AnimatorListener arg0 ) { if ( mListeners == null ) { mListeners = new ArrayList < AnimatorListener > ( ) ; } mListeners . add ( arg0 ) ; } |
33,212 | returns the method name of the caller . concode_field_sep String fileName concode_elem_sep Method getClassNameMethod concode_elem_sep LocationInfo NA_LOCATION_INFO concode_elem_sep boolean inVisualAge concode_elem_sep String methodName concode_elem_sep Method getMethodNameMethod concode_elem_sep String className concod... | String function ( ) { if ( fullInfo == null ) return NA ; if ( methodName == null ) { int loc0 = fullInfo . lastIndexOf ( '(' ) ; int loc1 = fullInfo . lastIndexOf ( '.' , loc0 ) ; if ( loc1 == - 1 ) methodName = NA ; else methodName = this . fullInfo . substring ( loc1 + 1 , loc0 ) ; } return methodName ; } |
33,213 | delegates the request to the in date range search resource concode_field_sep HttpServletRequest request concode_elem_sep AddonsManager addonsManager concode_elem_sep RepositoryBrowsingService repoBrowsingService concode_elem_sep SearchService searchService concode_elem_sep AuthorizationService authorizationService conc... | CreatedInRangeResource function ( ) { return new CreatedInRangeResource ( authorizationService , searchService , request ) ; } |
33,214 | continues a join transformation and defines a keyselector function for the second join dataset . the keyselector function is called for each element of the second dataset and extracts a single key value on which the dataset is joined . the resulting joinfunctionassigner needs to be finished by providing a joinfunction ... | JoinFunctionAssigner < I1 , I2 > function ( KeySelector < I2 , K > arg0 ) { TypeInformation < K > loc0 = TypeExtractor . getKeySelectorTypes ( arg0 , input2 . getType ( ) ) ; return createJoinFunctionAssigner ( new Keys . SelectorFunctionKeys < > ( arg0 , input2 . getType ( ) , loc0 ) ) ; } |
33,215 | the spot instance data feed subscription . returns a reference to this object so that method calls can be chained together . concode_field_sep SpotDatafeedSubscription spotDatafeedSubscription concode_field_sep int hashCode concode_elem_sep void setSpotDatafeedSubscription concode_elem_sep boolean equals concode_elem_s... | CreateSpotDatafeedSubscriptionResult function ( SpotDatafeedSubscription arg0 ) { this . spotDatafeedSubscription = arg0 ; return this ; } |
33,216 | returns the environment variables concode_field_sep String spaceId concode_elem_sep String name concode_elem_sep String buildpack concode_elem_sep Map<String,String> environmentVariables concode_field_sep String getName concode_elem_sep CreateApplicationRequest withEnvironmentVariable concode_elem_sep String getSpaceId... | Map < String , String > function ( ) { return this . environmentVariables ; } |
33,217 | gets the value of the href property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep AbstractRSReferenceSystemType abstractRSReferenceSystem concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep ... | String function ( ) { return href ; } |
33,218 | returns current real screen width in meters concode_field_sep float mRealScreenWidthMeters concode_elem_sep int mHorizontalRealScreenPixels concode_elem_sep int mVerticalRealScreenPixels concode_elem_sep VrAppSettings mAppSettings concode_elem_sep boolean mCustomFBOSize concode_elem_sep float mRealScreenHeightMeters co... | float function ( ) { return mRealScreenWidthMeters ; } |
33,219 | return integer tied to key + index pair concode_field_sep PlaceHolder placeHolder concode_field_sep Object getPrototype concode_elem_sep Object resolveAddress concode_elem_sep int tie concode_elem_sep int instance concode_elem_sep int address concode_elem_sep int address concode_elem_sep void untie concode_elem_sep int... | int function ( String arg0 , int arg1 ) { return CMemoryImpl . getInstance ( ) . tied ( arg0 , arg1 ) ; } |
33,220 | gets the local cseq number concode_field_sep Vector route concode_elem_sep NameAddress local_contact concode_elem_sep NameAddress remote_name concode_elem_sep NameAddress remote_contact concode_elem_sep String remote_tag concode_elem_sep String local_tag concode_elem_sep long remote_cseq concode_elem_sep NameAddress lo... | long function ( ) { return local_cseq ; } |
33,221 | this method creates a view resolver that uses jsp views . concode_field_sep String VIEW_BASE_PATH concode_elem_sep String VIEW_FILENAME_SUFFIX concode_field_sep placeholderType placeHolder | ViewResolver function ( ) { InternalResourceViewResolver loc0 = new InternalResourceViewResolver ( ) ; loc0 . setViewClass ( JstlView . class ) ; loc0 . setPrefix ( VIEW_BASE_PATH ) ; loc0 . setSuffix ( VIEW_FILENAME_SUFFIX ) ; return loc0 ; } |
33,222 | sets the type for this restriction . concode_field_sep Creator<RestrictionEntry> CREATOR concode_elem_sep String[] values concode_elem_sep String description concode_elem_sep int type concode_elem_sep String title concode_elem_sep int TYPE_MULTI_SELECT concode_elem_sep int TYPE_CHOICE_LEVEL concode_elem_sep int TYPE_CH... | void function ( int arg0 ) { this . type = arg0 ; } |
33,223 | finds constraint according to specified constraint name . concode_field_sep String with concode_elem_sep String tablespace concode_elem_sep List<PgIndex> indexes concode_elem_sep String name concode_elem_sep List<PgColumn> columns concode_elem_sep String comment concode_elem_sep List<PgTrigger> triggers concode_elem_se... | PgConstraint function ( final String arg0 ) { for ( PgConstraint loc0 : constraints ) { if ( loc0 . getName ( ) . equals ( arg0 ) ) { return loc0 ; } } return null ; } |
33,224 | gets the function name . concode_field_sep PlaceHolder placeHolder concode_field_sep String getCoreTypeName concode_elem_sep String getParameterName concode_elem_sep String getMethodName concode_elem_sep String getSubraphName concode_elem_sep String getVertexName concode_elem_sep String getCoreName | String function ( final AbstractActor arg0 ) { return ( ( PiGraph ) arg0 . eContainer ( ) ) . getName ( ) + "srini_string" + arg0 . getName ( ) ; } |
33,225 | build the nameidpolicy object concode_field_sep PlaceHolder placeHolder concode_field_sep AuthnRequest buildAuthenticationRequest concode_elem_sep Issuer buildIssuer | NameIDPolicy function ( ) { NameIDPolicy loc0 = new NameIDPolicyBuilder ( ) . buildObject ( ) ; loc0 . setFormat ( SSOConstants . SAML2_NAME_ID_POLICY ) ; loc0 . setAllowCreate ( true ) ; return loc0 ; } |
33,226 | put to weight map concode_field_sep Map<CriteriaRef,CriteriaUserWeight> weights concode_elem_sep Long id concode_elem_sep SortedSet<CriteriaRef> references concode_field_sep Map<CriteriaRef,CriteriaUserWeight> getWeights concode_elem_sep SortedSet<CriteriaRef> getReferences concode_elem_sep CriteriaRef getCriteriaRefer... | void function ( CriteriaRef arg0 , CriteriaUserWeight arg1 ) { weights . put ( arg0 , arg1 ) ; } |
33,227 | returns the mvcc version of this company . concode_field_sep Company _company concode_field_sep java.lang.String getWebId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean hasCompanyMx concode_elem_... | long function ( ) { return _company . getMvccVersion ( ) ; } |
33,228 | gets the value of the imei property . concode_field_sep String sim concode_elem_sep String imei concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep String activationCode concode_elem_sep String oldIMEI concode_elem_sep String mac concode_field_sep void setIMEI concode_elem_sep St... | String function ( ) { return imei ; } |
33,229 | computes m total bits of bloom filter which is expected to achieve , for the specified expected insertions , the required false positive probability . see http://en.wikipedia.org/wiki/bloom_filter#probability_of_false_positives for the formula . concode_field_sep double DEFAULT_FPP concode_elem_sep int versionNumber co... | long function ( long arg0 , double arg1 ) { return ( long ) ( - arg0 * Math . log ( arg1 ) / ( Math . log ( 2 ) * Math . log ( 2 ) ) ) ; } |
33,230 | htzb string concode_field_sep String nwai concode_elem_sep String flag concode_elem_sep String htzb concode_elem_sep String line concode_elem_sep BigDecimal rsv2 concode_elem_sep String yfkn concode_elem_sep String rsv1 concode_elem_sep Double yfei concode_elem_sep long serialVersionUID concode_elem_sep String ceno con... | void function ( String arg0 ) { this . htzb = arg0 ; } |
33,231 | submit question cancel concode_field_sep String lastName concode_elem_sep String firstName concode_elem_sep String emailAddress concode_elem_sep String subject concode_elem_sep String toEmailAddress concode_elem_sep Log logger concode_elem_sep HelpManager helpManager concode_elem_sep String userName concode_elem_sep St... | String function ( ) { return this . reset ( ) ; } |
33,232 | the windows administrator password of the specified instance . returns a reference to this object so that method calls can be chained together . concode_field_sep String passwordData concode_elem_sep String instanceId concode_elem_sep java.util.Date timestamp concode_field_sep String getInstanceId concode_elem_sep GetP... | GetPasswordDataResult function ( String arg0 ) { this . passwordData = arg0 ; return this ; } |
33,233 | sets the connection pool used to recycle http and https connections . if unset , the connectionpool #getdefault system-widedefault connection pool will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connectionPool concode_el... | OkHttpClient function ( ConnectionPool arg0 ) { this . connectionPool = arg0 ; return this ; } |
33,234 | writes all or part of the given byte array to the blob value that this blob object represents and returns the number of bytes written . concode_field_sep BlobDataID blob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep void truncate concode_elem_sep boolean isClosed concode_... | int function ( long arg0 , byte [ ] arg1 , int arg2 , int arg3 ) { if ( ! isInLimits ( arg1 . length , arg2 , arg3 ) ) { throw Util . outOfRangeArgument ( ) ; } if ( arg2 != 0 || arg3 != arg1 . length ) { byte [ ] loc0 = new byte [ arg3 ] ; System . arraycopy ( arg1 , ( int ) arg2 , loc0 , 0 , arg3 ) ; arg1 = loc0 ; } ... |
33,235 | get custom deserializer 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.Object __equalsCalc concode_elem_sep o... | org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; } |
33,236 | accessor to see whether this format has been initialized concode_field_sep String formatString concode_elem_sep int formatIndex concode_elem_sep BuiltInFormat[] builtIns concode_field_sep String getFormatString concode_elem_sep boolean equals concode_elem_sep int getFormatIndex concode_elem_sep void initialize concode_... | boolean function ( ) { return true ; } |
33,237 | rewrites the given query into its primitive form . queries that for instance fetch resources from remote hosts or can simplify / optimize itself should do their heavy lifting during #rewrite queryrewritecontext . this method rewrites the query until it does n't change anymore . concode_field_sep PlaceHolder placeHolder... | QueryBuilder function ( QueryBuilder arg0 , QueryRewriteContext arg1 ) { QueryBuilder loc0 = arg0 ; for ( QueryBuilder loc1 = loc0 . rewrite ( arg1 ) ; loc1 != loc0 ; loc1 = loc0 . rewrite ( arg1 ) ) { loc0 = loc1 ; } return loc0 ; } |
33,238 | returns true when this option is selected , false otherwise . concode_field_sep AttributeSet attributes concode_elem_sep String label concode_elem_sep boolean selected concode_field_sep String getValue concode_elem_sep String getLabel concode_elem_sep AttributeSet getAttributes concode_elem_sep void setSelection concod... | boolean function ( ) { return selected ; } |
33,239 | load the given class using the default constructor concode_field_sep PlaceHolder placeHolder concode_field_sep Object callMethod concode_elem_sep T callConstructor concode_elem_sep T callConstructor concode_elem_sep Method getMethod concode_elem_sep RuntimeException getCause concode_elem_sep String getPropertyName | Class < ? > function ( String arg0 ) { try { return Class . forName ( arg0 ) ; } catch ( ClassNotFoundException loc0 ) { throw new IllegalArgumentException ( loc0 ) ; } } |
33,240 | get the xml string content concode_field_sep XsdString NULL_XSDSTRING concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep String tag concode_elem_sep String value concode_field_sep boolean hasExpression concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean... | String function ( ) { return value ; } |
33,241 | 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 ; } |
33,242 | sets the system id using a file reference . concode_field_sep String systemId concode_elem_sep Reader reader concode_elem_sep InputStream inputStream concode_elem_sep String FEATURE concode_elem_sep String publicId concode_field_sep String getSystemId concode_elem_sep void setReader concode_elem_sep Reader getReader co... | void function ( File arg0 ) { try { this . systemId = arg0 . toURL ( ) . toString ( ) ; } catch ( IOException loc0 ) { throw new RuntimeException ( loc0 . getMessage ( ) , loc0 ) ; } } |
33,243 | called whenever the osgi framework starts our bundle concode_field_sep Logger logger concode_field_sep void stop | void function ( BundleContext arg0 ) { logger . debug ( "srini_string" ) ; } |
33,244 | creates the legend symbol . calls the wrapped symbolfactory or returns an empty instance of graphicalcomposite if undefined . concode_field_sep double _size concode_elem_sep String SYMBOL_FACTORY_KEY concode_elem_sep GraphicAttributes _attributes concode_elem_sep SymbolFactory _symbolFactory concode_field_sep Symbol cr... | GraphicalElement function ( GraphPoint arg0 , double arg1 ) { return _symbolFactory == null ? new GraphicalComposite ( null ) : _symbolFactory . createLegendSymbol ( arg0 , arg1 ) ; } |
33,245 | perform `` save '' operation on current tab 's file . concode_field_sep int MIN_BLINK_RATE concode_elem_sep int MAX_TAB_SIZE concode_elem_sep String currentSaveDirectory concode_elem_sep int MIN_TAB_SIZE concode_elem_sep EditTabbedPane editTabbedPane concode_elem_sep int MAX_BLINK_RATE concode_elem_sep VenusUI mainUI c... | boolean function ( ) { return editTabbedPane . saveCurrentFile ( ) ; } |
33,246 | gets the value of the hiddenclasses 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 nonOverrida... | ClassFilterType function ( ) { return hiddenClasses ; } |
33,247 | 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 ; } |
33,248 | returns a string representation of this object . concode_field_sep ActionRequest request concode_field_sep String getCharacterEncoding concode_elem_sep String getContentType concode_elem_sep int getContentLength concode_elem_sep InputStream getInputStream | String function ( ) { return "srini_string" + this . getContentLength ( ) + "srini_string" + this . getContentType ( ) ; } |
33,249 | select and set if specified the character encoding to be used to interpret request parameters for this request . concode_field_sep String encoding concode_elem_sep FilterConfig filterConfig concode_elem_sep boolean ignore concode_field_sep void init concode_elem_sep void destroy concode_elem_sep String selectEncoding | void function ( ServletRequest arg0 , ServletResponse arg1 , FilterChain arg2 ) { if ( ignore || ( arg0 . getCharacterEncoding ( ) == null ) ) { String loc0 = selectEncoding ( arg0 ) ; if ( loc0 != null ) arg0 . setCharacterEncoding ( loc0 ) ; } arg2 . doFilter ( arg0 , arg1 ) ; } |
33,250 | returns the service with the fully qualified name name , or null if this schema defines no such service . concode_field_sep ImmutableMap<String,Service> servicesIndex concode_elem_sep Ordering<ProtoFile> PATH_ORDER concode_elem_sep ImmutableMap<String,Type> typesIndex concode_elem_sep ImmutableList<ProtoFile> protoFile... | Service function ( ProtoType arg0 ) { return getService ( arg0 . toString ( ) ) ; } |
33,251 | returns the types map . concode_field_sep String DICT_NAME concode_elem_sep List<CmsCategoryTreeEntry> m_categoryTreeEntry concode_elem_sep GalleryTabId m_startTab concode_elem_sep List<CmsVfsEntryBean> m_vfsRootFolders concode_elem_sep CmsGallerySearchScope m_scope concode_elem_sep String m_locale concode_elem_sep Str... | List < CmsResourceTypeBean > function ( ) { return m_types ; } |
33,252 | sets the params . concode_field_sep Date date concode_elem_sep String handler concode_elem_sep List roles concode_elem_sep Integer id concode_elem_sep String params concode_elem_sep String user concode_elem_sep String desc concode_field_sep void setHandler concode_elem_sep String getUser concode_elem_sep Integer getId ... | void function ( String arg0 ) { this . params = arg0 ; } |
33,253 | returns the base64 encoded command string to be sent via the max ! protocol . concode_field_sep boolean[] bits concode_elem_sep String rfAddress concode_elem_sep int roomId concode_elem_sep String baseString concode_field_sep placeholderType placeHolder | String function ( ) { String loc0 = baseString + rfAddress + Utils . toHex ( roomId ) + Utils . toHex ( bits ) ; String loc1 = Base64 . encodeBase64String ( Utils . hexStringToByteArray ( loc0 ) ) ; return "srini_string" + loc1 ; } |
33,254 | returns sql scripts for renaming jcr tables to new ones . concode_field_sep boolean multiDb concode_elem_sep String itemTableName concode_elem_sep List<String> committingScripts concode_elem_sep String dialect concode_elem_sep String refTableName concode_elem_sep String refTableSuffix concode_elem_sep String valueTable... | Collection < String > function ( ) { return new ArrayList < String > ( ) ; } |
33,255 | umrechnung in basisdatentyp - derzeit double concode_field_sep double currentTotal concode_field_sep void setTotal concode_elem_sep void add concode_elem_sep String changeSign concode_elem_sep String getTotalString concode_elem_sep String square concode_elem_sep String sqrt concode_elem_sep void subtract concode_elem_s... | double function ( String arg0 ) { return Double . parseDouble ( arg0 ) ; } |
33,256 | the barcode that identifies a specific virtual tape . concode_field_sep String vTLDevice concode_elem_sep String tapeStatus concode_elem_sep String tapeARN concode_elem_sep Double progress concode_elem_sep String tapeBarcode concode_elem_sep Long tapeSizeInBytes concode_field_sep Tape withTapeARN concode_elem_sep Tape ... | String function ( ) { return this . tapeBarcode ; } |
33,257 | sets the area for the entity . this class conveys information about chart entities back to a client . setting this area does n't change the entity which has already been drawn . concode_field_sep Shape area concode_elem_sep long serialVersionUID concode_elem_sep String urlText concode_elem_sep String toolTipText concod... | void function ( Shape arg0 ) { ParamChecks . nullNotPermitted ( arg0 , "srini_string" ) ; this . area = arg0 ; } |
33,258 | compiler requires ` public ' modifier concode_field_sep InnerImplementation inner concode_elem_sep String s3 concode_elem_sep String s4 concode_elem_sep float PI_FINAL concode_elem_sep String s2 concode_elem_sep float PI_OK concode_elem_sep String s1 concode_elem_sep boolean sModifierOrderVar concode_elem_sep float PI_... | void function ( ) { } |
33,259 | get the keep alive time of threads above the core number . the number of threads that are created past the core number up to the maximum number are kept alive until they are idle for the keep alive time . concode_field_sep RejectionHandler rejectionHandler concode_elem_sep RenderThreadFactory threadFactory concode_elem... | long function ( ) { return keepAliveTime ; } |
33,260 | convenience method to construct the minimal interval containing the two given points . this is equivalent to starting with an empty interval and calling addpoint twice , but it is more efficient . concode_field_sep double hi concode_elem_sep double lo concode_field_sep double hi concode_elem_sep boolean interiorContain... | R1Interval function ( double arg0 , double arg1 ) { if ( arg0 <= arg1 ) { return new R1Interval ( arg0 , arg1 ) ; } else { return new R1Interval ( arg1 , arg0 ) ; } } |
33,261 | gets the value of the vcsroot property . concode_field_sep String lastVersion concode_elem_sep VcsRoot vcsRoot concode_elem_sep String vcsRootInternalId concode_elem_sep String vcsRootId concode_elem_sep String projectLocator concode_elem_sep String lastVersionInternal concode_elem_sep String name concode_elem_sep Stri... | VcsRoot function ( ) { return vcsRoot ; } |
33,262 | gets the uri of the local image , video , or audio clip to send to messenger . must be a file : / / , content : / / , or res : / / uri . concode_field_sep String mMetaData concode_elem_sep Uri mExternalUri concode_elem_sep String mMimeType concode_elem_sep Uri mUri concode_field_sep ShareToMessengerParamsBuilder setMet... | Uri function ( ) { return mUri ; } |
33,263 | gets the contentdistributionservice responsible for distributing content to subscribers . concode_field_sep String HUB_BASE_URL concode_elem_sep SettingsFacade settingsFacade concode_elem_sep HubValidator hubValidator concode_elem_sep Logger LOGGER concode_elem_sep SubscriptionService subscriptionService concode_elem_s... | ContentDistributionService function ( ) { return contentDistributionService ; } |
33,264 | the arn of the amazon simple notification service sns topic to which the sns notifications are sent . concode_field_sep String resourceArn concode_elem_sep String topicArn concode_elem_sep java.util.List<EventSubscription> eventSubscriptions concode_field_sep String getResourceArn concode_elem_sep void setTopicArn conc... | Subscription function ( String arg0 ) { setTopicArn ( arg0 ) ; return this ; } |
33,265 | retrieves a byte sequence representing the md5 digest of the specified byte sequence . concode_field_sep MessageDigest md5 concode_field_sep String encodeString concode_elem_sep byte[] digestString | byte [ ] function ( byte [ ] arg0 ) { synchronized ( MD5 . class ) { if ( md5 == null ) { try { md5 = MessageDigest . getInstance ( "srini_string" ) ; } catch ( NoSuchAlgorithmException loc0 ) { throw new RuntimeException ( loc0 . toString ( ) ) ; } } return md5 . digest ( arg0 ) ; } } |
33,266 | looks for parent call of certain function concode_field_sep FQNamesProvider myNameToSearch concode_elem_sep PsiCacheKey<Pair<String,String>,PyElement> QUALIFIED_AND_CLASS_NAME concode_field_sep boolean isName concode_elem_sep boolean value concode_elem_sep boolean isElementWithName concode_elem_sep Pair<String,String> ... | PyCallExpression function ( @ NotNull final PsiElement arg0 , @ NotNull final FQNamesProvider arg1 ) { final PsiElement loc0 = PsiTreeUtil . findFirstParent ( arg0 , new MyFunctionCondition ( arg1 ) ) ; if ( loc0 instanceof PyCallExpression ) { return ( PyCallExpression ) loc0 ; } return null ; } |
33,267 | append string using ascii charset . concode_field_sep int DEFAULT_CAPACITY concode_elem_sep boolean read concode_elem_sep byte[] buffer concode_elem_sep int position concode_field_sep PositioningByteBuffer appendCString concode_elem_sep long removeInt concode_elem_sep PositioningByteBuffer appendShort concode_elem_sep ... | PositioningByteBuffer function ( String arg0 ) { return appendString ( arg0 , "srini_string" ) ; } |
33,268 | tears down the test method . concode_field_sep InputBuffer fixture concode_field_sep void peekEmpty concode_elem_sep void nextCharEmpty concode_elem_sep void getInputPositionEmpty concode_elem_sep void getInputPositionValid concode_elem_sep void testEOFValue concode_elem_sep void setInputPosition concode_elem_sep void ... | void function ( ) { fixture = null ; } |
33,269 | constructs a new yaml builder that will output the result into the provided output stream . concode_field_sep int GUESS_HEADER_LENGTH concode_field_sep XContentBuilder contentBuilder concode_elem_sep XContentBuilder contentBuilder concode_elem_sep XContentBuilder cborBuilder concode_elem_sep XContentBuilder cborBuilder... | XContentBuilder function ( OutputStream arg0 ) { return new XContentBuilder ( YamlXContent . yamlXContent , arg0 ) ; } |
33,270 | decrement files opened for read . concode_field_sep IgniteBiTuple<LongAdder8,LongAdder8> bytesWritten concode_elem_sep LongAdder8 filesOpenedForWrite concode_elem_sep IgniteBiTuple<LongAdder8,LongAdder8> blocksWritten concode_elem_sep IgniteBiTuple<LongAdder8,LongAdder8> blocksRead concode_elem_sep IgniteBiTuple<LongAd... | void function ( ) { filesOpenedForRead . decrement ( ) ; } |
33,271 | index . concode_field_sep double[] attributeValues concode_field_sep int numAttributes concode_elem_sep boolean isMissing concode_elem_sep boolean isMissingSparse concode_elem_sep double[] toDoubleArray concode_elem_sep double valueSparse concode_elem_sep void setValue concode_elem_sep int numValues concode_elem_sep vo... | int function ( int arg0 ) { return arg0 ; } |
33,272 | processes user input . reads line from console and does the action on a playing field according to input string . concode_field_sep Field field concode_elem_sep BufferedReader input concode_field_sep void update concode_elem_sep String readLine concode_elem_sep void newGameStarted concode_elem_sep void handleInput | void function ( ) { try { handleInput ( readLine ( ) ) ; } catch ( WrongFormatException loc0 ) { loc0 . printStackTrace ( ) ; } } |
33,273 | get / account - > get the current user . concode_field_sep Logger log concode_elem_sep UserRepository userRepository concode_elem_sep PersistentTokenRepository persistentTokenRepository concode_elem_sep MailService mailService concode_elem_sep UserService userService concode_field_sep ResponseEntity<List<PersistentToke... | ResponseEntity < UserDTO > function ( ) { } |
33,274 | return the max number of cars defined by the user . concode_field_sep int _maxCarsInSim concode_elem_sep String ATTR_CONN_FROM concode_elem_sep String ATTR_XING_HASTF concode_elem_sep String NODE_CONS concode_elem_sep Logger _logger concode_elem_sep String ATTR_CONN_TO concode_elem_sep String ATTR_CONN_LEN concode_elem... | int function ( ) { return _maxCarsInSim ; } |
33,275 | constructs a new instance of the specified class using the same logic as the graph model factory methods . concode_field_sep MetaData metadata concode_elem_sep Map<String,String> taxaLeafClass concode_field_sep String resolve concode_elem_sep T instantiateObjectFromTaxa concode_elem_sep T instantiate | T function ( Class < T > arg0 ) { return instantiate ( arg0 ) ; } |
33,276 | sets the list of configured repositories . concode_field_sep List<String> excludes concode_elem_sep String viewvcPrefix concode_elem_sep List<String> languages concode_elem_sep List<String> includes concode_elem_sep List<Repository> repositories concode_elem_sep CheckConfiguration checks concode_elem_sep String repoPre... | void function ( List < Repository > arg0 ) { this . repositories = arg0 ; } |
33,277 | returns the instance of the interface that changed . concode_field_sep IContext context concode_elem_sep boolean definedChanged concode_elem_sep boolean enabledChanged concode_elem_sep boolean nameChanged concode_elem_sep boolean parentIdChanged concode_field_sep boolean hasEnabledChanged concode_elem_sep boolean hasNa... | IContext function ( ) { return context ; } |
33,278 | sets the wsitempk value for this wsextractusingtransformer . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep org.talend.mdm.webservice.WSItemPK wsItemPK concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.talend.mdm.webservice.WSTransformerPK wsTransformerPK concode_elem... | void function ( org . talend . mdm . webservice . WSItemPK arg0 ) { this . wsItemPK = arg0 ; } |
33,279 | stops the loop at its earliest possible convenience . concode_field_sep boolean running concode_elem_sep boolean firstRun concode_elem_sep int numPreviewFrames concode_elem_sep Size size concode_elem_sep DebugView debugView concode_elem_sep ProcessingThread processingThreads[] concode_elem_sep FrameProducer frameProduc... | void function ( ) { if ( running == false ) { Log . w ( TAG , "srini_string" ) ; return ; } frameProducer . requestFrame ( null ) ; stopAllProcessors ( ) ; running = false ; } |
33,280 | initialize the scenario . create any generators and other shared objects here . called once , in the main client thread , before any operations are started . concode_field_sep AtomicBoolean stopRequested concode_elem_sep String INSERT_START_PROPERTY concode_elem_sep String INSERT_START_PROPERTY_DEFAULT concode_field_se... | void function ( Properties arg0 ) { } |
33,281 | return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.talend.mdm.webservice.WSTransformerPK wsTransformerPK concode_elem_sep boolean __hashCodeCalc concode_field_sep org.talend.mdm.webservice.WSTransformerPK getWsT... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
33,282 | makes the specified adjustable track if the view area expands and the specified adjustable is located near the of the view . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean contains concode_elem_sep void moveAdjustable concode_elem_sep void selectRow concode_elem_sep void selectRow concode_elem_sep ... | void function ( Adjustable arg0 ) { if ( arg0 == null ) { return ; } arg0 . addAdjustmentListener ( new TrackingAdjustmentListener ( ) ) ; } |
33,283 | test of xor method , of class integermodification . concode_field_sep Integer result concode_elem_sep Integer expectedResult concode_elem_sep ModifiableInteger start concode_field_sep void testShiftLeft concode_elem_sep void testShiftRight concode_elem_sep void testExplicitValueFromFile concode_elem_sep void testSub co... | void function ( ) { VariableModification < Integer > loc0 = IntegerModificationFactory . xor ( 2 ) ; start . setModification ( loc0 ) ; expectedResult = 8 ; result = start . getValue ( ) ; assertEquals ( expectedResult , result ) ; assertEquals ( new Integer ( 10 ) , start . getOriginalValue ( ) ) ; } |
33,284 | todo concode_field_sep int HIGH_PASS_MINIMUM concode_elem_sep long minTimeBetweenMovement concode_elem_sep long DEFAULT_MIN_TIME_BETWEEN_MOVEMENT concode_elem_sep int THRESHOLD_LOW concode_elem_sep int highPassCount concode_elem_sep int threshold concode_elem_sep long DEFAULT_MIN_TIME_BETWEEN_MOVEMENT_DISABLED concode_... | void function ( ) { } |
33,285 | gets the current position on the x axis concode_field_sep Grid grid concode_elem_sep int index concode_elem_sep int y concode_elem_sep int x concode_field_sep Integer next concode_elem_sep int getY concode_elem_sep int getIndex concode_elem_sep boolean hasNext concode_elem_sep void remove | int function ( ) { return x ; } |
33,286 | generates the graph in png format and sends that to the response . concode_field_sep boolean awtProblem concode_elem_sep AbstractBuild build concode_elem_sep Run<?,?> run concode_elem_sep double CHEBYSHEV_N concode_elem_sep Throwable awtProblemCause concode_field_sep void adjustChebyshev concode_elem_sep int hashCode c... | void function ( StaplerRequest arg0 , StaplerResponse arg1 , JFreeChart arg2 , Area arg3 ) { generateGraph ( arg0 , arg1 , arg2 , arg3 . width , arg3 . height ) ; } |
33,287 | sets the vms migrating in . concode_field_sep List<? extends Pe> peList concode_elem_sep List<String> vmsMigratingIn concode_elem_sep double availableMips concode_elem_sep List<String> vmsMigratingOut concode_elem_sep Map<String,List<Pe>> peMap concode_elem_sep Map<String,List<Double>> mipsMap concode_field_sep List<T>... | void function ( List < String > arg0 ) { this . vmsMigratingIn = arg0 ; } |
33,288 | set case sensitivity on or off . concode_field_sep String mPattern concode_elem_sep Locale mLocale concode_elem_sep String mUpperPattern concode_elem_sep boolean mCaseSensitive concode_field_sep boolean getCaseSensitive concode_elem_sep void setUpperPattern concode_elem_sep void setPattern concode_elem_sep String getPa... | void function ( boolean arg0 ) { mCaseSensitive = arg0 ; setUpperPattern ( ) ; } |
33,289 | sets the id value for this projectdata . concode_field_sep java.lang.String file_path concode_elem_sep com.intellij.tasks.mantis.model.ProjectData[] subprojects concode_elem_sep com.intellij.tasks.mantis.model.ObjectRef access_min concode_elem_sep java.lang.String description concode_elem_sep boolean __hashCodeCalc con... | void function ( java . math . BigInteger arg0 ) { this . id = arg0 ; } |
33,290 | `` sys_idx _ '' is used for auto-indexes on referring fk columns or unique constraints . `` sys_pk _ '' is for the primary key indexes . `` sys_ref _ '' is for fk constraints in referenced tables concode_field_sep HsqlNameManager staticManager concode_elem_sep String statementName concode_elem_sep int sysNumber concode... | boolean function ( String arg0 ) { return ( arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) ) ; } |
33,291 | utility method for finding month names . concode_field_sep int OFFSET_HH concode_elem_sep int OFFSET_MM concode_elem_sep String month concode_elem_sep int OFFSET_SS concode_elem_sep String second concode_elem_sep int OFFSET_YYYY concode_elem_sep String minute concode_elem_sep String hour concode_elem_sep String[] month... | String function ( String arg0 ) { int loc0 = 0 ; try { loc0 = Integer . parseInt ( arg0 ) ; } catch ( NumberFormatException loc1 ) { } return monthNames [ loc0 ] ; } |
33,292 | method to set the destination path . concode_field_sep String associationType concode_elem_sep String destinationPath concode_elem_sep String sourcePath concode_field_sep void setSourcePath concode_elem_sep String getSourcePath concode_elem_sep String getAssociationType concode_elem_sep String getDestinationPath concod... | void function ( String arg0 ) { this . destinationPath = arg0 ; } |
33,293 | this method resets the incoming events time events included . concode_field_sep long rightBitshift concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep long bitwiseXor concode_elem_sep long myBit1 concode_elem_sep long myBit2 concode_elem_sep long leftBitshift concode_elem_sep int nextStateIndex concode_elem_s... | void function ( ) { sCInterface . clearEvents ( ) ; } |
33,294 | moves to before last so next el is the last el . concode_field_sep ResultSetImpl owner concode_elem_sep ServerPreparedStatement prepStmt concode_elem_sep Field[] metadata concode_elem_sep boolean wasEmpty concode_elem_sep boolean lastRowFetched concode_elem_sep List<ResultSetRow> fetchedRows concode_elem_sep int BEFORE... | void function ( ) { notSupported ( ) ; } |
33,295 | sets the read date parameter . concode_field_sep String NAME_CREATION_DATE concode_elem_sep String NAME_FILENAME concode_elem_sep String TYPE_ATTACHMENT concode_elem_sep String TYPE_INLINE concode_elem_sep String NAME_MODIFICATION_DATE concode_elem_sep String NAME_READ_DATE concode_elem_sep String type concode_elem_sep... | void function ( Date arg0 ) { setDate ( NAME_READ_DATE , arg0 ) ; } |
33,296 | return the configured messageconverter . concode_field_sep Log logger concode_elem_sep MessageConverter converter concode_elem_sep D defaultDestination concode_elem_sep String CONVERSION_HINT_HEADER concode_field_sep void setDefaultDestination concode_elem_sep D getDefaultDestination concode_elem_sep D getRequiredDefau... | MessageConverter function ( ) { return this . converter ; } |
33,297 | get the photo height concode_field_sep Date mDateUploaded concode_elem_sep List<String> mTags concode_elem_sep String mFilenameOriginal concode_elem_sep String URL concode_elem_sep Token shareToken concode_elem_sep int mPermission concode_elem_sep String mDescription concode_elem_sep String mLatitude concode_elem_sep S... | int function ( ) { return height ; } |
33,298 | retrieves the canonical file for the given file , in a jdk 1.1 complaint way . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep boolean fsIsIgnoreCase concode_field_sep File absoluteFile concode_elem_sep IOException toIOException concode_elem_sep void renameOverwrite concode_elem_sep String canonic... | File function ( File arg0 ) { return new File ( arg0 . getCanonicalPath ( ) ) ; } |
33,299 | the multipageeditorsite implementation of this iworkbenchpartsite method forwards to the multi-page editor for registration . concode_field_sep ISelectionProvider selectionProvider concode_elem_sep IEditorPart editor concode_elem_sep ISelectionChangedListener selectionChangedListener concode_elem_sep MultiPageModelEdit... | void function ( final MenuManager arg0 , final ISelectionProvider arg1 , final boolean arg2 ) { registerContextMenu ( arg0 , arg1 ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.