idx int64 0 25k | question stringlengths 68 5.61k | target stringlengths 21 500 |
|---|---|---|
2,000 | sets the default data of this expando column . concode_field_sep ExpandoColumn _expandoColumn concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes co... | void function ( java . lang . String arg0 ) { _expandoColumn . setDefaultData ( arg0 ) ; } |
2,001 | retrieve an duration instance . use shared objects to represent common values for memory efficiency . concode_field_sep double m_duration concode_elem_sep Duration[] ZERO_DURATIONS concode_elem_sep TimeUnit m_units concode_field_sep double getDuration concode_elem_sep int hashCode concode_elem_sep boolean equals concod... | Duration function ( int arg0 , TimeUnit arg1 ) { Duration loc0 ; if ( arg0 == 0 ) { loc0 = ZERO_DURATIONS [ arg1 . getValue ( ) ] ; } else { loc0 = new Duration ( arg0 , arg1 ) ; } return ( loc0 ) ; } |
2,002 | get the set of binding names for this view . concode_field_sep int BRIDGE concode_elem_sep Deque<ViewConfigurator> configurators concode_elem_sep ImmediateInterceptorFactory CLIENT_DISPATCHER_INTERCEPTOR_FACTORY concode_elem_sep boolean useWriteReplace concode_elem_sep DefaultConfigurator INSTANCE concode_elem_sep Stri... | Set < String > function ( ) { return bindingNames ; } |
2,003 | get the md5 setting . true if the tool is to use md5 for post operations . concode_field_sep String password concode_elem_sep String formatNamespace concode_elem_sep Logger log concode_elem_sep boolean md5 concode_elem_sep String TYPE_MULTI_POST concode_elem_sep boolean checksumError concode_elem_sep String username co... | boolean function ( ) { return md5 ; } |
2,004 | muestra un usuario existente en el sistema concode_field_sep IFachadaUsuario fachada concode_field_sep TUsuario crearUsuario concode_elem_sep TUsuario modificarUsuario concode_elem_sep ArrayList<TUsuario> listarUsuarios concode_elem_sep boolean login concode_elem_sep String borrarUsuario | TUsuario function ( String arg0 ) { return fachada . verUsuario ( arg0 ) ; } |
2,005 | specifies that this statement will be closed when all itsdependent result sets are closed . if execution of the statement does not produce any result sets , this method has no effect . note : multiple calls to closeoncompletion donot toggle the effect on this statement . however , a call to closeoncompletion does effec... | void function ( ) { checkClosed ( ) ; } |
2,006 | sets the parent id of this n a v i g a t i o n. concode_field_sep NAVIGATION _navigation concode_field_sep void setName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_ele... | void function ( long arg0 ) { _navigation . setParentId ( arg0 ) ; } |
2,007 | getdate concode_field_sep String m_title concode_elem_sep long serialVersionUID concode_elem_sep String m_reportId concode_elem_sep Date m_date concode_elem_sep String m_location concode_elem_sep Integer m_id concode_field_sep String getLocation concode_elem_sep String getReportId concode_elem_sep String getTitle conco... | Date function ( ) { return m_date ; } |
2,008 | sets the jmsreplyto on the message . concode_field_sep PlaceHolder placeHolder concode_field_sep Object getProperty concode_elem_sep void setCorrelationId concode_elem_sep boolean isQueuePrefix concode_elem_sep String normalizeDestinationName concode_elem_sep String normalizeDestinationName concode_elem_sep Destination... | void function ( Message arg0 , Destination arg1 ) { try { arg0 . setJMSReplyTo ( arg1 ) ; } catch ( Exception loc0 ) { } } |
2,009 | get custom serializer concode_field_sep java.lang.String instancia concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String sistemaOriginario concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String login concode_ele... | 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,010 | two objects that are equal are required to return the same hashcode . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testSerialization concode_elem_sep void testEquals | void function ( ) { DefaultPolarItemRenderer loc0 = new DefaultPolarItemRenderer ( ) ; DefaultPolarItemRenderer loc1 = new DefaultPolarItemRenderer ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; } |
2,011 | retrieves the frame id of the captured data . concode_field_sep byte[] mData concode_elem_sep long mTimestamp concode_elem_sep int mIndex concode_elem_sep int mFrameId concode_elem_sep int mErrorStatus concode_field_sep int getIndex concode_elem_sep long getTimestamp concode_elem_sep String toString concode_elem_sep by... | int function ( ) { return mFrameId ; } |
2,012 | produce a jsonarray of jsonobjects from a comma delimited text string using a supplied jsonarray as the source of element names . concode_field_sep PlaceHolder placeHolder concode_field_sep String getValue concode_elem_sep JSONObject rowToJSONObject concode_elem_sep String rowToString concode_elem_sep String toString c... | JSONArray function ( JSONArray arg0 , JSONTokener arg1 ) { if ( arg0 == null || arg0 . length ( ) == 0 ) { return null ; } JSONArray loc0 = new JSONArray ( ) ; for ( ; ; ) { JSONObject loc1 = rowToJSONObject ( arg0 , arg1 ) ; if ( loc1 == null ) { break ; } loc0 . put ( loc1 ) ; } if ( loc0 . length ( ) == 0 ) { return... |
2,013 | box user name , must be provided concode_field_sep BoxApiName apiName concode_elem_sep String userPassword concode_elem_sep String clientId concode_elem_sep boolean revokeOnShutdown concode_elem_sep Map<String,Object> httpParams concode_elem_sep IAuthSecureStorage authSecureStorage concode_elem_sep int loginTimeout con... | void function ( String arg0 ) { this . userName = arg0 ; } |
2,014 | gets the value of the node 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 node property . for example , to add a new item , do as follo... | List < Node > function ( ) { if ( node == null ) { node = new ArrayList < Node > ( ) ; } return this . node ; } |
2,015 | returns the previous path element . concode_field_sep E prevEdge concode_elem_sep V vertex concode_elem_sep int nHops concode_elem_sep AbstractPathElement<V,E> prevPathElement concode_field_sep int getHopCount concode_elem_sep E getPrevEdge concode_elem_sep List<E> createEdgeListPath concode_elem_sep V getVertex | AbstractPathElement < V , E > function ( ) { return this . prevPathElement ; } |
2,016 | the hash code is based on the object 's value . concode_field_sep Comparator CASE_INSENSITIVE_ORDER concode_elem_sep long serialVersionUID concode_elem_sep String label concode_elem_sep String value concode_field_sep String getValue concode_elem_sep int compare concode_elem_sep String getLabel concode_elem_sep void set... | int function ( ) { return ( this . getValue ( ) == null ) ? 17 : this . getValue ( ) . hashCode ( ) ; } |
2,017 | removes a child node from this one . concode_field_sep FunctionNode parent concode_elem_sep Function function concode_elem_sep int bracketDepth concode_field_sep void add concode_elem_sep FunctionNode getParent concode_elem_sep Function getFunction concode_elem_sep int getBracketDepth concode_elem_sep int comparePreced... | void function ( FunctionNode arg0 ) { if ( getFunction ( ) . getFirstChild ( ) == arg0 . getFunction ( ) ) getFunction ( ) . setFirstChild ( null ) ; else if ( getFunction ( ) . getSecondChild ( ) == arg0 . getFunction ( ) ) getFunction ( ) . setSecondChild ( null ) ; else throw new RuntimeException ( "srini_string" + ... |
2,018 | auto generated setter method concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.DescribeVpcsResponseType localDescribeVpcsResponse concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_sep void writeQName concode_... | void function ( com . amazon . ec2 . DescribeVpcsResponseType arg0 ) { this . localDescribeVpcsResponse = arg0 ; } |
2,019 | returns the authenticating user 's retweet 's id of this tweet , or -1 l when the tweet was created before this feature was enabled . concode_field_sep HttpResponse res concode_elem_sep ObjectFactory factory concode_elem_sep Status target concode_field_sep String[] getWithheldInCountries concode_elem_sep User getUser c... | long function ( ) { return getTarget ( ) . getCurrentUserRetweetId ( ) ; } |
2,020 | resolves the template to the string value concode_field_sep String template concode_elem_sep Map<String,Expression> entities concode_elem_sep boolean complex concode_elem_sep String text concode_field_sep String getSubstitution concode_elem_sep String getTemplate concode_elem_sep String resolveTemplate concode_elem_sep... | String function ( ) { return resolveTemplate ( true ) ; } |
2,021 | sets the password . concode_field_sep String password concode_elem_sep int localServerPort concode_elem_sep JacksonJsonProvider jacksonJsonProvider concode_elem_sep String user concode_field_sep String createRestServiceUrl concode_elem_sep T build concode_elem_sep T build concode_elem_sep T build concode_elem_sep void ... | void function ( String arg0 ) { this . password = arg0 ; } |
2,022 | returns the company id of this sync device . concode_field_sep SyncDevice _syncDevice concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setBuildNumber concode_elem_sep boolean isEscapedModel concode_e... | long function ( ) { return _syncDevice . getCompanyId ( ) ; } |
2,023 | todo concode_field_sep long st_ro_evict concode_elem_sep long st_alloc_buckets concode_elem_sep long st_cache_miss concode_elem_sep int st_page_dirty concode_elem_sep long st_page_trickle concode_elem_sep int st_pages concode_elem_sep long st_hash_max_nowait concode_elem_sep long st_io_wait concode_elem_sep long st_syn... | long function ( ) { return st_cache_miss ; } |
2,024 | gets the decimalstyle . the decimalstyle controls the localization of numeric output . concode_field_sep DateTimeFormatter formatter concode_elem_sep int optional concode_elem_sep TemporalAccessor temporal concode_field_sep R getValue concode_elem_sep Long getValue concode_elem_sep void endOptional concode_elem_sep Tem... | DecimalStyle function ( ) { return formatter . getDecimalStyle ( ) ; } |
2,025 | suspend a user . concode_field_sep PropertyRepository propertyRepo concode_elem_sep UserRepository userRepo concode_elem_sep RoleRepository roleRepo concode_elem_sep LandlordRepository landlordRepo concode_elem_sep VerificationTokenRepository tokenRepo concode_elem_sep MessageRepository messageRepo concode_elem_sep Sea... | String function ( @ PathVariable Integer arg0 ) { User loc0 = userRepo . findById ( arg0 ) ; if ( loc0 != null ) { loc0 . setSuspended ( true ) ; userRepo . save ( loc0 ) ; return "srini_string" ; } return "srini_string" ; } |
2,026 | indicates if the form is an advanced form . concode_field_sep String iconID concode_elem_sep ClassLoader formClassLoader concode_elem_sep boolean isAdvanced concode_elem_sep String titleID concode_elem_sep ResourceManagementService resources concode_elem_sep int index concode_elem_sep String formClassName concode_field... | boolean function ( ) { return isAdvanced ; } |
2,027 | the number of simplices that have been interned . concode_field_sep SimplexTable parent concode_elem_sep int entry_limit concode_elem_sep int mask concode_elem_sep int start_size concode_elem_sep Simplex[] vec concode_elem_sep int current_count concode_elem_sep double LOAD_FACTOR concode_elem_sep int size concode_elem_... | int function ( ) { return size ; } |
2,028 | gets the value of the wta property . concode_field_sep String tpl concode_elem_sep Boolean can concode_elem_sep String ptd concode_elem_sep String act concode_elem_sep String wta concode_elem_sep String wtd concode_elem_sep String planAct concode_elem_sep Short rdelay concode_elem_sep String pta concode_elem_sep String... | String function ( ) { return wta ; } |
2,029 | convert a string to boolean value concode_field_sep String ANDROID_TIMEFORMAT_WO_MS concode_elem_sep SimpleDateFormat datetimeFormatter concode_elem_sep String DATETIMEFORMAT concode_elem_sep DBXDefaultFormatter instance concode_elem_sep String TIMEFORMAT_MS concode_elem_sep String TIMEFORMAT_WO_MS concode_elem_sep int... | boolean function ( String arg0 ) { if ( arg0 . equalsIgnoreCase ( "srini_string" ) ) return true ; if ( arg0 . equalsIgnoreCase ( "srini_string" ) ) return false ; throw new DBXException ( "srini_string" + arg0 + "srini_string" ) ; } |
2,030 | gets the value of the holdingexternal property . concode_field_sep List<PhysicalLocationType> physicalLocation concode_elem_sep List<String> shelfLocator concode_elem_sep HoldingSimpleType holdingSimple concode_elem_sep List<UrlType> url concode_elem_sep ExtensionType holdingExternal concode_field_sep List<UrlType> get... | ExtensionType function ( ) { return holdingExternal ; } |
2,031 | a convenience method . creates an empty parse instance , which returns this status . concode_field_sep short FAILED_MISSING_CONTENT concode_elem_sep String[] args concode_elem_sep byte NOTPARSED concode_elem_sep byte SUCCESS concode_elem_sep short FAILED_INVALID_FORMAT concode_elem_sep byte majorCode concode_elem_sep P... | Parse function ( Configuration arg0 ) { return new EmptyParseImpl ( this , arg0 ) ; } |
2,032 | this method is used to unbind notification sending modules . whenever a module is dynamically stops , this method will unregister them . concode_field_sep NotificationSender notificationSender concode_elem_sep List<NotificationSendingModule> notificationSendingModules concode_elem_sep Log log concode_elem_sep int threa... | void function ( NotificationSendingModule arg0 ) { if ( log . isDebugEnabled ( ) ) { log . debug ( "srini_string" + arg0 . getModuleName ( ) ) ; } notificationSendingModules . remove ( arg0 ) ; } |
2,033 | 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,034 | this method returns a related dictionary word to a given transaction . concode_field_sep double total_spendings concode_elem_sep Date first_date concode_elem_sep Date last_date concode_field_sep Map<String,Double> getTransactionsAmountMap concode_elem_sep int getDateDiff concode_elem_sep Map<String,Double> sortMapByVal... | String function ( String arg0 , List < String > arg1 ) { for ( String loc0 : arg1 ) { if ( arg0 . contains ( loc0 ) ) return loc0 ; } return null ; } |
2,035 | returns the pcm encoding . concode_field_sep int numChannels concode_elem_sep int bitsPerSample concode_elem_sep int sampleRateHz concode_elem_sep long dataSize concode_elem_sep long dataStartPosition concode_elem_sep int encoding concode_elem_sep int averageBytesPerSecond concode_elem_sep int blockAlignment concode_fi... | int function ( ) { return encoding ; } |
2,036 | returns the workflow description . concode_field_sep long updatedTime concode_elem_sep String workflowReference concode_elem_sep int tenantId concode_elem_sep long createdTime concode_elem_sep String workflowType concode_elem_sep String callbackUrl concode_elem_sep String externalWorkflowReference concode_elem_sep Stri... | String function ( ) { return workflowDescription ; } |
2,037 | releases a connection . connection pools will want to put the connection back to the pool list , while non-pooled implementations should call close directly in the connection object . concode_field_sep DBConnection instance concode_elem_sep Logger LOGGER concode_elem_sep boolean databaseUp concode_field_sep void init c... | void function ( final Connection arg0 ) { if ( arg0 != null ) { try { arg0 . close ( ) ; } catch ( SQLException loc0 ) { LOGGER . error ( loc0 . getMessage ( ) , loc0 ) ; throw new DatabaseException ( loc0 ) ; } } } |
2,038 | adds the specified page to selected page cache . no checking is done to make sure of selected text . the caches is used as an optimization to make sure selected text can be cleared quickly . concode_field_sep ArrayList<WeakReference<AbstractPageViewComponent>> selectedPageText concode_elem_sep float oldUserZoom concode... | void function ( AbstractPageViewComponent arg0 ) { if ( selectedPageText == null ) { selectedPageText = new ArrayList < WeakReference < AbstractPageViewComponent >> ( ) ; } selectedPageText . add ( new WeakReference < AbstractPageViewComponent > ( arg0 ) ) ; } |
2,039 | decodes zero-padded positive float value from the string representation concode_field_sep String dateFormat concode_field_sep int decodeRealNumberRangeInt concode_elem_sep String quoteValues concode_elem_sep long decodeZeroPaddingLong concode_elem_sep Date decodeDate concode_elem_sep String encodeZeroPadding concode_el... | float function ( String arg0 ) { return Float . valueOf ( arg0 ) . floatValue ( ) ; } |
2,040 | submits the supplied renderable instance to the renderhub for server-initiated render . concode_field_sep int MAX concode_elem_sep Log log concode_elem_sep Map groupMap concode_elem_sep int ON_DEMAND concode_elem_sep int INTERVAL concode_elem_sep int MIN concode_elem_sep int DELAY concode_elem_sep RenderHub renderHub c... | void function ( Renderable arg0 ) { renderHub . requestRender ( arg0 ) ; } |
2,041 | returns the error sql state sting given the error code . this method is be used when throwing exception based on other exceptions . concode_field_sep String MESSAGE_TAG concode_elem_sep int SQL_STATE_DIGITS concode_elem_sep int ERROR_CODE_BASE concode_elem_sep int bundleHandle concode_elem_sep String errPropsName conco... | String function ( final int arg0 ) { return getMessage ( arg0 , 0 , null ) . substring ( 0 , SQL_STATE_DIGITS ) ; } |
2,042 | returns the response builder class name concode_field_sep PlaceHolder placeHolder concode_field_sep OAuthServerConfiguration getOAuthServerConfiguration concode_elem_sep String getAccessTokenValidator concode_elem_sep String getHostName concode_elem_sep String getLoginPageURL concode_elem_sep String getRealmInfo concod... | String function ( ) { return getOAuthServerConfiguration ( ) . getOpenIDConnectUserInfoEndpointResponseBuilder ( ) ; } |
2,043 | return value for system property name or defaultvalue if the property does not exist or a security manager denies access to it concode_field_sep Logger logger concode_field_sep int intProperty concode_elem_sep boolean booleanProperty concode_elem_sep boolean booleanProperty concode_elem_sep double sysPropertyDouble con... | String function ( String arg0 , String arg1 ) { try { return System . getProperty ( arg0 , arg1 ) ; } catch ( SecurityException loc0 ) { logger . log ( Level . FINE , "srini_string" , loc0 ) ; } return arg1 ; } |
2,044 | adds a style . concode_field_sep String namePrefix concode_elem_sep List<StyleEntry> styleList concode_elem_sep int MAX_TYPES concode_elem_sep int[] lastIndex concode_elem_sep String[] styleNamePrefix concode_elem_sep Map<StyleEntry,String> styleToName concode_field_sep Collection<StyleEntry> getStyles concode_elem_sep... | String function ( StyleEntry arg0 ) { return addStyle ( null , arg0 ) ; } |
2,045 | get type concode_field_sep Integer code concode_elem_sep String type concode_elem_sep String message concode_field_sep String toIndentedString concode_elem_sep ModelApiResponse code concode_elem_sep int hashCode concode_elem_sep void setCode concode_elem_sep boolean equals concode_elem_sep String getMessage concode_ele... | String function ( ) { return type ; } |
2,046 | perform month arithmetic to millis value using local time zone . concode_field_sep int seconds concode_elem_sep int nanos concode_elem_sep Calendar calLocal concode_elem_sep Calendar calUtc concode_elem_sep NanosResult nanosResult concode_field_sep void addNanos concode_elem_sep long addMonthsToMillisUtc concode_elem_s... | long function ( long arg0 , int arg1 ) { calLocal . setTimeInMillis ( arg0 ) ; calLocal . add ( Calendar . MONTH , arg1 ) ; return calLocal . getTimeInMillis ( ) ; } |
2,047 | visits a signature corresponding to an array type . concode_field_sep char EXTENDS concode_elem_sep char SUPER concode_elem_sep int api concode_elem_sep char INSTANCEOF concode_field_sep void visitEnd concode_elem_sep SignatureVisitor visitInterfaceBound concode_elem_sep void visitTypeArgument concode_elem_sep Signatur... | SignatureVisitor function ( ) { return this ; } |
2,048 | returns whether the property name and value constitute a valid https application property . the property is valid if it is a valid application property and its name begins with ` iothub-app - ' . concode_field_sep String HTTPS_SINGLE_MESSAGE_CONTENT_TYPE concode_elem_sep boolean base64Encoded concode_elem_sep byte[] bo... | boolean function ( String arg0 , String arg1 ) { String loc0 = arg0 . toLowerCase ( ) ; if ( MessageProperty . isValidAppProperty ( arg0 , arg1 ) && loc0 . startsWith ( HTTPS_APP_PROPERTY_PREFIX ) ) { return true ; } return false ; } |
2,049 | default : false concode_field_sep boolean mDisableExtensionDrawTexture concode_elem_sep boolean mDisableExtensionVertexBufferObjects concode_field_sep RenderOptions disableExtensionDrawTexture concode_elem_sep RenderOptions setDisableExtensionDrawTexture concode_elem_sep RenderOptions setDisableExtensionVertexBufferObj... | boolean function ( ) { return this . mDisableExtensionDrawTexture ; } |
2,050 | ham in ra mot xau , null in ra xau rong concode_field_sep PlaceHolder placeHolder concode_field_sep String unAccent concode_elem_sep boolean notVaild concode_elem_sep String convertUTF8 concode_elem_sep String gioiTinh concode_elem_sep boolean notVaildNumber | String function ( String arg0 ) { if ( arg0 == null ) return "srini_string" ; return arg0 ; } |
2,051 | get the restart oob ack status concode_field_sep ECN[] VALUES concode_elem_sep long UNKOWN_SEQNO concode_elem_sep PipelineAckProto proto concode_elem_sep int OOB_END concode_elem_sep int OOB_START concode_elem_sep long[] OOB_TIMEOUT concode_elem_sep LongBitFormat BITS concode_elem_sep int NUM_OOB_TYPES concode_elem_sep... | Status function ( ) { return Status . OOB_RESTART ; } |
2,052 | an overloaded variant of #assertvalue string , matcher that alsoaccepts a target type for the resulting value . this can be useful for matching numbers reliably for example coercing an integer into a double . concode_field_sep String expression concode_elem_sep JsonPath jsonPath concode_field_sep Object assertExistsAnd... | void function ( String arg0 , Matcher < T > arg1 , Class < T > arg2 ) { T loc0 = ( T ) evaluateJsonPath ( arg0 , arg2 ) ; assertThat ( "srini_string" = "srini_string" , loc0 , arg1 ) ; } |
2,053 | gets the mail accounts associated with this settings bean . each account is represented by one tab . concode_field_sep MailManager mailManager concode_elem_sep int selectedIndex concode_elem_sep List oldAccounts concode_elem_sep List tabList concode_elem_sep WebmailMediator mediator concode_field_sep void cancel concod... | List function ( ) { return tabList ; } |
2,054 | returns the byte at pos . concode_field_sep char[] HEX_DIGITS concode_elem_sep ByteString EMPTY concode_elem_sep byte[] data concode_elem_sep int hashCode concode_elem_sep String utf8 concode_elem_sep long serialVersionUID concode_field_sep ByteString encodeUtf8 concode_elem_sep ByteString read concode_elem_sep void wr... | byte function ( int arg0 ) { return data [ arg0 ] ; } |
2,055 | given a go : id such as go :0001234 get the corresponding english name concode_field_sep LinkedList<Term> termList concode_elem_sep String date concode_elem_sep HashMap<TermID,Term> termMap concode_elem_sep String formatVersion concode_field_sep String getFormatVersion concode_elem_sep Iterator<Term> iterator concode_e... | String function ( String arg0 ) { Term loc0 = get ( arg0 ) ; if ( loc0 == null ) { return null ; } else { return loc0 . getName ( ) ; } } |
2,056 | sets the d d m structure id of this document library file entry metadata . concode_field_sep DLFileEntryMetadata _dlFileEntryMetadata concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAtt... | void function ( long arg0 ) { _dlFileEntryMetadata . setDDMStructureId ( arg0 ) ; } |
2,057 | checks if all given transitions have at least one action . returns false for empty lists . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean hasEntryAction concode_elem_sep boolean containsOnlyEventsOfType concode_elem_sep boolean oneIncomingTransitionEntersCompositeWithEntryActions concode_elem_sep b... | boolean function ( EList < Transition > arg0 ) { if ( arg0 . isEmpty ( ) ) return false ; for ( Transition loc0 : arg0 ) { if ( ! hasAtLeastOneAction ( loc0 ) ) { return false ; } } return true ; } |
2,058 | returns the callnumber that is indexed . concode_field_sep Owner owner concode_elem_sep String callNumber concode_elem_sep int locationId concode_elem_sep LocationType locationType concode_elem_sep String collectionCode concode_elem_sep int id concode_elem_sep String locationCode concode_field_sep int getLocationId con... | String function ( ) { return getCallNumber ( ) ; } |
2,059 | gets owning institution . concode_field_sep String cgdChangeLog concode_elem_sep String customerCode concode_elem_sep String availability concode_elem_sep Date itemLastUpdatedDate concode_elem_sep String itemCreatedBy concode_elem_sep String itemCatalogingStatus concode_elem_sep String root concode_elem_sep String id c... | String function ( ) { return owningInstitution ; } |
2,060 | test . concode_field_sep PlaceHolder placeHolder concode_field_sep void whenIteratorReturnEvenNumbers | void function ( ) { IteratorEvenNumbers loc0 = new IteratorEvenNumbers ( new int [ ] { 1 , 3 , 9 , 5 , 7 , 11 , 15 } ) ; boolean loc1 = loc0 . hasNext ( ) ; assertThat ( loc1 , is ( false ) ) ; } |
2,061 | the clock sequence value of the version 1 , variant 2 uuid as per rfc 4122 . concode_field_sep long node concode_elem_sep long serialVersionUID concode_elem_sep int variant concode_elem_sep SecureRandom rng concode_elem_sep long leastSigBits concode_elem_sep int version concode_elem_sep int clockSequence concode_elem_s... | int function ( ) { if ( version != 1 ) { throw new UnsupportedOperationException ( ) ; } return clockSequence ; } |
2,062 | adds view to cache . determines view type item view or empty one by index . concode_field_sep WheelView wheel concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep View getItem concode_elem_sep List<View> addView ... | void function ( View arg0 , int arg1 ) { int loc0 = wheel . getViewAdapter ( ) . getItemsCount ( ) ; if ( ( arg1 < 0 || arg1 >= loc0 ) && ! wheel . isCyclic ( ) ) { emptyItems = addView ( arg0 , emptyItems ) ; } else { while ( arg1 < 0 ) { arg1 = loc0 + arg1 ; } arg1 %= loc0 ; items = addView ( arg0 , items ) ; } } |
2,063 | checks whether there are some target states concode_field_sep ArrayList<LinkedList<Function>> transitionProbs concode_elem_sep ArrayList<LinkedList<Integer>> transitionTargets concode_elem_sep ArrayList<LinkedList<Integer>> incoming concode_elem_sep Function[] times concode_elem_sep int numStates concode_elem_sep boole... | boolean function ( ) { return targetStates . cardinality ( ) != 0 ; } |
2,064 | returns a list of task objects . does not update the task list before returning . concode_field_sep String str concode_elem_sep Logger LOGGER concode_elem_sep ArrayList<Task> tasks concode_field_sep ArrayList<String> tokenizeTaskEntry concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void u... | ArrayList < Task > function ( ) { return getTasks ( false ) ; } |
2,065 | returns always the error severity . concode_field_sep IStatus OK_STATUS concode_elem_sep String fStatusMessage concode_elem_sep int fSeverity concode_field_sep boolean isWarning concode_elem_sep int getSeverity concode_elem_sep Throwable getException concode_elem_sep String getMessage concode_elem_sep boolean isMultiSt... | int function ( ) { return fSeverity ; } |
2,066 | it removes the specified item from the specified itemset in the sequence concode_field_sep int numberOfItems concode_elem_sep List<Itemset> itemsets concode_elem_sep int id concode_field_sep void addItem concode_elem_sep void addItem concode_elem_sep void addItem concode_elem_sep Sequence cloneSequenceMinusItems concod... | Item function ( int arg0 , int arg1 ) { numberOfItems -- ; return itemsets . get ( arg1 ) . removeItem ( arg1 ) ; } |
2,067 | factory method for creating a bitvector instance wrapping the given byte data . concode_field_sep int[] ODD_OFFSETS concode_elem_sep int m_Size concode_elem_sep byte[] m_Data concode_elem_sep boolean m_MSBAccess concode_elem_sep int[] STRAIGHT_OFFSETS concode_field_sep void setBytes concode_elem_sep void setBytes conco... | BitVector function ( byte [ ] arg0 , int arg1 ) { BitVector loc0 = new BitVector ( arg0 . length * 8 ) ; loc0 . setBytes ( arg0 ) ; loc0 . m_Size = arg1 ; return loc0 ; } |
2,068 | adds the specified layer above the currently uppermost layer . concode_field_sep LinkedList<Layer> stack concode_field_sep void receiveEmptyMessage concode_elem_sep void setLowerLayer concode_elem_sep void receiveResponse concode_elem_sep void setUpperLayer concode_elem_sep void receiveRequest concode_elem_sep void sen... | BottomUpBuilder function ( Layer arg0 ) { stack . getLast ( ) . setUpperLayer ( arg0 ) ; return this ; } |
2,069 | this function is to selects on recource association option concode_field_sep WebElement cancelButton concode_elem_sep WebElement leftButton concode_elem_sep WebElement txt_count concode_elem_sep WebElement iconButton concode_elem_sep WebElement nameTextField concode_elem_sep WebElement descriptionTextField concode_elem... | ResourceAssociationsPage function ( ) { ExplicitWait . clickWhenReady ( By . linkText ( ResourceInfoMap . RESOURCES_ASSOCIATIONS_LINK ) , 5 ) ; return new ResourceAssociationsPage ( ) ; } |
2,070 | access labels -- actually always a singleton here . concode_field_sep PlaceHolder placeHolder concode_field_sep int start concode_elem_sep Label label concode_elem_sep boolean crosses concode_elem_sep boolean crosses concode_elem_sep double score concode_elem_sep boolean contains concode_elem_sep int size concode_elem_... | Collection < Label > function ( ) { return Collections . singletonList ( label ( ) ) ; } |
2,071 | marks the fragment state as unsaved . this allows for `` state loss '' detection . concode_field_sep FragmentHostCallback<?> mHost concode_field_sep LoaderManager getSupportLoaderManager concode_elem_sep void reportLoaderStart concode_elem_sep void dispatchOptionsMenuClosed concode_elem_sep boolean dispatchPrepareOptio... | void function ( ) { mHost . mFragmentManager . noteStateNotSaved ( ) ; } |
2,072 | indicates if the given type is a date type . concode_field_sep Color COLOR_HIGHLIGHT concode_elem_sep String PREFIX concode_elem_sep String EVENTS concode_elem_sep String DEBUG concode_elem_sep String UNDEFINED concode_elem_sep String TRACING concode_field_sep boolean isNumberType concode_elem_sep boolean isConversionT... | boolean function ( String arg0 ) { IDataTypeManagerService loc0 = ModelerCore . getTeiidDataTypeManagerService ( ) ; return ( arg0 == null ) ? false : arg0 . equals ( loc0 . getDefaultDataType ( DataTypeName . DATE ) ) ; } |
2,073 | helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g... | void function ( ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK ) ) ; } |
2,074 | sets the value of the contentdescriptor property . concode_field_sep List<Node> node concode_elem_sep boolean expanded concode_elem_sep boolean link concode_elem_sep String id concode_elem_sep String label concode_elem_sep boolean leaf concode_elem_sep ContentDescriptor contentDescriptor concode_field_sep boolean isExp... | void function ( ContentDescriptor arg0 ) { this . contentDescriptor = arg0 ; } |
2,075 | setter injection for urlbuildingstrategy incase if you want to use a different url building logic . concode_field_sep URLBuildingStrategy urlBuildingStrategy concode_elem_sep HTTPGetMethod httpRequest concode_field_sep void trackSynchronously | void function ( URLBuildingStrategy arg0 ) { this . urlBuildingStrategy = arg0 ; } |
2,076 | returns true if jmx support is enabled . this option can be configured via the admin console or by setting the following system property : xmpp.jmx.enabled = true default : false concode_field_sep ConnectorServer jmxServer concode_elem_sep String XMPP_JMX_PORT concode_elem_sep int DEFAULT_PORT concode_elem_sep String X... | boolean function ( ) { return JiveGlobals . getBooleanProperty ( XMPP_JMX_ENABLED , false ) ; } |
2,077 | the type of the document . concode_field_sep XContentBuilderString FIELDS concode_elem_sep Map<String,Object> sourceAsMap concode_elem_sep XContentBuilderString EXISTS concode_elem_sep XContentBuilderString _TYPE concode_elem_sep String index concode_elem_sep byte[] sourceAsBytes concode_elem_sep BytesHolder source con... | String function ( ) { return type ; } |
2,078 | gets the securityhandler associated with this security manager . concode_field_sep Logger logger concode_elem_sep EncryptionDictionary encryptDictionary concode_elem_sep SecurityHandler securityHandler concode_elem_sep boolean foundJCE concode_field_sep byte[] getEncryptionKey concode_elem_sep boolean isAuthorized conc... | SecurityHandler function ( ) { return securityHandler ; } |
2,079 | information about the volume attachment . concode_field_sep VolumeAttachment attachment concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep AttachVolumeResult clone concode_elem_sep void setAttachment concode_elem_sep String toString concode_elem_sep AttachVolumeResult withAttachment | VolumeAttachment function ( ) { return attachment ; } |
2,080 | sets the value of the category property . concode_field_sep String code concode_elem_sep Description description concode_elem_sep Langs langs concode_elem_sep List<Constraint> constraint concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep Lang lang concode_elem_sep String category concode_e... | void function ( String arg0 ) { this . category = arg0 ; } |
2,081 | given an index in the range 0 ... size -1 , sets a new value for the indexth key-value mapping that this sparseintintarray stores . concode_field_sep int[] mKeys concode_elem_sep int DELETED concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep int[] mValues concode_field_sep int keyAt concode_e... | void function ( int arg0 , int arg1 ) { if ( mGarbage ) { gc ( ) ; } mValues [ arg0 ] = arg1 ; } |
2,082 | access the display title for the item . concode_field_sep PlaceHolder placeHolder concode_field_sep String getForm concode_elem_sep boolean isEmpty concode_elem_sep MenuItem getItem concode_elem_sep String getAction concode_elem_sep String getAccessibilityLabel concode_elem_sep String getIcon concode_elem_sep boolean g... | String function ( ) { return "srini_string" ; } |
2,083 | a value that indicates the starting point for the next set of response records in a subsequent request . if a value is returned in a response , you can retrieve the next set of records by providing this returned marker value in the marker parameter and retrying the command . if the marker field is empty , all response ... | DescribeReservedNodesResult function ( String arg0 ) { this . marker = arg0 ; return this ; } |
2,084 | this will print out a message telling how to use this example . concode_field_sep PlaceHolder placeHolder concode_field_sep void main | void function ( ) { System . err . println ( "srini_string" + PrintURLs . class . getName ( ) + "srini_string" ) ; } |
2,085 | converts a tx status index to a string concode_field_sep String[] TxStatusStrings concode_field_sep placeholderType placeHolder | String function ( int arg0 ) { if ( arg0 >= Status . STATUS_ACTIVE && arg0 <= Status . STATUS_ROLLING_BACK ) { return TxStatusStrings [ arg0 ] ; } else { return "srini_string" + arg0 + "srini_string" ; } } |
2,086 | gets the value of the show property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep MLGeodeticCRSType mlGeodeticCRS 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 type concode_elem... | String function ( ) { return show ; } |
2,087 | method to verify that vibrate permission has been granted . allows users of the library to disabled vibrate support if desired . concode_field_sep int VIBRATE_LENGTH_MS concode_elem_sep Vibrator mVibrator concode_elem_sep boolean mIsGloballyEnabled concode_elem_sep ContentObserver mContentObserver concode_elem_sep int ... | boolean function ( Context arg0 ) { PackageManager loc0 = arg0 . getPackageManager ( ) ; int loc1 = loc0 . checkPermission ( android . Manifest . permission . VIBRATE , arg0 . getPackageName ( ) ) ; return loc1 == PackageManager . PERMISSION_GRANTED ; } |
2,088 | the name of the snapshot copy grant . concode_field_sep String destinationRegion concode_elem_sep String snapshotCopyGrantName concode_elem_sep Long retentionPeriod concode_field_sep String getDestinationRegion concode_elem_sep void setDestinationRegion concode_elem_sep ClusterSnapshotCopyStatus withDestinationRegion c... | void function ( String arg0 ) { this . snapshotCopyGrantName = arg0 ; } |
2,089 | set the zone type concode_field_sep boolean[] partitions concode_elem_sep boolean alwaysInAlarm concode_elem_sep String sensorType concode_elem_sep String name concode_elem_sep String[] zoneTypes concode_elem_sep String[] zoneChimes concode_elem_sep String type concode_elem_sep String chime concode_field_sep void setNa... | void function ( byte arg0 ) { this . type = ( ( arg0 & 0x000000FF ) < zoneTypes . length ) ? zoneTypes [ arg0 & 0x000000FF ] : null ; this . alwaysInAlarm = ( ( arg0 == 2 ) || ( arg0 == 3 ) || ( arg0 == 9 ) || ( arg0 == 10 ) || ( arg0 == 11 ) || ( arg0 == 14 ) ) ; } |
2,090 | test whether this set has exactly the same members as another set concode_field_sep int MAX_SIZE concode_elem_sep int _size concode_elem_sep int ndv concode_elem_sep int _shift concode_elem_sep int[] _values concode_elem_sep int _mask concode_elem_sep int NBIT concode_elem_sep int _nmax concode_elem_sep int _nhi concod... | boolean function ( Object arg0 ) { if ( arg0 instanceof IntSet ) { IntHashSet loc0 = ( IntHashSet ) arg0 ; return ( size ( ) == loc0 . size ( ) && containsAll ( loc0 ) ) ; } else { return false ; } } |
2,091 | sets the value of the used property . concode_field_sep BigDecimal allowed concode_elem_sep String name concode_elem_sep BigDecimal limit concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal used concode_elem_sep String units concode_elem_sep BigDecimal included concode_elem_sep BigDecimal remaining conco... | void function ( BigDecimal arg0 ) { this . used = arg0 ; } |
2,092 | returns the list of sub-fields if #getvalue is set to legacysqltypename #record . returns null otherwise . concode_field_sep String mode concode_elem_sep String name concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep Type type concode_elem_sep List<Field> fields concode_elem_sep... | List < Field > function ( ) { return fields ; } |
2,093 | original spec-file type : appbriefinfo concode_field_sep List<AppSteps> steps concode_elem_sep Map<String,Object> additionalProperties concode_elem_sep AppBriefInfo info concode_field_sep void setSteps concode_elem_sep AppBriefInfo getInfo concode_elem_sep List<AppSteps> getSteps concode_elem_sep String toString concod... | void function ( AppBriefInfo arg0 ) { this . info = arg0 ; } |
2,094 | sets a list of user ids suggested as request receivers concode_field_sep ActionType actionType concode_elem_sep String data concode_elem_sep ArrayList<String> suggestions concode_elem_sep String to concode_elem_sep Filters filters concode_elem_sep String message concode_elem_sep String title concode_elem_sep String obj... | Builder function ( ArrayList < String > arg0 ) { this . suggestions = arg0 ; return this ; } |
2,095 | gets the value of the keyboxidentifier property . concode_field_sep SignatureInfoCreationType signatureInfo concode_elem_sep List<DataObjectInfoType> dataObjectInfo concode_elem_sep String keyboxIdentifier concode_field_sep SignatureInfoCreationType getSignatureInfo concode_elem_sep List<DataObjectInfoType> getDataObje... | String function ( ) { return keyboxIdentifier ; } |
2,096 | creates a new directoryagentinfo from the given arguments . concode_field_sep ServiceType SERVICE_TYPE concode_elem_sep int bootTime concode_elem_sep String TCP_PORT_TAG concode_elem_sep Attributes attributes concode_elem_sep String language concode_elem_sep Scopes scopes concode_elem_sep String hostAddress concode_ele... | DirectoryAgentInfo function ( String arg0 , Scopes arg1 , Attributes arg2 , String arg3 , int arg4 ) { return new DirectoryAgentInfo ( SERVICE_TYPE . asString ( ) + "srini_string" + arg0 , arg1 , arg2 , arg3 , arg4 ) ; } |
2,097 | return the appropriate implementation of the zlib compressor . concode_field_sep boolean nativeZlibLoaded concode_elem_sep Log LOG concode_field_sep Class<? extends Decompressor> getZlibDecompressorType concode_elem_sep void setCompressionStrategy concode_elem_sep Decompressor getZlibDecompressor concode_elem_sep Direc... | Compressor function ( Configuration arg0 ) { return ( isNativeZlibLoaded ( arg0 ) ) ? new ZlibCompressor ( arg0 ) : new BuiltInZlibDeflater ( ZlibFactory . getCompressionLevel ( arg0 ) . compressionLevel ( ) ) ; } |
2,098 | retrieves the canonical path for the given path , in a jdk 1.1 complaint way . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep Method deleteOnExitMethod concode_elem_sep Random random concode_elem_sep boolean fsIsIgnoreCase concode_field_sep IOException toIOException concode_elem_sep Method getDel... | String function ( String arg0 ) { return new File ( arg0 ) . getCanonicalPath ( ) ; } |
2,099 | method to move the user 's view to the bottom of the log concode_field_sep String color concode_elem_sep String DEFAULT_NICK concode_elem_sep String buttonImage concode_elem_sep Log log concode_elem_sep boolean minimized concode_elem_sep String autoLoad concode_elem_sep String MAXIMIZE_IMAGE concode_elem_sep Message[] ... | String function ( ) { position = bottom ( ) ; return ( "srini_string" ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.