idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
24,000 | returns an image scaled to the size appropriate for the card picture panel concode_field_sep String NORMAL concode_elem_sep String TAPPED concode_elem_sep String TOKEN concode_elem_sep Pattern FULL_SIZE concode_elem_sep Map<String,BufferedImage> imageCache concode_elem_sep boolean scaleLargerThanOriginal concode_field_... | BufferedImage function ( BufferedImage arg0 , double arg1 ) { if ( arg1 == 1 ) return arg0 ; ResampleOp loc0 = new ResampleOp ( ( int ) ( arg0 . getWidth ( ) * arg1 ) , ( int ) ( arg0 . getHeight ( ) * arg1 ) ) ; BufferedImage loc1 = loc0 . filter ( arg0 , null ) ; return loc1 ; } |
24,001 | converts a long value with seconds since 1/1/1904 to date . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | Date function ( long arg0 ) { return new Date ( ( arg0 - 2082844800L ) * 1000L ) ; } |
24,002 | calculates a mixed color from two colors by interpolating the rgb parts using a mix ratio . concode_field_sep PlaceHolder placeHolder concode_field_sep void fillVerticalGradientRectangle concode_elem_sep void fillVerticalGradientRoundedRectangle | Color function ( Color arg0 , Color arg1 , int arg2 ) { return new Color ( arg0 . getDevice ( ) , arg0 . getRed ( ) + ( arg1 . getRed ( ) - arg0 . getRed ( ) ) * arg2 / 255 , arg0 . getGreen ( ) + ( arg1 . getGreen ( ) - arg0 . getGreen ( ) ) * arg2 / 255 , arg0 . getBlue ( ) + ( arg1 . getBlue ( ) - arg0 . getBlue ( )... |
24,003 | returns the config holder instance that holds the configurations concode_field_sep SynapseConfiguration synapseConfiguration concode_elem_sep UserRegistry registry concode_elem_sep DependencyManagementService dependencyManager concode_elem_sep ConfigHolder instance concode_elem_sep Map<Integer,SynapseEnvironmentService... | ConfigHolder function ( ) { return instance ; } |
24,004 | sets the email of this e d department . concode_field_sep EDDepartment _edDepartment concode_field_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int compareTo ... | void function ( java . lang . String arg0 ) { _edDepartment . setEmail ( arg0 ) ; } |
24,005 | sprintf to the log iff the log is at debug level . if the log is not at debug level , the printf operation is skipped , so no time is spent generating the string . concode_field_sep String READ concode_field_sep boolean isRootDir concode_elem_sep void debugEx concode_elem_sep void trace concode_elem_sep String partitio... | void function ( Log arg0 , String arg1 , Object ... arg2 ) { if ( arg0 . isDebugEnabled ( ) ) { arg0 . debug ( String . format ( arg1 , arg2 ) ) ; } } |
24,006 | sets the email value for this accountdata . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String real_name concode_elem_sep java.math.BigInteger id c... | void function ( java . lang . String arg0 ) { this . email = arg0 ; } |
24,007 | create an instance of tcloud concode_field_sep QName _Rss_QNAME concode_field_sep TRssItem createTRssItem concode_elem_sep TGuid createTGuid concode_elem_sep TRss createTRss concode_elem_sep TRssChannel createTRssChannel concode_elem_sep TEnclosure createTEnclosure concode_elem_sep TSource createTSource concode_elem_se... | TCloud function ( ) { return new TCloud ( ) ; } |
24,008 | converts a textual representation of an extended flag into its numeric value concode_field_sep int DO concode_elem_sep Mnemonic extflags concode_field_sep String string | int function ( String arg0 ) { return extflags . getValue ( arg0 ) ; } |
24,009 | used after a ddl change that could impact the compiled statements . clears references to compiledstatement objects while keeping the counts and references to the sql strings . concode_field_sep Database database concode_elem_sep IntKeyHashMap schemaMap concode_elem_sep IntKeyHashMap sessionMap concode_elem_sep IntKeyHa... | void function ( ) { Iterator loc0 = csidMap . values ( ) . iterator ( ) ; while ( loc0 . hasNext ( ) ) { CompiledStatement loc1 = ( CompiledStatement ) loc0 . next ( ) ; loc1 . clearVariables ( ) ; } } |
24,010 | gets the key order . concode_field_sep Ordering ordering concode_elem_sep FieldList groupedFields concode_elem_sep Set<FieldSet> uniqueFields concode_elem_sep LocalProperties EMPTY concode_field_sep LocalProperties forOrdering concode_elem_sep boolean areFieldsUnique concode_elem_sep Set<FieldSet> getUniqueFields conco... | Ordering function ( ) { return ordering ; } |
24,011 | indicates whether this reader supports the mark and reset methods . this default implementation returns false . concode_field_sep Object lock concode_field_sep int read concode_elem_sep int read concode_elem_sep int read concode_elem_sep int read concode_elem_sep boolean ready concode_elem_sep void reset concode_elem_s... | boolean function ( ) { return false ; } |
24,012 | convenience method for objects that are undumpable . always throws . concode_field_sep PlaceHolder placeHolder concode_field_sep void load | IRubyObject function ( ThreadContext arg0 , RubyObject arg1 ) { throw arg0 . runtime . newTypeError ( "srini_string" + arg1 . type ( ) ) ; } |
24,013 | the stage name in the restapi that the stage key references . concode_field_sep String stageName concode_elem_sep String restApiId concode_field_sep String getStageName concode_elem_sep StageKey withStageName concode_elem_sep int hashCode concode_elem_sep void setRestApiId concode_elem_sep boolean equals concode_elem_s... | void function ( String arg0 ) { this . stageName = arg0 ; } |
24,014 | poll the queue to receive one message , with the given timeout . if the timeout expires before a message becomes available , the method will throw an exception . concode_field_sep String _name concode_elem_sep int _queueSlot concode_elem_sep boolean _isTransactional concode_elem_sep int _accessFlag concode_elem_sep Str... | ionic . Msmq . Message function ( int arg0 ) { return _internal_receive ( arg0 , 1 ) ; } |
24,015 | http status message or null if unknown . concode_field_sep okhttp3.Response rawResponse concode_elem_sep ResponseBody errorBody concode_elem_sep T body concode_field_sep Headers headers concode_elem_sep int code concode_elem_sep Response<T> success concode_elem_sep Response<T> success concode_elem_sep ResponseBody erro... | String function ( ) { return rawResponse . message ( ) ; } |
24,016 | returns a copy of this record 's metrics . concode_field_sep MetricMap metricMap concode_elem_sep TagMap tagMap concode_field_sep TagMap getTagsCopy concode_elem_sep Number getMetric concode_elem_sep Object getTag concode_elem_sep Set<String> getMetricNames concode_elem_sep Set<String> getTagNames | MetricMap function ( ) { return new MetricMap ( metricMap ) ; } |
24,017 | show an android.app.alertdialog with an ` ok ' button and a message . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean verifySampleSetup concode_elem_sep boolean resolveConnectionFailure concode_elem_sep void showActivityResultError concode_elem_sep Dialog makeSimpleDialog concode_elem_sep Dialog mak... | void function ( Activity arg0 , String arg1 ) { ( new AlertDialog . Builder ( arg0 ) ) . setMessage ( arg1 ) . setNeutralButton ( android . R . string . ok , null ) . create ( ) . show ( ) ; } |
24,018 | sets the value of the primary property . concode_field_sep List<Note> note concode_elem_sep Extension extension concode_elem_sep String updatedBy concode_elem_sep String holdingsIdentifier concode_elem_sep Timestamp updatedDate concode_elem_sep List<Uri> uri concode_elem_sep List<ExtentOfOwnership> extentOfOwnership co... | void function ( String arg0 ) { this . primary = arg0 ; } |
24,019 | used internally by jcifs when an smbauthexception is trapped to retrieve new user credentials . concode_field_sep NtlmAuthenticator auth concode_elem_sep SmbAuthException sae concode_elem_sep String url concode_field_sep String getRequestingURL concode_elem_sep SmbAuthException getRequestingException concode_elem_sep N... | NtlmPasswordAuthentication function ( String arg0 , SmbAuthException arg1 ) { if ( auth == null ) { return null ; } synchronized ( auth ) { auth . arg0 = arg0 ; auth . arg1 = arg1 ; return auth . getNtlmPasswordAuthentication ( ) ; } } |
24,020 | for cli connection that goes through http , sometimes you need to pass in the custom authentication header before jenkins even get to authenticate the cli channel . this method lets you specify the value of this header . concode_field_sep String authorization concode_elem_sep URL jenkins concode_elem_sep String httpsPr... | CLIConnectionFactory function ( String arg0 ) { this . authorization = arg0 ; return this ; } |
24,021 | sac : implements conditionfactory #createorcondition condition , condition . concode_field_sep ConditionFactory INSTANCE concode_field_sep LangCondition createLangCondition concode_elem_sep PositionalCondition createPositionalCondition concode_elem_sep AttributeCondition createBeginHyphenAttributeCondition concode_elem... | CombinatorCondition function ( Condition arg0 , Condition arg1 ) { throw new CSSException ( "srini_string" ) ; } |
24,022 | returns true if there is another postponed route to try . 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_ele... | boolean function ( ) { return ! postponedRoutes . isEmpty ( ) ; } |
24,023 | get file error applies to concode_field_sep PlaceHolder placeHolder concode_field_sep String fileError concode_elem_sep int errorCode concode_elem_sep String error concode_elem_sep String fileErrorCode | String function ( ) { throw new RuntimeException ( "srini_string" ) ; } |
24,024 | sets the urlaction s to support in the urlhandler to build . concode_field_sep boolean mSkipShowMoPubBrowser concode_elem_sep boolean mTaskPending concode_elem_sep MoPubSchemeListener EMPTY_MOPUB_SCHEME_LISTENER concode_elem_sep ResultActions EMPTY_CLICK_LISTENER concode_elem_sep MoPubSchemeListener moPubSchemeListener... | Builder function ( @ NonNull final UrlAction arg0 , @ Nullable final UrlAction ... arg1 ) { this . supportedUrlActions = EnumSet . of ( arg0 , arg1 ) ; return this ; } |
24,025 | sets the defaults attribute value . concode_field_sep String emailAddressType concode_elem_sep String emailAddress concode_elem_sep boolean defaults concode_elem_sep String emailSource concode_elem_sep boolean active concode_field_sep boolean isDefaults concode_elem_sep void setActive concode_elem_sep String getEmailAd... | void function ( boolean arg0 ) { this . defaults = arg0 ; } |
24,026 | get the bit rate in bit per second . concode_field_sep int MPEG_V2_5 concode_elem_sep int MPEG_V1 concode_elem_sep int MPEG_V2 concode_elem_sep int length concode_elem_sep int LAYER_1 concode_elem_sep int LAYER_2 concode_elem_sep int LAYER_3 concode_elem_sep String version concode_elem_sep int sampleRate concode_elem_s... | int function ( ) { return bitRate ; } |
24,027 | create the injector in the specified stage using the specified injectorcreator strategy . the injectorcreator will most likely perform additional error handling on top of the call to guice #createinjector . concode_field_sep Module module concode_elem_sep Logger LOG concode_elem_sep Stage LAZY_SINGLETONS_STAGE concode_... | I function ( Stage arg0 , InjectorCreator < I > arg1 ) { return arg1 . createInjector ( arg0 , module ) ; } |
24,028 | register the entity resolver . concode_field_sep AttributesAdapter qAtts concode_elem_sep XMLReader xmlReader concode_elem_sep DocumentHandler documentHandler concode_elem_sep Attributes attributes concode_field_sep void setupXMLReader concode_elem_sep String getName concode_elem_sep void endPrefixMapping concode_elem_... | void function ( EntityResolver arg0 ) { xmlReader . setEntityResolver ( arg0 ) ; } |
24,029 | supplies the servicefactory of the default sharedlibraryloader . the defaults are `` shlibloader.uno '' for the library and `` com.sun.star.comp.stoc.dllcomponentloader '' for the component name . see also unoidl com.sun.star.lang.servicemanager and com.sun.star.registry.registrykey . concode_field_sep String DEFAULT_L... | XSingleServiceFactory function ( XMultiServiceFactory arg0 , XRegistryKey arg1 ) { return UnoRuntime . queryInterface ( XSingleServiceFactory . class , component_getFactory ( DEFAULT_LIBRARY , DEFAULT_IMPLEMENTATION , arg0 , arg1 , SharedLibraryLoader . class . getClassLoader ( ) ) ) ; } |
24,030 | walks the temporary directory and deletes all of the files . this method runs asynchronously in a low priority thread , using the passed in timeout and time units . concode_field_sep ArrayList<String> createdThisSession concode_elem_sep boolean DBG concode_elem_sep String TAG concode_elem_sep ExecutorService service co... | void function ( long arg0 , TimeUnit arg1 ) { if ( ! tempDir . exists ( ) ) { Log . w ( TAG , "srini_string" ) ; return ; } ScheduledExecutorService loc0 = Executors . newSingleThreadScheduledExecutor ( ) ; loc0 . schedule ( new AsyncCleanup ( loc0 ) , arg0 , arg1 ) ; } |
24,031 | whether str is a content_type field concode_field_sep String Route concode_elem_sep String Via_short concode_elem_sep String Authentication_Info concode_elem_sep String CSeq concode_elem_sep String Require concode_elem_sep String Unsupported concode_elem_sep String To_short concode_elem_sep String User_Agent concode_el... | boolean function ( String arg0 ) { return same ( arg0 , Content_Type ) || same ( arg0 , Content_Type_short ) ; } |
24,032 | katie concode_field_sep String myEmail concode_elem_sep String myUsername concode_elem_sep Auction currentAuction concode_elem_sep int myPhoneNumber concode_elem_sep String myPassword concode_elem_sep String myName concode_elem_sep String type concode_field_sep void setPassword concode_elem_sep void addItem concode_ele... | void function ( Auction arg0 ) { currentAuction = arg0 ; } |
24,033 | the default implementation does nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep void exitFieldSelectorExpression concode_elem_sep void enterPath concode_elem_sep void enterSelectorExpression concode_elem_sep void enterStepType concode_elem_sep void exitPredicateExpression concode_elem_sep void ent... | void function ( @ NotNull ParserRuleContext arg0 ) { } |
24,034 | create an instance of getcitiesbycountry concode_field_sep QName _String_QNAME concode_field_sep GetWeatherResponse createGetWeatherResponse concode_elem_sep GetWeather createGetWeather concode_elem_sep JAXBElement<String> createString concode_elem_sep GetCitiesByCountryResponse createGetCitiesByCountryResponse | GetCitiesByCountry function ( ) { return new GetCitiesByCountry ( ) ; } |
24,035 | recupera numero giocatori che hanno pagato all ` evento passato da parametro . concode_field_sep ListaeventiutenteFacadeLocal listaeventiutenteFacade concode_elem_sep CampoFacadeLocal campoFacade concode_elem_sep EventoFacadeLocal eventoFacade concode_field_sep List<Evento> getEventoByCitta concode_elem_sep List<Evento... | int function ( int arg0 ) { return eventoFacade . getGiocatoriPagato ( arg0 ) ; } |
24,036 | returns the main comment concode_field_sep Map<String,String> parameterComments concode_elem_sep Logger logger concode_elem_sep Map<Integer,String> errorComments concode_elem_sep Pattern PARAM_BLOCK concode_elem_sep Pattern COMMENT_BLOCK concode_elem_sep Pattern RETURN_BLOCK concode_elem_sep String comment concode_elem... | String function ( ) { return comment ; } |
24,037 | the date and time when the iam openid connect provider entity was created in the aws account . concode_field_sep com.amazonaws.internal.SdkInternalList<String> clientIDList concode_elem_sep com.amazonaws.internal.SdkInternalList<String> thumbprintList concode_elem_sep String url concode_elem_sep java.util.Date createDa... | void function ( java . util . Date arg0 ) { this . createDate = arg0 ; } |
24,038 | gets the angle in degrees to rotate the data axis labels . the range is -360 to 360 . a positive value angles the label so it reads downwards wile a negative value angles the label so it reads upwards . only charts that use a category based axis such as line or bar charts support label rotation . concode_field_sep Stri... | Double function ( ) { return labelRotationDouble ; } |
24,039 | tidy up the transaction/thread association before returning a message to the client . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean handleFault concode_elem_sep boolean handleMessage concode_elem_sep void close concode_elem_sep boolean suspendTransaction concode_elem_sep boolean handleOutbound | boolean function ( MessageContext arg0 ) { txbridgeLogger . logger . trace ( "srini_string" ) ; return suspendTransaction ( ) ; } |
24,040 | each client can specify the location of any data that should be loaded when the simulator starts up . concode_field_sep File data concode_elem_sep File configuration concode_elem_sep String displayName concode_elem_sep Class<? extends Client> clientClass concode_elem_sep Logger logger concode_field_sep ClientInitialize... | File function ( ) { return data ; } |
24,041 | set the uri resolver to be used in this compilation episode . concode_field_sep ErrorListener errorListener concode_elem_sep boolean schemaAware concode_elem_sep boolean compileWithTracing concode_elem_sep int recoveryPolicy concode_elem_sep String messageReceiverClassName concode_elem_sep boolean versionWarning concod... | void function ( URIResolver arg0 ) { uriResolver = arg0 ; } |
24,042 | save gcm device token to preference concode_field_sep String TUTORIAL_VIEWED concode_elem_sep String WALKED_THROUGH_PREFERENCES concode_elem_sep String AUTO_TRANSLATE concode_elem_sep String TOKEN_REGISTERED concode_elem_sep LocalStorage sInstance concode_elem_sep String RIGHT_PANEL_SETTINGS concode_elem_sep String APP... | void function ( String arg0 ) { mSharedPreferences . edit ( ) . putString ( GCM_DEVICE_TOKEN , arg0 ) . commit ( ) ; } |
24,043 | return the parent of this node or null if there is no parent . concode_field_sep TreeNode parent concode_elem_sep String name concode_elem_sep ArrayList<ConfigTreeNode> childs concode_field_sep void add concode_elem_sep int getChildCount concode_elem_sep TreeNode getChildAt concode_elem_sep String getName concode_elem_... | TreeNode function ( ) { return parent ; } |
24,044 | return value for system property name parsed as double 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 sysP... | double function ( String arg0 , double arg1 ) { String loc0 = property ( arg0 ) ; if ( loc0 != null ) { try { return Double . parseDouble ( loc0 ) ; } catch ( NumberFormatException loc1 ) { logger . log ( Level . FINE , "srini_string" , loc1 ) ; } } return arg1 ; } |
24,045 | adds a string property as string literal optionally to a map . adds quotes and does json string escaping , as described at json.org . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_el... | JSONBuilder function ( String arg0 , String arg1 , boolean arg2 ) { appendCommaAndKey ( arg0 ) ; if ( arg2 ) { params . append ( arg1 ) ; } else { arg1 = escapeString ( arg1 ) ; params . append ( '"' ) . append ( arg1 ) . append ( '"' ) ; } return this ; } |
24,046 | returns the local principle , or null if this peer is anonymous . concode_field_sep List<Certificate> localCertificates concode_elem_sep List<Certificate> peerCertificates concode_elem_sep TlsVersion tlsVersion concode_elem_sep CipherSuite cipherSuite concode_field_sep List<Certificate> localCertificates concode_elem_s... | Principal function ( ) { return ! localCertificates . isEmpty ( ) ? ( ( X509Certificate ) localCertificates . get ( 0 ) ) . getSubjectX500Principal ( ) : null ; } |
24,047 | sets value type . concode_field_sep String dbSchema concode_elem_sep String cacheName concode_elem_sep String valType concode_elem_sep JdbcTypeField[] keyFields concode_elem_sep long serialVersionUID concode_elem_sep String keyType concode_elem_sep JdbcTypeField[] valFlds concode_elem_sep String dbTbl concode_elem_sep ... | JdbcType function ( Class < ? > arg0 ) { setValueType ( arg0 . getName ( ) ) ; return this ; } |
24,048 | convert a persistentauditevent to an auditevent concode_field_sep PlaceHolder placeHolder concode_field_sep Map<String,String> convertDataToStrings concode_elem_sep Map<String,Object> convertDataToObjects | AuditEvent function ( PersistentAuditEvent arg0 ) { Instant loc0 = arg0 . getAuditEventDate ( ) . atZone ( ZoneId . systemDefault ( ) ) . toInstant ( ) ; return new AuditEvent ( Date . from ( loc0 ) , arg0 . getPrincipal ( ) , arg0 . getAuditEventType ( ) , convertDataToObjects ( arg0 . getData ( ) ) ) ; } |
24,049 | remove a listener concode_field_sep Set<AppServerStartupListener> listeners concode_elem_sep boolean startupComplete concode_elem_sep AppServerMonitor INSTANCE concode_field_sep boolean isStartupComplete concode_elem_sep void startupComplete concode_elem_sep AppServerMonitor getInstance concode_elem_sep void addListene... | void function ( AppServerStartupListener arg0 ) { listeners . remove ( arg0 ) ; } |
24,050 | currently this method always returns an instance of basicmarkerfactory . concode_field_sep StaticMarkerBinder SINGLETON concode_field_sep String getMarkerFactoryClassStr concode_elem_sep StaticMarkerBinder getSingleton | IMarkerFactory function ( ) { throw new UnsupportedOperationException ( "srini_string" ) ; } |
24,051 | a tooltip is activated when the mouse enters a controller . concode_field_sep int _myColor concode_elem_sep PVector currentPosition concode_elem_sep Label _myLabel concode_elem_sep boolean enabled concode_elem_sep int _myAlignH concode_elem_sep ControlP5 cp5 concode_elem_sep int _myMaxAlpha concode_elem_sep int _myAlph... | void function ( Controller < ? > arg0 ) { if ( map . containsKey ( arg0 ) ) { startTime = System . nanoTime ( ) ; _myController = arg0 ; currentPosition . set ( arg0 . getControlWindow ( ) . mouseX , arg0 . getControlWindow ( ) . mouseY , 0 ) ; updateText ( map . get ( _myController ) ) ; _myMode = ControlP5 . WAIT ; }... |
24,052 | stopper avspillingen av midi-loopen og spoler tilbake concode_field_sep Receiver synthReceiver concode_elem_sep Transmitter seqTransmitter concode_elem_sep String _dir concode_elem_sep HashMap soundMap concode_elem_sep SoundPlayer currentPlayer concode_elem_sep Synthesizer synthesizer concode_elem_sep Sequencer sequenc... | void function ( ) { sequencer . stop ( ) ; sequencer . setTickPosition ( ( long ) 0 ) ; } |
24,053 | some maps , like attributemap will throw an exception when isempty is called concode_field_sep PrettyPrintWriter prettyWriter concode_field_sep void writeProperty concode_elem_sep boolean isEmptyCollection concode_elem_sep void writeValue concode_elem_sep void write | boolean function ( Object arg0 ) { try { return arg0 instanceof Map && ( ( Map ) arg0 ) . isEmpty ( ) ; } catch ( Exception loc0 ) { return true ; } } |
24,054 | sets the value of the title property . concode_field_sep String author concode_elem_sep float price concode_elem_sep List<Catalog.Book> book concode_elem_sep String genre concode_elem_sep XMLGregorianCalendar publishDate concode_elem_sep String description concode_elem_sep String id concode_elem_sep String title concod... | void function ( String arg0 ) { this . title = arg0 ; } |
24,055 | normalizes the strings in the textpair . this mainly deals with whitespace-issues . other normalizations can be included . concode_field_sep Map<String,String> metaData concode_elem_sep String beforeText concode_elem_sep String afterText concode_field_sep void setMetaData concode_elem_sep void setBeforeText concode_ele... | String function ( String arg0 ) { arg0 = StringUtils . trimToEmpty ( arg0 ) ; arg0 = StringUtils . normalizeSpace ( arg0 ) ; arg0 = arg0 . replaceAll ( "srini_string" , "srini_string" ) ; return arg0 ; } |
24,056 | remove the given object . concode_field_sep long free_object_number concode_elem_sep int port concode_elem_sep java.lang.Object identity concode_elem_sep Map objects concode_elem_sep byte[] key concode_elem_sep org.omg.CORBA.Object object concode_field_sep cObject add concode_elem_sep cObject add concode_elem_sep cObje... | void function ( org . omg . CORBA . Object arg0 ) { synchronized ( objects ) { cObject loc0 = getKey ( arg0 ) ; if ( loc0 != null ) objects . remove ( loc0 . key ) ; } } |
24,057 | invoked by convert before the command is actually run , but after the options specified in the format configuration have been added to the arguments list . default implementation does nothing at all . may be implemented by subclasses to append additional arguments to cmd . concode_field_sep Map<String,String> environme... | void function ( List < String > arg0 , File arg1 , File arg2 , String arg3 , Format arg4 , CoordinateReferenceSystem arg5 ) { } |
24,058 | initiates the fetch of all blocks provided in the constructor , with possible retries in the event of transient ioexceptions . concode_field_sep ExecutorService executorService concode_elem_sep LinkedHashSet<String> outstandingBlocksIds concode_elem_sep int maxRetries concode_elem_sep RetryingBlockFetchListener current... | void function ( ) { fetchAllOutstanding ( ) ; } |
24,059 | notify manager that the action of resetting the x axis has been selected . concode_field_sep PlotterPlot plot concode_field_sep void updateButtons concode_elem_sep void resetX concode_elem_sep void rescalePlotOnTimeAxis concode_elem_sep void refreshPlotValues concode_elem_sep void informResetXAndYActionSelected concode... | void function ( ) { resetX ( ) ; if ( plot . isTimeLabelEnabled ) { rescalePlotOnTimeAxis ( ) ; } plot . getPlotAbstraction ( ) . updateResetButtons ( ) ; plot . refreshDisplay ( ) ; } |
24,060 | set the value of the boolean leaf attribute . setting the leaf attribute to true will force a tree node to be rendered as a leaf . by default the leaf attribute is false therefore all tree nodes will default to folders . concode_field_sep String branchContractedIcon concode_elem_sep boolean expanded concode_elem_sep St... | void function ( boolean arg0 ) { this . leaf = arg0 ; } |
24,061 | static getter for current locale . concode_field_sep Locale defaultLocale concode_elem_sep String[] installedLocaleIds concode_elem_sep Locale currentEditLocale concode_elem_sep String defaultLocaleId concode_elem_sep Logger log concode_elem_sep Locale currentLocale concode_elem_sep Locale[] availableLocales concode_fi... | Locale function ( ) { return LocaleManager . lookup ( ) . getCurrentLocale ( ) ; } |
24,062 | get the entity prefix based on an entity reference string , warning : this is meant for internal use , use entityreference #entityreference string andthe methods in entitybroker to parse references concode_field_sep String originalReference concode_elem_sep char SEPARATOR concode_elem_sep boolean empty concode_elem_sep... | String function ( String arg0 ) { return findPrefix ( arg0 ) ; } |
24,063 | sets the priority . concode_field_sep Animation RESET_A concode_elem_sep int ticks concode_elem_sep Graphics graphics concode_elem_sep Priority priority concode_elem_sep Graphics RESET_G concode_elem_sep Entity entity concode_elem_sep Animation animation concode_field_sep Animation getAnimation concode_elem_sep Priorit... | void function ( Priority arg0 ) { this . priority = arg0 ; } |
24,064 | return content in a directory/file , possibly recursively . concode_field_sep RowFileContentsIteratorFactory rowFileContentsIteratorFactory concode_elem_sep FileSystemAccess fileSystemAccess concode_field_sep StreamingOutput getFile concode_elem_sep boolean isDir | HdfsListing function ( final String arg0 , final boolean arg1 , final boolean arg2 ) { return new HdfsListing ( fileSystemAccess . get ( ) , new Path ( arg0 ) , arg1 , rowFileContentsIteratorFactory , arg2 ) ; } |
24,065 | returns a rounded value from the string . concode_field_sep Logger logger concode_elem_sep WeatherPublisher instance concode_elem_sep WeatherContext context concode_field_sep void publishValue concode_elem_sep String toDisplayString concode_elem_sep void publish concode_elem_sep void republishItem concode_elem_sep Stri... | BigDecimal function ( String arg0 , WeatherBindingConfig arg1 ) { if ( arg1 . getRoundingMode ( ) == null ) { return new BigDecimal ( arg0 ) ; } return new BigDecimal ( arg0 ) . setScale ( arg1 . getScale ( ) , arg1 . getRoundingMode ( ) ) ; } |
24,066 | gets the operation being called . the operation is protected , so you can not modify it . for the global operations when processing children recurively it will be a placeholder operation whose name is #recursive_global_op and the address is the address of the requested aliased resource . concode_field_sep ResourceProvi... | ModelNode function ( ) { return operation ; } |
24,067 | sets the builder to use when instantiating new rich objects . the basic , default , one is a simplerichobjectbuilder , which just calls the constructor . another useful one is biosqlrichobjectbuilder , which attempts to load objects from the database . the latter is required if you are working with hibernate as it will... | void function ( RichObjectBuilder arg0 ) { builder = arg0 ; } |
24,068 | called whenever the osgi framework stops our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void start concode_elem_sep BundleContext getContext | void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; } |
24,069 | called when the activity receives a new intent . concode_field_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onOverrideUrlLoading concode_elem_sep void onDestroy concode_elem_sep Uri remapUri concode_elem_sep Object onMessage concode_elem_sep v... | void function ( Intent arg0 ) { } |
24,070 | re starts objectinputstream concode_field_sep Object result concode_elem_sep UnicastConnection conn concode_elem_sep int opnum concode_elem_sep Vector vec concode_elem_sep ObjectInput oin concode_elem_sep ObjID objid concode_elem_sep ObjectOutput oout concode_elem_sep long hash concode_elem_sep Object object concode_el... | ObjectInput function ( ) { if ( conn != null ) { return ( oin = conn . startObjectInputStream ( ) ) ; } else { return getInputStream ( ) ; } } |
24,071 | resolve the org.springframework.util.mimetype to use for the given content typespecified for the module input/output . concode_field_sep Log logger concode_elem_sep String INPUT_TYPE concode_elem_sep CompositeMessageConverterFactory converterFactory concode_elem_sep String OUTPUT_TYPE concode_field_sep MimeType getInpu... | MimeType function ( String arg0 , Module arg1 ) { if ( ! arg0 . contains ( "srini_string" ) ) { Class < ? > loc0 = resolveJavaType ( arg0 , arg1 ) ; return MessageConverterUtils . javaObjectMimeType ( loc0 ) ; } return MimeType . valueOf ( arg0 ) ; } |
24,072 | sets the value of the leaf 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 isExpanded concode... | void function ( boolean arg0 ) { this . leaf = arg0 ; } |
24,073 | sets the value of the transactioncode property . concode_field_sep IdentifierType senderMessageID concode_elem_sep String contactEmail concode_elem_sep List<NameType> contactName concode_elem_sep CustomSenderType custom concode_elem_sep String ipAddress concode_elem_sep List<TextType> description concode_elem_sep List<... | void function ( CodeType arg0 ) { this . transactionCode = arg0 ; } |
24,074 | 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 ; } |
24,075 | sets whether instances at each node in an m5 tree should be saved for visualization purposes . default is to save memory . concode_field_sep boolean m_smoothPredictions concode_elem_sep double[] m_splitVals concode_elem_sep double m_minNumInstances concode_elem_sep int LEFT concode_elem_sep long serialVersionUID concod... | void function ( boolean arg0 ) { m_saveInstances = arg0 ; } |
24,076 | parse named parameter as boolean . concode_field_sep Log LOG concode_elem_sep List<SimpleParameterEntry> parameters concode_elem_sep String type concode_field_sep void setParameters concode_elem_sep Long getParameterLong concode_elem_sep Long getParameterLong concode_elem_sep Long getParameterTime concode_elem_sep Long... | Boolean function ( String arg0 , Boolean arg1 ) { String loc0 = getParameterValue ( arg0 , null ) ; if ( loc0 != null ) { return new Boolean ( loc0 ) ; } return arg1 ; } |
24,077 | sets id . concode_field_sep Integer holdingsId concode_elem_sep String holdingsLastUpdatedBy concode_elem_sep String owningInstitution concode_elem_sep boolean isDeletedHoldings concode_elem_sep String summaryHoldings concode_elem_sep String docType concode_elem_sep Date holdingsLastUpdatedDate concode_elem_sep String ... | void function ( String arg0 ) { this . id = arg0 ; } |
24,078 | specify the target database to operate on , as a value of the database enum : db2 , derby , h2 , hsql , informix , mysql , oracle , postgresql , sql_server , sybase concode_field_sep boolean generateDdl concode_elem_sep boolean showSql concode_elem_sep Database database concode_elem_sep String databasePlatform concode_... | void function ( Database arg0 ) { this . database = arg0 ; } |
24,079 | does the descriptor and/or integration request hibernate as the javax.persistence.spi.persistenceprovider ? note that in the case of no requested provider being named we assume we are the provider the calls got to us somehow ... concode_field_sep String[] HIBERNATE_PROVIDER_NAMES concode_elem_sep Logger log concode_fie... | boolean function ( PersistenceUnitDescriptor arg0 , Map arg1 ) { return hibernateProviderNamesContain ( extractRequestedProviderName ( arg0 , arg1 ) ) ; } |
24,080 | verifies an long is greater than zero . concode_field_sep String IDENTIFIER_PATTERN_STR concode_elem_sep Pattern IDENTIFIER_PATTERN concode_field_sep int ge0 concode_elem_sep long ge0 concode_elem_sep T notNull concode_elem_sep String validIdentifier concode_elem_sep String notEmpty concode_elem_sep List<String> notEmp... | long function ( long arg0 , String arg1 ) { if ( arg0 <= 0 ) { throw new IllegalArgumentException ( MessageFormat . format ( "srini_string" , arg1 , arg0 ) ) ; } return arg0 ; } |
24,081 | rotates the bits of in count places to the right . concode_field_sep PlaceHolder placeHolder concode_field_sep int getShort concode_elem_sep int doubleToShortBits concode_elem_sep String getMapleString concode_elem_sep String getString concode_elem_sep byte rollLeft concode_elem_sep byte[] multiplyBytes | byte function ( final byte arg0 , final int arg1 ) { int loc0 = ( int ) arg0 & 0xFF ; loc0 = ( loc0 << 8 ) >>> ( arg1 % 8 ) ; return ( byte ) ( ( loc0 & 0xFF ) | ( loc0 >>> 8 ) ) ; } |
24,082 | an optional pagination token provided by a previous request . if this parameter is specified , the response includes only records beyond the marker , up to the value specified by maxrecords . concode_field_sep String marker concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<DBSnapshot> dBSnapshots concod... | void function ( String arg0 ) { this . marker = arg0 ; } |
24,083 | set the delay between resize checks in milliseconds . concode_field_sep ResizableWidget widget concode_elem_sep int curOffsetHeight concode_elem_sep int curClientWidth concode_elem_sep Map<ResizableWidget,ResizableWidgetInfo> widgets concode_elem_sep ResizableWidgetCollection staticCollection concode_elem_sep int resiz... | void function ( int arg0 ) { this . resizeCheckDelay = arg0 ; } |
24,084 | get email concode_field_sep String password concode_elem_sep String phone concode_elem_sep String lastName concode_elem_sep Integer userStatus concode_elem_sep String username concode_elem_sep Long id concode_elem_sep String firstName concode_elem_sep String email concode_field_sep String getPhone concode_elem_sep User... | String function ( ) { return email ; } |
24,085 | retrieves prefix + '' in '' + elapsedtime + '' ms. '' concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep void zero concode_elem_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeTo... | String function ( String arg0 ) { return arg0 + "srini_string" + elapsedTime ( ) + "srini_string" ; } |
24,086 | removes all ids in this idlist before the given id . concode_field_sep boolean swigCMemOwn concode_elem_sep long swigCPtr concode_field_sep long getCPtrAndDisown concode_elem_sep boolean contains concode_elem_sep String at concode_elem_sep long size concode_elem_sep void clear concode_elem_sep void finalize concode_ele... | void function ( String arg0 ) { libsbmlJNI . IdList_removeIdsBefore ( swigCPtr , this , arg0 ) ; } |
24,087 | sets the mobilenumber value for this mo. . concode_field_sep java.lang.String addSerialRev concode_elem_sep java.lang.String mobileNumber concode_elem_sep java.lang.String smsContent concode_elem_sep java.lang.String channelnumber concode_elem_sep java.lang.String sentTime concode_elem_sep java.lang.String addSerial co... | void function ( java . lang . String arg0 ) { this . mobileNumber = arg0 ; } |
24,088 | returns the type of the child at the given index . possible types are element , text , comment , and processing_instruction concode_field_sep int PROCESSING_INSTRUCTION concode_elem_sep int COMMENT concode_elem_sep int DOCDECL concode_elem_sep StringBuffer types concode_elem_sep Vector children concode_elem_sep int DOC... | int function ( int arg0 ) { return types . charAt ( arg0 ) ; } |
24,089 | returns the location of the given resource . for local resources this is the os path in the local file system . for remote resource this is the uri . concode_field_sep PlaceHolder placeHolder concode_field_sep String[] getLocationOSStrings concode_elem_sep boolean isReadOnly concode_elem_sep IStatus checkInSync concode... | String function ( IResource arg0 ) { URI loc0 = arg0 . getLocationURI ( ) ; if ( loc0 == null ) return null ; return EFS . SCHEME_FILE . equalsIgnoreCase ( loc0 . getScheme ( ) ) ? new File ( loc0 ) . getAbsolutePath ( ) : loc0 . toString ( ) ; } |
24,090 | adds an deleterequest to the list of actions to execute . concode_field_sep BulkRequestHandler bulkRequestHandler concode_elem_sep int concurrentRequests concode_elem_sep AtomicLong executionIdGen concode_elem_sep Listener listener concode_elem_sep int bulkActions concode_elem_sep ScheduledThreadPoolExecutor scheduler ... | BulkProcessor function ( DeleteRequest arg0 ) { return add ( ( ActionRequest < ? > ) arg0 ) ; } |
24,091 | fast set location inf on map concode_field_sep MuMap _map concode_elem_sep short _coordX concode_elem_sep short _objectId concode_elem_sep short _coordY concode_elem_sep short _status concode_elem_sep short _objectType concode_elem_sep short _mapIndex concode_field_sep void setY concode_elem_sep void setX concode_elem_... | void function ( int arg0 , int arg1 , int arg2 ) { setX ( arg0 ) ; setY ( arg1 ) ; setStatus ( arg2 ) ; } |
24,092 | returns the osgi service identifier . concode_field_sep ResourcePermissionService _resourcePermissionService concode_field_sep void addResourcePermission concode_elem_sep void setWrappedService concode_elem_sep void setIndividualResourcePermissions concode_elem_sep void setIndividualResourcePermissions concode_elem_sep... | java . lang . String function ( ) { return _resourcePermissionService . getOSGiServiceIdentifier ( ) ; } |
24,093 | assert that the actual array has the same size as the other iterable . concode_field_sep Arrays arrays concode_elem_sep Failures failures concode_elem_sep CharArrays INSTANCE concode_field_sep void assertEndsWith concode_elem_sep void assertStartsWith concode_elem_sep CharArrays instance concode_elem_sep void assertNul... | void function ( AssertionInfo arg0 , char [ ] arg1 , Iterable < ? > arg2 ) { arrays . assertHasSameSizeAs ( arg0 , arg1 , arg2 ) ; } |
24,094 | before a component does all the phases , and goes through the several steps of updating its value , we sometimes need to save away the original value , so we can refer to it unmolested concode_field_sep Object savedValue concode_elem_sep Object submittedValue concode_elem_sep Log log concode_elem_sep String name concod... | void function ( FacesContext arg0 , UIComponent arg1 ) { savedValue = getValue ( arg0 , arg1 ) ; haveSavedValue = true ; } |
24,095 | sets the value of the name property . concode_field_sep String name concode_elem_sep String description concode_elem_sep String type concode_elem_sep String value concode_field_sep String getValue concode_elem_sep String getName concode_elem_sep String getType concode_elem_sep void setValue concode_elem_sep void setDes... | void function ( String arg0 ) { this . name = arg0 ; } |
24,096 | handlestorage interface method - not implemented . concode_field_sep ConfigurationService configurationService concode_elem_sep Logger log concode_elem_sep HandleService handleService concode_elem_sep DSpaceKernelImpl kernelImpl concode_field_sep void init concode_elem_sep void updateValue concode_elem_sep void createH... | void function ( ) { if ( log . isInfoEnabled ( ) ) { log . info ( "srini_string" ) ; } } |
24,097 | sets the value of the id property . concode_field_sep String id concode_elem_sep String value concode_field_sep void setvalue concode_elem_sep String getvalue concode_elem_sep String getId | void function ( String arg0 ) { this . id = arg0 ; } |
24,098 | encodes the specified cookies into a single cookie header value . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | String function ( Cookie ... arg0 ) { return io . netty . handler . codec . http . cookie . ClientCookieEncoder . LAX . encode ( arg0 ) ; } |
24,099 | return the dependency group id . concode_field_sep String groupId concode_elem_sep String artifactId concode_elem_sep List<Exclusion> exclusions concode_elem_sep String version concode_field_sep String getVersion concode_elem_sep int hashCode concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_se... | String function ( ) { return this . groupId ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.