idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
89,600
gets the attribute value ; concode_field_sep AttributeNode parent concode_elem_sep List<AttributeNode> children concode_elem_sep String name concode_elem_sep Object value concode_elem_sep boolean writable concode_field_sep List<AttributeNode> getChildren concode_elem_sep AttributeNode getParent concode_elem_sep String ...
Object function ( ) { return value ; }
89,601
gets the trust manager factory configuration . concode_field_sep SecureRandomFactoryBean secureRandom concode_elem_sep String protocol concode_elem_sep KeyManagerFactoryFactoryBean keyManagerFactory concode_elem_sep String JSSE_TRUST_STORE_PROPERTY concode_elem_sep String provider concode_elem_sep String JSSE_KEY_STORE...
TrustManagerFactoryFactoryBean function ( ) { if ( trustManagerFactory == null ) { return new TrustManagerFactoryFactoryBean ( ) ; } return trustManagerFactory ; }
89,602
returns a single string that is the concatenation of all the strings in the specified string array . a single space is put between each string array element . null array elements are skipped . if the array itself is null , the empty string is returned . this method is guaranteed to return a non-null value , if no expec...
String function ( String [ ] arg0 ) { return concat ( arg0 , "srini_string" ) ; }
89,603
return the dependency artifact 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...
String function ( ) { return this . artifactId ; }
89,604
when the message is a request sets if the sender of the message requests to be notified when the message is displayed . when the message is a notification sets if the message was displayed or not . concode_field_sep boolean composing concode_elem_sep boolean offline concode_elem_sep String COMPOSING concode_elem_sep bo...
void function ( boolean arg0 ) { this . displayed = arg0 ; setCancelled ( false ) ; }
89,605
the repository from which you can download the function . concode_field_sep String repositoryType concode_elem_sep String location concode_field_sep FunctionCodeLocation withRepositoryType concode_elem_sep String getLocation concode_elem_sep FunctionCodeLocation withLocation concode_elem_sep void setLocation concode_el...
void function ( String arg0 ) { this . repositoryType = arg0 ; }
89,606
gets the value of the bldasone property . concode_field_sep long grpId concode_elem_sep CTEmpty bldAsOne concode_elem_sep Boolean uiExpand concode_elem_sep CTAnimationGraphicalObjectBuildProperties bldSub concode_elem_sep String spid concode_field_sep void setGrpId concode_elem_sep long getGrpId concode_elem_sep boolea...
CTEmpty function ( ) { return bldAsOne ; }
89,607
get the network concode_field_sep DataSet patterns concode_elem_sep ErrorMeasure errorMeasure concode_elem_sep NeuralNetwork network concode_field_sep DataSet getDataSet concode_elem_sep ErrorMeasure getErrorMeasure
NeuralNetwork function ( ) { return network ; }
89,608
utility method to extract value from configuration concode_field_sep PlaceHolder placeHolder concode_field_sep boolean configurationExist concode_elem_sep String getAttributeAsString concode_elem_sep boolean propertyExist concode_elem_sep String getPropertyAsString concode_elem_sep Object getProperty concode_elem_sep Q...
Object function ( final GoraAttribute arg0 , final GoraConfiguration arg1 ) { return PropertyUtils . getSimpleProperty ( arg1 , arg0 . value ) ; }
89,609
clears the statistics concode_field_sep int hits concode_elem_sep int entities concode_elem_sep int misses concode_field_sep void incHits concode_elem_sep void incMisses concode_elem_sep String toString concode_elem_sep EntityCacheStatistics copy concode_elem_sep void incEntities
void function ( ) { entities = 0 ; hits = 0 ; misses = 0 ; }
89,610
a method that is executed from a unit test by maven surefire plugin within the same maven module . concode_field_sep PlaceHolder placeHolder concode_field_sep String server concode_elem_sep String integrationTestJvm concode_elem_sep String e2e concode_elem_sep String integrationServerJvm
String function ( ) { return server ( ) + "srini_string" ; }
89,611
gets the variable correspondance for the choco solver concode_field_sep Integer workLoad concode_elem_sep String name concode_elem_sep IntervalDateTime bounds concode_elem_sep IntVar internalChocoRepresentation concode_elem_sep Boolean isActive concode_elem_sep Worker worker concode_field_sep void setName concode_elem_...
IntVar function ( ) { return internalChocoRepresentation ; }
89,612
whether the performer is withdrawn . concode_field_sep String creator concode_elem_sep String longBio concode_elem_sep boolean withdrawn concode_elem_sep String withdrawnNote concode_elem_sep Date created concode_elem_sep List<Property> properties concode_elem_sep List<Event> events concode_elem_sep List<Tag> tags conc...
void function ( boolean arg0 ) { this . withdrawn = arg0 ; }
89,613
the id of the vpc . returns a reference to this object so that method calls can be chained together . concode_field_sep String instanceId concode_elem_sep String vpcId concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<GroupIdentifier> groups concode_elem_sep com.amazonaws.internal.ListWithAutoConstructF...
ClassicLinkInstance function ( String arg0 ) { this . vpcId = arg0 ; return this ; }
89,614
explains the score . returns the name of the model only , since both tfn and lambda are explained elsewhere . concode_field_sep PlaceHolder placeHolder concode_field_sep float score concode_elem_sep String toString
Explanation function ( BasicStats arg0 , float arg1 , float arg2 ) { return Explanation . match ( score ( arg0 , arg1 , arg2 ) , getClass ( ) . getSimpleName ( ) ) ; }
89,615
replace the comparator at the given index using the given sort order . concode_field_sep List<InvertibleComparator> comparators concode_field_sep int compare concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void setDescendingOrder concode_elem_sep int getComparatorCount concode_elem_sep St...
void function ( int arg0 , Comparator < T > arg1 , boolean arg2 ) { this . comparators . set ( arg0 , new InvertibleComparator < T > ( arg1 , arg2 ) ) ; }
89,616
saves the @param array to file : @param filename concode_field_sep Formatter formatter concode_field_sep void print2DTabbedDoubleArrayToConole concode_elem_sep void printFloatArrayToFile concode_elem_sep void printFloatArrayToConole concode_elem_sep void print2DDoubleArrayToFile concode_elem_sep void printDoubleArrayTo...
void function ( double [ ] arg0 , String arg1 ) { try { formatter = new Formatter ( arg1 ) ; } catch ( FileNotFoundException loc0 ) { System . err . println ( "srini_string" + arg1 ) ; return ; } for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { formatter . format ( "srini_string" , arg0 [ loc0 ] ) ; } formatter ...
89,617
returns the refactoring history service concode_field_sep int UNDONE concode_elem_sep RefactoringDescriptorProxy fProxy concode_elem_sep int fType concode_elem_sep int ABOUT_TO_PERFORM concode_elem_sep IRefactoringHistoryService fService concode_elem_sep int ABOUT_TO_REDO concode_elem_sep int ABOUT_TO_UNDO concode_elem...
IRefactoringHistoryService function ( ) { return fService ; }
89,618
returns the y-value . concode_field_sep long serialVersionUID concode_elem_sep Number x concode_elem_sep Number y concode_field_sep Number getX concode_elem_sep void setY concode_elem_sep void setY concode_elem_sep double getYValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Object cl...
Number function ( ) { return this . y ; }
89,619
validate the configuration for this cached type . concode_field_sep long evictionWakeUpInterval concode_elem_sep String cacheName concode_elem_sep Set<String> overridden concode_elem_sep int evictionMaxEntries concode_elem_sep EvictionStrategy evictionStrategy concode_elem_sep long expirationLifespan concode_elem_sep b...
void function ( Configuration arg0 ) { }
89,620
convert internal exception to public exception . concode_field_sep IgniteInternalFuture<V> fut concode_elem_sep IgniteInClosure<? super IgniteFuture<V>> lsnr concode_elem_sep long serialVersionUID concode_field_sep boolean cancel concode_elem_sep IgniteInternalFuture<T> chainInternal concode_elem_sep boolean isCancelle...
RuntimeException function ( IgniteCheckedException arg0 ) { return U . convertException ( arg0 ) ; }
89,621
this will init the hawk without password protection . concode_field_sep String KEY_NO_CRYPTO concode_elem_sep String TAG_CRYPTO concode_elem_sep boolean noEncryption concode_elem_sep Encryption encryption concode_elem_sep LogLevel logLevel concode_elem_sep String TAG concode_elem_sep ExecutorService executorService con...
void function ( Context arg0 ) { init ( arg0 , null , LogLevel . NONE ) ; }
89,622
a basic check for the generateurl method . concode_field_sep PlaceHolder placeHolder concode_field_sep void testPublicCloneable concode_elem_sep void testSerialization concode_elem_sep void testEquals
void function ( ) { TimeSeriesURLGenerator loc0 = new TimeSeriesURLGenerator ( ) ; DefaultXYDataset loc1 = new DefaultXYDataset ( ) ; loc1 . addSeries ( "srini_string" , new double [ ] [ ] { { 1.0 , 2.0 } , { 3.0 , 4.0 } } ) ; String loc2 = loc0 . generateURL ( loc1 , 0 , 0 ) ; assertTrue ( loc2 . startsWith ( "srini_s...
89,623
gets the parentlocationcode attribute . concode_field_sep String locationName concode_elem_sep String locationId concode_elem_sep String parentLocationCode concode_elem_sep String locationCode concode_elem_sep String locationLevelCode concode_field_sep String getLocationName concode_elem_sep String getLocationId concod...
String function ( ) { return parentLocationCode ; }
89,624
sets the ip address of the machine to which this datagram is being sent . concode_field_sep DatagramPacket packet concode_field_sep DatagramPacket getDatagramPacket concode_elem_sep void setLength concode_elem_sep int getPort concode_elem_sep IpAddress getIpAddress concode_elem_sep void setData concode_elem_sep void se...
void function ( IpAddress arg0 ) { packet . setAddress ( arg0 . getInetAddress ( ) ) ; }
89,625
sets the authenticator used to respond to challenges from the remote web server or proxy server . if unset , the java.net.authenticator #setdefault system-wide default authenticator will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep Conne...
OkHttpClient function ( OkAuthenticator arg0 ) { this . authenticator = arg0 ; return this ; }
89,626
the average download bandwidth rate limit in bits per second . this field does not appear in the response if the download rate limit is not set . concode_field_sep Long averageUploadRateLimitInBitsPerSec concode_elem_sep String gatewayARN concode_elem_sep Long averageDownloadRateLimitInBitsPerSec concode_field_sep void...
Long function ( ) { return this . averageDownloadRateLimitInBitsPerSec ; }
89,627
constructs a new connection pool . concode_field_sep ArrayList<PooledConnection> recycledConnections concode_elem_sep int maxConnections concode_elem_sep int DEFAULT_MAX_CONNECTIONS concode_elem_sep int activeConnections concode_elem_sep PrintWriter logWriter concode_elem_sep boolean isDisposed concode_elem_sep int tim...
JdbcConnectionPool function ( ConnectionPoolDataSource arg0 ) { return new JdbcConnectionPool ( arg0 ) ; }
89,628
whether the connectionnio is currently active concode_field_sep ProtocolWrapper tcpWrapper concode_elem_sep int UDP_BUFFER_SIZE concode_elem_sep int TCP_BUFFER_SIZE concode_elem_sep Socket legacySocket concode_elem_sep boolean terminating concode_elem_sep long ping concode_elem_sep SocketChannel tcpChannel concode_elem...
boolean function ( ) { return this . running ; }
89,629
initialize properties for for remote access of node.js server concode_field_sep PlaceHolder placeHolder concode_field_sep void initializeDirectAccess concode_elem_sep void initializeDefaultValues concode_elem_sep boolean useBundledNodeJsInstall
void function ( IEclipsePreferences arg0 ) { arg0 . putBoolean ( TernNodejsCoreConstants . NODEJS_REMOTE_ACCESS , NodejsTernHelper . DEFAULT_REMOTE_ACCESS ) ; arg0 . putInt ( TernNodejsCoreConstants . NODEJS_REMOTE_PORT , NodejsTernHelper . DEFAULT_REMOTE_PORT ) ; }
89,630
checks whether the given response is a success response . concode_field_sep String extractSingleFailureMessage concode_elem_sep Pattern extractGeneralFailureMessagePattern concode_elem_sep int HTTP_SUCCESS_MIN concode_elem_sep String extractFailureMessageAndRecipient concode_elem_sep Pattern extractFailureMessageAndRec...
Boolean function ( String arg0 ) { if ( successResponsePattern == null ) { successResponsePattern = Pattern . compile ( successResponse , Pattern . DOTALL ) ; } Matcher loc0 = successResponsePattern . loc0 ( arg0 ) ; return loc0 . matches ( ) ; }
89,631
closes the lexicon stream . concode_field_sep int termId concode_elem_sep long endOffset concode_elem_sep int documentFrequency concode_elem_sep byte[] termCharacters concode_elem_sep byte[] zeroBuffer concode_elem_sep int termFrequency concode_elem_sep String term concode_elem_sep DataOutputStream lexiconStream concod...
void function ( ) { lexiconStream . close ( ) ; }
89,632
test for the hadooputils #getpathwithoutscheme path method from an hdfs uri . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetPathWithoutSchemaFromHDFS concode_elem_sep void testGetPathWithoutSchema concode_elem_sep void testGetPathWithoutSchemaThatContainsSchema
void function ( ) { final Path loc0 = new Path ( URI . create ( "srini_string" ) ) ; final String loc1 = HadoopUtils . getPathWithoutScheme ( loc0 ) ; Assert . assertEquals ( "srini_string" , loc1 ) ; }
89,633
extract all receivers and message contents from the hash table and sends them . concode_field_sep AgentService service concode_elem_sep String ADMIN concode_elem_sep int lastID concode_elem_sep String COORDINATOR concode_field_sep void init concode_elem_sep String getName concode_elem_sep void sendMessage concode_elem_...
void function ( Hashtable arg0 ) { Enumeration loc0 = arg0 . keys ( ) ; while ( loc0 . hasMoreElements ( ) ) { String loc1 = ( String ) loc0 . nextElement ( ) ; Transportable loc2 = ( Transportable ) arg0 . get ( loc1 ) ; sendMessage ( loc1 , loc2 ) ; } }
89,634
returns true if it wrote any implied relationships concode_field_sep int fontSize concode_elem_sep DotFormatter instance concode_field_sep void writeHeader concode_elem_sep Set<ForeignKeyConstraint> writeRealRelationships concode_elem_sep void writeRealRelationships concode_elem_sep Set<ForeignKeyConstraint> writeRelat...
boolean function ( Database arg0 , Collection < Table > arg1 , boolean arg2 , boolean arg3 , WriteStats arg4 , LineWriter arg5 ) { return writeRelationships ( arg0 , arg1 , arg2 , arg3 , true , arg4 , arg5 ) ; }
89,635
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep byte[] _byte concode_elem_sep String password concode_elem_sep BigDecimal number concode_elem_sep Float _float concode_elem_sep Integer integer concode_elem_sep Double _double concode_elem_sep String string ...
String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
89,636
returns the master of this layout branch . concode_field_sep LayoutBranch _layoutBranch concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep void setGroupId concode_e...
boolean function ( ) { return _layoutBranch . getMaster ( ) ; }
89,637
globally unique identifier of the voice . concode_field_sep String country concode_elem_sep String variant concode_elem_sep String language concode_elem_sep String label concode_field_sep String getLabel concode_elem_sep Locale getLocale
String function ( ) { return "srini_string" + label . replaceAll ( "srini_string" , "srini_string" ) ; }
89,638
setter for insuranceoptionselected concode_field_sep String preferredPrefix concode_elem_sep String insuranceOptionSelected concode_elem_sep String shippingOptionName concode_elem_sep BasicAmountType shippingOptionAmount concode_elem_sep String shippingCalculationMode concode_elem_sep String shippingOptionIsDefault con...
void function ( String arg0 ) { this . insuranceOptionSelected = arg0 ; }
89,639
next point concode_field_sep UnitWorks uw concode_elem_sep MapWorks mw concode_elem_sep UnitMap map concode_elem_sep PanelManager pm concode_elem_sep Camp camp concode_field_sep void cancel concode_elem_sep void setSelectPlace concode_elem_sep void setHelp concode_elem_sep void setSelectBody concode_elem_sep void leftP...
boolean function ( int arg0 , int arg1 ) { if ( map . getData ( Page . P10 , arg0 , arg1 ) != 0 ) return false ; Body loc0 = camp . getEquip ( ) . search ( arg0 , arg1 ) ; return ( loc0 != null ) ; }
89,640
returns the popcount or cardinality of the two sets after an intersection . neither array is modified . concode_field_sep byte[] BYTE_COUNTS concode_elem_sep int[] BIT_LISTS concode_field_sep long pop_xor concode_elem_sep int nextHighestPowerOfTwo concode_elem_sep long nextHighestPowerOfTwo concode_elem_sep int bitCoun...
long function ( long [ ] arg0 , long [ ] arg1 , int arg2 , int arg3 ) { long loc0 = 0 ; for ( int loc1 = arg2 , loc2 = arg2 + arg3 ; loc1 < loc2 ; ++ loc1 ) { loc0 += Long . bitCount ( arg0 [ loc1 ] & arg1 [ loc1 ] ) ; } return loc0 ; }
89,641
this is getter method for subcategoryname concode_field_sep int[] selectedSubSubCat concode_elem_sep List subSubCategoryList concode_elem_sep String filterName concode_elem_sep String[] subCategoryId concode_elem_sep String categoryName concode_elem_sep String subCategoryName concode_elem_sep String filter concode_elem...
String function ( ) { return subCategoryName ; }
89,642
set the lastmodifieddate for this itemtype . concode_field_sep Long TEMPLATE_MIDTERM concode_elem_sep Long FINAL concode_elem_sep Long MULTIPLE_CORRECT_SINGLE_SELECTION concode_elem_sep String description concode_elem_sep Long AUDIO_RECORDING concode_elem_sep Long TEMPLATE_HOMEWORK concode_elem_sep Long MULTIPLE_CHOICE...
void function ( Date arg0 ) { this . lastModifiedDate = arg0 ; }
89,643
returns the value at the coordinates concode_field_sep int size concode_elem_sep int[][] matrix concode_field_sep void populateSpiral concode_elem_sep int getSize concode_elem_sep void set concode_elem_sep boolean isFree concode_elem_sep boolean isValid concode_elem_sep String toString concode_elem_sep Direction right ...
int function ( int arg0 , int arg1 ) { return matrix [ arg0 ] [ arg1 ] ; }
89,644
gets the value of the uuid property . concode_field_sep List<Extension> extensions concode_elem_sep List<ActivationConfigProperty> configProperties concode_elem_sep String id concode_elem_sep String href concode_elem_sep String label concode_elem_sep QName type concode_elem_sep List<Description> descriptions concode_el...
String function ( ) { return uuid ; }
89,645
enlarge this byte vector so that it can receive n more bytes . concode_field_sep byte[] data concode_elem_sep int length concode_field_sep ByteVector put12 concode_elem_sep ByteVector encodeUTF8 concode_elem_sep ByteVector putByte concode_elem_sep ByteVector putInt concode_elem_sep ByteVector putUTF8 concode_elem_sep B...
void function ( final int arg0 ) { int loc0 = 2 * data . length ; int loc1 = length + arg0 ; byte [ ] loc2 = new byte [ loc0 > loc1 ? loc0 : loc1 ] ; System . arraycopy ( data , 0 , loc2 , 0 , length ) ; data = loc2 ; }
89,646
get the starting time of the time slot concode_field_sep boolean canceled concode_elem_sep boolean signedUp concode_elem_sep int UNLIMITED concode_elem_sep List<SignupParticipant> waitingList concode_elem_sep boolean onWaitList concode_elem_sep List<SignupParticipant> attendees concode_elem_sep boolean displayAttendees...
Date function ( ) { return startTime ; }
89,647
reads an ascii string with a given length from the current cursor position . if there is a 0 character in the string , it will be skipped concode_field_sep byte[] data concode_elem_sep ByteBuffer bytes concode_elem_sep ReentrantLock lock concode_field_sep int readUWord concode_elem_sep void unlock concode_elem_sep void...
String function ( int arg0 ) { StringBuilder loc0 = new StringBuilder ( ) ; for ( int loc1 = 0 ; loc1 < arg0 ; loc1 ++ ) { byte loc2 = bytes . get ( ) ; if ( loc2 != 0 ) { loc0 . append ( ( char ) loc2 ) ; } } return loc0 . toString ( ) ; }
89,648
convert ipv6 byte-array in uncompressed ipv6-address string . concode_field_sep PlaceHolder placeHolder concode_field_sep String getCompressedIPv6AddressString concode_elem_sep void getCompressedIPv6AddressString concode_elem_sep String getIPv4AddressString
String function ( byte [ ] arg0 ) { StringBuilder loc0 = new StringBuilder ( ) ; IPUtils . getUncompressedIPv6AddressString ( loc0 , arg0 ) ; return loc0 . toString ( ) ; }
89,649
constructs a new json builder that will output the result into the provided output stream . concode_field_sep int GUESS_HEADER_LENGTH concode_field_sep XContentBuilder contentBuilder concode_elem_sep XContentBuilder contentBuilder concode_elem_sep XContentBuilder cborBuilder concode_elem_sep XContentBuilder cborBuilder...
XContentBuilder function ( OutputStream arg0 ) { return new XContentBuilder ( SmileXContent . smileXContent , arg0 ) ; }
89,650
begin appending a new array . all values until the balancing endarray will be appended to this array . the endarray method must be called to mark the array 's end . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int top concode_elem_sep int maxdepth concode_elem_sep Writer writer concode_el...
JSONWriter function ( ) { if ( this . mode == 'i' || this . mode == 'o' || this . mode == 'a' ) { this . push ( null ) ; this . append ( "srini_string" ) ; this . comma = false ; return this ; } throw new JSONException ( "srini_string" ) ; }
89,651
get the name of the column containing the aggregate sequence number of the event . concode_field_sep String eventIdentifierColumn concode_elem_sep String payloadColumn concode_elem_sep String payloadRevisionColumn concode_elem_sep String payloadColumn concode_elem_sep String metaDataColumn concode_elem_sep String typeC...
String function ( ) { return sequenceNumberColumn ; }
89,652
sets the value of the country property . concode_field_sep Country country concode_field_sep Country getCountry
void function ( Country arg0 ) { this . country = arg0 ; }
89,653
evaluate a function with the given id in a new executioncontext . module defining the function must have been loaded first . concode_field_sep String CMD_LINE_ARGS concode_elem_sep Map<String,Executable> codeTable concode_elem_sep String VERSION concode_elem_sep ModuleLoader loader concode_elem_sep String USAGE concode...
Future < ExecutionContext > function ( String arg0 ) { Executable loc0 = this . getFun ( arg0 ) ; ExecutionContext loc1 = new ExecutionContext ( this ) ; return loc1 . eval ( arg0 , loc0 ) ; }
89,654
get current time . concode_field_sep double[] primaryState concode_elem_sep List<SecondaryComponent> components concode_elem_sep EquationsMapper primaryMapper concode_elem_sep SecondaryEquations equation concode_elem_sep double[] stateDot concode_elem_sep EquationsMapper mapper concode_elem_sep double time concode_elem...
double function ( ) { return time ; }
89,655
returns true if this token is unknown word concode_field_sep int positionLength concode_elem_sep Dictionary dictionary concode_elem_sep int offset concode_elem_sep int wordId concode_elem_sep int length concode_elem_sep char[] surfaceForm concode_elem_sep int position concode_elem_sep Type type concode_field_sep int ge...
boolean function ( ) { return type == Type . UNKNOWN ; }
89,656
creates the embedded rest client when needed . needs to be called before each test . concode_field_sep ESLogger logger concode_elem_sep RestResponse response concode_elem_sep RestClient restClient concode_elem_sep Stash stash concode_elem_sep RestSpec restSpec concode_field_sep String actualBody concode_elem_sep String...
void function ( URL [ ] arg0 , Settings arg1 ) { if ( restClient == null ) { restClient = new RestClient ( restSpec , arg1 , arg0 ) ; } }
89,657
resets the formelement 's to their original state . concode_field_sep LinkedFormElement zip concode_elem_sep FormElement firstName concode_elem_sep FormElement lastName concode_elem_sep SubmitButton submit concode_elem_sep LinkedFormElement city concode_elem_sep ArrayList componentList concode_elem_sep LinkedFormElemen...
void function ( ) { submit . setStatus ( false ) ; Iterator loc0 = componentList . iterator ( ) ; FormElement loc1 ; while ( loc0 . hasNext ( ) ) { loc1 = ( FormElement ) loc0 . next ( ) ; loc1 . reset ( ) ; } }
89,658
returns type of this result - error , warning etc. . concode_field_sep VObject targetObject concode_elem_sep String TYPE_WARN concode_elem_sep int SIGN_ERROR concode_elem_sep int SIGN_HIDDEN concode_elem_sep Object sourcePosition concode_elem_sep VObject sourceObject concode_elem_sep String TYPE_INFO concode_elem_sep S...
String function ( ) { return type ; }
89,659
gets the value of the category property . concode_field_sep XMLGregorianCalendar versionEndDate concode_elem_sep List<Description> description concode_elem_sep long serialVersionUID concode_elem_sep List<Classification> classification concode_elem_sep String version concode_elem_sep List<SpecificationGroup> characteris...
String function ( ) { return category ; }
89,660
gets the value of the errorcode property . concode_field_sep String errorDesc concode_elem_sep String errorCode concode_field_sep String getErrorDesc concode_elem_sep void setErrorDesc concode_elem_sep void setErrorCode
String function ( ) { return errorCode ; }
89,661
return the current fundamental fields . concode_field_sep Object mCustomObject concode_elem_sep char PC_PUT concode_elem_sep SimpleDateFormat mExpireFormat concode_elem_sep char PC_UNKNOWN concode_elem_sep double mStrikePrice concode_elem_sep MamdaFundamentalListener mFundamentalListener concode_elem_sep char EXERCISE_...
MamdaFundamentals function ( ) { return mFundamentalListener ; }
89,662
clear all containers concode_field_sep Color color concode_elem_sep List<NavPoint> helpersList concode_elem_sep boolean antiAlias concode_elem_sep List<NavPoligon> runwayLines concode_elem_sep List<NavPoint> labelList concode_elem_sep List<NavPoligon> taxiWayLines concode_elem_sep List<NavLine> parkingLineList concode_...
void function ( ) { this . helpersList = new ArrayList < > ( ) ; this . labelList = new ArrayList < > ( ) ; this . parkingLineList = new ArrayList < > ( ) ; this . runwayLines = new ArrayList < > ( ) ; this . taxiWayLines = new ArrayList < > ( ) ; }
89,663
debug log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void setLogLevel concode_elem_sep void setLogLevel concode_elem_sep void e conco...
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . DEBUG >= LOGLEVEL ) Log . d ( arg0 , arg1 , arg2 ) ; }
89,664
gets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep java.lang.Boolean owns concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String remoteSchema concode_el...
String function ( ) { return arcrole ; }
89,665
returns the current url concode_field_sep Vector objectVector concode_elem_sep boolean bReading concode_elem_sep Vector records concode_elem_sep int numRecords concode_elem_sep int lastObjectIdx concode_elem_sep int vpW concode_elem_sep URL url concode_elem_sep int vpY concode_elem_sep int numObjects concode_elem_sep i...
URL function ( ) { return url ; }
89,666
returns an array of method containing the methods declared by the class represented by the supplied class . concode_field_sep PlaceHolder placeHolder concode_field_sep Field getDeclaredField concode_elem_sep Class forName concode_elem_sep boolean isAnnotationPresent concode_elem_sep Field getField concode_elem_sep Clas...
Method [ ] function ( Class arg0 ) { java . lang . reflect . Method [ ] loc0 = arg0 . getDeclaredMethods ( ) ; Method [ ] loc1 = new Method [ loc0 . length ] ; for ( int loc2 = 0 , loc3 = loc0 . length ; loc2 < loc3 ; loc2 ++ ) { loc1 [ loc2 ] = new Method ( loc0 [ loc2 ] ) ; } return loc1 ; }
89,667
return type metadata object concode_field_sep java.util.Calendar deletedDate concode_elem_sep com.netsuite.webservices.platform.core_2014_2.BaseRef record concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_s...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
89,668
does nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean passes
void function ( ) { }
89,669
set the value related to the column : family . concode_field_sep Parent parent concode_elem_sep long serialVersionUID concode_elem_sep String hashCode concode_elem_sep String id concode_elem_sep Family family concode_elem_sep Map<Serializable,String> SAVED_HASHES concode_field_sep Parent getParent concode_elem_sep Clas...
void function ( final Family arg0 ) { this . family = arg0 ; }
89,670
the fully qualified uri of the new distribution resource just created . for example : ps : / / cloudfront.amazonaws.com/2010-11-01/distribution/edfdvbd632bhds5 . returns a reference to this object so that method calls can be chained together . concode_field_sep String location concode_elem_sep String eTag concode_elem_...
CreateDistributionResult function ( String arg0 ) { this . location = arg0 ; return this ; }
89,671
returns the name of the interface association . concode_field_sep NetworkInterface iface concode_elem_sep Logger LOGGER concode_elem_sep String parentName concode_elem_sep List<InterfaceAssociation> interfaces concode_elem_sep Map<String,Set<InetAddress>> addressMap concode_elem_sep List<String> skipNetworkInterfaces c...
String function ( ) { return iface . getName ( ) ; }
89,672
sets the value of the reserverequestid property . concode_field_sep String customerPartNumber concode_elem_sep MPErrorType errorType concode_elem_sep String errorMessage concode_elem_sep Integer lineID concode_elem_sep Integer reserveRequestID concode_elem_sep Status errorStatus concode_elem_sep String partNumber conco...
void function ( Integer arg0 ) { this . reserveRequestID = arg0 ; }
89,673
returns the project info for the library . concode_field_sep String licenceName concode_elem_sep String name concode_elem_sep String version concode_elem_sep String info concode_field_sep String getVersion concode_elem_sep void setName concode_elem_sep String getName concode_elem_sep void setVersion concode_elem_sep St...
String function ( ) { return this . info ; }
89,674
verifies if the section starting in a given offset and with a given length is contained in this segment . concode_field_sep int offset concode_elem_sep long serialVersionUID concode_elem_sep String value concode_field_sep String getValue concode_elem_sep String getValue concode_elem_sep void setOffset concode_elem_sep ...
boolean function ( int arg0 , int arg1 ) { return arg0 >= getOffset ( ) && arg1 <= value . arg1 ( ) - ( arg0 - getOffset ( ) ) ; }
89,675
removes and returns the least element of the priorityqueue in log size time . concode_field_sep int size concode_elem_sep int maxSize concode_elem_sep T[] heap concode_field_sep T top concode_elem_sep int size concode_elem_sep void upHeap concode_elem_sep void downHeap concode_elem_sep boolean lessThan concode_elem_sep...
T function ( ) { if ( size > 0 ) { T loc0 = heap [ 1 ] ; heap [ 1 ] = heap [ size ] ; heap [ size ] = null ; size -- ; downHeap ( ) ; return loc0 ; } else return null ; }
89,676
sets the gadget id of this gadget . concode_field_sep Gadget _gadget concode_field_sep void setName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep boolean isEsca...
void function ( long arg0 ) { _gadget . setGadgetId ( arg0 ) ; }
89,677
get the defaultcapacity value . concode_field_sep VirtualMachineScaleSetSkuScaleType scaleType concode_elem_sep Long defaultCapacity concode_elem_sep Long maximum concode_elem_sep Long minimum concode_field_sep VirtualMachineScaleSetSkuScaleType scaleType concode_elem_sep Long maximum concode_elem_sep Long minimum
Long function ( ) { return this . defaultCapacity ; }
89,678
gets the value of the billedamount property . concode_field_sep BigDecimal installmentAmountCredit concode_elem_sep String installmentPlanId concode_elem_sep BigDecimal totalFinancedAmount concode_elem_sep String planStatus concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal installmentCredit concode_ele...
BigDecimal function ( ) { return billedAmount ; }
89,679
returns the mvcc version of this release . concode_field_sep Release _release concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setBuildNumber concode_elem_sep boolean isEscapedModel concode_elem_sep ...
long function ( ) { return _release . getMvccVersion ( ) ; }
89,680
deduct unallocated resources from the node . this is used when allocating a container . concode_field_sep ResourceUtilization nodeUtilization concode_elem_sep RMNode rmNode concode_elem_sep String nodeName concode_elem_sep Resource allocatedResource concode_elem_sep RMContainer reservedContainer concode_elem_sep Set<St...
void function ( Resource arg0 ) { if ( arg0 == null ) { LOG . error ( "srini_string" + rmNode . getNodeAddress ( ) ) ; return ; } Resources . subtractFrom ( unallocatedResource , arg0 ) ; Resources . addTo ( allocatedResource , arg0 ) ; }
89,681
returns the task running time concode_field_sep TaskId parentTaskId concode_elem_sep String action concode_elem_sep String description concode_elem_sep long startTime concode_elem_sep String type concode_elem_sep ConstructingObjectParser<TaskInfo,ParseFieldMatcherSupplier> PARSER concode_elem_sep boolean cancellable co...
long function ( ) { return runningTimeNanos ; }
89,682
gets the url the request needs to be sent to . concode_field_sep String method concode_elem_sep String requestUrl concode_elem_sep Map<String,String> headers concode_elem_sep String contentType concode_field_sep void setMethod concode_elem_sep InputStream getMessagePayload concode_elem_sep Map<String,String> getAllHead...
String function ( ) { return requestUrl ; }
89,683
action listener for the changes the selected content path . concode_field_sep String includeExample concode_elem_sep String selectedIncludePath concode_field_sep String getSelectedIncludePath concode_elem_sep void setSelectedIncludePath concode_elem_sep String getIncludeExample concode_elem_sep void setIncludeExample
void function ( ActionEvent arg0 ) { FacesContext loc0 = FacesContext . getCurrentInstance ( ) ; Map loc1 = loc0 . getExternalContext ( ) . getRequestParameterMap ( ) ; selectedIncludePath = ( String ) loc1 . get ( "srini_string" ) ; }
89,684
sets the proxyuser . concode_field_sep String method concode_elem_sep String wslUrl concode_elem_sep String proxyPassword concode_elem_sep String serverName concode_elem_sep boolean useProxy concode_elem_sep String portName concode_elem_sep String userName concode_elem_sep String proxyHost concode_elem_sep boolean need...
void function ( String arg0 ) { this . proxyUser = arg0 ; }
89,685
metodo que permite asignar el correo de la persona concode_field_sep String apellidos concode_elem_sep Date fechaEliminacion concode_elem_sep Date fechaModificacion concode_elem_sep String cedula concode_elem_sep Usuario usuarioElimina concode_elem_sep String nombres concode_elem_sep Usuario usuarioCrea concode_elem_se...
void function ( String arg0 ) { this . correo = arg0 ; }
89,686
sets the value of the video property . concode_field_sep String reportName concode_elem_sep String reportSummary concode_elem_sep String reportDescription concode_elem_sep String className concode_elem_sep String video concode_elem_sep String reportFull concode_elem_sep String reportSummaryEsp concode_field_sep void se...
void function ( String arg0 ) { this . video = arg0 ; }
89,687
set background drawable . concode_field_sep WindowManager mWindowManager concode_elem_sep PopupWindow mWindow concode_elem_sep View mRootView concode_elem_sep Drawable mBackground concode_elem_sep Context mContext concode_field_sep void onDismiss concode_elem_sep void onShow concode_elem_sep void setOnDismissListener c...
void function ( Drawable arg0 ) { mBackground = arg0 ; }
89,688
starts our interval timer task . intended to keep running until this application scoped bean is shutdown by the server . concode_field_sep String INTERVAL_RENDER_GROUP concode_elem_sep int pollingInterval concode_elem_sep Logger log concode_elem_sep TimerTask renderTask concode_elem_sep Timer intervalTimer concode_fiel...
void function ( ) { if ( null != intervalTimer ) { intervalTimer . cancel ( ) ; } intervalTimer = new Timer ( true ) ; intervalTimer . schedule ( renderTask , 0 , pollingInterval ) ; }
89,689
f0 - > operator f1 - > exp f2 - > exp concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
R function ( BinOp arg0 , A arg1 ) { R loc0 = null ; arg0 . f0 . accept ( this , arg1 ) ; arg0 . f1 . accept ( this , arg1 ) ; arg0 . f2 . accept ( this , arg1 ) ; return loc0 ; }
89,690
return the unqualified class name concode_field_sep NamingStrategy INSTANCE concode_field_sep String collectionTableName concode_elem_sep String propertyToColumnName concode_elem_sep String logicalColumnName concode_elem_sep String joinKeyColumnName concode_elem_sep String logicalCollectionColumnName concode_elem_sep S...
String function ( String arg0 ) { return StringHelper . unqualify ( arg0 ) ; }
89,691
adds the j i r a project to the database . also notifies the appropriate model listeners . concode_field_sep JIRAProjectLocalService _jiraProjectLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.socialcoding.model.JIRAProject fetchJIRAProject concode_elem_sep void set...
com . liferay . socialcoding . model . JIRAProject function ( com . liferay . socialcoding . model . JIRAProject arg0 ) { return _jiraProjectLocalService . addJIRAProject ( arg0 ) ; }
89,692
returns the endpoint for the request , or null if the request is not opened . concode_field_sep Object mClientData concode_elem_sep UsbEndpoint mEndpoint concode_elem_sep String TAG concode_elem_sep long mNativeContext concode_elem_sep int mLength concode_elem_sep ByteBuffer mBuffer concode_field_sep boolean cancel con...
UsbEndpoint function ( ) { return mEndpoint ; }
89,693
returns the position of the split in the sorted values . -1 indicates that a split could not be found . concode_field_sep double maxImpurity concode_elem_sep double splitValue concode_elem_sep int number concode_elem_sep double rightAve concode_elem_sep int last concode_elem_sep double leftAve concode_elem_sep long ser...
int function ( ) { return position ; }
89,694
we need to detect this as `` code-style '' aspectj aspects should not be interpreted by spring aop . concode_field_sep String AJC_MAGIC concode_elem_sep A annotation concode_elem_sep String argumentNames concode_elem_sep Log logger concode_elem_sep String pointcutExpression concode_elem_sep Map<Class<?>,AspectJAnnotati...
boolean function ( Class < ? > arg0 ) { for ( Field loc0 : arg0 . getDeclaredFields ( ) ) { if ( loc0 . getName ( ) . startsWith ( AJC_MAGIC ) ) { return true ; } } return false ; }
89,695
sets the ngay tao of this ke hoach ve sinh xa new . concode_field_sep keHoachVeSinhXaNew _keHoachVeSinhXaNew concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolea...
void function ( java . util . Date arg0 ) { _keHoachVeSinhXaNew . setNgayTao ( arg0 ) ; }
89,696
sets the filter that is used to filter the arguments of this message concode_field_sep Object[] unpackedArgs concode_elem_sep String resource concode_elem_sep int FILTER concode_elem_sep String encoding concode_elem_sep boolean[] isLocaleSpecific concode_elem_sep int[] argFilterType concode_elem_sep int NO_FILTER conco...
void function ( Filter arg0 ) { arguments . setFilter ( arg0 ) ; if ( extraArgs != null ) { extraArgs . setFilter ( arg0 ) ; } this . filter = arg0 ; }
89,697
converts a byte array to a long . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] longToBytes concode_elem_sep byte[] doubleToBytes concode_elem_sep byte[] floatToBytes concode_elem_sep short bytesToShort concode_elem_sep short bytesToShort concode_elem_sep byte[] shortToBytes concode_elem_sep boolea...
long function ( byte [ ] arg0 ) { int loc0 = ( arg0 [ 0 ] << 24 ) | ( ( arg0 [ 1 ] & 0xff ) << 16 ) | ( ( arg0 [ 2 ] & 0xff ) << 8 ) | ( arg0 [ 3 ] & 0xff ) ; int loc1 = ( arg0 [ 4 ] << 24 ) | ( ( arg0 [ 5 ] & 0xff ) << 16 ) | ( ( arg0 [ 6 ] & 0xff ) << 8 ) | ( arg0 [ 7 ] & 0xff ) ; return ( ( ( long ) loc0 ) << 32 ) |...
89,698
do not invoke . concode_field_sep boolean pleaseStop concode_elem_sep List<RunListener> currentListeners concode_elem_sep List<RunListener> listeners concode_field_sep void fireTestIgnored concode_elem_sep void notifyListener concode_elem_sep RunListener wrapIfNotThreadSafe concode_elem_sep void run concode_elem_sep vo...
void function ( final Result arg0 ) { new SafeNotifier ( ) { @ Override protected void notifyListener ( RunListener arg1 ) throws Exception { arg1 . testRunFinished ( arg0 ) ; } } . run ( ) ; }
89,699
checks if the obstacle that is down intersects with the block side . concode_field_sep int obstacleSize concode_elem_sep int RESET_POSITION concode_elem_sep int gameWidth concode_elem_sep int obstacleHeigth concode_elem_sep int gameHeight concode_elem_sep boolean isUp concode_elem_sep int x concode_elem_sep int y conco...
boolean function ( Block arg0 ) { if ( arg0 . y + Block . HEIGHT > y ) { if ( arg0 . x + Block . WIDTH == x ) { return true ; } } return false ; }