idx int64 0 25k | question stringlengths 68 5.61k | target stringlengths 21 500 |
|---|---|---|
6,600 | get the minimum worker count for the pool . concode_field_sep int DEFAULT_MAXIMUM_THREAD_COUNT concode_elem_sep int taskCount concode_elem_sep int DEFAULT_MINIMUM_THREAD_COUNT concode_elem_sep int maximumWorkerCount concode_elem_sep int minimumWorkerCount concode_elem_sep TaskManager MANAGER concode_elem_sep Set worker... | int function ( ) { synchronized ( workerPool ) { return minimumWorkerCount ; } } |
6,601 | returns an integer uniformly between 0 inclusive and n exclusive . concode_field_sep Random random concode_elem_sep long seed concode_field_sep double cauchy concode_elem_sep long getSeed concode_elem_sep int poisson concode_elem_sep void main concode_elem_sep int discrete concode_elem_sep double random concode_elem_se... | int function ( int arg0 ) { if ( arg0 <= 0 ) throw new IllegalArgumentException ( "srini_string" ) ; return random . nextInt ( arg0 ) ; } |
6,602 | returns true iff the checksum is not null and if the file has not been written by a lucene version greater or equal to lucene 4.8 concode_field_sep Version writtenBy concode_elem_sep String name concode_elem_sep long length concode_elem_sep String checksum concode_elem_sep BytesRef hash concode_field_sep void writeTo c... | boolean function ( ) { return checksum != null && ( writtenBy == null || writtenBy . onOrAfter ( Version . LUCENE_4_8 ) == false ) ; } |
6,603 | by default , do n't provide any child paste override behaviour . concode_field_sep Map nameFeatureMap concode_elem_sep Object NULL_TOKEN concode_field_sep boolean shouldOverrideCopyOperation concode_elem_sep void setName concode_elem_sep boolean canContain concode_elem_sep XMLResource getResource concode_elem_sep Strin... | boolean function ( EObject arg0 , EObject arg1 ) { return false ; } |
6,604 | sets the uncompressed size of this zipentry . concode_field_sep long compressedSize concode_elem_sep int compressionMethod concode_elem_sep long crc concode_elem_sep int STORED concode_elem_sep long mLocalHeaderRelOffset concode_elem_sep int nameLength concode_elem_sep int modDate concode_elem_sep byte[] extra concode_... | void function ( long arg0 ) { if ( arg0 >= 0 && arg0 <= 0xFFFFFFFFL ) { size = arg0 ; } else { throw new IllegalArgumentException ( "srini_string" + arg0 ) ; } } |
6,605 | returns the number of rows matching the dynamic query . concode_field_sep DLFileRankLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.document.library.kernel.model.DLFileRank getDLFileRank concode_elem_sep com.liferay.document.library.kernel.model.DLFileRank ... | long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . dynamicQueryCount ( arg0 ) ; } |
6,606 | returns a string that contains all of the font weight numbers for the specified font weight attribute value . concode_field_sep PlaceHolder placeHolder concode_field_sep GVTFontFamily getFontFamily concode_elem_sep List getFontFaces | String function ( String arg0 ) { if ( arg0 . equals ( SVG_NORMAL_VALUE ) ) { return SVG_400_VALUE ; } else if ( arg0 . equals ( SVG_BOLD_VALUE ) ) { return SVG_700_VALUE ; } else if ( arg0 . equals ( SVG_ALL_VALUE ) ) { return "srini_string" ; } return arg0 ; } |
6,607 | performs a modifier key release after focusing on an element . equivalent to : actions.click element . sendkeys thekey ; concode_field_sep Mouse mouse concode_elem_sep Keyboard keyboard concode_elem_sep WebDriver driver concode_elem_sep CompositeAction action concode_field_sep Actions release concode_elem_sep Actions r... | Actions function ( WebElement arg0 , Keys arg1 ) { action . addAction ( new KeyUpAction ( keyboard , mouse , ( Locatable ) arg0 , arg1 ) ) ; return this ; } |
6,608 | sets whether the created require instances will be sandboxed . see require #require context , scriptable , modulescriptprovider , script , script , boolean for explanation . concode_field_sep boolean sandboxed concode_elem_sep Script preExec concode_elem_sep ModuleScriptProvider moduleScriptProvider concode_elem_sep Sc... | RequireBuilder function ( boolean arg0 ) { this . sandboxed = arg0 ; return this ; } |
6,609 | encode a password as a base64-encoded char array . concode_field_sep Map<String,String> SASL_PROPS concode_elem_sep String secretKeyId concode_elem_sep SecretKeyHolder secretKeyHolder concode_elem_sep Logger logger concode_elem_sep SaslServer saslServer concode_elem_sep String DEFAULT_REALM concode_elem_sep String DIGE... | char [ ] function ( String arg0 ) { Preconditions . checkNotNull ( arg0 , "srini_string" ) ; return Base64 . encode ( Unpooled . wrappedBuffer ( arg0 . getBytes ( Charsets . UTF_8 ) ) ) . toString ( Charsets . UTF_8 ) . toCharArray ( ) ; } |
6,610 | non-javadoc concode_field_sep Plugin plugin concode_field_sep TimeFrequency getTimePeriod concode_elem_sep int getAmountToPay concode_elem_sep String getAddress concode_elem_sep CryptoCurrency getCryptoCurrency | Plugin function ( ) { return plugin ; } |
6,611 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep ChangeInfo changeInfo concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep GetChangeResult clone concode_elem_sep GetChangeResult withChangeInfo concode_elem_sep void setChangeInfo concode_el... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getChangeInfo ( ) != null ) loc0 . append ( "srini_string" + getChangeInfo ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
6,612 | cancel and cleanup everything concode_field_sep Thread mWorkerThread concode_elem_sep E mResult concode_elem_sep String TAG concode_elem_sep Backgroundable<E> mWorker concode_elem_sep BackgroundWorkCallback mCallback concode_field_sep void unregisterCallback concode_elem_sep void start concode_elem_sep void registerCal... | void function ( ) { unregisterCallback ( ) ; if ( mWorkerThread == null && ! mWorkerThread . isInterrupted ( ) ) { mWorkerThread . interrupt ( ) ; mWorkerThread = null ; } mResult = null ; Log . i ( TAG , "srini_string" ) ; } |
6,613 | returns the display name of the action event . concode_field_sep String NAMED_PARAMETERS concode_elem_sep SortedSet<ActionParameterRequest> actionParameters concode_elem_sep SortedSet<ActionParameterRequest> postActionParameters concode_elem_sep String displayName concode_elem_sep String subject concode_elem_sep String... | String function ( ) { return displayName ; } |
6,614 | load image from local sdcard . concode_field_sep ExecutorService mExecutorService concode_elem_sep ImageLoadListener imageLoadListener concode_elem_sep Drawable mDefaultDrawable concode_elem_sep ImageView mImageView concode_elem_sep ImageLocalLoader mInstance concode_elem_sep String imagePath concode_elem_sep LruCache<... | void function ( ImageView arg0 , String arg1 , int arg2 , int arg3 ) { loadImage ( arg0 , arg1 , arg2 , arg3 , null ) ; } |
6,615 | this method resets the outgoing events . concode_field_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean guard concode_elem_sep int nextStateIndex concode_elem_sep boolean done concode_elem_sep State[] stateVector concode_field_sep SCInterface getSCInterface concode_elem_sep boolean ch... | void function ( ) { } |
6,616 | gets the value of the type property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep MIGeoreferenceableType miGeoreferenceable concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type co... | String function ( ) { if ( type == null ) { return "srini_string" ; } else { return type ; } } |
6,617 | will return true since @example can be used in constructor documentation . concode_field_sep String NAME concode_elem_sep String HEADER concode_field_sep boolean inPackage concode_elem_sep String createHTML concode_elem_sep String getName concode_elem_sep boolean inOverview concode_elem_sep boolean inMethod concode_ele... | boolean function ( ) { return true ; } |
6,618 | the type of the class is used to locate the state of the transaction log in the object store . overloads basicaction.type concode_field_sep ExecutorService _threadPool concode_elem_sep AtomicAction _theTransaction concode_field_sep Transaction suspend concode_elem_sep boolean resume concode_elem_sep Future<Integer> abo... | String function ( ) { return _theTransaction . type ( ) ; } |
6,619 | create an instance of getdailyburnrate concode_field_sep PlaceHolder placeHolder concode_field_sep GetDailyBurnRateResponse createGetDailyBurnRateResponse concode_elem_sep InvokeKenanNRC createInvokeKenanNRC concode_elem_sep InvokeKenanNRCResponse createInvokeKenanNRCResponse concode_elem_sep GetBalanceResponse createG... | GetDailyBurnRate function ( ) { return new GetDailyBurnRate ( ) ; } |
6,620 | test if the given path is absolute or not . concode_field_sep Log __log concode_field_sep List<File> directoryEntriesInPath concode_elem_sep List<File> directoryEntriesInPath concode_elem_sep void directoryEntriesInPath concode_elem_sep String encodePath concode_elem_sep void main concode_elem_sep boolean deepDelete co... | boolean function ( String arg0 ) { return new File ( arg0 ) . isAbsolute ( ) ; } |
6,621 | composes a connection name based on the supplied client id and server uris . concode_field_sep String SERVER_DELIMITER concode_elem_sep long NEVER_STARTED concode_field_sep String serverURIsToString concode_elem_sep String validateConnectionDetails | String function ( final String arg0 , final List < String > arg1 ) { return composeConnectionName ( arg0 , serverURIsToString ( arg1 ) ) ; } |
6,622 | returns the name of the described extension without mnemonic hint in order to be displayed in a message . concode_field_sep String fId concode_elem_sep String fName concode_elem_sep ImageDescriptor fImage concode_elem_sep boolean fIsEnabled concode_elem_sep IConfigurationElement fElement concode_elem_sep String fLastEr... | String function ( ) { return LegacyActionTools . removeMnemonics ( fName ) ; } |
6,623 | returns an iterator to the queue . concode_field_sep long serial concode_elem_sep SortedSet<SimEvent> sortedSet concode_field_sep void addEvent concode_elem_sep boolean removeAll concode_elem_sep int size concode_elem_sep void clear concode_elem_sep boolean remove concode_elem_sep void addEventFirst | Iterator < SimEvent > function ( ) { return sortedSet . iterator ( ) ; } |
6,624 | find all of the solutions that start with the given prefix . the printer is given each solution as it is found . concode_field_sep String CLASS concode_elem_sep String DEPTH concode_elem_sep boolean[][] shape concode_elem_sep int[] twoRotations concode_elem_sep DancingLinks.SolutionAcceptor<ColumnName> printer concode_... | int function ( int [ ] arg0 ) { return dancer . solve ( arg0 , printer ) ; } |
6,625 | returns true , if cal1 is greater or equal than cal2 , ignoring seconds . concode_field_sep double J1970 concode_elem_sep Logger logger concode_elem_sep double MILLISECONDS_PER_DAY concode_elem_sep Pattern HHMM_PATTERN concode_field_sep double endOfDayDateToJulianDate concode_elem_sep int getMinutesFromTime concode_ele... | boolean function ( Calendar arg0 , Calendar arg1 ) { Calendar loc0 = DateUtils . truncate ( arg0 , Calendar . MINUTE ) ; Calendar loc1 = DateUtils . truncate ( arg1 , Calendar . MINUTE ) ; return loc0 . getTimeInMillis ( ) >= loc1 . getTimeInMillis ( ) ; } |
6,626 | returns the the token at pos as a string concode_field_sep String SPACES concode_elem_sep String[] EMPTY_STRING_ARRAY concode_field_sep String getLineAt concode_elem_sep boolean isEmptyOrBlanks concode_elem_sep int getDocumentPosition concode_elem_sep void insertMagicString concode_elem_sep String getIndent concode_ele... | String function ( SyntaxDocument arg0 , int arg1 ) { String loc0 = "srini_string" ; Token loc1 = arg0 . getTokenAt ( arg1 ) ; if ( loc1 != null ) { try { loc0 = arg0 . getText ( loc1 . start , loc1 . length ) ; } catch ( BadLocationException loc5 ) { Logger . getLogger ( ActionUtils . class . getName ( ) ) . log ( Leve... |
6,627 | gets the value of the mlellipsoidalcs property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep String title concode_elem_sep MLE... | MLEllipsoidalCSType function ( ) { return mlEllipsoidalCS ; } |
6,628 | create a new configuration setup for fields concode_field_sep MockInjectionStrategy injectionStrategies concode_elem_sep Set<Object> mocks concode_elem_sep Object fieldOwner concode_elem_sep MockInjectionStrategy postInjectionStrategies concode_elem_sep Set<Field> fields concode_field_sep OngoingMockInjection tryConstr... | OngoingMockInjection function ( Set < Field > arg0 , Object arg1 ) { return new OngoingMockInjection ( arg0 , arg1 ) ; } |
6,629 | throws a generatorerror if the input list does n't have at least this many bytes left . concode_field_sep int charStart concode_elem_sep ByteList src concode_elem_sep int pos concode_elem_sep int srcEnd concode_elem_sep int quoteStart concode_elem_sep ThreadContext context concode_elem_sep ByteList out concode_field_se... | void function ( int arg0 ) { if ( pos + arg0 > srcEnd ) throw incompleteUtf8 ( ) ; } |
6,630 | removes a value from the collection . concode_field_sep long serialVersionUID concode_elem_sep ArrayList keys concode_elem_sep ArrayList values concode_elem_sep HashMap indexMap concode_field_sep void sortByValues concode_elem_sep Comparable getKey concode_elem_sep int getIndex concode_elem_sep void rebuildIndex concod... | void function ( Comparable arg0 ) { int loc0 = getIndex ( arg0 ) ; if ( loc0 < 0 ) { throw new UnknownKeyException ( "srini_string" + arg0 + "srini_string" ) ; } removeValue ( loc0 ) ; } |
6,631 | set remote subject explicitly concode_field_sep InetAddress _remoteAddr concode_elem_sep Subject _subject concode_elem_sep AtomicInteger uniqueId concode_elem_sep Integer _reqID concode_elem_sep Map _storm_conf concode_elem_sep ThreadLocal<ReqContext> ctxt concode_field_sep Principal principal concode_elem_sep Subject ... | void function ( Subject arg0 ) { _subject = arg0 ; } |
6,632 | initializes or resets the hasher for a new session respectively concode_field_sep int[] m_block concode_elem_sep int DIGEST_SIZE concode_elem_sep int[] m_state concode_elem_sep int m_nBlockIndex concode_elem_sep String SELFTEST_MESSAGE concode_elem_sep long m_lCount concode_elem_sep byte[] m_digestBits concode_elem_sep... | void function ( ) { m_state [ 0 ] = 0x67452301 ; m_state [ 1 ] = 0xefcdab89 ; m_state [ 2 ] = 0x98badcfe ; m_state [ 3 ] = 0x10325476 ; m_state [ 4 ] = 0xc3d2e1f0 ; m_lCount = 0 ; m_digestBits = new byte [ 20 ] ; m_nBlockIndex = 0 ; } |
6,633 | gets the value of the phone property . concode_field_sep String lname concode_elem_sep String dobt concode_elem_sep Integer lmv concode_elem_sep Gender gender concode_elem_sep String phone concode_elem_sep MatchingStrategy ms concode_elem_sep String dob concode_elem_sep String name concode_elem_sep Integer mv concode_e... | String function ( ) { return phone ; } |
6,634 | sets data to be parsed by libflac . concode_field_sep int TEMP_BUFFER_SIZE concode_elem_sep byte[] tempBuffer concode_elem_sep long nativeDecoderContext concode_elem_sep ByteBuffer byteBufferData concode_elem_sep boolean endOfExtractorInput concode_elem_sep boolean IS_AVAILABLE concode_elem_sep ExtractorInput extractor... | void function ( ByteBuffer arg0 ) { this . byteBufferData = arg0 ; this . extractorInput = null ; this . tempBuffer = null ; } |
6,635 | gets the text notes associated with the task . concode_field_sep boolean summary concode_elem_sep List<Predecessor> predecessors concode_elem_sep String notes concode_elem_sep int level concode_elem_sep boolean collapsed concode_elem_sep String STYLE_BLUE concode_elem_sep String STYLE_DEFAULT concode_elem_sep Date star... | String function ( ) { return notes ; } |
6,636 | create and return a serialized field based on the current state . concode_field_sep SchemaPath path concode_elem_sep LinkedHashSet<MaterializedField> children concode_elem_sep MajorType type concode_elem_sep Key key concode_field_sep Class<?> getValueClass concode_elem_sep int getWidth concode_elem_sep MaterializedFiel... | SerializedField function ( ) { SerializedField . Builder loc0 = getAsBuilder ( ) ; for ( MaterializedField loc1 : getChildren ( ) ) { loc0 . addChild ( loc1 . getSerializedField ( ) ) ; } return loc0 . build ( ) ; } |
6,637 | appends a tag that indicates that an anchor section begins . concode_field_sep String UL concode_elem_sep String BLOCKQUOTE concode_elem_sep String P concode_elem_sep String IMG concode_elem_sep String BR concode_elem_sep String CODE concode_elem_sep String OL concode_elem_sep String HREF concode_elem_sep String NAMESP... | XHTMLText function ( String arg0 , String arg1 ) { text . halfOpenElement ( A ) ; text . optAttribute ( HREF , arg0 ) ; text . optAttribute ( STYLE , arg1 ) ; text . rightAngleBracket ( ) ; return this ; } |
6,638 | get the name on the file currently open i.e. with no path prefix concode_field_sep File file concode_elem_sep ImageReader ir concode_elem_sep int numImages concode_field_sep BufferedImage getBufferedImage concode_elem_sep String getBaseName concode_elem_sep void dispose concode_elem_sep void finalize concode_elem_sep B... | String function ( ) { return file . getName ( ) ; } |
6,639 | gets the item id . concode_field_sep int timer concode_elem_sep int count concode_elem_sep int id concode_field_sep ItemDefinition getDefinition concode_elem_sep boolean validItem concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep boolean validEquipment concode_elem_sep void setTimer conc... | int function ( ) { return id ; } |
6,640 | sets the value of the status property . concode_field_sep Boolean umaCapable concode_elem_sep Boolean nfcCapable concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep String imsi concode_elem_sep String type concode_elem_sep String number concode_elem_sep String createdBy concode_e... | void function ( String arg0 ) { this . status = arg0 ; } |
6,641 | gets the json object . concode_field_sep List<JsonValue> array concode_elem_sep boolean isNull concode_elem_sep Object value concode_elem_sep Map<String,JsonValue> object concode_field_sep Object getValue concode_elem_sep int hashCode concode_elem_sep boolean isNull concode_elem_sep boolean equals concode_elem_sep List... | Map < String , JsonValue > function ( ) { return object ; } |
6,642 | get id , access and refresh tokens by username and password . concode_field_sep RSAPublicKey providerPublicKey concode_elem_sep OIDCClient oidcClient concode_field_sep OIDCTokens getAuthTokensByRefreshToken concode_elem_sep OIDCTokens getAuthTokensByRefreshToken concode_elem_sep OIDCTokens getAdminServerAccessToken con... | OIDCTokens function ( String arg0 , String arg1 ) { return getAuthTokensByPassword ( arg0 , arg1 , AuthOIDCClient . ResourceServer . rs_esxcloud ) ; } |
6,643 | gets a list of all domain representatives concode_field_sep String DEFAULT_PDB_HOST concode_elem_sep String DEFAULT_PDB_API_URL concode_elem_sep int cutoff concode_elem_sep String base concode_field_sep SortedSet<String> requestRepresentativeDomains concode_elem_sep void handleRestRequest concode_elem_sep void main con... | SortedSet < String > function ( ) { String loc0 = base + "srini_string" + cutoff ; return requestRepresentativeDomains ( loc0 ) ; } |
6,644 | handles jtextarea lists concode_field_sep boolean _modified concode_elem_sep Map<String,Binding> _optComponents concode_elem_sep Map<String,Binding> _bindings concode_field_sep void actionPerformed concode_elem_sep boolean isPropertyNull concode_elem_sep boolean isModified concode_elem_sep Binding getBinding concode_el... | Bindings function ( String arg0 , JTextArea arg1 ) { registerPropertyChangeListener ( arg1 ) ; return add ( new JTextAreaBinding ( arg0 , arg1 ) ) ; } |
6,645 | returns an ordered list of all constructor parameters both assisted and inject ed . concode_field_sep ParameterListKey assistedParameters concode_elem_sep List<Parameter> allParameters concode_elem_sep Constructor<T> constructor concode_field_sep ParameterListKey getAssistedParameters concode_elem_sep Set<Class<?>> get... | List < Parameter > function ( ) { return allParameters ; } |
6,646 | returns the number of password trackers . concode_field_sep PasswordTrackerLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void trackPassword concode_elem_sep boolean isValidPassword concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionabl... | int function ( ) { return getService ( ) . getPasswordTrackersCount ( ) ; } |
6,647 | the method is used to refresh table , update waiting time of every patient in queue and show the receptionist the next patient and the available treatment room concode_field_sep TableView<Patient> PatientTableManager concode_elem_sep TableColumn<Patient,Integer> nhs_number concode_elem_sep TableColumn<Patient,String> l... | void function ( ) { refreshTable ( ) ; } |
6,648 | begins reporting metrics using the configured scheduledreporter . concode_field_sep Duration period concode_elem_sep ScheduledReporter reporter concode_field_sep void stop | void function ( ) { reporter . start ( period . getQuantity ( ) , period . getUnit ( ) ) ; } |
6,649 | makes request and returns the map of content , headers and responsecode concode_field_sep String privateKey concode_elem_sep String apiKey concode_elem_sep String url concode_elem_sep String version concode_elem_sep String USER_AGENT concode_elem_sep String email concode_field_sep String bytesToHex concode_elem_sep voi... | Map < String , Object > function ( String arg0 , Map < String , ? > arg1 ) { return this . request ( arg0 , arg1 , "srini_string" ) ; } |
6,650 | this method returns the contentxml file in a byte array.it returns null if there is no contentxml in this zip file . concode_field_sep int contentIndex concode_elem_sep int settingsIndex concode_elem_sep int manifestIndex concode_elem_sep String SETTINGSXML concode_elem_sep String METAXML concode_elem_sep String STYLEX... | byte [ ] function ( ) { return getEntryBytes ( contentIndex ) ; } |
6,651 | remove the element at the specified index from the passed list . this works if the list is not null and the index is & ge ; 0 and < list.size concode_field_sep PlaceHolder placeHolder concode_field_sep ICommonsList<T> createInstance concode_elem_sep ICommonsList<ELEMENTTYPE> getAll concode_elem_sep ICommonsList<ELEMENT... | ELEMENTTYPE function ( final int arg0 ) { return arg0 < 0 || arg0 >= size ( ) ? null : remove ( arg0 ) ; } |
6,652 | renders a bitmatrix as an image , where `` false '' bits are renderedas white , and `` true '' bits are rendered as black . uses default configuration . concode_field_sep MatrixToImageConfig DEFAULT_CONFIG concode_field_sep void writeToFile concode_elem_sep void writeToFile concode_elem_sep void writeToStream concode_e... | BufferedImage function ( BitMatrix arg0 ) { return toBufferedImage ( arg0 , DEFAULT_CONFIG ) ; } |
6,653 | construct a compositerecordreader for the children of this inputformat as defined in the init expression . the outermost join need only be composable , not necessarily a composite . mandating tuplewritable is n't strictly correct . concode_field_sep Parser.Node root concode_field_sep void setFormat concode_elem_sep voi... | ComposableRecordReader < K , TupleWritable > function ( InputSplit arg0 , JobConf arg1 , Reporter arg2 ) { setFormat ( arg1 ) ; return root . getRecordReader ( arg0 , arg1 , arg2 ) ; } |
6,654 | checks if c is a character that may be contained in a prolog predicate name that is enclosed in simple quotes . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isSingleSecondChar concode_elem_sep boolean isPredicateNameChar concode_elem_sep boolean isVarPrefix concode_elem_sep boolean isVarPrefix co... | boolean function ( char arg0 ) { } |
6,655 | sets the value of the layout property . concode_field_sep Layout layout concode_elem_sep Widgetaction widgetaction concode_elem_sep Label label concode_elem_sep Widgetinfo widgetinfo concode_field_sep Layout getLayout concode_elem_sep Widgetinfo getWidgetinfo concode_elem_sep void setWidgetaction concode_elem_sep Label... | void function ( Layout arg0 ) { this . layout = arg0 ; } |
6,656 | invokes the method with the given name supports ognl syntax . concode_field_sep boolean not concode_elem_sep Expression expression concode_field_sep ValueBuilder prepend concode_elem_sep ValueBuilder onNewValueBuilder concode_elem_sep ValueBuilder tokenize concode_elem_sep ValueBuilder tokenize concode_elem_sep ValueBu... | ValueBuilder function ( String arg0 ) { Expression loc0 = ExpressionBuilder . ognlExpression ( expression , arg0 ) ; return onNewValueBuilder ( loc0 ) ; } |
6,657 | accessor for the number of mappings in this map . concode_field_sep boolean nullKeyExists concode_elem_sep Reporter reporter concode_elem_sep int updateCounter concode_elem_sep float DEFAULT_LOAD_FACTOR concode_elem_sep Object nullKeyMapping concode_elem_sep int initCounter concode_elem_sep int DEFAULT_INITIAL_CAPACITY... | int function ( ) { return ( nullKeyExists ? table . size ( ) + 1 : table . size ( ) ) ; } |
6,658 | verifies a list does not have any null elements . concode_field_sep String IDENTIFIER_PATTERN_STR concode_elem_sep Pattern IDENTIFIER_PATTERN concode_field_sep int gt0 concode_elem_sep long gt0 concode_elem_sep int ge0 concode_elem_sep long ge0 concode_elem_sep T notNull concode_elem_sep String validIdentifier concode_... | List < T > function ( List < T > arg0 , String arg1 ) { notNull ( arg0 , arg1 ) ; for ( int loc0 = 0 ; loc0 < arg0 . size ( ) ; loc0 ++ ) { notNull ( arg0 . get ( loc0 ) , MessageFormat . format ( "srini_string" , arg1 , loc0 ) ) ; } return arg0 ; } |
6,659 | destroys the physical connection to the underlying resource manager . concode_field_sep ValidManagedConnectionFactory mcf concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep Object connection concode_elem_sep PrintWriter logwriter concode_field_sep void associateConnection concode_elem_sep Object ... | void function ( ) { } |
6,660 | set the content type value . concode_field_sep String secretName concode_elem_sep String secretVersion concode_elem_sep String vaultBaseUrl concode_elem_sep SecretAttributes attributes concode_elem_sep SecretAttributes secretAttributes concode_elem_sep String contentType concode_elem_sep Map<String,String> tags concode... | Builder function ( String arg0 ) { this . contentType = arg0 ; return this ; } |
6,661 | get the country/capital pairs concode_field_sep HashMap<String,String> table concode_field_sep HashMap<String,String> search concode_elem_sep void loadFromFile concode_elem_sep Iterator<String> getIterator concode_elem_sep String getCapital concode_elem_sep HashMap<String,String> caseInsensitiveSearch concode_elem_sep ... | HashMap < String , String > function ( ) { return table ; } |
6,662 | scans the environment classloader to retrieve all types within a specific package . this method is useful for some plug-ins , for example the ebean plugin will automatically detect all types within the models package . note that it is better to specify a very specific package to avoid expensive searches . concode_field... | Set < String > function ( Environment arg0 , String arg1 ) { return getReflections ( arg0 , arg1 ) . getStore ( ) . get ( TypeElementsScanner . class . getSimpleName ( ) ) . keySet ( ) ; } |
6,663 | set the end date as a string expression . must be paired with #setstartstr string . concode_field_sep String endStr concode_elem_sep String typeStr concode_elem_sep String startStr concode_elem_sep Date endDate concode_elem_sep Date startDate concode_field_sep void setTypeStr concode_elem_sep void setStartDate concode_... | void function ( String arg0 ) { this . endStr = arg0 ; } |
6,664 | gets the value of the absolutepath property . concode_field_sep byte[] bytes concode_elem_sep String name concode_elem_sep WsDocument nextDocument concode_elem_sep String absolutePath concode_elem_sep MimeType mimeType concode_field_sep void setBytes concode_elem_sep void setName concode_elem_sep void setNextDocument c... | String function ( ) { return absolutePath ; } |
6,665 | sets the value of the category property . concode_field_sep String digestValue concode_elem_sep String digestMethod concode_elem_sep String category concode_field_sep void setDigestValue concode_elem_sep String getDigestValue concode_elem_sep String getCategory concode_elem_sep void setDigestMethod concode_elem_sep Str... | void function ( String arg0 ) { this . category = arg0 ; } |
6,666 | output document concode_field_sep td m_topRight concode_elem_sep body m_body concode_elem_sep td m_topLeft concode_elem_sep head m_head concode_elem_sep html m_html concode_elem_sep table m_table concode_elem_sep String NBSP concode_elem_sep tr m_topRow concode_field_sep tr getTopRow concode_elem_sep body getBody conco... | void function ( OutputStream arg0 ) { m_html . output ( arg0 ) ; } |
6,667 | sets the lognode data will be sent to . . concode_field_sep LogNode mNext concode_field_sep void println concode_elem_sep LogNode getNext | void function ( LogNode arg0 ) { mNext = arg0 ; } |
6,668 | string convert to floats concode_field_sep PlaceHolder placeHolder concode_field_sep Class<?> toClass concode_elem_sep Class<T> toClass concode_elem_sep int toInt concode_elem_sep Class<T> toClass1 concode_elem_sep double toDouble concode_elem_sep boolean toBoolean concode_elem_sep long toLong concode_elem_sep Object S... | float function ( String arg0 , float arg1 ) { try { return Float . valueOf ( arg0 ) ; } catch ( Throwable loc0 ) { return arg1 ; } } |
6,669 | adds the specified dimensions to the dimensionmodel . this can only be done before or during initialization . concode_field_sep MetaDataModel metaDataModel concode_elem_sep IExceptionRegistry exceptionRegistry concode_elem_sep boolean initialized concode_elem_sep Collection<IDimension> addedDimensions concode_elem_sep ... | void function ( final Collection < IDimension > arg0 ) { if ( isInitialized ( ) ) { exceptionRegistry . throwException ( DimensionModelException . class , 1002 ) ; } if ( addedDimensions == null ) { addedDimensions = new ArrayList < IDimension > ( ) ; } addedDimensions . addAll ( arg0 ) ; } |
6,670 | returns a new array based int buffer with the specified capacity . concode_field_sep PlaceHolder placeHolder concode_field_sep DoubleBuffer newDoubleBuffer concode_elem_sep DoubleBuffer newDoubleBuffer concode_elem_sep LongBuffer newLongBuffer concode_elem_sep LongBuffer newLongBuffer concode_elem_sep FloatBuffer newFl... | IntBuffer function ( int arg0 ) { return new ReadWriteIntArrayBuffer ( arg0 ) ; } |
6,671 | 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... |
6,672 | schema default concode_field_sep SchemaGrammar[] fGrammars concode_elem_sep XSModel fSchemaInformation concode_elem_sep String fValidationContext concode_elem_sep XSNotationDeclaration fNotation concode_elem_sep XSTypeDefinition fTypeDecl concode_elem_sep boolean fSpecified concode_elem_sep XSElementDeclaration fDeclar... | String function ( ) { return fDeclaration == null ? null : fDeclaration . getConstraintValue ( ) ; } |
6,673 | sets the texture used by the particle . concode_field_sep AxisAlignedBB boundingBox concode_elem_sep int particleTextureIndexY concode_elem_sep float particleAngle concode_elem_sep double interpPosY concode_elem_sep int particleTextureIndexX concode_elem_sep float particleScale concode_elem_sep double interpPosX concod... | void function ( TextureAtlasSprite arg0 ) { int loc0 = this . getFXLayer ( ) ; if ( loc0 == 1 ) { this . particleTexture = arg0 ; } else { throw new RuntimeException ( "srini_string" ) ; } } |
6,674 | we must simulate container shutdown , which should clear threads . concode_field_sep DefaultListableBeanFactory beanFactory concode_elem_sep ExpectedException thrown concode_elem_sep int INITIAL_COUNT concode_field_sep void referenceIdentityByDefault concode_elem_sep void testFunctionalityWithNoInterceptors concode_ele... | void function ( ) { this . beanFactory . destroySingletons ( ) ; } |
6,675 | method to return this item price in a currency formatted manner : example : `` $ 4.25 '' . concode_field_sep String image concode_elem_sep String ICE_SAILER concode_elem_sep CartBean cartBean concode_elem_sep int purchasedQuantity concode_elem_sep boolean isPurchased concode_elem_sep String ICE_CASTLE concode_elem_sep ... | String function ( ) { return ( StoreTable . CURRENCY_FORMAT . format ( price ) ) ; } |
6,676 | sets the active attribute value . concode_field_sep String country concode_elem_sep String city concode_elem_sep String postalCode concode_elem_sep String stateProvince concode_elem_sep boolean active concode_elem_sep String postalAddressType concode_elem_sep boolean deliverAddress concode_elem_sep Date addressValidTo ... | void function ( boolean arg0 ) { this . active = arg0 ; } |
6,677 | makes the given class visitor visit this inner class . concode_field_sep int access concode_elem_sep String innerName concode_elem_sep String name concode_elem_sep String outerName concode_field_sep placeholderType placeHolder | void function ( final ClassVisitor arg0 ) { arg0 . visitInnerClass ( name , outerName , innerName , access ) ; } |
6,678 | binds this vertexbufferobject for rendering via gldrawarrays or gldrawelements concode_field_sep IntBuffer tmpHandle concode_elem_sep boolean isStatic concode_elem_sep int vaoHandle concode_elem_sep int usage concode_elem_sep boolean isBound concode_elem_sep VertexAttributes attributes concode_elem_sep int bufferHandle... | void function ( ShaderProgram arg0 ) { bind ( arg0 , null ) ; } |
6,679 | method to convert a resourcebundle to a map object . concode_field_sep Log log concode_field_sep Map convertListToMap concode_elem_sep Properties convertBundleToProperties concode_elem_sep Object convertLists concode_elem_sep Object getOpposingObject concode_elem_sep Object populateObject concode_elem_sep Object conver... | Map function ( ResourceBundle arg0 ) { Map loc0 = new HashMap ( ) ; for ( Enumeration loc1 = arg0 . getKeys ( ) ; loc1 . hasMoreElements ( ) ; ) { String loc2 = ( String ) loc1 . nextElement ( ) ; loc0 . put ( loc2 , arg0 . getString ( loc2 ) ) ; } return loc0 ; } |
6,680 | sets the value of the description property . concode_field_sep List<Property> property concode_elem_sep Description description concode_elem_sep Class clazz concode_field_sep Class getClazz concode_elem_sep List<Property> getProperty concode_elem_sep void setClazz concode_elem_sep Description getDescription | void function ( final Description arg0 ) { this . description = arg0 ; } |
6,681 | returns the message that indicates the cause of this inferenceissue . concode_field_sep int severity concode_elem_sep Collection<InferenceIssue> inferenceIssues concode_elem_sep String message concode_elem_sep Type type concode_elem_sep Collection<? extends TypeConstraint> constraints concode_elem_sep InferredType infe... | String function ( ) { return message ; } |
6,682 | a states name must not be empty . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart concode_field_se... | void function ( ) { prepareStateTest ( ) ; state . setName ( "srini_string" ) ; assertFalse ( validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ) ; assertError ( diagnostics , ISSUE_STATE_WITHOUT_NAME ) ; } |
6,683 | return the name of this document concode_field_sep String name concode_elem_sep Portlets portlets concode_field_sep void setName concode_elem_sep Portlets getPortlets concode_elem_sep Portlets getPortlets concode_elem_sep Portlets getPortlets concode_elem_sep Portlets getPortlets concode_elem_sep Portlets getPortlets c... | String function ( ) { return this . name ; } |
6,684 | sets the user name . concode_field_sep String password concode_elem_sep String userName concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep String getUserName | void function ( String arg0 ) { this . userName = arg0 ; } |
6,685 | returns the user uuid of this survey result . concode_field_sep SurveyResult _surveyResult concode_field_sep void setExpandoBridgeAttributes concode_elem_sep long getSurveyResultId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep com.liferay.portlet.expando.model.ExpandoBr... | java . lang . String function ( ) { return _surveyResult . getUserUuid ( ) ; } |
6,686 | sub class need to use this method to get packets to send to client . concode_field_sep boolean isChannelClosed concode_elem_sep Map<String,Object> attachMap concode_elem_sep ConcurrentLinkedQueue<PacketData> sendPacketsQueue concode_elem_sep ArrayList<WriteEventListener> listenerList concode_field_sep void fireSendEven... | PacketData function ( ) { return sendPacketsQueue . poll ( ) ; } |
6,687 | returns the class name id of this akismet data . concode_field_sep AkismetData _akismetData concode_field_sep void setAkismetDataId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel c... | long function ( ) { return _akismetData . getClassNameId ( ) ; } |
6,688 | returns the number of vertices stored in the vertex array . concode_field_sep int mCoordsPerVertex concode_elem_sep FloatBuffer NORMAL_RECTANGLE_TEX_BUF concode_elem_sep FloatBuffer TRIANGLE_BUF concode_elem_sep int SIZEOF_FLOAT concode_elem_sep float TRIANGLE_COORDS[] concode_elem_sep FloatBuffer RECTANGLE_TEX_BUF con... | int function ( ) { return mVertexCount ; } |
6,689 | information about the association . concode_field_sep AssociationDescription associationDescription concode_field_sep DescribeAssociationResult withAssociationDescription concode_elem_sep AssociationDescription getAssociationDescription concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Desc... | void function ( AssociationDescription arg0 ) { this . associationDescription = arg0 ; } |
6,690 | returns the number of elements in the array list concode_field_sep Reporter reporter concode_elem_sep int updateCounter concode_elem_sep Object[] elementData concode_elem_sep float DEFAULT_RESIZE_FACTOR concode_elem_sep int elementCount concode_elem_sep int initCounter concode_elem_sep int DEFAULT_INITIAL_CAPACITY conc... | int function ( ) { return elementCount ; } |
6,691 | permet de connaitre la nature de l'information envoyee : nouveautitre , nouvelobservable , repeteobservable , nouveaujpanel , repetetitre concode_field_sep int NouveauTitre concode_elem_sep int RepeteObservable concode_elem_sep int typeEvenement concode_elem_sep int NouveauJPanel concode_elem_sep int NouvelObservable c... | int function ( ) { return typeEvenement ; } |
6,692 | non-javadoc . concode_field_sep WebDriver driver concode_elem_sep File outputDirectory concode_field_sep void onConfigurationFailure concode_elem_sep void setDriver concode_elem_sep String getProperties concode_elem_sep void onConfigurationSuccess concode_elem_sep void onConfigurationSkip concode_elem_sep WebDriver get... | void function ( final ITestContext arg0 ) { } |
6,693 | answer the cache controlle for this graph concode_field_sep Personality<RDFNode> personality concode_elem_sep Cache enhNodes concode_elem_sep int cnt concode_elem_sep Graph graph concode_field_sep boolean isIsomorphicWith concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Personality<RDFNode... | CacheControl function ( ) { return enhNodes ; } |
6,694 | create a parser of the specified type . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | IParser function ( Type arg0 , Resources arg1 , String arg2 , boolean arg3 ) { switch ( arg0 ) { case OBJ : return new ObjParser ( arg1 , arg2 , arg3 ) ; case MAX_3DS : return new Max3DSParser ( arg1 , arg2 , arg3 ) ; case MD2 : return new MD2Parser ( arg1 , arg2 , arg3 ) ; } return null ; } |
6,695 | sets the value of the xref property . concode_field_sep Xref xref concode_elem_sep AttributeList attributeList concode_field_sep Xref getXref concode_elem_sep AttributeList getAttributeList concode_elem_sep void setAttributeList | void function ( Xref arg0 ) { this . xref = arg0 ; } |
6,696 | returns an annotation of a specific type on a property 's getter or its backing field . concode_field_sep PlaceHolder placeHolder concode_field_sep List<PropertyDescriptor> getPropertiesWithAnnotation concode_elem_sep List<PropertyDescriptor> getProperties concode_elem_sep List<PropertyDescriptor> getPropertiesWithoutA... | Optional < TAnnotation > function ( Class < ? > arg0 , PropertyDescriptor arg1 , Class < TAnnotation > arg2 ) { Optional < TAnnotation > loc0 = stream ( arg1 . getReadMethod ( ) . getAnnotationsByType ( arg2 ) ) . findAny ( ) ; return loc0 . isPresent ( ) ? loc0 : getAnnotationOnField ( arg0 , arg1 . getName ( ) , arg2... |
6,697 | sets the shadow paint . concode_field_sep Paint shadowPaint concode_elem_sep double shadowXOffset concode_elem_sep double shadowYOffset concode_elem_sep Paint outlinePaint concode_elem_sep Stroke outlineStroke concode_elem_sep Paint backgroundPaint concode_elem_sep long serialVersionUID concode_elem_sep TextBlock textB... | void function ( final Paint arg0 ) { this . shadowPaint = arg0 ; } |
6,698 | returns the current absolute write index . concode_field_sep MediaFormat format concode_elem_sep long lastReadTimeUs concode_elem_sep long largestParsedTimestampUs concode_elem_sep boolean needKeyframe concode_elem_sep SampleHolder sampleInfoHolder concode_elem_sep RollingSampleBuffer rollingBuffer concode_elem_sep lon... | int function ( ) { return rollingBuffer . getWriteIndex ( ) ; } |
6,699 | gets the versioningsystemname value for this wsversioningtagobjects . concode_field_sep java.lang.String[] names concode_elem_sep java.lang.String versioningSystemName concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc co... | java . lang . String function ( ) { return versioningSystemName ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.