idx int64 0 25k | question stringlengths 72 5.69k | target stringlengths 21 481 |
|---|---|---|
13,900 | returns the cache object or null if one does n't exist . concode_field_sep boolean needsCheckpoint concode_elem_sep Log log concode_elem_sep SimpleLog appLog concode_elem_sep boolean logStatements concode_elem_sep LockFile lf concode_elem_sep boolean syncFile concode_field_sep void checkpoint concode_elem_sep int getLo... | DataFileCache function ( ) { if ( log == null ) { return null ; } else { return log . getCache ( ) ; } } |
13,901 | returns the top gutter black bar height in screen coordinates . concode_field_sep Vector3 tmp concode_elem_sep float worldWidth concode_elem_sep int screenWidth concode_elem_sep float worldHeight concode_elem_sep int screenHeight concode_elem_sep Camera camera concode_elem_sep int screenX concode_elem_sep int screenY c... | int function ( ) { return Gdx . graphics . getHeight ( ) - ( screenY + screenHeight ) ; } |
13,902 | get the name of this field . concode_field_sep String m_stringVal concode_elem_sep Closure m_closure concode_elem_sep String m_displayValue concode_elem_sep double m_leftMargin concode_elem_sep Optype m_optype concode_elem_sep String m_value concode_elem_sep double m_rightMargin concode_elem_sep String m_right concode_... | String function ( ) { return m_fieldName ; } |
13,903 | sets item barcodes . concode_field_sep String bibId concode_elem_sep List<String> itemBarcodes concode_field_sep String getBibId concode_elem_sep void setBibId concode_elem_sep List<String> getItemBarcodes | void function ( List < String > arg0 ) { this . itemBarcodes = arg0 ; } |
13,904 | sets the end point of the transition , a float between 0.0 and 1.0 . defaults to 1.0 . concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep... | void function ( float arg0 ) { this . to = arg0 ; ea . add ( "srini_string" , arg0 ) ; } |
13,905 | test that it is possible to set the panel 's chart to null . concode_field_sep List chartChangeEvents concode_field_sep void chartChanged concode_elem_sep void testGetListeners concode_elem_sep void test2502355_zoomOutBoth concode_elem_sep void test2502355_restoreAutoRangeBounds concode_elem_sep void test2502355_restor... | void function ( ) { JFreeChart loc0 = new JFreeChart ( new XYPlot ( ) ) ; ChartPanel loc1 = new ChartPanel ( loc0 ) ; loc1 . setChart ( null ) ; assertEquals ( null , loc1 . getChart ( ) ) ; } |
13,906 | return the object associated with this gdiobject . concode_field_sep int type concode_elem_sep Object obj concode_elem_sep int id concode_elem_sep boolean used concode_field_sep int getType concode_elem_sep void clear concode_elem_sep int getID concode_elem_sep void Setup concode_elem_sep boolean isUsed | Object function ( ) { return obj ; } |
13,907 | turn a bytearray into a printable form , representing each byte in hex . concode_field_sep Charset utf8Charset concode_field_sep byte[] encodeUTF8 concode_elem_sep StringBuffer appendEscapedLiteral concode_elem_sep StringBuffer appendEscapedIdentifier concode_elem_sep void doAppendEscapedLiteral concode_elem_sep int pa... | String function ( byte [ ] arg0 ) { StringBuilder loc0 = new StringBuilder ( arg0 . length * 2 ) ; for ( byte loc1 : arg0 ) { loc0 . append ( Integer . toHexString ( ( loc1 >> 4 ) & 15 ) ) ; loc0 . append ( Integer . toHexString ( loc1 & 15 ) ) ; } return loc0 . toString ( ) ; } |
13,908 | checks if a member with the same email address is already registered . this is the only way to easily capture the '' @uniqueconstraint columnnames = `` email '' '' constraint from the member class . concode_field_sep Logger log concode_elem_sep Validator validator concode_elem_sep MemberRegistration registration concod... | boolean function ( String arg0 ) { Member loc0 = null ; try { loc0 = repository . findByEmail ( arg0 ) ; } catch ( NoResultException loc1 ) { } return loc0 != null ; } |
13,909 | returns a jarfile for the jarurl passed to the constructor of this class . one should call verifyjar before calling getjarfile ; otherwise , null is returned . the caller of getjarfile should close the returned jarfile . concode_field_sep Vector verifiedSignerCache concode_elem_sep Validator validator concode_elem_sep ... | JarFile function ( ) { return jarFile ; } |
13,910 | debug log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void setLogLevel concode_elem_sep void setLogLevel concode_elem_sep void e conco... | void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . DEBUG >= LOGLEVEL ) Log . d ( arg0 , arg1 , arg2 ) ; } |
13,911 | reset the action to start from the beginning . concode_field_sep int outputLevel concode_elem_sep int MAX_OUTPUT_LEVEL concode_elem_sep boolean completed concode_elem_sep int MIN_OUTPUT_LEVEL concode_elem_sep long startTime concode_field_sep void setOutputLevel concode_elem_sep int getNewValue concode_elem_sep void inc... | void function ( ) { startTime = 0 ; completed = false ; } |
13,912 | given the absolute path of a class file , return the class name . concode_field_sep String CLASS_EXTENSION concode_field_sep String[] getClassPath concode_elem_sep void innerFindClassesInDirectory concode_elem_sep Set<Class<?>> findClasses concode_elem_sep Set<String> findClassesInDirectory concode_elem_sep Set<String>... | String function ( String arg0 ) { int loc0 = arg0 . length ( ) - CLASS_EXTENSION . length ( ) ; return arg0 . substring ( 0 , loc0 ) . replace ( '/' , '.' ) ; } |
13,913 | return a string representation of this treenode . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_elem_sep String findAttribute concode_elem_sep String getName... | String function ( ) { StringBuffer loc0 = new StringBuffer ( ) ; toString ( loc0 , 0 , this ) ; return ( loc0 . toString ( ) ) ; } |
13,914 | sets the value of the labelid property . concode_field_sep Long labelId concode_elem_sep Boolean isNegated concode_field_sep Boolean isIsNegated concode_elem_sep Long getLabelId concode_elem_sep void setIsNegated | void function ( Long arg0 ) { this . labelId = arg0 ; } |
13,915 | a resourcetagset containing tags associated with the specified resource . concode_field_sep ResourceTagSet resourceTagSet concode_field_sep ListTagsForResourceResult withResourceTagSet concode_elem_sep void setResourceTagSet concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ListTagsForResou... | ResourceTagSet function ( ) { return this . resourceTagSet ; } |
13,916 | pop the next recorded answer to the console . if recorded is not the type.input it will fail . concode_field_sep Queue<AssertConsole> queue concode_elem_sep String NEW_LINE concode_elem_sep String text concode_elem_sep Type type concode_field_sep AssertConsoleBuilder expectedErrorMessage concode_elem_sep AssertConsoleB... | String function ( ) { AssertConsole loc0 = queue . poll ( ) ; if ( loc0 == null ) { fail ( "srini_string" ) ; } if ( ! loc0 . type . equals ( Type . INPUT ) ) { fail ( "srini_string" ) ; } return loc0 . text ; } |
13,917 | return the kind of entry file or directory concode_field_sep long lastChangedRevision concode_elem_sep int size concode_elem_sep int all concode_elem_sep boolean hasProps concode_elem_sep String absPath concode_elem_sep long lastChanged concode_elem_sep long serialVersionUID concode_elem_sep int lastChangeRevision conc... | int function ( ) { return nodeKind ; } |
13,918 | add a new release at the end . concode_field_sep List<AbstractChangeLogEntry> m_aEntries concode_elem_sep String m_sOriginalVersion concode_elem_sep Version m_aVersion concode_elem_sep String m_sComponent concode_field_sep Version getVersion concode_elem_sep List<ChangeLogRelease> getAllReleases concode_elem_sep void a... | void function ( @ Nonnull final ChangeLogRelease arg0 ) { ValueEnforcer . notNull ( arg0 , "srini_string" ) ; m_aEntries . add ( arg0 ) ; } |
13,919 | sets the value of the val property . concode_field_sep CTFrameLayout frameLayout concode_elem_sep String val concode_elem_sep Object parent concode_elem_sep CTFramesetSplitbar framesetSplitbar concode_elem_sep CTFrameset.Sz sz concode_elem_sep List<Object> framesetOrFrame concode_field_sep List<Object> getFramesetOrFra... | void function ( String arg0 ) { this . val = arg0 ; } |
13,920 | reduces the size of the array to the specified size . if the array is already smaller than the specified size , no action is taken . concode_field_sep boolean ordered concode_elem_sep int size concode_elem_sep float[] items concode_field_sep void add concode_elem_sep void set concode_elem_sep void shrink concode_elem_s... | void function ( int arg0 ) { if ( size > arg0 ) size = arg0 ; } |
13,921 | setter for the field description . concode_field_sep String displayName concode_elem_sep String defaultValue concode_elem_sep Integer minLength concode_elem_sep String pattern concode_elem_sep String description concode_elem_sep ParamType type concode_elem_sep boolean required concode_elem_sep String example concode_el... | void function ( String arg0 ) { this . description = arg0 ; } |
13,922 | return the maximum value contained in a matrix . concode_field_sep PlaceHolder placeHolder concode_field_sep double rowAverage concode_elem_sep double maxDouble concode_elem_sep void rowInitNormal concode_elem_sep List<Double> rowDifference concode_elem_sep void columnInitNormal concode_elem_sep double rowScalarProduct... | int function ( Matrix < Integer > arg0 ) { int loc0 = Integer . MIN_VALUE ; for ( Object loc1 : arg0 . data ) loc0 = Math . loc0 ( loc0 , ( Integer ) loc1 ) ; return loc0 ; } |
13,923 | initialise the rsa engine . concode_field_sep boolean forEncryption concode_elem_sep RSAKeyParameters key concode_field_sep int getInputBlockSize concode_elem_sep BigInteger convertInput concode_elem_sep BigInteger processBlock concode_elem_sep byte[] convertOutput concode_elem_sep int getOutputBlockSize | void function ( boolean arg0 , CipherParameters arg1 ) { if ( arg1 instanceof ParametersWithRandom ) { ParametersWithRandom loc0 = ( ParametersWithRandom ) arg1 ; key = ( RSAKeyParameters ) loc0 . getParameters ( ) ; } else { key = ( RSAKeyParameters ) arg1 ; } this . forEncryption = arg0 ; } |
13,924 | ensures the navigator method returns the controller factory passed in to the constructor . concode_field_sep IControllerFactory mockControllerFactory concode_elem_sep ICreditsController creditsController concode_elem_sep INavigator mockNavigator concode_field_sep void testConstructorNavigatorNull concode_elem_sep void ... | void function ( ) { assertEquals ( mockControllerFactory , creditsController . controllerFactory ( ) ) ; } |
13,925 | gets the value of the bankaccount property . concode_field_sep BankAccountType bankAccount concode_elem_sep AddressType address concode_elem_sep long serialVersionUID concode_elem_sep PaymentHeaderType paymentInformation concode_elem_sep CardType card concode_field_sep void setBankAccount concode_elem_sep void setAddre... | BankAccountType function ( ) { return bankAccount ; } |
13,926 | returns the result of interpreting the object as an instance of 'em apping parameters ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep TracePackage modelPackage concode_elem_sep String copyright concode_field_sep T caseTrace concode_elem_sep T caseTraceRec... | T function ( EMappingParameters arg0 ) { return null ; } |
13,927 | gets trust store password . concode_field_sep char[] trustStorePwd concode_elem_sep String keyStoreType concode_elem_sep char[] keyStorePwd concode_elem_sep String trustStoreType concode_elem_sep String DFLT_SSL_PROTOCOL concode_elem_sep X509Certificate[] CERTS concode_elem_sep String DFLT_KEY_ALGORITHM concode_elem_se... | char [ ] function ( ) { return trustStorePwd ; } |
13,928 | decodes and returns the grabbed video frame . the methods/functions decode and return the just grabbed frame . if no frames has been grabbed camera has been disconnected , or there are no more frames in video file , the methods return false and the functions return null pointer . note : opencv 1.x functions cvretrievef... | boolean function ( Mat arg0 ) { boolean loc0 = n_retrieve ( nativeObj , arg0 . nativeObj ) ; return loc0 ; } |
13,929 | whether there is cached metadata in datasethandle . the current status of datasethandle will be processed , we won 's do the refresh to retrieve the metadata . if the cached metadata handle is null or metadata handle is empty , return false . concode_field_sep Logger logger concode_field_sep String encode concode_elem_... | boolean function ( DataSetHandle arg0 ) { CachedMetaDataHandle loc0 = arg0 . getCachedMetaDataHandle ( ) ; if ( loc0 == null ) return false ; else { Iterator loc1 = loc0 . getResultSet ( ) . iterator ( ) ; if ( loc1 . hasNext ( ) ) return true ; else return false ; } } |
13,930 | return type metadata object concode_field_sep java.lang.Integer startIndex concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize concode_elem_sep com.google.api.ads.dfp.a... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
13,931 | executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c... | boolean function ( String arg0 , String arg1 , CallbackContext arg2 ) { JSONArray loc0 = new JSONArray ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; } |
13,932 | sets the value of the givenname property . concode_field_sep String honorificSuffix concode_elem_sep String formatted concode_elem_sep String familyName concode_elem_sep String givenName concode_elem_sep String honorificPrefix concode_elem_sep String middleName concode_field_sep void setFormatted concode_elem_sep Strin... | void function ( String arg0 ) { this . givenName = arg0 ; } |
13,933 | returns the protoc version used for the build . concode_field_sep VersionInfo COMMON_VERSION_INFO concode_elem_sep Log LOG concode_elem_sep Properties info concode_field_sep String _getUrl concode_elem_sep String getVersion concode_elem_sep String _getVersion concode_elem_sep String getSrcChecksum concode_elem_sep Stri... | String function ( ) { return COMMON_VERSION_INFO . _getProtocVersion ( ) ; } |
13,934 | sets the value of the tubelines property . concode_field_sep Tubelines tubelines concode_elem_sep Map<QName,String> otherAttributes concode_elem_sep List<Object> any concode_elem_sep String version concode_field_sep String getVersion concode_elem_sep void setVersion concode_elem_sep Tubelines getTubelines concode_elem_... | void function ( Tubelines arg0 ) { this . tubelines = arg0 ; } |
13,935 | return the current connection state . concode_field_sep long BytesSent concode_elem_sep OutputStream outStream concode_elem_sep String TAG concode_elem_sep InputStream inStream concode_elem_sep String address concode_elem_sep int MESSAGE_TOAST concode_elem_sep byte[] dataBuffer concode_elem_sep boolean Connected concod... | int function ( ) { return mState ; } |
13,936 | test of setdate method , of class order . concode_field_sep String[] nodairy concode_elem_sep String[] nomeat concode_elem_sep Food bread concode_elem_sep Food vegidog concode_elem_sep Food steak concode_elem_sep String[] nogluten concode_elem_sep Food[] orderItems concode_elem_sep Order o concode_field_sep void testGe... | void function ( ) { System . out . println ( "srini_string" ) ; Date loc0 = new Date ( 1995 , 8 , 26 ) ; o . setDate ( loc0 ) ; assertEquals ( loc0 , o . getDate ( ) ) ; } |
13,937 | returns the round trip time for this ping in nanoseconds , or -1 if the response was cancelled , or -2 if the timeout elapsed before the round trip completed . concode_field_sep long sent concode_elem_sep CountDownLatch latch concode_elem_sep long received concode_field_sep void cancel concode_elem_sep void receive con... | long function ( long arg0 , TimeUnit arg1 ) { if ( latch . await ( arg0 , arg1 ) ) { return received - sent ; } else { return - 2 ; } } |
13,938 | writes html to the clipboard , together with a plain-text representation of that very data . concode_field_sep Context mContext concode_elem_sep ClipboardManager mClipboardManager concode_field_sep String getCoercedText concode_elem_sep String getHTMLText concode_elem_sep void clear concode_elem_sep Clipboard create co... | void function ( final String arg0 , final String arg1 ) { setPrimaryClipNoException ( ClipData . newHtmlText ( "srini_string" , arg1 , arg0 ) ) ; } |
13,939 | sets the groupname value for this aggregatesetting . concode_field_sep java.lang.String groupName concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Boolean enable concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.Boolean showInFooter concode_elem_sep boole... | void function ( java . lang . String arg0 ) { this . groupName = arg0 ; } |
13,940 | get shipdate concode_field_sep Long id concode_elem_sep DateTime shipDate concode_elem_sep String value concode_elem_sep StatusEnum status concode_elem_sep Boolean complete concode_elem_sep Long petId concode_elem_sep Integer quantity concode_field_sep String toIndentedString concode_elem_sep Order petId concode_elem_s... | DateTime function ( ) { return shipDate ; } |
13,941 | the file after it has been compressed concode_field_sep String gpsDateStamp concode_elem_sep String gpsLatitudeRef concode_elem_sep String gpsLongitude concode_elem_sep String gpsLatitude concode_elem_sep String whiteBalance concode_elem_sep String orientation concode_elem_sep String model concode_elem_sep String focal... | void function ( String arg0 ) { this . outFile = new ExifInterface ( arg0 ) ; } |
13,942 | configures a single httpsurlconnection to trust all ssl certificates . concode_field_sep SSLSocketFactory socketFactory concode_field_sep void checkClientTrusted concode_elem_sep void checkServerTrusted concode_elem_sep SSLSocketFactory getTrustingSSLSocketFactory concode_elem_sep java.security.cert.X509Certificate[] g... | void function ( HttpsURLConnection arg0 ) { getTrustingSSLSocketFactory ( ) ; arg0 . setSSLSocketFactory ( socketFactory ) ; arg0 . setHostnameVerifier ( new HostnameVerifier ( ) { public boolean verify ( String arg1 , SSLSession arg2 ) { return true ; } } ) ; } |
13,943 | start the task , start searching the document for the pattern . concode_field_sep boolean wholeWord concode_elem_sep int totalHitCount concode_elem_sep SwingController controller concode_elem_sep SearchPanel searchPanel concode_elem_sep int lengthOfTask concode_elem_sep boolean caseSensitive concode_elem_sep String dia... | void function ( ) { final SwingWorker loc0 = new SwingWorker ( ) { public Object construct ( ) { current = 0 ; done = false ; canceled = false ; dialogMessage = null ; return new ActualTask ( ) ; } } ; loc0 . setThreadPriority ( Thread . NORM_PRIORITY ) ; loc0 . start ( ) ; } |
13,944 | gets all the declared methods of a class including methods declared in superclasses . concode_field_sep ThreadMXBean threadBean concode_elem_sep ThreadLocal<CopyInCopyOutBuffer> CLONE_BUFFERS concode_elem_sep DataInputBuffer inBuffer concode_elem_sep SerializationFactory serialFactory concode_elem_sep Map<Class<?>,Cons... | List < Method > function ( Class < ? > arg0 ) { List < Method > loc0 = new ArrayList < Method > ( ) ; while ( arg0 != null ) { for ( Method loc1 : arg0 . getDeclaredMethods ( ) ) { loc0 . add ( loc1 ) ; } arg0 = arg0 . getSuperclass ( ) ; } return loc0 ; } |
13,945 | method validate concode_field_sep java.util.Vector _stepList concode_field_sep int getStepCount concode_elem_sep void addStep concode_elem_sep void addStep concode_elem_sep sempath.xsd.PendingSteps unmarshal concode_elem_sep sempath.xsd.Step getStep concode_elem_sep sempath.xsd.Step[] getStep concode_elem_sep boolean i... | void function ( ) { org . exolab . castor . xml . Validator loc0 = new org . exolab . castor . xml . Validator ( ) ; loc0 . validate ( this ) ; } |
13,946 | this function returns the name of the node . concode_field_sep T _data concode_elem_sep List<NetNode<T>> _children concode_elem_sep List<Double> _parent_distances concode_elem_sep String _name concode_elem_sep List<Double> _parent_probabiliites concode_elem_sep List<Double> _parent_support concode_elem_sep List<NetNode... | String function ( ) { return _name ; } |
13,947 | sets eviction strategy for cached type . concode_field_sep long evictionWakeUpInterval concode_elem_sep String cacheName concode_elem_sep Set<String> overridden concode_elem_sep int evictionMaxEntries concode_elem_sep EvictionStrategy evictionStrategy concode_elem_sep long expirationLifespan concode_elem_sep boolean is... | void function ( String arg0 ) { markAsOverriden ( "srini_string" ) ; this . evictionStrategy = EvictionStrategy . valueOf ( uc ( arg0 ) ) ; } |
13,948 | apply compute function to given rows and store result in collect by output value name . concode_field_sep String column concode_elem_sep String alias concode_field_sep Object compute concode_elem_sep String aggregateName | void function ( ArrayList < Map < String , Object >> arg0 , Map < String , Object > arg1 ) { if ( arg0 == null ) { return ; } String loc0 = column ; if ( alias != null ) { loc0 = alias ; } if ( loc0 == null ) { loc0 = aggregateName ( ) ; } arg1 . put ( loc0 , compute ( arg0 ) ) ; } |
13,949 | adds an escaped string to an array or function call . concode_field_sep StringBuilder params concode_field_sep String escapeString concode_elem_sep JSONBuilder endArray concode_elem_sep JSONBuilder entryNonNullValue concode_elem_sep JSONBuilder entryNonNullValue concode_elem_sep JSONBuilder entryNonNullValue concode_el... | JSONBuilder function ( String arg0 ) { conditionallyAppendComma ( ) ; arg0 = escapeString ( arg0 ) ; params . append ( '"' ) . append ( arg0 ) . append ( '"' ) ; return this ; } |
13,950 | returns list of snapshots concode_field_sep BlobStoreIndexShardSnapshots PROTO concode_elem_sep ImmutableList<SnapshotFiles> shardSnapshots concode_elem_sep XContentBuilderString SNAPSHOTS concode_elem_sep ParseField FILES concode_elem_sep XContentBuilderString FILES concode_elem_sep ImmutableMap<String,FileInfo> files... | List < SnapshotFiles > function ( ) { return this . shardSnapshots ; } |
13,951 | accessor for the rgb value for the specified colour concode_field_sep ArrayList formatsList concode_elem_sep HashMap formats concode_elem_sep Fonts fonts concode_elem_sep int nextCustomIndexNumber concode_elem_sep int customFormatStartIndex concode_elem_sep Logger logger concode_elem_sep PaletteRecord palette concode_e... | RGB function ( Colour arg0 ) { if ( palette == null ) { return arg0 . getDefaultRGB ( ) ; } return palette . getColourRGB ( arg0 ) ; } |
13,952 | sets the visibility status . concode_field_sep PaneVisibilityStatus previousVisibility concode_elem_sep PaneVisibilityStatus requestedVisibility concode_elem_sep PaneVisibilityStatus visibility concode_field_sep void setPreviousVisibility concode_elem_sep PaneVisibilityStatus getRequestedVisibility concode_elem_sep voi... | void function ( final PaneVisibilityStatus arg0 ) { if ( ! arg0 . equals ( this . visibility ) ) { this . previousVisibility = this . visibility ; } this . visibility = arg0 ; } |
13,953 | associates a filter to the alias concode_field_sep String filter concode_elem_sep String searchRouting concode_elem_sep String name concode_elem_sep String indexRouting concode_field_sep String filter concode_elem_sep Alias filter concode_elem_sep Alias filter concode_elem_sep Alias filter concode_elem_sep Alias routin... | Alias function ( String arg0 ) { this . filter = arg0 ; return this ; } |
13,954 | obtiene el valor de la propiedad idfield . concode_field_sep int idField concode_elem_sep List<FieldSports> sports concode_elem_sep String name concode_elem_sep int idManagerEntity concode_field_sep void setIdField concode_elem_sep void setIdManagerEntity concode_elem_sep void setName concode_elem_sep int getIdManagerE... | int function ( ) { return idField ; } |
13,955 | create an instance of kitdetailstype concode_field_sep QName _EsiUpdateKitStatusRequest_QNAME concode_elem_sep QName _EsiUpdateKitStatusResponse_QNAME concode_field_sep ESIUpdateKitStatusResponseType createESIUpdateKitStatusResponseType concode_elem_sep JAXBElement<ESIUpdateKitStatusRequestType> createEsiUpdateKitStatu... | KitDetailsType function ( ) { return new KitDetailsType ( ) ; } |
13,956 | check if a location is any part of any board including the frame & enclosure . concode_field_sep List<Cuboid> flightRegions concode_elem_sep BoardViewManager instance concode_elem_sep PersistableLocation globalTeleportOutDest concode_elem_sep Map<String,BoardView> chessBoards concode_elem_sep Map<String,Set<File>> defe... | BoardView function ( Location arg0 , int arg1 ) { for ( BoardView loc0 : listBoardViews ( ) ) { if ( loc0 . isPartOfBoard ( arg0 , arg1 ) ) { return loc0 ; } } return null ; } |
13,957 | clears thread-local variable containing java.text.dateformat cache . concode_field_sep String PATTERN_RFC1123 concode_elem_sep String[] DEFAULT_PATTERNS concode_elem_sep Date DEFAULT_TWO_DIGIT_YEAR_START concode_elem_sep TimeZone GMT concode_elem_sep String PATTERN_RFC1036 concode_elem_sep ThreadLocal<SoftReference<Map... | void function ( ) { DateFormatHolder . clearThreadLocal ( ) ; } |
13,958 | getter for property predefined concode_field_sep boolean covering concode_elem_sep List<Comment> comments concode_elem_sep Album album concode_elem_sep Date created concode_elem_sep Boolean showMetaInfo concode_elem_sep String meta concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_... | boolean function ( ) { return getAlbum ( ) . isPreDefined ( ) ; } |
13,959 | sets the modified date of this web d a v props . concode_field_sep WebDAVProps _webDAVProps concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel con... | void function ( Date arg0 ) { _webDAVProps . setModifiedDate ( arg0 ) ; } |
13,960 | sets the starting point of the transition , a float between 0.0 and 1.0 . defaults to 0.0 . concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_ele... | void function ( float arg0 ) { this . from = arg0 ; ea . add ( "srini_string" , arg0 ) ; } |
13,961 | this method resets the outgoing events . concode_field_sep boolean equal concode_elem_sep boolean not concode_elem_sep boolean or concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean and concode_elem_sep int nextStateIndex concode_elem_sep boolean notequal concode_elem_sep boolean myBool2 concode_elem_... | void function ( ) { } |
13,962 | shuffles the entire deck . concode_field_sep ArrayList<Card> deck concode_field_sep void createDeck concode_elem_sep Card drawCard | void function ( ) { Collections . shuffle ( deck ) ; } |
13,963 | sets the portal preferences id of this portal preferences . concode_field_sep PortalPreferences _portalPreferences concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_ele... | void function ( long arg0 ) { _portalPreferences . setPortalPreferencesId ( arg0 ) ; } |
13,964 | returns the value of the manifest debuggable attribute . if the attribute was not set , then the method returns null . concode_field_sep int mAttemptCount concode_elem_sep IFile mPackageFile concode_elem_sep IAndroidLaunchAction mLaunchAction concode_elem_sep IProject mProject concode_elem_sep IProgressMonitor mMonitor... | Boolean function ( ) { return mDebuggable ; } |
13,965 | returns the bundle context of this bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep void start | BundleContext function ( ) { return context ; } |
13,966 | returns the g function that is used in the hef2 problem . concode_field_sep long serialVersionUID concode_elem_sep ContinuousFunction hef2_h concode_elem_sep FunctionOptimisationProblem hef2_g_problem concode_elem_sep ContinuousFunction hef2_g concode_elem_sep FunctionOptimisationProblem hef2_h_problem concode_field_se... | ContinuousFunction function ( ) { return this . hef2_g ; } |
13,967 | gets the value of the chargetype property . concode_field_sep String featureName concode_elem_sep String chargeType concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep BigInteger costinCents concode_elem_sep FrequencyType frequency concode_field_sep String getFeatureName concode_... | String function ( ) { return chargeType ; } |
13,968 | release resources associated with the connection to mailchimp api service point . concode_field_sep Logger log concode_elem_sep MailChimpConnectionManager connection concode_field_sep String buildUrl concode_elem_sep String execute concode_elem_sep JsonElement execute concode_elem_sep R execute | void function ( ) { try { connection . close ( ) ; } catch ( IOException loc0 ) { log . log ( Level . WARNING , "srini_string" , loc0 ) ; } } |
13,969 | gets the pe provisioner . concode_field_sep int FREE concode_elem_sep int BUSY concode_elem_sep int FAILED concode_elem_sep int id concode_elem_sep PeProvisioner peProvisioner concode_elem_sep int status concode_field_sep void setStatusFailed concode_elem_sep void setPeProvisioner concode_elem_sep int getMips concode_e... | PeProvisioner function ( ) { return peProvisioner ; } |
13,970 | the subscription 's endpoint format depends on the protocol . concode_field_sep String owner concode_elem_sep String protocol concode_elem_sep String endpoint concode_elem_sep String subscriptionArn concode_elem_sep String topicArn concode_field_sep Subscription withProtocol concode_elem_sep String getSubscriptionArn c... | void function ( String arg0 ) { this . endpoint = arg0 ; } |
13,971 | creates a zookeeperleaderelectionservice instance and a new curatorframework client . concode_field_sep Logger LOG concode_field_sep CompletedCheckpointStore createCompletedCheckpoints concode_elem_sep ZooKeeperSubmittedJobGraphStore createSubmittedJobGraphs concode_elem_sep boolean isZooKeeperRecoveryMode concode_elem... | ZooKeeperLeaderElectionService function ( Configuration arg0 ) { CuratorFramework loc0 = startCuratorFramework ( arg0 ) ; return createLeaderElectionService ( loc0 , arg0 ) ; } |
13,972 | get the id of the shard which allocation should be canceled concode_field_sep String node concode_elem_sep String NAME concode_elem_sep ShardId shardId concode_elem_sep boolean allowPrimary concode_field_sep void writeTo concode_elem_sep String node concode_elem_sep CancelAllocationCommand readFrom concode_elem_sep voi... | ShardId function ( ) { return this . shardId ; } |
13,973 | prints a message at warn 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 , Throwable arg1 ) { w ( arg0 , null , arg1 ) ; } |
13,974 | return if this error page is a global one matches all unmatched status and exception types . concode_field_sep Class<? extends Throwable> exception concode_elem_sep String path concode_elem_sep HttpStatus status concode_field_sep String getExceptionName concode_elem_sep Class<? extends Throwable> getException concode_e... | boolean function ( ) { return ( this . status == null && this . exception == null ) ; } |
13,975 | hostname to use . use localhost or 0.0.0.0 for local server as consumer . for producer use the hostname or ip address of the remote server . concode_field_sep boolean disconnect concode_elem_sep TextLineDelimiter textlineDelimiter concode_elem_sep boolean disconnectOnNoReply concode_elem_sep boolean sync concode_elem_s... | void function ( String arg0 ) { this . host = arg0 ; } |
13,976 | returns an org.elasticsearch.index.engine.engine.warmer used to warm new searchers before they are used for searching . concode_field_sep boolean forceNewTranslog concode_elem_sep CodecService codecService concode_elem_sep String INDEX_FORCE_NEW_TRANSLOG concode_elem_sep IndexSettings indexSettings concode_elem_sep Sha... | Engine . Warmer function ( ) { return warmer ; } |
13,977 | returns the username used to authenticate the user . can not return null . concode_field_sep long serialVersionUID concode_elem_sep User user concode_elem_sep List<GrantedAuthority> authorities concode_elem_sep Log LOG concode_field_sep String getPassword concode_elem_sep boolean isAccountNonExpired concode_elem_sep bo... | String function ( ) { return user . getUsername ( ) ; } |
13,978 | gets a float specified by the key in the dictionary entries . if the value is a reference , the float value that the reference points to is returned . concode_field_sep Name LENGTH_KEY concode_elem_sep Name FORM_TYPE_KEY concode_elem_sep HashMap entries concode_elem_sep Library library concode_elem_sep boolean inited c... | float function ( Name arg0 ) { return library . getFloat ( entries , arg0 ) ; } |
13,979 | sets the sootclasspath . concode_field_sep String outputLocation concode_elem_sep ArrayList cfgList concode_elem_sep IWorkbenchPart part concode_elem_sep DavaHandler davaHandler concode_elem_sep String platform_location concode_elem_sep HashMap alreadyDone concode_elem_sep SootDefaultCommands sdc concode_elem_sep ISele... | void function ( SootClasspath arg0 ) { this . sootClasspath = arg0 ; } |
13,980 | adds all the adaptable objects in the given enumeration to this list . returns this list . concode_field_sep List children concode_field_sep Object getAdapter concode_elem_sep Object[] getChildren concode_elem_sep Object[] getChildren concode_elem_sep Object getParent concode_elem_sep String getLabel concode_elem_sep i... | JSElementList function ( Iterator arg0 ) { while ( arg0 . hasNext ( ) ) { add ( ( JSElement ) arg0 . next ( ) ) ; } return this ; } |
13,981 | initializes this life cycle managed object concode_field_sep PlaceHolder placeHolder concode_field_sep void stop concode_elem_sep void start concode_elem_sep void destroy | void function ( ) { if ( BootStatus . isStarting ( ) ) { try { start ( ) ; } catch ( Exception loc0 ) { BootStatus . setThrowable ( loc0 ) ; } } } |
13,982 | start a named task . the results are undefined if #stop or timing methods are called without invoking this method . concode_field_sep boolean running concode_elem_sep int taskCount concode_elem_sep long startTimeMillis concode_elem_sep String currentTaskName concode_elem_sep TaskInfo lastTaskInfo concode_elem_sep long ... | void function ( String arg0 ) { if ( this . running ) { throw new IllegalStateException ( "srini_string" ) ; } this . running = true ; this . currentTaskName = arg0 ; this . startTimeMillis = System . currentTimeMillis ( ) ; } |
13,983 | returns the footer for the layout format . the base class returns null . concode_field_sep int LINE_SEP_LEN concode_field_sep String format concode_elem_sep String getContentType concode_elem_sep boolean ignoresThrowable concode_elem_sep String getHeader | String function ( ) { return null ; } |
13,984 | append the given char as a hexadecimal html entity . concode_field_sep char[] ESCAPE_CHARS concode_field_sep boolean isEscapeChar concode_elem_sep String getMetaFromFence concode_elem_sep String getXMLTag concode_elem_sep int rnd concode_elem_sep int skipSpaces concode_elem_sep int _escape concode_elem_sep void appendM... | void function ( final StringBuilder arg0 , final char arg1 ) { arg0 . append ( "srini_string" ) . append ( Integer . toHexString ( arg1 ) ) . append ( ';' ) ; } |
13,985 | get the current site id . concode_field_sep String eid concode_elem_sep AgentImpl agent concode_elem_sep String agentString concode_elem_sep boolean accessViaUrl concode_elem_sep String displayIdString concode_elem_sep AgentHelper helper concode_elem_sep long serialVersionUID concode_elem_sep String displayId concode_e... | String function ( ) { AgentFacade loc0 = new AgentFacade ( ) ; boolean loc1 = loc0 . isAccessViaUrl ( ) ; return helper . getCurrentSiteId ( loc1 ) ; } |
13,986 | error log message with printf formatting . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d co... | void function ( String arg0 , String arg1 , Object ... arg2 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . e ( arg0 , String . format ( arg1 , arg2 ) ) ; } |
13,987 | invokes delegate dispose method if the delegate is a lifecyclestrategy concode_field_sep ComponentAdapter<T> delegate concode_field_sep T getComponentInstance concode_elem_sep T getComponentInstance concode_elem_sep boolean componentHasLifecycle concode_elem_sep void start concode_elem_sep void start concode_elem_sep O... | void function ( Object arg0 ) { if ( delegate instanceof LifecycleStrategy ) { ( ( LifecycleStrategy ) delegate ) . dispose ( arg0 ) ; } } |
13,988 | returns the euclidean distance between this point and that point . concode_field_sep Comparator<Point2D> X_ORDER concode_elem_sep Comparator<Point2D> R_ORDER concode_elem_sep double x concode_elem_sep double y concode_elem_sep Comparator<Point2D> Y_ORDER concode_field_sep double distanceSquaredTo concode_elem_sep doubl... | double function ( Point2D arg0 ) { double loc0 = this . x - arg0 . x ; double loc1 = this . y - arg0 . y ; return Math . sqrt ( loc0 * loc0 + loc1 * loc1 ) ; } |
13,989 | deletes the kaleo task from the database . also notifies the appropriate model listeners . concode_field_sep ServiceTracker<KaleoTaskLocalService,KaleoTaskLocalService> _serviceTracker concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep java.util.List<co... | com . liferay . portal . workflow . kaleo . model . KaleoTask function ( com . liferay . portal . workflow . kaleo . model . KaleoTask arg0 ) { return getService ( ) . deleteKaleoTask ( arg0 ) ; } |
13,990 | helper method that can be used to get a copy of standard json escape definitions ; this is useful when just wanting to slightly customize definitions . caller can modify this array as it sees fit and usually returns modified instance via #getescapecodesforascii concode_field_sep int ESCAPE_CUSTOM concode_elem_sep int E... | int [ ] function ( ) { int [ ] loc0 = CharTypes . get7BitOutputEscapes ( ) ; return Arrays . copyOf ( loc0 , loc0 . length ) ; } |
13,991 | gets the value of the getnameserverreturn property . concode_field_sep String getNameserverReturn concode_field_sep void setGetNameserverReturn | String function ( ) { return getNameserverReturn ; } |
13,992 | insert an argument into this context . concode_field_sep Multimap<String,Object> parsedArgs concode_elem_sep String TARGET_BLOCK_ARG concode_field_sep void checkPermission concode_elem_sep Collection<T> getAll concode_elem_sep Collection<T> getAll concode_elem_sep boolean hasAny concode_elem_sep boolean hasAny concode_... | void function ( Text arg0 , Object arg1 ) { putArg ( ArgUtils . textToArgKey ( arg0 ) , arg1 ) ; } |
13,993 | gets the description of the group that will be created . concode_field_sep String name concode_elem_sep String description concode_elem_sep AppGroupPrivacy privacy concode_field_sep Builder setName concode_elem_sep String getName concode_elem_sep Builder readFrom concode_elem_sep Builder readFrom concode_elem_sep AppGr... | String function ( ) { return this . description ; } |
13,994 | convenient three-argument version of computecodebase that will always return a codebase string represented in standard http protocol format . concode_field_sep Logger logger concode_field_sep String[] createArgList concode_elem_sep String[] concat | String function ( String arg0 , String arg1 , int arg2 ) { return computeCodebase ( arg0 , arg1 , arg2 , null , null ) ; } |
13,995 | set the selected state of the row . concode_field_sep ExpansionType expansionType concode_elem_sep boolean selected concode_elem_sep boolean selectable concode_elem_sep boolean expanded concode_elem_sep boolean visible concode_elem_sep List<String> activeCellEditorIds concode_elem_sep boolean expandable concode_elem_se... | void function ( boolean arg0 ) { this . selected = arg0 ; } |
13,996 | simple getter for sentiment value concode_field_sep double _coverageSentimentFactor concode_elem_sep String _companyName concode_elem_sep String _watsonApiKey concode_field_sep void processSentimentResponse concode_elem_sep void connectToWatson | double function ( ) { return _coverageSentimentFactor ; } |
13,997 | performs a dynamic query on the database and returns the matching rows . concode_field_sep ShoppingCartLocalService _shoppingCartLocalService concode_field_sep com.liferay.portlet.shopping.model.ShoppingCart fetchShoppingCart concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portlet.shopping.model.Sh... | java . util . List function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _shoppingCartLocalService . arg0 ( arg0 ) ; } |
13,998 | gets the value of the organizationid property . concode_field_sep Guid organizationId concode_elem_sep EndpointCollection endpoints concode_elem_sep String urlName concode_elem_sep String uniqueName concode_elem_sep String organizationVersion concode_elem_sep long serialVersionUID concode_elem_sep OrganizationState sta... | Guid function ( ) { return organizationId ; } |
13,999 | add a custom header . concode_field_sep Map<String,List<String>> customHeaders concode_field_sep Map<String,List<String>> getHeaders concode_elem_sep void copyHeaders concode_elem_sep String contentType concode_elem_sep BytesReference content concode_elem_sep RestStatus status | void function ( String arg0 , String arg1 ) { if ( customHeaders == null ) { customHeaders = new HashMap < > ( 2 ) ; } List < String > loc0 = customHeaders . get ( arg0 ) ; if ( loc0 == null ) { loc0 = new ArrayList < > ( ) ; customHeaders . put ( arg0 , loc0 ) ; } loc0 . add ( arg1 ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.