idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
38,200
get the paths list . concode_field_sep List<String> paths concode_elem_sep String location concode_elem_sep String type concode_field_sep String getLocation concode_elem_sep String getType
List < String > function ( ) { return paths ; }
38,201
generate 1-d array . concode_field_sep boolean debug concode_field_sep void arrayPrint concode_elem_sep void arrayPrint concode_elem_sep void arrayPrint concode_elem_sep void arrayPrint concode_elem_sep int[] arrayBidirectionalBubbleSort concode_elem_sep int[][] arrayBidirectionalBubbleSort concode_elem_sep int[][] arr...
int [ ] function ( int arg0 , int arg1 , int arg2 ) { int [ ] loc0 = new int [ arg0 ] ; for ( int loc1 = 0 ; loc1 < arg0 ; loc1 ++ ) { loc0 [ loc1 ] = Calc . random ( arg1 , arg2 ) ; } return loc0 ; }
38,202
todo : can we get away with not calling this pcfg ? concode_field_sep List<? extends HasWord> originalSentence concode_elem_sep State initialState concode_elem_sep List<State> bestParses concode_elem_sep boolean unparsable concode_elem_sep TregexPattern rearrangeFinalPunctuationTregex concode_elem_sep Debinarizer debin...
Tree function ( ) { return debinarized ; }
38,203
set the truststore and password concode_field_sep boolean clientAuth concode_elem_sep String trustManagerType concode_elem_sep boolean isTrustStoreSet concode_elem_sep String keyStoreType concode_elem_sep String trustStoreType concode_elem_sep String trustPass concode_elem_sep String keyPass concode_elem_sep String key...
void function ( String arg0 , String arg1 ) { setTrustStore ( arg0 , arg1 , null , null ) ; }
38,204
execute service operation i.e. : create user , login and etc without model concode_field_sep Request request concode_elem_sep HttpServletResponse servletResponse concode_elem_sep UriInfo uriInfo concode_elem_sep ServiceExecutor serviceExecutor concode_elem_sep HttpHeaders httpHeaders concode_elem_sep HttpServletRequest...
Response function ( IService arg0 ) { ArtifactoryRestRequest loc0 = getArtifactoryRestRequest ( ) ; artifactoryResponse . setServletResponse ( servletResponse ) ; return serviceExecutor . process ( loc0 , artifactoryResponse , arg0 ) ; }
38,205
set an ini value concode_field_sep ServletContext _servletContext concode_elem_sep L10N L concode_elem_sep QuercusEngine engine concode_elem_sep Logger logger concode_elem_sep String defaultUserDir concode_field_sep void checkServletAPIVersion concode_elem_sep void init concode_elem_sep void phpService concode_elem_sep...
void function ( String arg0 , String arg1 ) { engine . getQuercus ( ) . setIni ( arg0 , arg1 ) ; }
38,206
formats a long as an 8-byte signed hex value . concode_field_sep PlaceHolder placeHolder concode_field_sep String uNibble concode_elem_sep String s4 concode_elem_sep String u8 concode_elem_sep String dump concode_elem_sep String u1 concode_elem_sep String u2 concode_elem_sep String u2or4 concode_elem_sep String u3 conc...
String function ( long arg0 ) { char [ ] loc0 = new char [ 17 ] ; if ( arg0 < 0 ) { loc0 [ 0 ] = '-' ; arg0 = - arg0 ; } else { loc0 [ 0 ] = '+' ; } for ( int loc1 = 0 ; loc1 < 16 ; loc1 ++ ) { loc0 [ 16 - loc1 ] = Character . forDigit ( ( int ) arg0 & 0x0f , 16 ) ; arg0 >>= 4 ; } return new String ( loc0 ) ; }
38,207
method used to repair a car if a problem was reported when the rental was completed concode_field_sep PlaceHolder placeHolder concode_field_sep String rentalInfo concode_elem_sep void returnCar concode_elem_sep void reportProblem concode_elem_sep void detailDone concode_elem_sep void rentCar
void function ( RentalStateManager arg0 ) { throw new IllegalStateException ( ) ; }
38,208
casts the specified value to short and adds it . concode_field_sep boolean ordered concode_elem_sep int size concode_elem_sep short[] items concode_field_sep void mul concode_elem_sep void insert concode_elem_sep short pop concode_elem_sep short random concode_elem_sep boolean removeAll concode_elem_sep void truncate c...
void function ( int arg0 ) { short [ ] loc0 = this . items ; if ( size == loc0 . length ) loc0 = resize ( Math . max ( 8 , ( int ) ( size * 1.75f ) ) ) ; loc0 [ size ++ ] = ( short ) arg0 ; }
38,209
this method must be called in depth in 17,24 for rgb images . concode_field_sep byte compressedStream[] concode_elem_sep float[] ratioLayers concode_elem_sep int depth concode_elem_sep boolean isInitialized concode_elem_sep String[] encoder_arguments concode_elem_sep byte[] image8 concode_elem_sep int width concode_ele...
void function ( int [ ] arg0 ) { this . image24 = arg0 ; }
38,210
sets the size of the block in bytes . concode_field_sep long mBlockSizeBytes concode_elem_sep UnderStorageType mUnderStorageType concode_elem_sep long mTtl concode_elem_sep FileWriteLocationPolicy mLocationPolicy concode_elem_sep TachyonStorageType mTachyonStorageType concode_field_sep UnderStorageType getUnderStorageT...
Builder function ( long arg0 ) { mBlockSizeBytes = arg0 ; return this ; }
38,211
information about the part of a web request that you want aws waf to inspect and the value that you want aws waf to search for . if you specify delete for the value of action , the bytematchtuple values must exactly match the values in the bytematchtuple that you want to delete from the bytematchset . concode_field_sep...
ByteMatchSetUpdate function ( ByteMatchTuple arg0 ) { setByteMatchTuple ( arg0 ) ; return this ; }
38,212
informs the token marker that line have been deleted from the document . this removes the lines in question from the lineinfo array . concode_field_sep Token lastToken concode_elem_sep Token firstToken concode_elem_sep boolean nextLineRequested concode_elem_sep int lastLine concode_elem_sep LineInfo[] lineInfo concode_...
void function ( int arg0 , int arg1 ) { if ( arg1 <= 0 ) return ; int loc0 = arg0 + arg1 ; length -= arg1 ; System . arraycopy ( lineInfo , loc0 , lineInfo , arg0 , lineInfo . length - loc0 ) ; }
38,213
gets the current progress label . 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_ele...
String function ( ) { return progressLabel ; }
38,214
compute the distance from a plane to a point . concode_field_sep LinearSquaredDistance LINEAR_SQUARED concode_elem_sep LinearDistance LINEAR concode_elem_sep NormalDistance NORMAL concode_elem_sep ArcDistance ARC concode_elem_sep NormalSquaredDistance NORMAL_SQUARED concode_field_sep double findMinimumArcDistance conco...
double function ( final PlanetModel arg0 , final Plane arg1 , final GeoPoint arg2 , final Membership ... arg3 ) { return computeDistance ( arg0 , arg1 , arg2 . x , arg2 . y , arg2 . z , arg3 ) ; }
38,215
turns a short into hex octets . concode_field_sep char[] DIGITS concode_field_sep long parseLong concode_elem_sep short parseShort
Appendable function ( Appendable arg0 , short arg1 ) { return append ( arg0 , ( long ) arg1 , 4 ) ; }
38,216
sets the active rows to be affected by the current the operation . concode_field_sep List<GridRow> activeGridRows concode_elem_sep double eventInitialX concode_elem_sep GridWidget activeGridWidget concode_elem_sep GridColumn.HeaderMetaData activeHeaderMetaData concode_elem_sep GridWidgetDnDProxy eventColumnHighlight co...
void function ( final List < GridRow > arg0 ) { this . activeGridRows . clear ( ) ; this . activeGridRows . addAll ( arg0 ) ; }
38,217
called by internal mechanisms , do not call yourself . concode_field_sep String website concode_elem_sep Long recruiterCompanyId concode_elem_sep String address concode_elem_sep String recruiterCompanyName concode_elem_sep List<Recruiter> recruiters concode_elem_sep DaoSession daoSession concode_elem_sep RecruiterCompa...
void function ( DaoSession arg0 ) { this . daoSession = arg0 ; myDao = arg0 != null ? arg0 . getRecruiterCompanyDao ( ) : null ; }
38,218
return the expression as a string for diagnostics . concode_field_sep ObjectVector m_tokenQueue concode_elem_sep int MAXTOKENQUEUESIZE concode_elem_sep String m_currentPattern concode_elem_sep OpMapVector m_opMap concode_elem_sep int MAPINDEX_LENGTH concode_elem_sep int BLOCKTOKENQUEUESIZE concode_field_sep int getFirs...
String function ( ) { return m_currentPattern ; }
38,219
the id of the nat gateway . concode_field_sep String natGatewayId concode_field_sep void setNatGatewayId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DeleteNatGatewayResult clone concode_elem_sep String toString concode_elem_sep String getNatGatewayId
DeleteNatGatewayResult function ( String arg0 ) { setNatGatewayId ( arg0 ) ; return this ; }
38,220
check if file exists concode_field_sep int FA_HIDDEN concode_elem_sep int FA_DIRECTORY concode_elem_sep File pwd concode_elem_sep int FA_READONLY concode_field_sep void deleteFile concode_elem_sep void copyFile concode_elem_sep ClarionString getShortPath concode_elem_sep void getDirectoryListing concode_elem_sep File r...
boolean function ( String arg0 ) { File loc0 = new File ( arg0 ) ; if ( loc0 . isAbsolute ( ) ) return loc0 . isFile ( ) ; return ( new File ( pwd , arg0 ) ) . isFile ( ) ; }
38,221
init the rtp packet header pt and sscr concode_field_sep int packet_len concode_elem_sep byte[] packet concode_field_sep long getSscr concode_elem_sep void setSscr concode_elem_sep boolean hasPadding concode_elem_sep void setExtension concode_elem_sep int getSequenceNumber concode_elem_sep byte[] getPacket concode_elem...
void function ( int arg0 , long arg1 ) { init ( arg0 , Random . nextInt ( ) , Random . nextLong ( ) , arg1 ) ; }
38,222
set the activity content to an explicit view . this view is placed directly into the activity 's view hierarchy . it can itself be a complex view hierarchy . when calling this method , the layout parameters of the specified view are ignored . both the width and the height of the view are set by default to match_parent ...
void function ( View arg0 ) { mBroadcasting = true ; mActivity . setContentView ( arg0 ) ; }
38,223
gets the list of signing certificate files . concode_field_sep List<Credential> signingWallet concode_elem_sep String identityProviderUrl concode_elem_sep long serialVersionUID concode_elem_sep Resource encryptionPrivateKey concode_elem_sep String identityAttribute concode_elem_sep String relyingPartyIdentifier concode...
List < Resource > function ( ) { return this . signingCertificateResources ; }
38,224
sets the value of the username property . concode_field_sep String hostname concode_elem_sep String password concode_elem_sep String databaseName concode_elem_sep String partitionId concode_elem_sep String port concode_elem_sep String username concode_field_sep void setPassword concode_elem_sep String getHostname conco...
void function ( String arg0 ) { this . username = arg0 ; }
38,225
return the hashcode for this corba object . the default implementation delegates call to #hash int , passing integer.max _ value as an argument . concode_field_sep String WHY concode_field_sep Request request concode_elem_sep org.omg.CORBA.portable.OutputStream request concode_elem_sep void release concode_elem_sep Pol...
int function ( org . omg . CORBA . Object arg0 ) { return hash ( arg0 , Integer . MAX_VALUE ) ; }
38,226
returns the from user email address of this jememail . concode_field_sep List<InternetAddress> toEmailAddresses concode_elem_sep String fromUserEmailAddress concode_elem_sep String subject concode_elem_sep String fromUserName concode_elem_sep EmailFormat format concode_elem_sep String DEFAULT_FROM_USER_NAME concode_ele...
String function ( ) { return fromUserEmailAddress ; }
38,227
endpoint mapping type if endpoint mapping is used . rootqname - offers the option to map web service requests based on the qualified name of the root element contained in the message . soapaction - used to map web service requests based on the soap action specified in the header of the message . uri - in order to map w...
void function ( EndpointMappingType arg0 ) { this . type = arg0 ; }
38,228
get custom serializer concode_field_sep com.marketo.www.mktows.LeadKey[] leadList concode_elem_sep java.lang.Integer campaignId concode_elem_sep java.lang.String programName concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeC...
org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; }
38,229
returns the mvcc version of this portlet item . concode_field_sep PortletItem _portletItem concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName co...
long function ( ) { return _portletItem . getMvccVersion ( ) ; }
38,230
returns a new object with rotated image data by 45 degrees counterclockwise . only callable if #isrotatesupported is true . concode_field_sep int width concode_elem_sep int height concode_field_sep LuminanceSource rotateCounterClockwise concode_elem_sep boolean isCropSupported concode_elem_sep int getHeight concode_ele...
LuminanceSource function ( ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
38,231
expert : set the maximum number of simultaneous merges allowed . concode_field_sep int maxThreadCount concode_elem_sep String MAX_MERGE_COUNT concode_elem_sep int maxMergeCount concode_elem_sep String MAX_THREAD_COUNT concode_elem_sep String AUTO_THROTTLE concode_elem_sep String NOTIFY_ON_MERGE_FAILURE concode_elem_sep...
void function ( int arg0 ) { this . maxMergeCount = arg0 ; }
38,232
creates a new builder . concode_field_sep boolean forceKeepAllFramesInMemory concode_elem_sep AnimatedDrawableOptions DEFAULTS concode_elem_sep int maximumBytes concode_elem_sep boolean allowPrefetching concode_elem_sep boolean enableDebugging concode_field_sep placeholderType placeHolder
AnimatedDrawableOptionsBuilder function ( ) { return new AnimatedDrawableOptionsBuilder ( ) ; }
38,233
sets the rowsfailed value for this resultgetimporttoliststatus . concode_field_sep java.lang.Integer estimatedTime concode_elem_sep java.util.Calendar startedTime concode_elem_sep java.lang.Integer rowsFailed concode_elem_sep java.util.Calendar endedTime concode_elem_sep org.apache.axis.description.TypeDesc typeDesc co...
void function ( java . lang . Integer arg0 ) { this . rowsFailed = arg0 ; }
38,234
sample test client concode_field_sep int BITS_PER_SAMPLE concode_elem_sep int SAMPLE_BUFFER_SIZE concode_elem_sep SourceDataLine line concode_elem_sep int BYTES_PER_SAMPLE concode_elem_sep double MAX_16_BIT concode_elem_sep int SAMPLE_RATE concode_elem_sep int bufferSize concode_elem_sep byte[] buffer concode_field_sep...
double [ ] function ( double arg0 , double arg1 , double arg2 ) { int loc0 = ( int ) ( StdAudio . SAMPLE_RATE * arg1 ) ; double [ ] loc1 = new double [ loc0 + 1 ] ; for ( int loc2 = 0 ; loc2 <= loc0 ; loc2 ++ ) loc1 [ loc2 ] = arg2 * Math . sin ( 2 * Math . PI * loc2 * arg0 / StdAudio . SAMPLE_RATE ) ; return loc1 ; }
38,235
sets file system uri . see #geturi for more information . concode_field_sep String[] cfgPaths concode_elem_sep long serialVersionUID concode_elem_sep UserNameMapper usrNameMapper concode_elem_sep String uri concode_field_sep void setUserNameMapper concode_elem_sep void setConfigPaths concode_elem_sep void writeExternal...
void function ( @ Nullable String arg0 ) { this . uri = arg0 ; }
38,236
get the socketaddress of the sender of this packet . concode_field_sep byte COMFORT_PAYLOAD concode_elem_sep int PACKETS_PER_SECOND concode_elem_sep int PCMU_SAMPLE_SIZE concode_elem_sep byte comfortNoiseLevel concode_elem_sep byte X_BIT concode_elem_sep byte MARK_BIT concode_elem_sep int HEADER_SIZE concode_elem_sep s...
SocketAddress function ( ) { return packet . getSocketAddress ( ) ; }
38,237
sets the map indexed by user name with the value the password concode_field_sep Map<String,String> userPasswords concode_elem_sep Map<String,Set<Principal>> userGroups concode_elem_sep String DEFAULT_ANONYMOUS_USER concode_elem_sep String DEFAULT_ANONYMOUS_GROUP concode_elem_sep String anonymousUser concode_elem_sep St...
void function ( Map < String , String > arg0 ) { this . userPasswords = arg0 ; }
38,238
validate the destination concode_field_sep PlaceHolder placeHolder concode_field_sep void validateAssertion concode_elem_sep void validateSubject concode_elem_sep void validateDestination concode_elem_sep void validate
void function ( CustomAttributeQuery arg0 ) { if ( arg0 . getIssueInstant ( ) . isAfterNow ( ) ) throw new ValidationException ( "srini_string" ) ; }
38,239
sets the response 's status code . concode_field_sep int statusCode concode_elem_sep String statusMessage concode_elem_sep String errorMessage concode_field_sep void setStatusMessage concode_elem_sep void setErrorMessage concode_elem_sep int getStatusCode concode_elem_sep String getStatusMessage concode_elem_sep T deco...
void function ( int arg0 ) { if ( this . statusCode != - 1 ) { throw new UnsupportedOperationException ( "srini_string" ) ; } this . statusCode = arg0 ; }
38,240
returns the user code class loader of this invokable . concode_field_sep Environment environment concode_elem_sep Logger LOG concode_elem_sep ExecutionConfig executionConfig concode_field_sep void cancel concode_elem_sep Configuration getTaskConfiguration concode_elem_sep Configuration getJobConfiguration concode_elem_...
ClassLoader function ( ) { return getEnvironment ( ) . getUserClassLoader ( ) ; }
38,241
notify this line highlight that it is no longer used . call this for cleanup before the linehighlight is discarded . concode_field_sep JavaEditor editor concode_elem_sep Color bgColor concode_elem_sep Color markerColor concode_elem_sep String marker concode_elem_sep int priority concode_elem_sep LineID lineID concode_e...
void function ( ) { lineID . removeListener ( this ) ; lineID . stopTracking ( ) ; allHighlights . remove ( this ) ; }
38,242
returns a hash code for this instance . concode_field_sep PlaceHolder placeHolder concode_field_sep void paintBar concode_elem_sep Rectangle2D createShadow concode_elem_sep boolean equals concode_elem_sep void paintBarShadow
int function ( ) { int loc0 = 37 ; return loc0 ; }
38,243
sets whether this asset is active . concode_field_sep Asset _asset concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int compa...
void function ( boolean arg0 ) { _asset . setActive ( arg0 ) ; }
38,244
convert radians to degrees . concode_field_sep double DATELINE_D concode_elem_sep float SOUTH_POLE_F concode_elem_sep float LON_RANGE_F concode_elem_sep double NORTH_POLE_DEG_D concode_elem_sep double DATELINE_DEG_D concode_elem_sep double SOUTH_POLE_D concode_elem_sep double DEGREES_TO_MILS concode_elem_sep double LON...
double function ( double arg0 ) { return Math . toDegrees ( arg0 ) ; }
38,245
implementation of the extension requirements concode_field_sep String RANGESUBSET_REST_RANGE_SEPARATOR concode_elem_sep String RANGESUBSET_KVP_RANGE_SEPARATOR concode_elem_sep String RANGESUBSET_REST_PARAMNAME concode_elem_sep String RANGESUBSET_KVP_PARAMNAME concode_field_sep void parseGetCoverageRESTRequest concode_e...
String function ( ) { return ExtensionsRegistry . RANGE_SUBSETTING_IDENTIFIER ; }
38,246
method called when an event is removed . concode_field_sep List<CollectionDeleteHandler> deleteHandlers concode_elem_sep List<EventAddHandler> addHandlers concode_elem_sep List<CollectionCreateHandler> createHandlers concode_elem_sep List<CollectionUpdateHandler> updateCollectionHandlers concode_elem_sep List<EventRemo...
Object function ( ProceedingJoinPoint arg0 , CollectionItem arg1 , Set < ContentItem > arg2 ) { if ( LOG . isDebugEnabled ( ) ) { LOG . debug ( "srini_string" ) ; } Set < Item > loc0 = new HashSet < Item > ( ) ; loc0 . addAll ( arg2 ) ; return removeItemsFromCollectionInternal ( arg0 , arg1 , loc0 ) ; }
38,247
clears all error list/maps . will clear the map and list that contain field errors and action errors . concode_field_sep Collection<String> actionErrors concode_elem_sep Collection<String> actionMessages concode_elem_sep Map<String,List<String>> fieldErrors concode_field_sep Collection<String> getActionErrors concode_e...
void function ( ) { internalGetFieldErrors ( ) . clear ( ) ; internalGetActionErrors ( ) . clear ( ) ; }
38,248
the resolution value , expressed in the unit returned by #getresolutionunit concode_field_sep long resolutionValue concode_elem_sep String coverageId concode_elem_sep String[] DURATION_UNITS concode_elem_sep String resolutionUnit concode_elem_sep Logger LOGGER concode_elem_sep ReaderDimensionsAccessor accessor concode_...
long function ( ) { return resolutionValue ; }
38,249
sets the kb folder id of this k b folder . concode_field_sep KBFolder _kbFolder concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_...
void function ( long arg0 ) { _kbFolder . setKbFolderId ( arg0 ) ; }
38,250
determine the shards with a specific state concode_field_sep DiscoveryNode node concode_elem_sep List<ShardRouting> shards concode_elem_sep String nodeId concode_field_sep void add concode_elem_sep Iterator<ShardRouting> mutableIterator concode_elem_sep String prettyPrint concode_elem_sep boolean isEmpty concode_elem_s...
List < ShardRouting > function ( ShardRoutingState ... arg0 ) { List < ShardRouting > loc0 = newArrayList ( ) ; for ( ShardRouting loc1 : this ) { for ( ShardRoutingState loc2 : arg0 ) { if ( loc1 . loc2 ( ) == loc2 ) { loc0 . add ( loc1 ) ; } } } return loc0 ; }
38,251
set the new list of form elements . contains submit , first name , last name , city , state , and zip objects . 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_s...
void function ( ArrayList arg0 ) { this . componentList = arg0 ; }
38,252
test method for org.openhab.binding.plcbus.internal.protocol.onephaseplcbusprotocol #expectedsendcommandresponsesize . concode_field_sep PlaceHolder placeHolder concode_field_sep void testParseResponseFromActor concode_elem_sep void assertBytesEquals concode_elem_sep void setUp concode_elem_sep void testGetSendCommandB...
void function ( ) { IPLCBusProtocol loc0 = new OnePhasePLCBusProtocol ( ) ; int loc1 = loc0 . expectedSendCommandResponseSize ( ) ; assertEquals ( 18 , loc1 ) ; }
38,253
get the size of the numbering , which is the maximum number assigned plus one . concode_field_sep HashMap<Integer,Location> numberToLocationMap concode_elem_sep HashMap<Location,Integer> locationToNumberMap concode_field_sep int getNumber concode_elem_sep Location getLocation concode_elem_sep void build
int function ( ) { return locationToNumberMap . size ( ) ; }
38,254
overriden compareto method concode_field_sep Node node concode_elem_sep EscapeNode parent concode_elem_sep int depth concode_elem_sep int stepCost concode_elem_sep int heuristic concode_field_sep Tile getTile concode_elem_sep EscapeNode getParent concode_elem_sep int getDepth concode_elem_sep int getHeuristic concode_e...
int function ( EscapeNode arg0 ) { int loc0 = this . heuristic + this . stepCost ; int loc1 = arg0 . getHeuristic ( ) + arg0 . getStepCost ( ) ; if ( loc0 < loc1 ) { return - 1 ; } else if ( loc0 > loc1 ) { return 1 ; } else { return 0 ; } }
38,255
setrequirements . concode_field_sep Card card concode_elem_sep SpellAbility ability concode_elem_sep SpellAbility_Requirements req concode_elem_sep boolean bDoneTarget concode_elem_sep boolean bCancel concode_elem_sep Target target concode_field_sep Target getTgt concode_elem_sep boolean isCanceled concode_elem_sep boo...
void function ( SpellAbility_Requirements arg0 ) { req = arg0 ; }
38,256
convert a full byte buffer to a human readable string of nicely formatted hex numbers . output looks like : 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 01 02 03 04 05 06 07 08 concode_field_sep Pl...
String function ( byte [ ] arg0 ) { return hex ( wrap ( arg0 ) ) ; }
38,257
an optional pagination token provided by a previous request . if this parameter is specified , the response includes only records beyond the marker , up to the value specified by maxrecords . concode_field_sep String marker concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Parameter> parameters concode_...
String function ( ) { return marker ; }
38,258
begin concode_field_sep String m_name concode_elem_sep long m_totalTime concode_elem_sep ThreadLocal<WorkDuration> m_pendingSection concode_elem_sep long m_sectionCount concode_field_sep void end concode_elem_sep String toString concode_elem_sep long getTotalTime
void function ( ) { WorkDuration loc0 = new WorkDuration ( ) ; loc0 . start ( ) ; m_pendingSection . set ( loc0 ) ; }
38,259
returns the number of rows matching the dynamic query . concode_field_sep PluginSettingLocalService _service concode_field_sep com.liferay.portal.kernel.model.PluginSetting addPluginSetting concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQue...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . dynamicQueryCount ( arg0 ) ; }
38,260
gets the currently selected city . concode_field_sep List dictionary concode_elem_sep List matchesList concode_elem_sep City currentCity concode_elem_sep Log log concode_field_sep void setDictionary concode_elem_sep City getMatch concode_elem_sep List getList concode_elem_sep List getDictionary concode_elem_sep void se...
City function ( ) { return currentCity ; }
38,261
adds a named node to the tree . concode_field_sep String status concode_elem_sep Progress parent concode_elem_sep ArrayList<Float> progressWeightagesForPhases concode_elem_sep int currentPhase concode_elem_sep ArrayList<Progress> phases concode_elem_sep float progress concode_elem_sep Log LOG concode_elem_sep float pro...
Progress function ( String arg0 ) { Progress loc0 = addPhase ( ) ; loc0 . setStatus ( arg0 ) ; return loc0 ; }
38,262
add the algorithm to the container . algorithms will be executed in the same sequence in which they are added . concode_field_sep Logger log concode_elem_sep List<HouseholdAlgorithm> householdAlgorithms concode_field_sep boolean removeAlgorithm concode_elem_sep void runAlgorithms concode_elem_sep void runAlgorithms con...
void function ( final HouseholdAlgorithm arg0 ) { this . householdAlgorithms . add ( arg0 ) ; }
38,263
specifies whether the amazon ebs volume is deleted on instance termination . returns a reference to this object so that method calls can be chained together . concode_field_sep String volumeId concode_elem_sep Boolean deleteOnTermination concode_field_sep Boolean isDeleteOnTermination concode_elem_sep Boolean getDelete...
EbsInstanceBlockDeviceSpecification function ( Boolean arg0 ) { this . deleteOnTermination = arg0 ; return this ; }
38,264
called in response to a stream request . the returned data is streamed to the client through a single tcp connection . note the streamid argument is not related to the similarly named argument in the #getchunk long , int method . concode_field_sep PlaceHolder placeHolder concode_field_sep void connectionTerminated conc...
ManagedBuffer function ( String arg0 ) { throw new UnsupportedOperationException ( ) ; }
38,265
adds the given image to the resources of the current page and returns the name for the new resources . returns the existing resource name if the given item already exists . concode_field_sep COSDictionary resources concode_field_sep PDShading getShading concode_elem_sep PDPropertyList getProperties concode_elem_sep PDE...
COSName function ( PDImageXObject arg0 ) { return add ( COSName . XOBJECT , "srini_string" , arg0 ) ; }
38,266
set the jndi template to use for jndi lookups . you can also specify jndi environment settings via `` jndienvironment '' . concode_field_sep JndiTemplate jndiTemplate concode_elem_sep Log logger concode_field_sep JndiTemplate getJndiTemplate concode_elem_sep Properties getJndiEnvironment concode_elem_sep void setJndiEn...
void function ( JndiTemplate arg0 ) { this . jndiTemplate = ( arg0 != null ? arg0 : new JndiTemplate ( ) ) ; }
38,267
returns a factor for converting logical symbol size units into screen dots . concode_field_sep float unitsPerInch concode_elem_sep float dotsPerInch concode_elem_sep float originLat concode_elem_sep float dotsPerDeg concode_elem_sep float originLon concode_elem_sep float lonCorr concode_field_sep float getDotsPerDeg co...
float function ( ) { return dotsPerInch / unitsPerInch ; }
38,268
gets the value of the equivalentidentities 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 equivalentidentities property . for example ,...
List < Subject > function ( ) { if ( equivalentIdentities == null ) { equivalentIdentities = new ArrayList < Subject > ( ) ; } return this . equivalentIdentities ; }
38,269
get the store value if this is unchanged . otherwise the passed changed value is returned . concode_field_sep DATATYPE m_aObj concode_elem_sep EChange m_eChange concode_field_sep ChangeWithValue<DATATYPE> createUnchanged concode_elem_sep boolean isUnchanged concode_elem_sep boolean isSet concode_elem_sep boolean isChan...
DATATYPE function ( @ Nullable final DATATYPE arg0 ) { return m_eChange . isUnchanged ( ) ? m_aObj : arg0 ; }
38,270
some text . concode_field_sep String fFirstName concode_elem_sep InnerClassWithAnnotations anon concode_elem_sep String tThirdName concode_elem_sep String sSecondName concode_field_sep String method6 concode_elem_sep String method6 concode_elem_sep String method6 concode_elem_sep String method concode_elem_sep String m...
String function ( String arg0 ) { return "srini_string" ; }
38,271
the url or path to redirect to if a user declines authorization . the redirect will happen in the top-level window . if you want the redirect to happen in the canvas iframe , then override the #postdeclineview method to return a different implementation of view . concode_field_sep String canvasPage concode_elem_sep Con...
void function ( String arg0 ) { this . postDeclineUrl = arg0 ; }
38,272
returns a jsr-303 validator . concode_field_sep ValidatorFactory factory concode_field_sep placeholderType placeHolder
Validator function ( ) { return factory . getValidator ( ) ; }
38,273
post-multiplies the current matrix by a given parameter concode_field_sep float[] mMat concode_field_sep void rotate concode_elem_sep boolean inverse concode_elem_sep void loadPerspective concode_elem_sep void set concode_elem_sep void loadOrtho concode_elem_sep void loadScale concode_elem_sep void loadFrustum concode_...
void function ( Matrix4f arg0 ) { Matrix4f loc0 = new Matrix4f ( ) ; loc0 . loadMultiply ( this , arg0 ) ; load ( loc0 ) ; }
38,274
returns a string representation of this contribution item suitable only for debugging . concode_field_sep IContributionManager parent concode_elem_sep boolean visible concode_elem_sep String id concode_field_sep void setVisible concode_elem_sep void saveWidgetState concode_elem_sep IContributionManager getParent concod...
String function ( ) { return getClass ( ) . getSimpleName ( ) + "srini_string" + getId ( ) + "srini_string" + "srini_string" + isVisible ( ) + "srini_string" ; }
38,275
returns true if the given node has already been selected by a content element . concode_field_sep ContentManager contentManager concode_elem_sep XBLOMContentElement contentElement concode_elem_sep Element boundElement concode_elem_sep HashMap selectorFactories concode_field_sep NodeList getSelectedContent concode_elem_...
boolean function ( Node arg0 ) { return contentManager . getContentElement ( arg0 ) != null ; }
38,276
read accessor for sasl token concode_field_sep Logger LOG concode_elem_sep short IDENTIFIER concode_elem_sep byte[] token concode_field_sep SaslMessageToken read concode_elem_sep int encodeLength concode_elem_sep ChannelBuffer buffer concode_elem_sep void setSaslToken
byte [ ] function ( ) { return token ; }
38,277
gets the data value from the first data array at the specified index and returns it as a float . concode_field_sep int offsets[] concode_elem_sep int TYPE_BYTE concode_elem_sep int offset concode_elem_sep int banks concode_elem_sep int dataType concode_elem_sep DataBufferListener listener concode_elem_sep boolean dataC...
float function ( int arg0 ) { return getElem ( 0 , arg0 ) ; }
38,278
creates an application from a json string . concode_field_sep Application defaultApplication concode_elem_sep int internalId concode_field_sep Application createApplication concode_elem_sep Application defaultApplication
Application function ( String arg0 ) { return new GsonBuilder ( ) . create ( ) . fromJson ( arg0 , Application . class ) ; }
38,279
returns interface of given type . returns the first interface found that is either of the given class or of a subclass . usage : getinterfaceoftype radio.class concode_field_sep Log myLog concode_elem_sep PolledAfterActiveTicks[] polledAfterActive concode_elem_sep Clock myClock concode_elem_sep Button myButton concode_...
N function ( Class < N > arg0 ) { for ( MoteInterface loc0 : moteInterfaces ) { if ( arg0 . isAssignableFrom ( loc0 . getClass ( ) ) ) { return ( N ) loc0 ; } } return null ; }
38,280
get the metadata referenced by this result concode_field_sep boolean retryFailed concode_elem_sep boolean debugDecision concode_elem_sep RoutingNodes routingNodes concode_elem_sep MetaData metaData concode_elem_sep long currentNanoTime concode_elem_sep DiscoveryNodes nodes concode_elem_sep Map<ShardId,Set<String>> igno...
MetaData function ( ) { return metaData ; }
38,281
sets the drop operation to drop_node . concode_field_sep int fRequestedOperation concode_elem_sep boolean fShowInsertionFeedback concode_elem_sep int LOCATION_EPSILON concode_elem_sep int LOCATION_BEFORE concode_elem_sep int LOCATION_AFTER concode_elem_sep Object fTarget concode_elem_sep int LOCATION_NONE concode_elem_...
void function ( DropTargetEvent arg0 ) { arg0 . detail = DND . DROP_NONE ; }
38,282
get the password character array copy . this returns a copy of the password , not the password itself . concode_field_sep int iterationCount concode_elem_sep char[] password concode_elem_sep int keyLength concode_elem_sep byte[] salt concode_elem_sep boolean passwordValid concode_field_sep void clearPassword concode_el...
char [ ] function ( ) { if ( ! passwordValid ) throw new IllegalStateException ( "srini_string" + "srini_string" ) ; return ( char [ ] ) password . clone ( ) ; }
38,283
this method is intented to be extended to receive messages coming from serial port . concode_field_sep SerialPort port concode_field_sep void serialEvent concode_elem_sep void setDTR concode_elem_sep void errorMessage concode_elem_sep void setup concode_elem_sep void dispose concode_elem_sep List<String> list concode_e...
void function ( char [ ] arg0 , int arg1 ) { }
38,284
sets the function of the email concode_field_sep String plainContent concode_elem_sep String subject concode_elem_sep String action concode_elem_sep Long emailId concode_elem_sep String htmlContent concode_field_sep String getHtmlContent concode_elem_sep String getSubject concode_elem_sep void setHtmlContent concode_el...
void function ( String arg0 ) { this . action = arg0 ; }
38,285
selects or deselects the node . concode_field_sep TagManager m_tagManager concode_elem_sep View m_view concode_elem_sep INaviViewNode m_node concode_elem_sep ListenerProvider<IViewNodeListener> m_listeners concode_field_sep ListenerProvider<IViewNodeListener> getListeners concode_elem_sep void setY concode_elem_sep Str...
void function ( final boolean arg0 ) { m_node . setSelected ( arg0 ) ; }
38,286
provide all objects concode_field_sep PDMPetriNet net concode_elem_sep LogReader log concode_elem_sep JPanel mainPanel concode_elem_sep JScrollPane netContainer concode_field_sep void connectWith concode_elem_sep ArrayList getConnectableObjects concode_elem_sep JComponent getVisualization concode_elem_sep LogReader get...
ProvidedObject [ ] function ( ) { return new ProvidedObject [ ] { new ProvidedObject ( "srini_string" , new Object [ ] { net } ) } ; }
38,287
perform cleaning when update is installed . concode_field_sep WorkerEvent resultEvent concode_elem_sep PluginFilesStructure currentReleaseFS concode_elem_sep ApplicationConfig newAppConfig concode_elem_sep PluginFilesStructure newReleaseFS concode_elem_sep ManifestDiff manifestDiff concode_field_sep WorkerEvent result ...
void function ( ) { FilesUtility . delete ( newReleaseFS . getDownloadFolder ( ) ) ; }
38,288
comparison of entries this determines what we will order the cache by which determines which type of cache it is . concode_field_sep AtomicInteger readCount concode_elem_sep long time concode_elem_sep CacheType type concode_elem_sep VALUE value concode_elem_sep KEY key concode_elem_sep int order concode_field_sep int c...
int function ( CacheEntry arg0 ) { switch ( type ) { case LFU : return compareToLFU ( arg0 ) ; case LRU : return compareToLRU ( arg0 ) ; case FIFO : return compareToFIFO ( arg0 ) ; default : die ( ) ; return 0 ; } }
38,289
gets the status of the redo command . concode_field_sep int cursor concode_elem_sep ArrayList<Memento> mementoStateHistory concode_elem_sep int maxHistorySize concode_field_sep void undo concode_elem_sep boolean isUndo concode_elem_sep void redo concode_elem_sep void addState
boolean function ( ) { return cursor + 1 < mementoStateHistory . size ( ) ; }
38,290
runs the actual test , using supplied arguments concode_field_sep PlaceHolder placeHolder concode_field_sep void printDevices concode_elem_sep void die concode_elem_sep void printALInfo concode_elem_sep void printEFXInfo concode_elem_sep void main concode_elem_sep void printALCInfo concode_elem_sep void checkForErrors
void function ( String [ ] arg0 ) { try { AL . create ( null , - 1 , 60 , false ) ; checkForErrors ( ) ; } catch ( LWJGLException loc0 ) { die ( "srini_string" , loc0 . getMessage ( ) ) ; } printALCInfo ( ) ; printALInfo ( ) ; printEFXInfo ( ) ; checkForErrors ( ) ; AL . destroy ( ) ; }
38,291
opens movie details page by tapping on movie . concode_field_sep AppiumDriver<? extends MobileElement> driver concode_elem_sep MobileElement pickerHeadElement concode_elem_sep PlatformDriver platformDriver concode_elem_sep String movieItemHeadElementSelector concode_elem_sep String headElementSelector concode_elem_sep ...
void function ( ) { MovieItem . this . headElement . tap ( 1 , 0 ) ; }
38,292
set the options this this record . container records should have the last nibble set to 0xf . options is an internal field . use #getinstance and #getversion to access actual fields . concode_field_sep BitField fVersion concode_elem_sep short _options concode_elem_sep BitField fInstance concode_elem_sep short _recordId...
void function ( short arg0 ) { setVersion ( fVersion . getShortValue ( arg0 ) ) ; setInstance ( fInstance . getShortValue ( arg0 ) ) ; _options = arg0 ; }
38,293
returns the interpolated or extrapolated y-value corresponding to the supplied x-value . if any supplied value is nan , returned value will also be nan . method does not do any input validation such that if the supplied points are coincident or define a vertical line , the method may return infinity , - infinity , or n...
double function ( double arg0 , double arg1 , double arg2 , double arg3 , double arg4 ) { return arg1 + ( arg4 - arg0 ) * ( arg3 - arg1 ) / ( arg2 - arg0 ) ; }
38,294
title for the local notification . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep String getText concode_elem_sep long getRepeatInterval concode_el...
String function ( ) { String loc0 = options . optString ( "srini_string" , "srini_string" ) ; if ( loc0 . isEmpty ( ) ) { loc0 = context . getApplicationInfo ( ) . loadLabel ( context . getPackageManager ( ) ) . toString ( ) ; } return loc0 ; }
38,295
set the id of the entity concode_field_sep Random dices concode_elem_sep long serialVersionUID concode_elem_sep int id concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep double rollDices concode_elem_sep int rollDices concode_elem_sep int getId
void function ( int arg0 ) { this . id = arg0 ; }
38,296
defines the limit for the strokelinejoin.miter line join style . concode_field_sep BorderStrokeStyle NONE concode_elem_sep StrokeLineJoin lineJoin concode_elem_sep double miterLimit concode_elem_sep StrokeType type concode_elem_sep double dashOffset concode_elem_sep BorderStrokeStyle DASHED concode_elem_sep BorderStrok...
double function ( ) { return miterLimit ; }
38,297
decodes a byte array from base64 format . no blanks or line breaks are allowed within the base64 encoded input data . concode_field_sep char[] map1 concode_elem_sep String systemLineSeparator concode_elem_sep byte[] map2 concode_field_sep char[] encode concode_elem_sep char[] encode concode_elem_sep char[] encode conco...
byte [ ] function ( char [ ] arg0 ) { return decode ( arg0 , 0 , arg0 . length ) ; }
38,298
getter for this message 's string message . concode_field_sep String sender concode_elem_sep boolean connect_message concode_elem_sep boolean disconnect_message concode_elem_sep String message concode_elem_sep long serialVersionUID concode_field_sep boolean isConnectMessage concode_elem_sep boolean isDisconnectMessage ...
String function ( ) { return this . message ; }
38,299
returns the result of the last operation , or null if no call operation has beenperformed yet . concode_field_sep String PARAM_API_KEY concode_elem_sep Proxy proxy concode_elem_sep Cache cache concode_elem_sep Caller instance concode_elem_sep Result lastResult concode_elem_sep Logger log concode_elem_sep String apiRoot...
Result function ( ) { return lastResult ; }