idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
13,300
determines whether this object includes the supplied error . concode_field_sep String mUrl concode_elem_sep int SSL_INVALID concode_elem_sep int SSL_IDMISMATCH concode_elem_sep int SSL_MAX_ERROR concode_elem_sep SslCertificate mCertificate concode_elem_sep int SSL_UNTRUSTED concode_elem_sep int mErrors concode_elem_sep...
boolean function ( int arg0 ) { boolean loc0 = ( 0 <= arg0 && arg0 < SslError . SSL_MAX_ERROR ) ; if ( loc0 ) { loc0 = ( ( mErrors & ( 0x1 << arg0 ) ) != 0 ) ; } return loc0 ; }
13,301
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String locationName concode_elem_sep String locationCode concode_field_sep String getLocationName concode_elem_sep Location withLocationName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_se...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getLocationCode ( ) != null ) loc0 . append ( "srini_string" + getLocationCode ( ) + "srini_string" ) ; if ( getLocationName ( ) != null ) loc0 . append ( "srini_string" + getLocationName ( ) ) ; loc0 . append ( "...
13,302
returns true if this object is equal to the specified object , and false otherwise . concode_field_sep LengthAdjustmentType EXPAND concode_elem_sep String name concode_elem_sep LengthAdjustmentType CONTRACT concode_elem_sep LengthAdjustmentType NO_CHANGE concode_elem_sep long serialVersionUID concode_field_sep Object r...
boolean function ( final Object arg0 ) { if ( arg0 == this ) { return true ; } if ( ! ( arg0 instanceof LengthAdjustmentType ) ) { return false ; } final LengthAdjustmentType loc0 = ( LengthAdjustmentType ) arg0 ; if ( ! this . name . equals ( loc0 . name ) ) { return false ; } return true ; }
13,303
sets the size threshold beyond which files are written directly to disk . concode_field_sep int sizeThreshold concode_elem_sep int DEFAULT_SIZE_THRESHOLD concode_elem_sep File repository concode_elem_sep FileCleaningTracker fileCleaningTracker concode_field_sep FileCleaningTracker getFileCleaningTracker concode_elem_se...
void function ( int arg0 ) { this . sizeThreshold = arg0 ; }
13,304
resets the counts for all objects . the size of #items will be0 after this call . concode_field_sep TObjectIntMap<T> counts concode_elem_sep int sum concode_elem_sep long serialVersionUID concode_field_sep void add concode_elem_sep void countAll concode_elem_sep T max concode_elem_sep double getFrequency concode_elem_s...
void function ( ) { counts . clear ( ) ; sum = 0 ; }
13,305
draws the given shape relative to the position of the given item . concode_field_sep TextLayout textLayout concode_elem_sep Rectangle2f boundingRect concode_elem_sep int length concode_elem_sep Point2f position concode_elem_sep ArrayList<Item> items concode_field_sep void fillShape concode_elem_sep Tuple2<Item,Integer>...
void function ( Graphics2D arg0 , Shape arg1 , Item arg2 ) { AffineTransform loc0 = arg0 . getTransform ( ) ; arg0 . translate ( arg2 . position . x , arg2 . position . y ) ; float loc1 = Units . pxToMm_1_1 ; arg0 . loc1 ( loc1 , loc1 ) ; arg0 . draw ( arg1 ) ; arg0 . setTransform ( loc0 ) ; }
13,306
removes the mapping from the specified key , if there was any . concode_field_sep int[] mKeys concode_elem_sep int mSize concode_elem_sep char[] mValues concode_field_sep int keyAt concode_elem_sep int size concode_elem_sep int indexOfKey concode_elem_sep char get concode_elem_sep char get concode_elem_sep SparseCharAr...
void function ( int arg0 ) { int loc0 = binarySearch ( mKeys , 0 , mSize , arg0 ) ; if ( loc0 >= 0 ) { System . arraycopy ( mKeys , loc0 + 1 , mKeys , loc0 , mSize - ( loc0 + 1 ) ) ; System . arraycopy ( mValues , loc0 + 1 , mValues , loc0 , mSize - ( loc0 + 1 ) ) ; mSize -- ; } }
13,307
sets the value of the opstenantname property . concode_field_sep JAXBElement<String> opstenantname concode_elem_sep JAXBElement<String> tokenId concode_elem_sep JAXBElement<String> ip concode_elem_sep JAXBElement<String> pool concode_elem_sep JAXBElement<String> tenantId concode_elem_sep JAXBElement<String> opsusername...
void function ( JAXBElement < String > arg0 ) { this . opstenantname = arg0 ; }
13,308
maps a platform independent library name to a platform dependent name . concode_field_sep boolean is64Bit concode_elem_sep HashSet<String> loadedLibraries concode_elem_sep boolean isAndroid concode_elem_sep boolean isMac concode_elem_sep boolean isIos concode_elem_sep String abi concode_elem_sep boolean isLinux concode...
String function ( String arg0 ) { if ( isWindows ) return arg0 + ( is64Bit ? "srini_string" : "srini_string" ) ; if ( isLinux ) return "srini_string" + arg0 + ( isARM ? "srini_string" + abi : "srini_string" ) + ( is64Bit ? "srini_string" : "srini_string" ) ; if ( isMac ) return "srini_string" + arg0 + ( is64Bit ? "srin...
13,309
override super method concode_field_sep Map<String,ConcurrentLinkedQueue<PacketData>> dataMap concode_elem_sep Logger LOG concode_elem_sep IPacketHandler other concode_elem_sep PacketTransformer transformer concode_elem_sep String KEY_UUID concode_elem_sep String KEY_RRLIST concode_elem_sep int RR_SIZE concode_field_se...
void function ( WriteEvent arg0 ) { IPacketWriter loc0 = arg0 . getPacketWriter ( ) ; CircularList < PacketData > loc1 = loc0 . getAttached ( KEY_RRLIST ) ; if ( loc1 != null ) { loc1 . add ( arg0 . getPacketData ( ) ) ; } }
13,310
helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g...
void function ( JSONArray arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; }
13,311
gets the on message list . concode_field_sep List<List<Object>> onErrorList concode_elem_sep List<List<Object>> onOpenList concode_elem_sep List<List<Object>> onCloseList concode_elem_sep List<List<Object>> onMessageList concode_field_sep List<List<Object>> getOnErrorList concode_elem_sep void onClose concode_elem_sep ...
List < List < Object >> function ( ) { return onMessageList ; }
13,312
merge the given array into the given collection . concode_field_sep Enumeration<E> enumeration concode_elem_sep Map<K,List<V>> map concode_field_sep Iterator<E> toIterator concode_elem_sep E next concode_elem_sep void mergePropertiesIntoMap concode_elem_sep boolean containsInstance concode_elem_sep Collection<List<V>> ...
void function ( Object arg0 , Collection < E > arg1 ) { if ( arg1 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } Object [ ] loc0 = ObjectUtils . toObjectArray ( arg0 ) ; for ( Object loc1 : loc0 ) { arg1 . add ( ( E ) loc1 ) ; } }
13,313
returns the mime type of the data specified by the given uri string . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String stripFileProtocol concode_elem_sep String getRealPath concode_elem_sep String getRealPath concode_elem_sep String getMimeTypeForExtension concode_elem_sep InputSt...
String function ( String arg0 , CordovaInterface arg1 ) { String loc0 = null ; Uri loc1 = Uri . parse ( arg0 ) ; if ( arg0 . startsWith ( "srini_string" ) ) { loc0 = arg1 . getActivity ( ) . getContentResolver ( ) . getType ( loc1 ) ; } else { loc0 = getMimeTypeForExtension ( loc1 . getPath ( ) ) ; } return loc0 ; }
13,314
return the jsf externalcontext that this adapter operates on . concode_field_sep FacesContext facesContext concode_elem_sep Log logger concode_elem_sep boolean portletApiPresent concode_field_sep FacesContext getFacesContext concode_elem_sep Object getSessionMutex concode_elem_sep void setAttribute concode_elem_sep voi...
ExternalContext function ( ) { return getFacesContext ( ) . getExternalContext ( ) ; }
13,315
sets the orgid owning the errata . concode_field_sep String product concode_elem_sep String updateDate concode_elem_sep String advisory concode_elem_sep String notes concode_elem_sep String advisoryName concode_elem_sep String created concode_elem_sep String description concode_elem_sep String synopsis concode_elem_sep...
void function ( String arg0 ) { orgId = arg0 ; }
13,316
returns the classname for the java class that was defined as resolver . concode_field_sep String resolver concode_elem_sep String filterString concode_elem_sep int dataFragment concode_elem_sep String remoteLogin concode_elem_sep int totalSegments concode_elem_sep String accessor concode_elem_sep boolean threadSafe con...
String function ( ) { return resolver ; }
13,317
sets the throwable object associated with this log record . concode_field_sep long sequenceNumber concode_elem_sep String sourceMethodName concode_elem_sep int initThreadId concode_elem_sep Level level concode_elem_sep Throwable thrown concode_elem_sep boolean sourceInitialized concode_elem_sep String message concode_e...
void function ( Throwable arg0 ) { this . thrown = arg0 ; }
13,318
retrieves diagnostics information preserved in the history file concode_field_sep Iterable<String> NODIAGS_LIST concode_elem_sep String NODIAGS concode_elem_sep JobUnsuccessfulCompletion datum concode_field_sep int getFinishedReduces concode_elem_sep EventType getEventType concode_elem_sep Object getDatum concode_elem_...
String function ( ) { final CharSequence loc0 = datum . getDiagnostics ( ) ; return loc0 == null ? NODIAGS : loc0 . toString ( ) ; }
13,319
returns the fully qualified class name of this d d m template link . concode_field_sep DDMTemplateLink _ddmTemplateLink concode_field_sep long getClassNameId concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep v...
java . lang . String function ( ) { return _ddmTemplateLink . getClassName ( ) ; }
13,320
determines if the command object being submitted is a valid type concode_field_sep Log log concode_field_sep void validate
boolean function ( Class arg0 ) { return arg0 . equals ( VisitType . class ) ; }
13,321
returns true if #connect has been attempted on this connection . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode...
boolean function ( ) { return connected ; }
13,322
implements pathhandler #curvetoquadraticsmoothrel float , float . concode_field_sep float[] p concode_elem_sep LinkedList cs concode_elem_sep LinkedList ps concode_elem_sep short[] c concode_elem_sep int cindex concode_elem_sep int pcount concode_elem_sep int pindex concode_elem_sep int ccount concode_field_sep void cu...
void function ( float arg0 , float arg1 ) { command ( SVGPathSeg . PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL ) ; param ( arg0 ) ; param ( arg1 ) ; }
13,323
this is a must to set for all applications that is getting developed ! if not set supportedmethodsexception will get thrown whenever you try to get / create devices . usage : / / set supported methods for this app . tellstickdevice.setsupportedmethods jna.clibrary.tellstick _ bell | jna.clibrary.tellstick _ turnoff | j...
void function ( int arg0 ) { supportedMethods = arg0 ; }
13,324
specifies the classloader to use to load the class . example : class < ? > type = org.fest.reflect.core.reflection #type string type `` org.republic.jedi '' . type #withclassloader classloader withclassloader myclassloader . typeloader #load load ; concode_field_sep String name concode_field_sep Class<?> load concode_e...
TypeLoader function ( ClassLoader arg0 ) { return new TypeLoader ( name , arg0 ) ; }
13,325
test will timeout if secure random implementation always returns a constant value . concode_field_sep PlaceHolder placeHolder concode_field_sep void checkRandomBytes concode_elem_sep void testRandomFloat concode_elem_sep void testRandomInt concode_elem_sep void testRandomBytes concode_elem_sep void testRandomDouble
void function ( ) { OpensslSecureRandom loc0 = new OpensslSecureRandom ( ) ; long loc1 = loc0 . nextLong ( ) ; long loc2 = loc0 . nextLong ( ) ; while ( loc1 == loc2 ) { loc2 = loc0 . nextLong ( ) ; } }
13,326
number of threads used in the server thread pool . default to 0 , which is 2x #cores . concode_field_sep ConfigProvider conf concode_field_sep int ioRetryWaitTimeMs concode_elem_sep String ioMode concode_elem_sep int receiveBuf concode_elem_sep int sendBuf concode_elem_sep int numConnectionsPerPeer concode_elem_sep int...
int function ( ) { return conf . getInt ( "srini_string" , 0 ) ; }
13,327
each timezonewrapper has an id of a component in the ui that corresponds to its time zone . by this , if an event comes from a component in the web page , then this will return the relevant timezonewrapper . concode_field_sep DateFormat selectedFormat concode_elem_sep int[] pacificXCoords concode_elem_sep int[] nfldXCo...
TimeZoneWrapper function ( String arg0 ) { TimeZoneWrapper loc0 ; for ( int loc1 = 0 ; loc1 < allTimeZoneList . size ( ) ; loc1 ++ ) { loc0 = ( TimeZoneWrapper ) allTimeZoneList . get ( loc1 ) ; if ( loc0 . isRelevantComponentId ( arg0 ) ) { return loc0 ; } } return null ; }
13,328
sets the logical operator on the expected attribute conditions of this delete operation and returns a pointer to this object for method-chaining . concode_field_sep Map<String,ExpectedAttributeValue> expectedAttributes concode_elem_sep String conditionalOperator concode_elem_sep String conditionExpression concode_elem_...
DynamoDBDeleteExpression function ( String arg0 ) { setConditionalOperator ( arg0 ) ; return this ; }
13,329
converts a datetime string into and instance of java.util.date using the date format : yyyy-mm-ddthh : mm : ss.sssz . concode_field_sep DateTimeFormatter FORMATTER_SECONDS_T_Z concode_elem_sep DateTimeFormatter FORMATTER_SECONDS_T concode_elem_sep DateTimeFormatter FORMATTER_DATE concode_elem_sep DateTimeFormatter FORM...
Date function ( String arg0 ) { return parseDateLoose ( arg0 ) ; }
13,330
go to next track for current picker concode_field_sep RockLockActivity mParent concode_elem_sep String mCurrentSongId concode_elem_sep String mCurrentSongFile concode_elem_sep String mCurrentSong concode_elem_sep MediaPlayer mPlayer concode_elem_sep boolean mIsBrowsing concode_elem_sep int SEEK_STEP concode_elem_sep fl...
void function ( boolean arg0 ) { mIsBrowsing = arg0 ; mFirstPlay = false ; mNavigator . browseAdjacentTrack ( SongPicker . DIRECTION_FORWARD , false ) ; if ( ! mIsBrowsing && isPlaying ( ) ) { play ( ) ; } }
13,331
gets server time . concode_field_sep DateFormat selectedFormat concode_elem_sep DateFormat serverFormat concode_elem_sep int renderInterval concode_elem_sep ArrayList allTimeZoneList concode_elem_sep TimeZone selectedTimeZone concode_elem_sep TimeZone serverTimeZone concode_elem_sep PersistentFacesState state concode_e...
String function ( ) { return formatCurrentTime ( serverFormat ) ; }
13,332
adds a listener to the list that 's notified each time a change to the data model occurs . concode_field_sep ArrayList data concode_elem_sep boolean allowOtherValue concode_elem_sep ArrayList listdatalistener concode_elem_sep Object value concode_elem_sep Object key concode_elem_sep Object selectedItemValue concode_ele...
void function ( final ListDataListener arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } this . listdatalistener . add ( arg0 ) ; this . tempListeners = null ; }
13,333
sac : implements org.w3c.css.sac.selectorfactory #createnegativeselector simpleselector . concode_field_sep SelectorFactory INSTANCE concode_field_sep CharacterDataSelector createTextNodeSelector concode_elem_sep SimpleSelector createRootNodeSelector concode_elem_sep DescendantSelector createChildSelector concode_elem_...
NegativeSelector function ( SimpleSelector arg0 ) { throw new CSSException ( "srini_string" ) ; }
13,334
gets the value of the trademarkdisapproved property . concode_field_sep AdGroupAdApprovalStatus approvalStatus concode_elem_sep List<String> disapprovalReasons concode_elem_sep Ad ad concode_elem_sep AdGroupAdExperimentData experimentData concode_elem_sep Boolean trademarkDisapproved concode_elem_sep Long adGroupId con...
Boolean function ( ) { return trademarkDisapproved ; }
13,335
whether the volume is deleted on instance termination . concode_field_sep String volumeType concode_elem_sep String snapshotId concode_elem_sep Integer iops concode_elem_sep Boolean deleteOnTermination concode_elem_sep Integer volumeSize concode_field_sep void setSnapshotId concode_elem_sep void setIops concode_elem_se...
Boolean function ( ) { return this . deleteOnTermination ; }
13,336
fetch records for the provided guids . the caller is responsible for closing the cursor . concode_field_sep Context context concode_elem_sep String[] GUID_COLUMNS concode_elem_sep String LOG_TAG concode_elem_sep RepoUtils.QueryHelper queryHelper concode_field_sep int purgeGuid concode_elem_sep Cursor fetchAll concode_e...
Cursor function ( String arg0 [ ] ) { String loc0 = RepoUtils . computeSQLInClause ( arg0 . length , "srini_string" ) ; return queryHelper . safeQuery ( "srini_string" , getAllColumns ( ) , loc0 , arg0 , null ) ; }
13,337
updates this animation 's current image frame , if neccesary . concode_field_sep long totalDuration concode_elem_sep Image image concode_elem_sep ArrayList frames concode_elem_sep int currFrameIndex concode_elem_sep long animTime concode_elem_sep long endTime concode_field_sep AnimFrame getFrame concode_elem_sep Object...
void function ( long arg0 ) { if ( frames . size ( ) > 1 ) { animTime += arg0 ; if ( animTime >= totalDuration ) { animTime = animTime % totalDuration ; currFrameIndex = 0 ; } while ( animTime > getFrame ( currFrameIndex ) . endTime ) { currFrameIndex ++ ; } } }
13,338
gets the permission value of the specified permission constant . concode_field_sep int permissionFlags concode_elem_sep int DATA_EXTRACTION_BIT_5 concode_elem_sep int ASSEMBLE_DOCUMENT_BIT_11 concode_elem_sep int CONTENT_EXTRACTION concode_elem_sep boolean isInit concode_elem_sep int MODIFY_FORMS_BIT_9 concode_elem_sep...
boolean function ( final int arg0 ) { if ( ! isInit ) { init ( ) ; } return ! ( arg0 < 0 || arg0 > permissions . length ) && permissions [ arg0 ] ; }
13,339
gets the value of the keepchangehistory property . concode_field_sep Boolean shared concode_elem_sep Object parent concode_elem_sep String lastGuid concode_elem_sep Long preserveHistory concode_elem_sep Boolean history concode_elem_sep Integer version concode_elem_sep Long revisionId concode_elem_sep Boolean trackRevis...
boolean function ( ) { if ( keepChangeHistory == null ) { return true ; } else { return keepChangeHistory ; } }
13,340
returns the name of the class followed by a '' '' , the name of the attribute , and a '' '' . concode_field_sep Attribute LANGUAGE concode_elem_sep Attribute INPUT_METHOD_SEGMENT concode_elem_sep String name concode_elem_sep Attribute READING concode_elem_sep long serialVersionUID concode_field_sep String getName conco...
String function ( ) { return getClass ( ) . getName ( ) + '(' + getName ( ) + ')' ; }
13,341
sets the unit identifier of this modbusmessage . the identifier should be a 1-byte non negative integer value valid in the range of 0-255 . concode_field_sep boolean m_Headless concode_elem_sep int m_ProtocolID concode_elem_sep int m_TransactionID concode_elem_sep int m_DataLength concode_elem_sep int m_UnitID concode_...
void function ( int arg0 ) { m_UnitID = arg0 ; }
13,342
get the sampling rate . concode_field_sep int alphaSize concode_elem_sep HashMap<Byte,Pair<Long,Integer>> alphabetMap concode_elem_sep int sampledSASize concode_elem_sep int bits concode_elem_sep int numContexts concode_elem_sep int sampledSABits concode_elem_sep byte EOF concode_elem_sep int samplingBase concode_elem_...
int function ( ) { return samplingRate ; }
13,343
returns a hexadecimal printed representation . the value is formatted to fit on lines of at least 75 characters , with embedded newlines . words are separated for readability , with eight words 32 bytes per line . concode_field_sep byte[] places concode_elem_sep String digits concode_field_sep int toInt concode_elem_se...
String function ( ) { return hexify ( ) ; }
13,344
gets the unique id for the fetched message . concode_field_sep MessageUid uid concode_elem_sep Envelope envelope concode_elem_sep int messageNumber concode_elem_sep Long size concode_elem_sep Long modSeq concode_elem_sep List<BodyElement> elements concode_elem_sep Flags flags concode_elem_sep Structure bodystructure co...
MessageUid function ( ) { return uid ; }
13,345
call this to send a message with some binary data . the protocal and the client must understand the message , message type , and data . concode_field_sep boolean hasRequestedShutdown concode_elem_sep ObjectSocketWrapper clientSocket concode_elem_sep ObserverLord<O> observerLord concode_elem_sep boolean isServerRunning ...
void function ( String arg0 , String arg1 , Serializable arg2 ) { clientSocket . sendObject ( new MessageObject ( arg0 , arg1 , arg2 ) ) ; }
13,346
removes all elements in c concode_field_sep int numElements concode_elem_sep int[] data concode_elem_sep int addIndex concode_elem_sep BitSet isThere concode_elem_sep int pollIndex concode_elem_sep int lastIndex concode_field_sep boolean add concode_elem_sep boolean add concode_elem_sep boolean add concode_elem_sep boo...
boolean function ( Collection < ? > arg0 ) { boolean loc0 = false ; for ( Object loc1 : arg0 ) loc0 |= remove ( loc1 ) ; return loc0 ; }
13,347
pops a closure expression from the closure expression stack . concode_field_sep Set<MethodNode> methodsToBeVisited concode_elem_sep Set<Long> reportedErrors concode_elem_sep LinkedList<BinaryExpression> enclosingBinaryExpressions concode_elem_sep LinkedList<EnclosingClosure> enclosingClosures concode_elem_sep Delegatio...
EnclosingClosure function ( ) { return enclosingClosures . removeFirst ( ) ; }
13,348
the id of the decisiontaskcompleted event corresponding to the decision task that resulted in the cancelworkflowexecution decision for this cancellation request . this information can be useful for diagnosing problems by tracing back the chain of events leading up to this event . returns a reference to this object so t...
CancelWorkflowExecutionFailedEventAttributes function ( Long arg0 ) { this . decisionTaskCompletedEventId = arg0 ; return this ; }
13,349
clears the status message . concode_field_sep boolean fgFilterStack concode_elem_sep String SUITE_METHODNAME concode_elem_sep int fgMaxMessageLength concode_elem_sep boolean fLoading concode_elem_sep Properties fPreferences concode_field_sep void addError concode_elem_sep boolean showStackRaw concode_elem_sep void star...
void function ( ) { }
13,350
set the maximum value of edge properties . this is an exclusive limit . the minimum is always 0 . concode_field_sep int edgePropKeys concode_elem_sep int maxVertexPropVal concode_elem_sep int edgePropKeys concode_elem_sep String LABEL_PREFIX concode_elem_sep String UID_PROP concode_elem_sep int edgeLabels concode_elem_...
Builder function ( int arg0 ) { maxEdgePropVal = arg0 ; return this ; }
13,351
test method for com.flatironschool.javacs.myarraylist #containsall java.util.collection . concode_field_sep List<Integer> mll concode_elem_sep List<Integer> list concode_field_sep void testClear concode_elem_sep void testIndexOfNull concode_elem_sep void testRemoveInt concode_elem_sep void testSet concode_elem_sep void...
void function ( ) { assertThat ( mll . containsAll ( list ) , equalTo ( true ) ) ; }
13,352
get the description concode_field_sep Logger logger concode_elem_sep SLA mySLA concode_elem_sep List<SLAPolicyEventListener> listeners concode_elem_sep Object eventSource concode_elem_sep BlockingQueue<SLAThresholdEvent> eventQ concode_elem_sep ExecutorService executor concode_elem_sep ThresholdManager thresholdManager...
String function ( ) { return ( description ) ; }
13,353
this computes the number of common most-significant bits in the mantissa . it does not count the hidden bit , which is always 1 . it does not determine whether the numbers have the same exponent - if they do not , the value computed by this function is meaningless . concode_field_sep int EXPONENT_BIAS concode_elem_sep ...
int function ( DoubleBits arg0 ) { for ( int loc0 = 0 ; loc0 < 52 ; loc0 ++ ) { int loc1 = loc0 + 12 ; if ( getBit ( loc0 ) != arg0 . getBit ( loc0 ) ) return loc0 ; } return 52 ; }
13,354
the url where the user needs to be redirected to grant authorization to your application . concode_field_sep OAuthSignatureCalculator calculator concode_elem_sep String requestTokenURL concode_elem_sep String authorizationURL concode_elem_sep OAuthProvider provider concode_elem_sep String accessTokenURL concode_elem_se...
String function ( String arg0 ) { return oauth . signpost . OAuth . addQueryParameters ( provider . getAuthorizationWebsiteUrl ( ) , oauth . signpost . OAuth . OAUTH_TOKEN , arg0 ) ; }
13,355
subsequently , newmethod name will attempt to instantiate the given class , with no constructor parameters . concode_field_sep String consumerSecret concode_elem_sep Base64 BASE64 concode_elem_sep Map<String,Class> NAME_TO_CLASS concode_elem_sep String _ACCESSOR concode_elem_sep Map.Entry value concode_elem_sep String ...
void function ( String arg0 , Class arg1 ) { NAME_TO_CLASS . put ( arg0 , arg1 ) ; }
13,356
a unique identifier for a sizeconstraintset . you use sizeconstraintsetid to get information about a sizeconstraintset see getsizeconstraintset , update a sizeconstraintset see updatesizeconstraintset , insert a sizeconstraintset into a rule or delete one from a rule see updaterule , and delete a sizeconstraintset from...
String function ( ) { return this . sizeConstraintSetId ; }
13,357
returns an object from the list . concode_field_sep List data concode_elem_sep long serialVersionUID concode_field_sep Comparable getKey concode_elem_sep int getIndex concode_elem_sep void removeValue concode_elem_sep void removeValue concode_elem_sep int hashCode concode_elem_sep int getItemCount concode_elem_sep bool...
Object function ( int arg0 ) { Object loc0 = null ; KeyedObject loc1 = ( KeyedObject ) this . data . get ( arg0 ) ; if ( loc1 != null ) { loc0 = loc1 . getObject ( ) ; } return loc0 ; }
13,358
sets the binding to a copy with the specified annotation on the bound key concode_field_sep String SINGLE_INSTANCE_AND_SCOPE concode_elem_sep String CONSTANT_VALUE_ALREADY_SET concode_elem_sep String ANNOTATION_ALREADY_SPECIFIED concode_elem_sep String IMPLEMENTATION_ALREADY_SET concode_elem_sep String BINDING_TO_NULL ...
BindingImpl < T > function ( Class < ? extends Annotation > arg0 ) { checkNotNull ( arg0 , "srini_string" ) ; checkNotAnnotated ( ) ; return setBinding ( binding . withKey ( Key . get ( this . binding . getKey ( ) . getTypeLiteral ( ) , arg0 ) ) ) ; }
13,359
custom property concode_field_sep String REF concode_elem_sep String PROP_KITCHEN_PRINTER_NAME concode_elem_sep String PROP_USE_NORMAL_PRINTER_FOR_TICKET concode_elem_sep String PROP_USE_NORMAL_PRINTER_FOR_KITCHEN concode_elem_sep String PROP_RECEIPT_PRINTER_NAME concode_elem_sep String PROP_PRINT_KITCHEN_WHEN_TICKET_P...
String function ( ) { return "srini_string" ; }
13,360
returns an iterator which returns the simplematrices represented by an iterator over tensors . this is useful for if you want to perform some operation on each of the simplematrix slices , such as turning them into a parameter stack . concode_field_sep SimpleMatrix[] slices concode_elem_sep int numRows concode_elem_sep...
Iterator < SimpleMatrix > function ( Iterator < SimpleTensor > arg0 ) { return new SimpleMatrixIteratorWrapper ( arg0 ) ; }
13,361
get the onmethod . concode_field_sep List<String> parameterTypes concode_elem_sep Class<? extends java.lang.annotation.Annotation> annotationClass concode_elem_sep ClassLoader cl concode_elem_sep String memberName concode_elem_sep String className concode_elem_sep boolean onMethod concode_elem_sep boolean onField conco...
boolean function ( ) { return onMethod ; }
13,362
loads data for the page object from the internationalization layer / properties/data/static / blocknavigation.properties where a selector requires a text string visible through the user interface e.g. value = button text , or link text . concode_field_sep RemoteWebDriver driver concode_elem_sep Map<String,String> prope...
void function ( ) { Properties loc0 = new Properties ( ) ; try { loc0 . load ( new FileInputStream ( forumsplitData ) ) ; } catch ( Exception loc1 ) { } this . properties . put ( "srini_string" , loc0 . getProperty ( "srini_string" ) ) ; }
13,363
write object to channel starting at the channel 's currentposition . concode_field_sep PlaceHolder placeHolder concode_field_sep T read concode_elem_sep T read concode_elem_sep ByteBuffer getBytes
void function ( Serializable arg0 , FileChannel arg1 ) { try { ByteBuffer loc0 = getBytes ( arg0 ) ; FileLock loc1 = arg1 . loc1 ( arg1 . position ( ) , loc0 . capacity ( ) , false ) ; arg1 . write ( loc0 ) ; arg1 . force ( true ) ; loc1 . release ( ) ; } catch ( IOException loc0 ) { throw Throwables . propagate ( loc0...
13,364
sets the value of the personid property . concode_field_sep String goalType concode_elem_sep Goal goalI concode_elem_sep Long personId concode_elem_sep String measureType concode_field_sep void setGoalType concode_elem_sep Long getPersonId concode_elem_sep void setMeasureType concode_elem_sep String getGoalType concode...
void function ( Long arg0 ) { this . personId = arg0 ; }
13,365
add the given object to the list of options and marks it as the default . functionally , this is very close to sendablechooser #addobject java.lang.string , java.lang.object addobject ... except that it will use this as the default option if none other is explicitly selected . concode_field_sep String DEFAULT concode_e...
void function ( String arg0 , Object arg1 ) { if ( arg0 == null ) { throw new NullPointerException ( "srini_string" ) ; } defaultChoice = arg0 ; defaultValue = arg1 ; if ( table != null ) { table . putString ( DEFAULT , defaultChoice ) ; } addObject ( arg0 , arg1 ) ; }
13,366
returns an xml representation of the raw object . concode_field_sep String enumConstant concode_elem_sep Map<String,Object> values concode_elem_sep Object[] elements concode_elem_sep RawObject superObject concode_elem_sep RawType type concode_elem_sep String INDENT concode_field_sep void formatValue concode_elem_sep vo...
String function ( ) { StringBuffer loc0 = new StringBuffer ( 500 ) ; formatRawObject ( loc0 , "srini_string" , null , false ) ; return loc0 . toString ( ) ; }
13,367
obtain the algorithm of a diffie-hellman public key concode_field_sep BigInteger Y concode_elem_sep DHParameterSpec params concode_field_sep BigInteger getY concode_elem_sep byte[] getEncoded concode_elem_sep String getFormat concode_elem_sep String toString concode_elem_sep DHParameterSpec getParams
String function ( ) { return "srini_string" ; }
13,368
todo - hack to avoid classloading issues . we should use org.gradle.util.textutil currently we ca n't use it reliably because it causes cnf issues with cross version integration tests running against tooling api < 1.3 . concode_field_sep PlaceHolder placeHolder concode_field_sep String convertLineSeparators concode_ele...
String function ( Object arg0 ) { return arg0 . toString ( ) . replaceAll ( "srini_string" , "srini_string" ) ; }
13,369
records the elements executed by modules . concode_field_sep RecordingBinder parent concode_elem_sep SourceProvider sourceProvider concode_elem_sep Stage stage concode_elem_sep BindingTargetVisitor<Object,Object> GET_INSTANCE_VISITOR concode_elem_sep PrivateElementsImpl privateElements concode_elem_sep List<Element> el...
List < Element > function ( Stage arg0 , Module ... arg1 ) { return getElements ( arg0 , Arrays . asList ( arg1 ) ) ; }
13,370
returns binary representation of this file system . concode_field_sep int DIR concode_elem_sep int PIN concode_elem_sep byte[] data concode_elem_sep int offset concode_elem_sep int type concode_elem_sep int UPDATE concode_elem_sep int EMPTY concode_elem_sep CardFile root concode_elem_sep Hashtable labels concode_elem_s...
byte [ ] function ( ) { ByteArrayOutputStream loc0 = new ByteArrayOutputStream ( ) ; DataOutputStream loc1 = new DataOutputStream ( loc0 ) ; root . write ( loc1 ) ; return loc0 . toByteArray ( ) ; }
13,371
set the resource adapter concode_field_sep long serialVersionUID concode_elem_sep String cfProperty concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep ManagedConnection createManagedConnection concode_elem_sep void setCfProperty concode_elem_sep void setLogWriter concode_elem_s...
void function ( ResourceAdapter arg0 ) { this . ra = arg0 ; }
13,372
returns the livefile triggering the event . concode_field_sep LiveFile file concode_elem_sep Action action concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Action getAction concode_elem_sep String toString
LiveFile function ( ) { return file ; }
13,373
returns the status of this k b comment . concode_field_sep KBComment _kbComment concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boole...
int function ( ) { return _kbComment . getStatus ( ) ; }
13,374
sets the diagonal of the framing rectangle of this shape based on the two specified coordinates . the framing rectangle is used by the subclasses of rectangularshape to define their geometry . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean intersects concode_elem_sep Rectangle2D getFrame concode_el...
void function ( double arg0 , double arg1 , double arg2 , double arg3 ) { if ( arg2 < arg0 ) { double loc0 = arg0 ; arg0 = arg2 ; arg2 = loc0 ; } if ( arg3 < arg1 ) { double loc0 = arg1 ; arg1 = arg3 ; arg3 = loc0 ; } setFrame ( arg0 , arg1 , arg2 - arg0 , arg3 - arg1 ) ; }
13,375
this method increase the quantity by 1 . concode_field_sep int quantity concode_elem_sep StoreObject content concode_field_sep void setContent concode_elem_sep int getQuantity concode_elem_sep void setQuantity concode_elem_sep void decrement concode_elem_sep StoreObject getContent concode_elem_sep void increment
void function ( ) { quantity ++ ; }
13,376
set the statetransitiontime value . concode_field_sep DateTime stateTransitionTime concode_elem_sep DateTime previousStateTransitionTime concode_elem_sep String thumbprint concode_elem_sep String thumbprintAlgorithm concode_elem_sep CertificateState state concode_elem_sep DeleteCertificateError deleteCertificateError c...
Certificate function ( DateTime arg0 ) { this . stateTransitionTime = arg0 ; return this ; }
13,377
test method concode_field_sep PlaceHolder placeHolder concode_field_sep void testEnvHttps concode_elem_sep void testEnvFtp concode_elem_sep void testPac concode_elem_sep void testEnvHttp concode_elem_sep void testManualFtp concode_elem_sep void testNone concode_elem_sep void testManualHttps concode_elem_sep void testMa...
void function ( ) { TestUtil . setTestDataFolder ( "srini_string" ) ; ProxySelector loc0 = new KdeProxySearchStrategy ( ) . getProxySelector ( ) ; List < Proxy > loc1 = loc0 . select ( TestUtil . NO_PROXY_TEST_URI ) ; assertEquals ( Proxy . NO_PROXY , loc1 . get ( 0 ) ) ; }
13,378
log a message to the log4j logger with warn priority . concode_field_sep String name concode_elem_sep boolean is12 concode_elem_sep String FQCN concode_elem_sep Logger logger concode_field_sep void trace concode_elem_sep void trace concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep boolean isInfoE...
void function ( Object arg0 ) { if ( is12 ) { getLogger ( ) . log ( FQCN , ( Priority ) Level . WARN , arg0 , null ) ; } else { getLogger ( ) . log ( FQCN , Level . WARN , arg0 , null ) ; } }
13,379
this method parses a query string and returns a map of decoded request parameters . we do not rely on java.net.uri because it does not decode plus characters . concode_field_sep String path concode_elem_sep String fragment concode_elem_sep String scheme concode_elem_sep String authority concode_elem_sep Map<String,Stri...
Map < String , String > function ( URI arg0 , Charset arg1 ) { return parseQueryString ( arg0 , arg1 , null ) ; }
13,380
sets the group id of this org group role . concode_field_sep OrgGroupRole _orgGroupRole concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedMode...
void function ( long arg0 ) { _orgGroupRole . setGroupId ( arg0 ) ; }
13,381
specify whether the database uses upper case for identifiers concode_field_sep boolean supportsSchemasInProcedureCalls concode_elem_sep List<CallParameterMetaData> callParameterMetaData concode_elem_sep boolean storesLowerCaseIdentifiers concode_elem_sep boolean procedureColumnMetaDataUsed concode_elem_sep Log logger c...
void function ( boolean arg0 ) { this . storesUpperCaseIdentifiers = arg0 ; }
13,382
dom : the target property indicates the eventtarget whose eventlisteners are currently being processed . concode_field_sep boolean preventDefault concode_elem_sep boolean cancelable concode_elem_sep boolean isBubbling concode_elem_sep List defaultActions concode_elem_sep Event originalEvent concode_elem_sep String type...
EventTarget function ( ) { return currentTarget ; }
13,383
gets the where clause . concode_field_sep MultivaluedMap<String,String> queryParams concode_elem_sep String whereClause concode_elem_sep int startPage concode_elem_sep String PAGE_SIZE_DEFAULT_PROPERTY concode_elem_sep String EMPTY_ORDER_BY_CLAUSE concode_elem_sep String name concode_elem_sep int pageSize concode_elem_...
String function ( ) { return whereClause ; }
13,384
have datanodemanager check decommission state . concode_field_sep PlaceHolder placeHolder concode_field_sep void updateState concode_elem_sep int checkHeartbeatAndGetUnderReplicatedBlocksCount concode_elem_sep DatanodeDescriptor getDatanode concode_elem_sep int getNumberOfRacks concode_elem_sep void rescanPostponedMisr...
void function ( DatanodeManager arg0 ) { arg0 . getDecomManager ( ) . runMonitor ( ) ; }
13,385
returns the pcepfecobject . concode_field_sep PcepSrpObject srpObject concode_elem_sep PcepFecObject fecObject concode_elem_sep Logger log concode_elem_sep PcepLabelObject labelObject concode_field_sep PcepLabelObject getLabelObject concode_elem_sep PcepSrpObject getSrpObject concode_elem_sep void setSrpObject concode_...
PcepFecObject function ( ) { return this . fecObject ; }
13,386
checks if this resource 's lock is held by a transaction running on the specified server . concode_field_sep ServerImpl server concode_elem_sep Integer lockOwner concode_field_sep boolean unlock concode_elem_sep void forceUnlock concode_elem_sep boolean lock concode_elem_sep Integer getLockOwner
boolean function ( int arg0 ) { return ( lockOwner != null && server . getTransactionOwner ( lockOwner . intValue ( ) ) == arg0 ) ; }
13,387
gets the viewedcookies attribute of the lessontracker object concode_field_sep int maxHintLevel concode_elem_sep int numVisits concode_elem_sep boolean viewedParameters concode_elem_sep boolean completed concode_elem_sep boolean viewedCookies concode_elem_sep boolean viewedHtml concode_elem_sep boolean viewedLessonPlan...
boolean function ( ) { return viewedCookies ; }
13,388
get the y series data . concode_field_sep DataLine dataLine concode_elem_sep Color color concode_elem_sep String legend concode_elem_sep Data pointSizes concode_elem_sep Data yData concode_elem_sep List<MarkedPoints> markedPointsList concode_elem_sep Priority priority concode_elem_sep List<Marker> markers concode_elem_...
Data function ( ) { return yData ; }
13,389
android.util.log # d string , string , with string.format pattern concode_field_sep PlaceHolder placeHolder concode_field_sep void e concode_elem_sep void v concode_elem_sep void w concode_elem_sep String format concode_elem_sep void i concode_elem_sep void logLong concode_elem_sep String tag concode_elem_sep String ge...
void function ( String arg0 , String arg1 , Object ... arg2 ) { android . util . Log . d ( arg0 , format ( arg1 , arg2 ) ) ; }
13,390
performs a dynamic query on the database and returns an ordered range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator < T > arg3 ) { return _userIdMapperLocalService . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; }
13,391
information about one or more security groups . concode_field_sep com.amazonaws.internal.SdkInternalList<SecurityGroup> securityGroups concode_field_sep int hashCode concode_elem_sep DescribeSecurityGroupsResult withSecurityGroups concode_elem_sep DescribeSecurityGroupsResult withSecurityGroups concode_elem_sep boolean...
void function ( java . util . Collection < SecurityGroup > arg0 ) { if ( arg0 == null ) { this . securityGroups = null ; return ; } this . securityGroups = new com . amazonaws . internal . SdkInternalList < SecurityGroup > ( arg0 ) ; }
13,392
does nothing . concode_field_sep ClassLoader mockClassLoader concode_field_sep void addFailure concode_elem_sep void startTest concode_elem_sep void endTest
void function ( Test arg0 , Throwable arg1 ) { }
13,393
return the underlying asn .1 structure for this request . concode_field_sep CertificationRequest certificationRequest concode_elem_sep Attribute[] EMPTY_ARRAY concode_field_sep X500Name getSubject concode_elem_sep Attribute[] getAttributes concode_elem_sep Attribute[] getAttributes concode_elem_sep SubjectPublicKeyInfo...
CertificationRequest function ( ) { return certificationRequest ; }
13,394
sets the user id of this message boards ban . concode_field_sep MBBan _mbBan concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boole...
void function ( long arg0 ) { _mbBan . setUserId ( arg0 ) ; }
13,395
the list of context keys that are used in the condition elements of the input policies . concode_field_sep com.amazonaws.internal.SdkInternalList<String> contextKeyNames concode_field_sep GetContextKeysForCustomPolicyResult withContextKeyNames concode_elem_sep GetContextKeysForCustomPolicyResult withContextKeyNames con...
void function ( java . util . Collection < String > arg0 ) { if ( arg0 == null ) { this . contextKeyNames = null ; return ; } this . contextKeyNames = new com . amazonaws . internal . SdkInternalList < String > ( arg0 ) ; }
13,396
the internet-routable ip address of the virtual private gateway 's outside interface . concode_field_sep java.util.Date lastStatusChange concode_elem_sep Integer acceptedRouteCount concode_elem_sep String outsideIpAddress concode_elem_sep String statusMessage concode_elem_sep String status concode_field_sep String getO...
void function ( String arg0 ) { this . outsideIpAddress = arg0 ; }
13,397
convert a cursor in 32-bit byte_argb_pre format to a 16-bit or 32-bit color-keyed format concode_field_sep PlaceHolder placeHolder concode_field_sep void offsetCursor32 concode_elem_sep void offsetCursor concode_elem_sep void colorKeyCursor32 concode_elem_sep void colorKeyCursor16 concode_elem_sep void offsetCursor16
void function ( byte [ ] arg0 , Buffer arg1 , int arg2 , int arg3 ) { switch ( arg2 ) { case 32 : colorKeyCursor32 ( arg0 , ( IntBuffer ) arg1 , arg3 ) ; break ; case 16 : colorKeyCursor16 ( arg0 , ( ShortBuffer ) arg1 , arg3 ) ; break ; default : throw new UnsupportedOperationException ( ) ; } }
13,398
this method is called by the actor nodes to determine the success of some action . concode_field_sep HashMap<String,SensorDataSourceIF> dataProviders concode_elem_sep HashMap<String,ActorDataTargetIF> dataTargets concode_field_sep void unregisterActuatorDataTarget concode_elem_sep void addActuatorSignalStrength concode...
double function ( String arg0 ) { if ( ! dataTargets . containsKey ( arg0 ) ) return 0 ; return dataTargets . get ( arg0 ) . getExecutionSuccess ( ) ; }
13,399
set the x axis fixed dimension concode_field_sep double[] m_weightingAttsValues concode_elem_sep int m_yAttribute concode_elem_sep double m_samplesBase concode_elem_sep Classifier m_classifier concode_elem_sep Instances m_trainingData concode_elem_sep DataGenerator m_dataGenerator concode_elem_sep double[] m_dist conco...
void function ( int arg0 ) { m_xAttribute = arg0 ; }