code stringlengths 20 663 | nl stringlengths 68 7.19k |
|---|---|
void function ( int [ ] arg0 ) { int loc0 = 0 ; for ( int loc1 = 0 ; loc1 < 16 ; ++ loc1 ) { loc0 += arg0 [ loc1 ] ; arg0 [ loc1 ] = loc0 & 255 ; loc0 >>= 8 ; } loc0 += arg0 [ 16 ] ; arg0 [ 16 ] = loc0 & 3 ; loc0 = 5 * ( loc0 >> 2 ) ; for ( int loc1 = 0 ; loc1 < 16 ; ++ loc1 ) { loc0 += arg0 [ loc1 ] ; arg0 [ loc1 ] = ... | propagate carries following a modular multiplication . concode_field_sep BlockCipher cipher concode_elem_sep byte[] encryptedNonce concode_elem_sep int[] r concode_elem_sep int STATE_SIZE concode_elem_sep int[] c concode_elem_sep int BLOCK_SIZE concode_elem_sep int[] h concode_elem_sep int currentBlockOffset concode_el... |
void function ( ) { nativeClear ( mPtr ) ; } | reset the velocity tracker back to its initial state . concode_field_sep int MAX_DEGREE concode_elem_sep int mPtr concode_elem_sep SynchronizedPool<VelocityTracker> sPool concode_elem_sep float confidence concode_elem_sep int degree concode_elem_sep int ACTIVE_POINTER_ID concode_elem_sep String mStrategy concode_elem_s... |
void function ( ) { keystoresFactory . destroy ( ) ; } | releases any resources being used . concode_field_sep String SSLCERTIFICATE concode_elem_sep String KEYSTORES_FACTORY_CLASS_KEY concode_elem_sep String SSL_REQUIRE_CLIENT_CERT_KEY concode_elem_sep String SSL_HOSTNAME_VERIFIER_KEY concode_elem_sep String SSL_ENABLED_PROTOCOLS concode_elem_sep boolean requireClientCert c... |
Builder function ( final String arg0 ) { this . description = arg0 ; return this ; } | sets 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... |
void function ( ScriptEngine arg0 , ScriptScopeProvider arg1 ) { logger . debug ( "srini_string" , new Object [ ] { arg1 . getClass ( ) . getSimpleName ( ) , arg0 . getFactory ( ) . getEngineName ( ) } ) ; for ( Entry < String , Object > loc0 : arg1 . getScopeElements ( ) . entrySet ( ) ) { arg0 . put ( loc0 . getKey (... | code for any other scriptengine than nashorn concode_field_sep Set<ScriptScopeProvider> scriptScopeProviders concode_elem_sep Map<String,ScriptEngine> engines concode_elem_sep ScriptModuleHandlerFactory moduleHandlerFactory concode_elem_sep ServiceRegistration factoryRegistration concode_elem_sep Logger logger concode_... |
void function ( String arg0 ) { this . value = arg0 ; } | sets the value of the value property . concode_field_sep String namespace concode_elem_sep String value concode_field_sep String getValue concode_elem_sep String getNamespace concode_elem_sep void setNamespace |
FSMStateFunctionBuilder < S , D > function ( final FI . Apply2 < Object , D , FSM . State < S , D >> arg0 ) { return erasedEvent ( null , null , null , arg0 ) ; } | add a case statement that matches on any type of event . concode_field_sep PFBuilder<FSM.Event<D>,FSM.State<S,D>> builder concode_field_sep PartialFunction<FSM.Event<D>,FSM.State<S,D>> build concode_elem_sep FSMStateFunctionBuilder<S,D> event concode_elem_sep FSMStateFunctionBuilder<S,D> event concode_elem_sep FSMState... |
boolean function ( float arg0 ) { Assertions . assertCondition ( ! mIsFinished , "srini_string" ) ; if ( ! mCancelled ) { mPropertyUpdater . onUpdate ( Assertions . assertNotNull ( mAnimatedView ) , arg0 ) ; } return ! mCancelled ; } | animation engine should call this method for every animation frame passing animation progress value as a parameter . animation progress should be within the range 0 . .1 the exception here would be a spring animation engine which may slightly exceed start and end progress values . this method will return false if the a... |
Location < World > function ( ) { return location ; } | get the lock/key location . concode_field_sep Location<World> location concode_elem_sep UUID user concode_field_sep UUID getUserId |
void function ( ) { addMedia ( ) ; ArrayList < Media > loc0 ; loc0 = trackOrganizer . findMedia ( new SearchMedia . ByName ( "srini_string" ) ) ; CD loc1 = ( CD ) loc0 . get ( 0 ) ; assertEquals ( "srini_string" , loc1 . getName ( ) ) ; loc0 = trackOrganizer . findMedia ( new SearchMedia . ByName ( "srini_string" ) ) ;... | testing searchmedia.byname concode_field_sep TrackOrganizer trackOrganizer concode_field_sep void testByArtist concode_elem_sep void testByNR concode_elem_sep void addMedia concode_elem_sep void setUp |
String function ( ) { return protocol ; } | gets the domain controller 's protocol . concode_field_sep String protocol concode_elem_sep int port concode_elem_sep String host concode_field_sep void writeTo concode_elem_sep int getPort concode_elem_sep void readFrom concode_elem_sep String toString concode_elem_sep String getHost |
String function ( ) { return errorMessage ; } | gets error message . concode_field_sep String totalBibRecordsCount concode_elem_sep boolean showResults concode_elem_sep Integer totalPageCount concode_elem_sep boolean selectAll concode_elem_sep String fieldName concode_elem_sep List<String> availability concode_elem_sep String totalItemRecordsCount concode_elem_sep L... |
String function ( ) { return stringToHex ( stringData ) . toString ( ) ; } | gets a hexadecimal string representation of this object 's data , which is converted to hexadecimal form . concode_field_sep Reference reference concode_elem_sep char[] hexChar concode_elem_sep StringBuffer stringData concode_field_sep StringBuffer stringToHex concode_elem_sep String getDecryptedLiteralString concode_e... |
void function ( int arg0 ) { this . alertId = arg0 ; } | setter method for alertid concode_field_sep String alertContents concode_elem_sep List<AlertVO> circleNameList concode_elem_sep boolean editCapability concode_elem_sep String retailer concode_elem_sep String circleName concode_elem_sep String description concode_elem_sep boolean viewCapability concode_elem_sep int segm... |
String function ( ) { return prefix ; } | returns the namespace prefix . concode_field_sep String nsURI concode_elem_sep String prefix concode_elem_sep String schemaURI concode_field_sep String getNamespaceURI concode_elem_sep String getSchemaURI |
T function ( T arg0 ) { if ( size < maxSize ) { add ( arg0 ) ; return null ; } else if ( size > 0 && ! lessThan ( arg0 , heap [ 1 ] ) ) { T loc0 = heap [ 1 ] ; heap [ 1 ] = arg0 ; updateTop ( ) ; return loc0 ; } else { return arg0 ; } } | adds an object to a priorityqueue in log size time . it returns the object if any that was dropped off the heap because it was full . this can be the given parameter in case it is smaller than the full heap 's minimum , and could n't be added , or another object that was previously the smallest value in the heap and no... |
void function ( DF_Equation arg0 ) { Iterator < DF_Equation > loc0 = arg0 . getLHS ( ) . getUses ( ) ; while ( loc0 . hasNext ( ) ) { workList . add ( loc0 . next ( ) ) ; } } | update the worklist , assuming that a particular equation has been re-evaluated concode_field_sep Graph equations concode_elem_sep boolean EAGER concode_elem_sep DF_Solution cells concode_elem_sep boolean DEBUG concode_elem_sep Comparator<DF_Equation> dfComparator concode_elem_sep HashSet<DF_Equation> newEquations conc... |
void function ( ) { synchronized ( internalLock ) { Preconditions . checkState ( suspensions > 0 ) ; suspensions -- ; } startQueueWorker ( ) ; } | continue execution of tasks after a call to #suspend . more accurately , decreases the suspension counter , as has been incremented by calls to #suspend , and resumes execution if the suspension counter is zero . if this method throws , e.g. a rejectedexecutionexception from the delegate executor , execution of tasks w... |
void function ( String arg0 , int arg1 ) { if ( myHost != null && ( ( arg1 != previousProgress ) || ( ! arg0 . equals ( previousProgressLabel ) ) ) ) { myHost . updateProgress ( arg0 , arg1 ) ; } previousProgress = arg1 ; previousProgressLabel = arg0 ; } | used to communicate a progress update between a plugin tool and the main whitebox user interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amI... |
T function ( long arg0 , TimeUnit arg1 ) { if ( ! mReadyLatch . await ( arg0 , arg1 ) ) { throw new TimeoutException ( "srini_string" ) ; } if ( mException != null ) { throw new ExecutionException ( mException ) ; } return mResult ; } | wait up to the timeout time for another thread to set a value on this future . if a value has already been set , this method will return immediately . nb : for simplicity , we catch and wrap interruptedexception . do not use this class if you are in the 1 % of cases where you actually want to handle that . concode_fiel... |
String function ( ) { switch ( change . toShort ( ) ) { case COMP_INCREASE_CALL : return "srini_string" ; case COMP_DECREASE_CALL : return "srini_string" ; case COMP_MOD_INCREASE_CALL : return "srini_string" ; case COMP_MOD_DECREASE_CALL : return "srini_string" ; case COMP_NO_CHANGE_CALL : return "srini_string" ; case ... | returns a string representation of the change call . concode_field_sep byte ABS_PRESENT_CALL concode_elem_sep UByte detection concode_elem_sep float changePValue concode_elem_sep byte ABS_ABSENT_CALL concode_elem_sep byte ABS_MARGINAL_CALL concode_elem_sep boolean hasCompResults concode_elem_sep UByte change concode_el... |
String function ( ) { return mode ; } | gets the mode of the progress bar . concode_field_sep boolean customProgress concode_elem_sep String labelPosition concode_elem_sep boolean customComplete concode_elem_sep String progressCompleteLabel concode_elem_sep String mode concode_elem_sep String progressLabel concode_field_sep boolean isCustomProgress concode_e... |
GeometryCollectionBuilder function ( ) { return new GeometryCollectionBuilder ( ) ; } | create a new geometrycollection concode_field_sep PlaceHolder placeHolder concode_field_sep PointBuilder newPoint concode_elem_sep PointBuilder newPoint concode_elem_sep MultiLineStringBuilder newMultiLinestring concode_elem_sep MultiPolygonBuilder newMultiPolygon concode_elem_sep MultiPolygonBuilder newMultiPolygon co... |
String function ( ) { return browser . findElement ( By . id ( PASSWORD_INPUT_ID ) ) . getAttribute ( "srini_string" ) ; } | returns the password that is entered to the login form . concode_field_sep String LOGIN_FORM_ID concode_elem_sep String LOGIN_ERROR_ALERT_ID concode_elem_sep WebDriver browser concode_elem_sep String AUTHENTICATED_USER_ERROR_ID concode_elem_sep String pageUrl concode_elem_sep String PASSWORD_INPUT_ID concode_elem_sep S... |
void function ( int arg0 ) { this . sampleHasRedundancy = ( byte ) arg0 ; } | sample_has_redundancy takes one of the following four values : 0 : it is unknown whether there is redundant coding in this sample ; 1 : there is redundant coding in this sample ; 2 : there is no redundant coding in this sample ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep byte samplePa... |
void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; } | called whenever the osgi framework stops our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void start concode_elem_sep BundleContext getContext |
void function ( Object arg0 ) { previousValue = this . value ; this . value = arg0 ; } | sets the value . concode_field_sep boolean readable concode_elem_sep boolean virtual concode_elem_sep Object defaultValue concode_elem_sep Number maxValue concode_elem_sep HmChannel channel concode_elem_sep String description concode_elem_sep boolean readOnly concode_elem_sep HmValueType type concode_elem_sep Object pr... |
boolean function ( int [ ] arg0 , int [ ] arg1 , int arg2 , boolean arg3 ) { if ( arg3 ) { if ( arg0 . length == arg1 . length && arg2 == arg0 . length && ArrayUtil . haveEqualSets ( arg0 , arg1 , arg2 ) ) { return true ; } } else { if ( ArrayUtil . haveEqualArrays ( arg0 , arg1 , arg2 ) ) { return true ; } } return fa... | for sets == true returns true if a and b are the same length and contain the same set of integers . for sets == false returns the result of haveequalarrays a , b , count concode_field_sep PlaceHolder placeHolder concode_field_sep boolean haveEqualSets concode_elem_sep Object resizeArray concode_elem_sep boolean haveEqu... |
void function ( ) { Thread . yield ( ) ; } | yield to other running threads concode_field_sep String[] args concode_elem_sep List<Runnable> initThreadHooks concode_elem_sep boolean hard concode_elem_sep Logger log concode_elem_sep List<Runnable> shutdownHooks concode_field_sep void setHardAssert concode_elem_sep void initThread concode_elem_sep void init concode_... |
List < WadlDoc > function ( ) { if ( doc == null ) { doc = new ArrayList < WadlDoc > ( ) ; } return this . doc ; } | gets the value of the doc property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the doc property . for example , to add a new item , do as follows... |
void function ( ) { fetchAllOutstanding ( ) ; } | 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 ( ) { total = 0 ; start ( ) ; } | zeros accumulated running time and restarts this object . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeToMessage concode_elem_se... |
BitSet function ( Integer arg0 ) { return matrixItemTIDs [ arg0 - 1 ] ; } | get the tidset of an item concode_field_sep int[] support1item concode_elem_sep BitSet[] matrixItemTIDs concode_field_sep int getSupportOfItem concode_elem_sep int getSupportOfItemFirstTime concode_elem_sep void addTidForItem concode_elem_sep String toString |
Date function ( ) { return _oAuthConsumer . getModifiedDate ( ) ; } | returns the modified date of this o auth consumer . concode_field_sep OAuthConsumer _oAuthConsumer concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.... |
void function ( IProject arg0 , GeneratorEntry arg1 ) { GeneratorUtils . createEmptyProject ( arg0 ) ; } | the default implementation only creates a new default project . clients may override if they want to contribute generatorspecific project setup concode_field_sep String SCT_GENERATOR_CONSOLE concode_elem_sep IGeneratorBridge bridge concode_elem_sep MessageConsoleStream error concode_elem_sep Injector injector concode_e... |
void function ( String arg0 ) { this . throwableType = arg0 ; } | sets #throwabletype . concode_field_sep String throwableType concode_field_sep String getThrowableType concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString |
void function ( String arg0 ) { StAXOMBuilder loc0 = new StAXOMBuilder ( arg0 ) ; OMElement loc1 = loc0 . getDocumentElement ( ) ; process ( loc1 ) ; } | process the openid mapping file concode_field_sep String OPENID_CLAIM_MAPPER_FILE_PATH concode_elem_sep String LN_AXSCHEMA concode_elem_sep OpenIDClaimMapper instance concode_elem_sep String LN_SREG concode_elem_sep String LN_OPENID_SCHEMA concode_elem_sep HashMap<String,String> sregMapping concode_elem_sep HashMap<Str... |
LinkedList < String > function ( String arg0 ) { return new LinkedList < String > ( Arrays . asList ( arg0 . split ( "srini_string" ) ) ) ; } | converts a command string into a list of arguments . concode_field_sep PlaceHolder placeHolder concode_field_sep void addArgument |
Shape function ( ) { return this . marker ; } | get the marker . concode_field_sep LegendItem item concode_elem_sep Point2D labelPosition concode_elem_sep Shape marker concode_elem_sep Line2D line concode_elem_sep double x concode_elem_sep double width concode_elem_sep double y concode_elem_sep double height concode_field_sep void setY concode_elem_sep void setX con... |
void function ( final TreeNode [ ] arg0 ) { final int loc0 = arg0 . length ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { insert ( arg0 [ loc1 ] . getTerm ( ) ) ; } } | inserts to the tree the terms contained in the buffer . concode_field_sep int stringByteLength concode_elem_sep TreeNode treeRoot concode_elem_sep byte[] zeroBuffer concode_elem_sep DataOutputStream dos concode_elem_sep int numberOfNodes concode_elem_sep int numberOfPointers concode_field_sep int getNumberOfNodes conco... |
ProcessingTimeTrigger function ( ) { return new ProcessingTimeTrigger ( ) ; } | creates a new trigger that fires once system time passes the end of the window . concode_field_sep long serialVersionUID concode_field_sep TriggerResult onEventTime concode_elem_sep TriggerResult onElement concode_elem_sep TriggerResult onProcessingTime concode_elem_sep String toString |
void function ( boolean arg0 ) { } | called when the gesture source contentviewcore loses window focus . concode_field_sep PlaceHolder placeHolder concode_field_sep void onScrollEnded concode_elem_sep void onFlingStartGesture concode_elem_sep void onFlingEndGesture concode_elem_sep void onSingleTap concode_elem_sep void onScrollStarted concode_elem_sep vo... |
java . lang . String function ( ) { return _donviaLocalService . getBeanIdentifier ( ) ; } | returns the spring bean id for this bean . concode_field_sep donviaLocalService _donviaLocalService concode_field_sep java.util.List<com.newway.model.donvia> getdonvias concode_elem_sep void setWrappedService concode_elem_sep com.newway.model.donvia createdonvia concode_elem_sep java.util.List<com.newway.model.donvia> ... |
Collection < String > function ( ) { return ( Collection < String > ) ( Object ) store . getInstances ( this . id , roleContactsNameId ) ; } | returns the instance s connected to this instance through the role contacts name . concode_field_sep GUID typeId concode_elem_sep GUID roleContactsNameId concode_elem_sep PDStore store concode_elem_sep GUID id concode_elem_sep GUID roleAddressId concode_field_sep void setName concode_elem_sep PDStore getStore concode_e... |
boolean function ( FieldSet arg0 ) { return this . uniqueFields != null && this . uniqueFields . contains ( arg0 ) ; } | checks whether the given set of fields is unique , as specified in these local properties . concode_field_sep Logger LOG concode_elem_sep Ordering ordering concode_elem_sep FieldList groupedFields concode_elem_sep Set<FieldSet> uniqueFields concode_elem_sep LocalProperties EMPTY concode_field_sep LocalProperties forOrd... |
T function ( String arg0 , Iterator < T > arg1 ) { if ( arg1 == null | ! arg1 . hasNext ( ) ) { return null ; } T [ ] loc0 = UtilFunctions . iteratorToArray ( arg1 ) ; List < T > loc1 = getChoices ( arg0 , 0 , 1 , loc0 ) ; return loc1 . isEmpty ( ) ? null : loc1 . get ( 0 ) ; } | like getchoiceoptional , but this takes an iterator instead of a variable number of arguments . concode_field_sep PlaceHolder placeHolder concode_field_sep void addGap concode_elem_sep void addGap concode_elem_sep void centerFrame concode_elem_sep ImageIcon getIconFromFile concode_elem_sep T getChoice concode_elem_sep ... |
void function ( String arg0 ) { this . shortName = arg0 ; } | sets the value of the shortname property . concode_field_sep boolean allowManualRefresh concode_elem_sep String code concode_elem_sep ProviderConfiguration configuration concode_elem_sep String name concode_elem_sep ProviderModifiableConfiguration modifiableConfiguration concode_elem_sep short extensionTimeStamp concod... |
CModule function ( final INaviRawModule arg0 ) { final CModule loc0 = m_provider . createModule ( arg0 ) ; m_modules . add ( loc0 ) ; return loc0 ; } | creates a new module for a raw module . concode_field_sep List<INaviRawModule> m_rawModules concode_elem_sep ListenerProvider<IDatabaseListener> m_listeners concode_elem_sep CTagManager m_nodeTagManager concode_elem_sep DebuggerTemplateManager m_debuggerDescriptionManager concode_elem_sep List<INaviModule> m_modules co... |
ParserExtension function ( String arg0 ) { return this . extensions . get ( arg0 ) ; } | returns the parserextension instance for the given key ornull if no extension can be found for the key . concode_field_sep Cur cur concode_elem_sep Cud cud concode_elem_sep char DEFAULT_EXTENSION_FIELD_DELIMITER concode_elem_sep Map<String,ParserExtension> extensions concode_elem_sep char extensionFieldDelimiter concod... |
void function ( String arg0 ) { this . msisdn = arg0 ; } | sets the value of the msisdn property . concode_field_sep XMLGregorianCalendar contractEndDate concode_elem_sep long serialVersionUID concode_elem_sep String msisdn concode_elem_sep ProductTypeEnum productType concode_field_sep XMLGregorianCalendar getContractEndDate concode_elem_sep void setProductType concode_elem_se... |
PcepObjectHeader function ( ) { return this . rroObjHeader ; } | returns pcep rro object header . concode_field_sep byte RRO_OBJECT_VERSION concode_elem_sep LinkedList<PcepValueType> llSubObjects concode_elem_sep int OBJECT_HEADER_LENGTH concode_elem_sep byte length concode_elem_sep byte RRO_OBJ_TYPE concode_elem_sep boolean bIsPFlagSet concode_elem_sep short RRO_OBJ_MINIMUM_LENGTH ... |
long function ( ) { if ( running ) { return total + System . currentTimeMillis ( ) - startTime ; } else { return total ; } } | retrieves the accumulated time this object has spent running since it was last zeroed . 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_el... |
Bindings function ( String arg0 , String arg1 , JToggleButton arg2 , JTextArea arg3 ) { registerPropertyChangeListener ( arg2 ) ; registerPropertyChangeListener ( arg3 ) ; return add ( new OptJTextAreaBinding ( arg0 , arg1 , arg2 , arg3 ) ) ; } | handles optional jtextarea lists concode_field_sep Map _bindings concode_elem_sep boolean _modified concode_elem_sep Map _optComponents concode_field_sep boolean isPropertyNull concode_elem_sep boolean isModified concode_elem_sep Binding getBinding concode_elem_sep Bindings addOptComponent concode_elem_sep Bindings add... |
int function ( ) { return connectionTimeoutSeconds ; } | gets the connection timeout in seconds . concode_field_sep String securityGroupName concode_elem_sep String iamRole concode_elem_sep int connectionTimeoutSeconds concode_elem_sep String secretKey concode_elem_sep String accessKey concode_elem_sep String region concode_elem_sep String tagValue concode_elem_sep int CONNE... |
void function ( java . lang . Integer arg0 , java . lang . String arg1 , java . lang . String arg2 ) { } | ejbpostcreate concode_field_sep javax.ejb.EntityContext myEntityCtx concode_field_sep java.lang.String getLoc concode_elem_sep void ejbLoad concode_elem_sep void unsetEntityContext concode_elem_sep java.util.Collection getUser concode_elem_sep void ejbStore concode_elem_sep java.lang.Integer getId concode_elem_sep void... |
Date function ( String arg0 ) { try { return DATE_FORMAT . parse ( arg0 ) ; } catch ( ParseException loc0 ) { throw new ExchangeException ( "srini_string" , loc0 ) ; } } | format a date string for bitso concode_field_sep SimpleDateFormat DATE_FORMAT concode_field_sep placeholderType placeHolder |
AttributeCollection function ( ) { if ( treeWalker != null ) { return treeWalker . getAttributes ( ) ; } else { throw new IllegalStateException ( ) ; } } | get the attributes associated with the current element . this method must be called only after a start_element event has been notified . the contents of the returned attributecollection are guaranteed to remain unchanged until the next start_element event , but may be modified thereafter . the object should not be modi... |
void function ( ) { AuctionBean loc0 = ( AuctionBean ) FacesUtils . getManagedBean ( BeanNames . AUCTION_BEAN ) ; refreshAuctionBean ( loc0 ) ; } | calls the service layer for new auction data and merges it with the current state of the auctionbean . this method is called from the datarefreshlistener for each request/response cycle . it is important that underlying service call has a caching layer to avoid making costly db or web services on every call . concode_f... |
void function ( int arg0 ) { activityResultRequestCode = arg0 ; } | call this from your startactivityforresult overload . this is required to catch the case where plugins use activity.startactivityforresult + cordovainterface.setactivityresultcallback rather than cordovainterface.startactivityforresult . concode_field_sep String TAG concode_elem_sep PluginManager pluginManager concode_... |
void function ( ) { final SFSBImplementingSessionBean loc0 = lookup ( SFSBImplementingSessionBean . class ) ; Assert . assertTrue ( "srini_string" , loc0 . wasSetSessionContextMethodInvoked ( ) ) ; } | tests that javax.ejb.sessionbean #setsessioncontext javax.ejb.sessioncontext was invoked on a statefulsession bean , implementing the javax.ejb.sessionbean interface concode_field_sep InitialContext ctx concode_field_sep T lookup concode_elem_sep void testSetSessionContextOnSLSB concode_elem_sep void testSessionContext... |
ViewClassInfo function ( ) { return mViewLayoutClass ; } | returns the viewlayout class info enclosing this layout data . can not null . concode_field_sep LayoutParamsInfo mSuperClass concode_elem_sep String mFullClassName concode_elem_sep boolean mIsLayout concode_elem_sep String mShortClassName concode_elem_sep String mJavaDoc concode_elem_sep LayoutParamsInfo mLayoutData co... |
int function ( ) { return connections . size ( ) ; } | returns total number of connections in the pool . note that prior to okhttp 2.7 this included only idle connections and http/2 connections . since okhttp 2.7 this includes all connections , both active and inactive . use #idleconnectioncount to count connections not currentlyin use . concode_field_sep Deque<RealConnect... |
void function ( long arg0 , K arg1 , V arg2 ) { if ( null == arg2 ) { throw new ObjectCacheException ( "srini_string" ) ; } CacheElementRevision < K , V > loc0 = new CacheElementRevision < K , V > ( arg1 , arg2 , arg0 , CacheRevisionType . ADDED ) ; revisions . put ( arg0 , loc0 ) ; } | adds the provided v to the revision history at the providedrevision . will record the modification as a cacherevisiontype #added . concode_field_sep Comparator<Long> REVISION_COMPARATOR concode_elem_sep K cacheKey concode_elem_sep RootObjectCache<K,V> rootObjectCache concode_elem_sep SortedMap<Long,CacheElementRevision... |
JSONObject function ( JSONArray arg0 , JSONTokener arg1 ) { JSONArray loc0 = rowToJSONArray ( arg1 ) ; return loc0 != null ? loc0 . toJSONObject ( arg0 ) : null ; } | produce a jsonobject from a row of comma delimited text , using a parallel jsonarray of strings to provides the names of the elements . concode_field_sep PlaceHolder placeHolder concode_field_sep String getValue concode_elem_sep JSONArray toJSONArray concode_elem_sep JSONArray toJSONArray concode_elem_sep JSONArray toJ... |
void function ( String arg0 ) { this . type = arg0 ; } | sets the value of the type property . concode_field_sep byte[] digestValue concode_elem_sep DigestMethodType digestMethod concode_elem_sep TransformsType transforms concode_elem_sep String id concode_elem_sep String type concode_elem_sep String uri concode_field_sep TransformsType getTransforms concode_elem_sep void se... |
int function ( final Executable arg0 , final Executable arg1 , final Class < ? > [ ] arg2 ) { final float loc0 = getTotalTransformationCost ( arg2 , arg0 ) ; final float loc1 = getTotalTransformationCost ( arg2 , arg1 ) ; return loc0 < loc1 ? - 1 : loc1 < loc0 ? 1 : 0 ; } | compares the relative fitness of two executables in terms of how well they match a set of runtime parameter types , such that a list ordered by the results of the comparison would return the best match first least . concode_field_sep Class<?>[] ORDERED_PRIMITIVE_TYPES concode_elem_sep Class<?>[] parameterTypes concode_... |
void function ( String arg0 ) { if ( arg0 == null ) throw new IllegalArgumentException ( "srini_string" + this ) ; this . name = arg0 ; } | sets the name concode_field_sep String name concode_elem_sep Map<String,Object> attributes concode_elem_sep Set<String> filters concode_elem_sep double log10PError concode_elem_sep Map<String,Object> NO_ATTRIBUTES concode_elem_sep long serialVersionUID concode_elem_sep double NO_LOG10_PERROR concode_elem_sep Set<String... |
int function ( ) { return count ; } | returns the number of keys in this hashtable . concode_field_sep Entry table[] concode_elem_sep Entry next concode_elem_sep float loadFactor concode_elem_sep int count concode_elem_sep int threshold concode_elem_sep Object value concode_elem_sep int hash concode_elem_sep int key concode_field_sep boolean contains conco... |
String function ( ) { return _stormId ; } | gets the unique id assigned to this topology . the id is the storm name with a unique nonce appended to it . concode_field_sep StormTopology _topology concode_elem_sep String _stormId concode_elem_sep Map<Integer,String> _taskToComponent concode_elem_sep Map<String,List<Integer>> _componentToTasks concode_elem_sep Map ... |
void function ( String arg0 ) { this . accountKey = arg0 ; } | sets the value of the accountkey property . concode_field_sep String zipCode concode_elem_sep String city concode_elem_sep String countryCd concode_elem_sep String stateProvince concode_elem_sep String accountKey concode_elem_sep String poBox concode_elem_sep String addressTypeCd concode_elem_sep String buildingNum con... |
String function ( ) { return mapCommandButtonId ; } | gets the component id of the commandbutton , in the map ui , corresponding to this time zone . concode_field_sep Polygon mapPolygon concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep boolean isRelevantComponentId concode_elem_sep String getId concode_elem_sep Polygon getMapPolygon |
String function ( ) { return this . resourceName ; } | a unique resource name for a time-based scaling configuration option . concode_field_sep String namespace concode_elem_sep String resourceName concode_elem_sep String optionName concode_field_sep void setOptionName concode_elem_sep OptionSpecification withNamespace concode_elem_sep void setResourceName concode_elem_sep... |
CustomSenderType function ( ) { return new CustomSenderType ( ) ; } | create an instance of customsendertype concode_field_sep PlaceHolder placeHolder concode_field_sep CustomEBMTrackingType createCustomEBMTrackingType concode_elem_sep CustomEBMHeaderType createCustomEBMHeaderType concode_elem_sep CustomMessageProcessingInstructionType createCustomMessageProcessingInstructionType concode... |
void function ( Class < ? > ... arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . optionCommandClasses = arg0 ; } | set the command classes which should be considered option commands . an option command is a special type of command that usually makes more sense to present as if it is an option . for example ' -- version ' . concode_field_sep Set<CommandException.Option> NO_EXCEPTION_OPTIONS concode_elem_sep Class<?>[] optionCommandC... |
byte function ( ) { synchronized ( random ) { return random . nextByte ( ) ; } } | access a default instance of this class , access is synchronized concode_field_sep MersenneTwisterFast random concode_field_sep float nextFloat concode_elem_sep double nextGamma concode_elem_sep void nextBytes concode_elem_sep double uniform concode_elem_sep double nextInverseGaussian concode_elem_sep double hypot conc... |
boolean function ( String arg0 , boolean arg1 ) { return booleanProperty ( arg0 , arg1 ) ; } | alias to booleanproperty string name , boolean defaultvalue concode_field_sep Logger logger concode_field_sep int intProperty concode_elem_sep boolean booleanProperty concode_elem_sep boolean booleanProperty concode_elem_sep void setProperty concode_elem_sep void setSystemProperty concode_elem_sep String property conco... |
void function ( ) { synchronized ( this ) { while ( ! mCondition ) { try { this . wait ( ) ; } catch ( InterruptedException loc0 ) { } } } } | block the current thread until the condition is opened . if the condition is already opened , return immediately . concode_field_sep boolean mCondition concode_field_sep void close concode_elem_sep void open |
Shape function ( Shape arg0 , double arg1 , double arg2 ) { AffineTransform loc0 = new AffineTransform ( ) ; Rectangle2D loc1 = arg0 . getBounds2D ( ) ; double loc2 = loc1 . getX ( ) ; double loc3 = loc1 . getY ( ) + loc1 . getHeight ( ) ; loc0 . translate ( loc2 , loc3 ) ; loc0 . scale ( arg1 , arg2 ) ; loc0 . transla... | a static method to scale a shape with respect to the lower left hand corner of its bounding box . concode_field_sep PlaceHolder placeHolder concode_field_sep Shape verticallyFlippedCopyOf concode_elem_sep Shape horizontallyFlippedCopyOf concode_elem_sep Shape rotatedCopyOf concode_elem_sep Shape scaledCopyOf concode_el... |
int function ( ) { return deck . size ( ) ; } | accesses the deck 's size . concode_field_sep card[] cards concode_elem_sep deck deck concode_elem_sep boolean I_AM_DEBUGGING concode_field_sep List<Integer> cardIndexes concode_elem_sep void deal concode_elem_sep int size concode_elem_sep boolean isLegal concode_elem_sep void newGame concode_elem_sep void replaceSelec... |
ValidationResult function ( String arg0 ) { return createErrorResult ( arg0 , UNKNOWN , UNKNOWN , UNKNOWN ) ; } | createerrorresult . concode_field_sep int UNKNOWN concode_elem_sep int endColumn concode_elem_sep Level level concode_elem_sep int line concode_elem_sep int startColumn concode_elem_sep Deque<IncludeInfo> includeContext concode_elem_sep String message concode_field_sep Deque<IncludeInfo> getIncludeContext concode_elem_... |
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; } | returns the osgi service identifier . concode_field_sep WebsiteService _service concode_field_sep com.liferay.portal.model.Website getWebsite concode_elem_sep java.util.List<com.liferay.portal.model.Website> getWebsites concode_elem_sep void deleteWebsite concode_elem_sep com.liferay.portal.model.Website addWebsite con... |
long function ( ) { return maxDelayMs ; } | the maximum delay in milliseconds between reconnection attempts for this policy . concode_field_sep long maxAttempts concode_elem_sep long maxDelayMs concode_elem_sep long baseDelayMs concode_elem_sep int attempts concode_field_sep ReconnectionSchedule newSchedule concode_elem_sep long nextDelayMs concode_elem_sep long... |
void function ( int arg0 ) { LOGLEVEL = arg0 ; Log . i ( "srini_string" , "srini_string" + arg0 ) ; } | set the current log level . 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 concode_elem_sep ... |
void function ( ) { store . removeName ( id ) ; } | removes the name of this instance . in pdstore every instance can be given a name . if the instance does not have a name , nothing happens . concode_field_sep GUID typeId concode_elem_sep PDStore store concode_elem_sep GUID id concode_field_sep void setName concode_elem_sep PDStore getStore concode_elem_sep String getL... |
boolean function ( ) { return this . dirty ; } | whether this mapdatabase needs saving to disk . concode_field_sep boolean dirty concode_elem_sep String __OBFID concode_elem_sep String mapName concode_field_sep void readFromNBT concode_elem_sep void markDirty concode_elem_sep void writeToNBT concode_elem_sep void setDirty |
E function ( final String arg0 , @ Nullable final SharePhoto arg1 ) { this . bundle . putParcelable ( arg0 , arg1 ) ; return ( E ) this ; } | sets a photo value in the object . concode_field_sep Bundle bundle concode_elem_sep Bundle bundle concode_field_sep E putStringArrayList concode_elem_sep SharePhoto getPhoto concode_elem_sep E putPhotoArrayList concode_elem_sep E putDoubleArray concode_elem_sep double getDouble concode_elem_sep E putDouble concode_elem... |
void function ( ) { buffer . append ( utf - 8 ) ; } | write xml header . concode_field_sep StringBuilder buffer concode_elem_sep int CLOSING concode_elem_sep int OPENING concode_elem_sep int NO_CONTENT concode_elem_sep Writer writer concode_field_sep void writeText concode_elem_sep void sendData concode_elem_sep void writeElement concode_elem_sep void writeElement concode... |
Function < A , C > function ( Function < B , C > arg0 , Function < A , ? extends B > arg1 ) { return new FunctionComposition < A , B , C > ( arg0 , arg1 ) ; } | returns the composition of two functions . for f : a - > b and g : b - > c , composition is defined as the function h such that h a == g f a for each a . concode_field_sep long serialVersionUID concode_elem_sep Predicate<T> predicate concode_elem_sep V defaultValue concode_elem_sep Function<A,? extends B> f concode_ele... |
boolean function ( HmDatapointInfo arg0 ) { return datapoints . get ( arg0 ) != null ; } | returns true , if the channel has the given datapoint . concode_field_sep String TYPE_GATEWAY_EXTRAS concode_elem_sep Integer number concode_elem_sep String TYPE_GATEWAY_VARIABLE concode_elem_sep Map<HmDatapointInfo,HmDatapoint> datapoints concode_elem_sep String TYPE_GATEWAY_SCRIPT concode_elem_sep boolean initialized... |
Member [ ] function ( ) { if ( getNext ( ) != null ) return getNext ( ) . getMembers ( ) ; else return null ; } | get all current cluster members concode_field_sep ChannelInterceptor next concode_elem_sep ChannelInterceptor previous concode_elem_sep int optionFlag concode_field_sep boolean okToProcess concode_elem_sep ChannelInterceptor getPrevious concode_elem_sep void fireInterceptorEvent concode_elem_sep void heartbeat concode_... |
RxJava1ClientWebRequestBuilder function ( String arg0 , Object ... arg1 ) { return new RxJava1ClientWebRequestBuilder ( HttpMethod . PUT , arg0 , arg1 ) ; } | create a rxjava1clientwebrequestbuilder for a put request . concode_field_sep PlaceHolder placeHolder concode_field_sep RxJava1ClientWebRequestBuilder patch concode_elem_sep RxJava1ClientWebRequestBuilder head concode_elem_sep RxJava1ClientWebRequestBuilder request concode_elem_sep RxJava1ClientWebRequestBuilder post c... |
Map < String , String > function ( ) { ResourceBundle loc0 = ResourceBundle . getBundle ( DEFAULT_RESOURCE_PATH ) ; Map < String , String > loc1 = new TreeMap < String , String > ( ) ; this . initResources ( loc0 , loc1 ) ; this . initPluginResources ( loc1 ) ; return loc1 ; } | returns a map , containing all key , value pairs for this resource pack . concode_field_sep String DEFAULT_RESOURCE_PATH concode_field_sep String getName concode_elem_sep void initResources concode_elem_sep void initPluginResources concode_elem_sep String getDescription |
void function ( RedirectRule arg0 ) { this . redirectAllRequestsTo = arg0 ; } | sets the redirect information where all requests will be redirect to . concode_field_sep List<RoutingRule> routingRules concode_elem_sep RedirectRule redirectAllRequestsTo concode_elem_sep String indexDocumentSuffix concode_elem_sep String errorDocument concode_field_sep String getErrorDocument concode_elem_sep void se... |
int function ( ) { return myLengthDiff ; } | returns change in document length for the event causing soft wrap recalculation . concode_field_sep int startOffset concode_elem_sep int myOldEndLogicalLine concode_elem_sep int myStartOffset concode_elem_sep VisualPosition myStartVisualPosition concode_elem_sep Logger LOG concode_elem_sep int myActualEndOffset concode... |
void function ( java . lang . Boolean arg0 ) { this . isTargeted = arg0 ; } | sets the istargeted value for this bandwidthgrouptargeting . concode_field_sep com.google.api.ads.dfp.axis.v201405.Technology[] bandwidthGroups concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Boolean isTargeted concode_elem_sep org.apache.axis.descriptio... |
int function ( int arg0 ) { return PROMO_TAPS_DISABLED_BIAS - arg0 ; } | toggles the counter 's raw value from the enabled to disabled state , or vice versa . concode_field_sep ChromePreferenceManager mPrefsManager concode_elem_sep DisableablePromoTapCounter sInstance concode_elem_sep int PROMO_TAPS_DISABLED_BIAS concode_elem_sep int mCounter concode_field_sep void setRawCounter concode_ele... |
void function ( ) { SubsetConfiguration loc0 = new ConfigBuilder ( ) . subset ( "srini_string" ) ; shouldAccept ( loc0 , "srini_string" ) ; shouldAccept ( loc0 , Arrays . asList ( tag ( "srini_string" , "srini_string" , "srini_string" ) ) ) ; shouldAccept ( loc0 , mockMetricsRecord ( "srini_string" , Arrays . asList ( ... | filters should default to accept concode_field_sep PlaceHolder placeHolder concode_field_sep GlobFilter newGlobFilter concode_elem_sep void shouldReject concode_elem_sep void shouldReject concode_elem_sep void shouldReject concode_elem_sep void shouldAccept concode_elem_sep void shouldAccept concode_elem_sep void shoul... |
JspTag function ( ) { return this . parentTag ; } | returns the parent of this tag , for collaboration purposes . concode_field_sep JspContext jspContext concode_elem_sep JspFragment jspBody concode_elem_sep JspTag parentTag concode_field_sep JspContext getJspContext concode_elem_sep void setJspContext concode_elem_sep JspTag findAncestorWithClass concode_elem_sep JspFr... |
List < RoleDto > function ( ) { return motechRoleService . getRoles ( ) ; } | gets list of roles as long as user has role that allows it concode_field_sep MotechRoleService motechRoleService concode_field_sep RoleDto role concode_elem_sep void updateRole concode_elem_sep void saveRole concode_elem_sep void deleteRole concode_elem_sep void setMotechRoleService concode_elem_sep void handleRoleHasU... |
JndiNameType function ( ) { return resRefName ; } | gets the value of the resrefname property . concode_field_sep ResSharingScopeType resSharingScope concode_elem_sep FullyQualifiedClassType resType concode_elem_sep List<InjectionTargetType> injectionTarget concode_elem_sep JndiNameType resRefName concode_elem_sep List<DescriptionType> description concode_elem_sep ResAu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.