idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
36,500
gets the value of the reference 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 reference property . for example , to add a new item , d...
List < ReferenceType > function ( ) { if ( reference == null ) { reference = new ArrayList < ReferenceType > ( ) ; } return this . reference ; }
36,501
gets the value of the address property . concode_field_sep String address concode_elem_sep String dnsName concode_elem_sep long serialVersionUID concode_field_sep String getDNSName concode_elem_sep void setAddress concode_elem_sep void setDNSName
String function ( ) { return address ; }
36,502
return the names of the columns . valid after processrow is invoked the first time . concode_field_sep String[] columnNames concode_elem_sep int[] columnTypes concode_elem_sep int rowCount concode_elem_sep int columnCount concode_field_sep int[] getColumnTypes concode_elem_sep void processRow concode_elem_sep void proc...
String [ ] function ( ) { return columnNames ; }
36,503
convert a well-formed but not necessarily valid xml string into a jsonarray using the jsonml transform . each xml tag is represented as a jsonarray in which the first element is the tag name . if the tag has attributes , then the second element will be jsonobject containing the name/value pairs . if the tag contains ch...
JSONArray function ( String arg0 ) { return toJSONArray ( new XMLTokener ( arg0 ) ) ; }
36,504
gets the timezone id used to identify this time zone in the javacode . concode_field_sep Polygon mapPolygon concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep boolean isRelevantComponentId concode_elem_sep Polygon getMapPolygon concode_elem_sep String getMapCommandButtonId
String function ( ) { return id ; }
36,505
sets the gatewayid of the device . concode_field_sep String TYPE_GATEWAY_EXTRAS concode_elem_sep HmInterface hmInterface concode_elem_sep List<HmChannel> channels concode_elem_sep String address concode_elem_sep String name concode_elem_sep String ADDRESS_GATEWAY_EXTRAS concode_elem_sep String type concode_elem_sep Str...
void function ( String arg0 ) { this . gatewayId = arg0 ; }
36,506
returns the configuration-independent root where the build-data should be placed , given the blazedirectories of this server instance . nothing else should be placed here . concode_field_sep String DEFAULT_EXEC_ROOT concode_elem_sep String RELATIVE_OUTPUT_PATH concode_elem_sep Path workspace concode_elem_sep Path local...
Root function ( ) { return Root . asDerivedRoot ( getExecRoot ( ) , getOutputPath ( ) ) ; }
36,507
events provided by the messageservice related to new rooms created defined concode_field_sep ConcurrentHashMap<String,Room> roomsByStream concode_elem_sep Logger logger concode_elem_sep SymphonyClient symClient concode_elem_sep Set<RoomServiceListener> roomServiceListeners concode_field_sep void onRoomReactivatedMessag...
void function ( RoomCreatedMessage arg0 ) { for ( RoomServiceListener loc0 : roomServiceListeners ) { loc0 . onRoomCreatedMessage ( arg0 ) ; } }
36,508
to double array . concode_field_sep double[] attributeValues concode_field_sep int numAttributes concode_elem_sep boolean isMissing concode_elem_sep boolean isMissingSparse concode_elem_sep double valueSparse concode_elem_sep void setValue concode_elem_sep int index concode_elem_sep int numValues concode_elem_sep void ...
double [ ] function ( ) { return attributeValues . clone ( ) ; }
36,509
auto generated setter method concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.DescribeAvailabilityZonesResponseType localDescribeAvailabilityZonesResponse concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_se...
void function ( com . amazon . ec2 . DescribeAvailabilityZonesResponseType arg0 ) { this . localDescribeAvailabilityZonesResponse = arg0 ; }
36,510
set the key concode_field_sep String[] values concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String[] getValues concode_elem_sep void setValues
void function ( String arg0 ) { this . key = arg0 ; }
36,511
information about the bundle task . concode_field_sep BundleTask bundleTask concode_field_sep void setBundleTask concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep BundleInstanceResult clone concode_elem_sep BundleTask getBundleTask concode_elem_sep String toString
BundleInstanceResult function ( BundleTask arg0 ) { setBundleTask ( arg0 ) ; return this ; }
36,512
the batch size . concode_field_sep SpelExpressionParser spelExpressionParser concode_elem_sep Properties properties concode_field_sep String getProperty concode_elem_sep String getProperty concode_elem_sep boolean getProperty concode_elem_sep int getProperty concode_elem_sep long getProperty concode_elem_sep double get...
int function ( int arg0 ) { return getProperty ( BATCH_SIZE , arg0 ) ; }
36,513
test of findchildbyid method , of class childfacade . concode_field_sep List<Child> childsEn concode_elem_sep ChildFacade mockChildFacade concode_elem_sep Grade grade concode_elem_sep int count concode_elem_sep List<Child> childs concode_elem_sep Child child2 concode_elem_sep Child child1 concode_field_sep void testCou...
void function ( ) { System . out . println ( "srini_string" ) ; Child loc0 = new Child ( ) ; loc0 . setId ( "srini_string" ) ; assertEquals ( loc0 , mockChildFacade . findChildById ( loc0 . getId ( ) ) ) ; }
36,514
removes the object at the top of this stack and returns that object as the value of this function . concode_field_sep int m_allocatedSize concode_elem_sep boolean m_values[] concode_elem_sep int m_index concode_field_sep void setTop concode_elem_sep boolean peekOrTrue concode_elem_sep void grow concode_elem_sep int siz...
boolean function ( ) { return m_values [ m_index -- ] ; }
36,515
sets the element value . if the value is non-null the set flag is marked true ; if the value is null it is set to '' '' , the set flag is marked false , and the element image is set to blank . concode_field_sep String image concode_elem_sep String IMAGE_ALERT concode_elem_sep boolean set concode_elem_sep String IMAGE_B...
void function ( String arg0 ) { if ( arg0 != null ) { if ( arg0 . length ( ) > 0 ) { this . value = arg0 . trim ( ) ; set = true ; return ; } } this . value = "srini_string" ; setImage ( IMAGE_BLANK ) ; set = false ; }
36,516
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 ; }
36,517
status concode_field_sep int m_status concode_elem_sep ClassPathXmlApplicationContext m_context concode_field_sep void init concode_elem_sep void stop concode_elem_sep void start concode_elem_sep int getStatus concode_elem_sep ApplicationContext getContext concode_elem_sep String getStatusText
String function ( ) { return getStatusText ( ) ; }
36,518
sets the value of the lastchangetimestamp property . concode_field_sep List<CampaignChangeData> changedCampaigns concode_elem_sep List<FeedChangeData> changedFeeds concode_elem_sep String lastChangeTimestamp concode_field_sep List<FeedChangeData> getChangedFeeds concode_elem_sep String getLastChangeTimestamp concode_el...
void function ( String arg0 ) { this . lastChangeTimestamp = arg0 ; }
36,519
finds an executable file with the specified base name , that is located in a directory listed in path environment variable . concode_field_sep Logger LOG concode_elem_sep String PATH_ENV_VAR_NAME concode_field_sep List<File> doFindExeFilesInPath concode_elem_sep File findInOriginalPath concode_elem_sep String toLocatab...
File function ( @ NotNull String arg0 , boolean arg1 ) { return findInPath ( arg0 , arg1 , null ) ; }
36,520
gets the value of the value property . concode_field_sep Map<QName,String> otherAttributes concode_elem_sep String value concode_field_sep void setValue concode_elem_sep Map<QName,String> getOtherAttributes
String function ( ) { return value ; }
36,521
checks if this task has been stopped and throws an exception if so . concode_field_sep int delay concode_elem_sep boolean immediate concode_elem_sep int countdown concode_elem_sep boolean running concode_field_sep boolean isStopped concode_elem_sep void stop concode_elem_sep boolean isRunning concode_elem_sep boolean i...
void function ( ) { if ( ! running ) throw new IllegalStateException ( ) ; }
36,522
adds a connection event listener to the managedconnection instance . concode_field_sep Logger log concode_elem_sep MultipleManagedConnectionFactory1 mcf concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep Object connection concode_elem_sep PrintWriter logwriter concode_field_sep void associateConn...
void function ( ConnectionEventListener arg0 ) { log . trace ( "srini_string" ) ; if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } listeners . add ( arg0 ) ; }
36,523
do nothing concode_field_sep long serialVersionUID concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep void trace concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep boolean isInfoEnabled concode_elem_sep boolean isErrorEnabled concode_elem_sep boolea...
void function ( Object arg0 , Throwable arg1 ) { }
36,524
emits code for a enterunpackframesstackframenode . concode_field_sep PlaceHolder placeHolder concode_field_sep SaveRegistersOp emitSaveAllRegisters concode_elem_sep void emitTailcall concode_elem_sep void emitPushInterpreterFrame concode_elem_sep HotSpotProviders getProviders concode_elem_sep void emitPrefetchAllocate ...
void function ( Value arg0 , Value arg1 , Value arg2 , SaveRegistersOp arg3 ) { throw JVMCIError . unimplemented ( ) ; }
36,525
set the duration of the effect in seconds concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay...
void function ( float arg0 ) { this . duration = arg0 ; ea . add ( "srini_string" , arg0 ) ; }
36,526
sets the snapping tolerance which will be used to improved the robustness of the triangulation computation . a tolerance of 0.0 specifies that no snapping will take place . concode_field_sep Collection siteCoords concode_elem_sep double tolerance concode_elem_sep QuadEdgeSubdivision subdiv concode_elem_sep Envelope dia...
void function ( double arg0 ) { this . tolerance = arg0 ; }
36,527
return the urls that should be used with initialization . concode_field_sep Set<String> SKIPPED_STACK_ELEMENTS concode_field_sep boolean isSkippedStackElement concode_elem_sep boolean isMain concode_elem_sep URL[] getInitialUrls
URL [ ] function ( Thread arg0 ) { return ChangeableUrls . fromUrlClassLoader ( ( URLClassLoader ) arg0 . getContextClassLoader ( ) ) . toArray ( ) ; }
36,528
sets the element of this big array at specified index . concode_field_sep long SIZE_OF_SEGMENT concode_elem_sep double[][] array concode_elem_sep double initialValue concode_elem_sep int capacity concode_elem_sep int segments concode_field_sep void add concode_elem_sep void grow concode_elem_sep long sizeOf concode_ele...
void function ( long arg0 , double arg1 ) { array [ segment ( arg0 ) ] [ offset ( arg0 ) ] = arg1 ; }
36,529
ensures the none user can delete a funnel . concode_field_sep AccessControlHelper helper concode_elem_sep String FLOW_XML_PATH concode_field_sep void testWriteUserPutFunnel concode_elem_sep void testReadWriteUserDeleteFunnel concode_elem_sep ClientResponse updateFunnel concode_elem_sep void testReadUserPutFunnel concod...
void function ( ) { verifyDelete ( helper . getNoneUser ( ) , NONE_CLIENT_ID , 403 ) ; }
36,530
adds all verifiers which are checked together with all other verifiers in a boolean and expression . this function may only be called when no or function has been called on this node before . concode_field_sep CertificateVerifierBuilder parent concode_elem_sep LinkedList<CertificateVerifier> andList concode_elem_sep Li...
CertificateVerifierBuilder function ( @ Nonnull Collection < CertificateVerifier > arg0 ) { if ( orChilds . isEmpty ( ) ) { andList . addAll ( arg0 ) ; return this ; } else { throw new IllegalStateException ( "srini_string" ) ; } }
36,531
removes a sub-task from the task . concode_field_sep TimePeriod duration concode_elem_sep long serialVersionUID concode_elem_sep List subtasks concode_elem_sep String description concode_elem_sep Double percentComplete concode_field_sep void setDuration concode_elem_sep void setPercentComplete concode_elem_sep void set...
void function ( Task arg0 ) { this . subtasks . remove ( arg0 ) ; }
36,532
sets last updated by . concode_field_sep String owningInstitutionItemId concode_elem_sep String lastUpdatedBy concode_elem_sep Integer collectionGroupId concode_elem_sep List<BibliographicEntity> bibliographicEntities concode_elem_sep String callNumberType concode_elem_sep String customerCode concode_elem_sep Integer i...
void function ( String arg0 ) { this . lastUpdatedBy = arg0 ; }
36,533
sets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep JAXBElement<? extends AbstractCoordinateOperationType> abstractOperation concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String hr...
void function ( String arg0 ) { this . arcrole = arg0 ; }
36,534
returns the integer value of an hexadecimal number base 16 . concode_field_sep String HEXES concode_field_sep boolean[] getBits concode_elem_sep Date resolveDateTime concode_elem_sep String toHex concode_elem_sep String toHex concode_elem_sep byte[] hexStringToByteArray concode_elem_sep int fromByte concode_elem_sep St...
int function ( String arg0 ) { return Integer . parseInt ( arg0 , 16 ) ; }
36,535
arranges the block with a range constraint on the width , and no constraint on the height . concode_field_sep long serialVersionUID concode_field_sep void add concode_elem_sep Size2D arrangeFF concode_elem_sep Size2D arrangeRR concode_elem_sep Size2D arrangeNN concode_elem_sep Size2D arrange concode_elem_sep Size2D arr...
Size2D function ( BlockContainer arg0 , Graphics2D arg1 , RectangleConstraint arg2 ) { Size2D loc0 = arrangeNN ( arg0 , arg1 ) ; if ( arg2 . getWidthRange ( ) . contains ( loc0 . width ) ) { return loc0 ; } else { RectangleConstraint loc1 = arg2 . toFixedWidth ( arg2 . getWidthRange ( ) . getUpperBound ( ) ) ; return a...
36,536
test constructor with size . concode_field_sep PlaceHolder placeHolder concode_field_sep void testConstructorWithBarcodeFormat concode_elem_sep void testGetParams concode_elem_sep void testOptimizeHints concode_elem_sep void testOptimizieHintsForDataMatrix concode_elem_sep void testRemoveFromHintMapDecodeHintType conco...
void function ( ) { BarcodeDataFormat loc0 = new BarcodeDataFormat ( 200 , 250 ) ; this . checkParams ( BarcodeParameters . IMAGE_TYPE , 200 , 250 , BarcodeParameters . FORMAT , loc0 . getParams ( ) ) ; }
36,537
returns true if provided hostname is an ipv6 address . concode_field_sep Logger LOGGER concode_elem_sep boolean PREFER_IPV6_ADDR concode_elem_sep boolean PREFER_IPV4_STACK concode_elem_sep String OID_NTLM concode_elem_sep String OID_SPNEGO concode_elem_sep String OID_KERBEROS_V5_LEGACY concode_elem_sep String OID_DUMMY...
boolean function ( String arg0 ) { if ( arg0 == null ) { arg0 = Utils . getDefaultHost ( true ) ; LOGGER . warn ( "srini_string" + arg0 ) ; } final String loc0 = NetworkUtils . formatPossibleIpv6Address ( arg0 ) ; boolean loc1 = loc0 . startsWith ( "srini_string" ) ; return loc1 ; }
36,538
sets the value of the timestamp property . concode_field_sep String alliance concode_elem_sep String name concode_elem_sep BigInteger id concode_elem_sep String serverId concode_elem_sep List<Players.Player> player concode_elem_sep BigInteger timestamp concode_elem_sep String status concode_field_sep void setName conco...
void function ( BigInteger arg0 ) { this . timestamp = arg0 ; }
36,539
this is a setter concode_field_sep String calendarEventId concode_elem_sep String calendarId concode_elem_sep String siteId concode_elem_sep List<SignupGroup> signupGroups concode_elem_sep Long id concode_elem_sep String title concode_elem_sep int version concode_field_sep boolean isSiteScope concode_elem_sep String ge...
void function ( Long arg0 ) { this . id = arg0 ; }
36,540
method that generates a xades contenttimestamp either an all data objects timestamp or an individual data objects timestamp and returns it as a dssdocument concode_field_sep CommonCertificateVerifier commonCertificateVerifier concode_elem_sep XPathQueryHolder xPathQueryHolder concode_elem_sep TSPSource tspSource concod...
DSSDocument function ( final DSSDocument arg0 , final XAdESSignatureParameters arg1 , final TimestampType arg2 ) { final TimestampToken loc0 = generateXAdESContentTimestampAsTimestampToken ( arg0 , arg1 , arg2 ) ; return new InMemoryDocument ( loc0 . getEncoded ( ) ) ; }
36,541
sets default transaction isolation . concode_field_sep TransactionConcurrency DFLT_TX_CONCURRENCY concode_elem_sep int pessimisticTxLogLinger concode_elem_sep Factory txManagerFactory concode_elem_sep TransactionIsolation DFLT_TX_ISOLATION concode_elem_sep boolean useJtaSync concode_elem_sep long serialVersionUID conco...
void function ( TransactionIsolation arg0 ) { this . dfltIsolation = arg0 ; }
36,542
gets the value of the imeasurefld property . concode_field_sep Object parent concode_elem_sep CTAutoFilter autoFilter concode_elem_sep CTExtensionList extLst concode_elem_sep Long mpFld concode_elem_sep String description concode_elem_sep Long iMeasureHier concode_elem_sep STPivotFilterType type concode_elem_sep String...
Long function ( ) { return iMeasureFld ; }
36,543
resolves a thingtype for the given thing type uid with the default locale . concode_field_sep PlaceHolder placeHolder concode_field_sep ThingTypeRegistry getThingTypeRegistry concode_elem_sep ChannelTypeRegistry getChannelTypeRegistry
ThingType function ( ThingTypeUID arg0 ) { return resolve ( arg0 , null ) ; }
36,544
sums a list of numbers . concode_field_sep PlaceHolder placeHolder concode_field_sep DescriptiveStatistics getStatistics concode_elem_sep DescriptiveStatistics getStatistics concode_elem_sep double[] getTricubeWeigts concode_elem_sep double[] getTricubeBisquareWeigts concode_elem_sep double iqr concode_elem_sep int cou...
double function ( final List < ? extends Number > arg0 ) { double loc0 = 0 ; for ( Number loc1 : arg0 ) { loc0 += loc1 . doubleValue ( ) ; } return loc0 ; }
36,545
return the key encryption algorithm details for the key in this recipient . concode_field_sep AlgorithmIdentifier messageAlgorithm concode_elem_sep byte[] resultMac concode_elem_sep AuthAttributesProvider additionalData concode_elem_sep RecipientId rid concode_elem_sep AlgorithmIdentifier keyEncAlg concode_elem_sep CMS...
AlgorithmIdentifier function ( ) { return keyEncAlg ; }
36,546
setter for the field securityschemes . concode_field_sep List<Map<String,Template>> resourceTypes concode_elem_sep List<Map<String,Template>> traits concode_elem_sep List<DocumentationItem> documentation concode_elem_sep String mediaType concode_elem_sep String title concode_elem_sep String version concode_elem_sep Lis...
void function ( List < Map < String , SecurityScheme >> arg0 ) { this . securitySchemes = arg0 ; }
36,547
return the units that this tree is expressed in . concode_field_sep Tree tree concode_elem_sep boolean storedIntervalsKnown concode_elem_sep double[] storedTimes concode_elem_sep List<NodeRef>[] lineagesAdded concode_elem_sep int[] lineageCounts concode_elem_sep List<NodeRef>[] lineagesRemoved concode_elem_sep double m...
Type function ( ) { return tree . getUnits ( ) ; }
36,548
looks up the given type and binds the implementation into the given binder . throws an illegalargumentexception if the given type does not exist . concode_field_sep ExtensionPoint.SelectedType<IndexShardRepository> shardRepositoryTypes concode_elem_sep ExtensionPoint.SelectedType<Repository> repositoryTypes concode_fie...
void function ( Binder arg0 , String arg1 ) { Settings loc0 = Settings . builder ( ) . put ( "srini_string" , arg1 ) . build ( ) ; repositoryTypes . bindType ( arg0 , loc0 , "srini_string" , null ) ; shardRepositoryTypes . bindType ( arg0 , loc0 , "srini_string" , null ) ; }
36,549
adds an integer property to a map only if the value is non-null , otherwise the key/value pair will not be added at all . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONB...
JSONBuilder function ( String arg0 , Integer arg1 ) { if ( arg1 == null ) { return this ; } return entry ( arg0 , arg1 . intValue ( ) ) ; }
36,550
constructs a stream that writes bytes to the given channel . concode_field_sep PlaceHolder placeHolder concode_field_sep FileInputStream newInputStream concode_elem_sep InputStream newInputStream
OutputStream function ( WritableByteChannel arg0 ) { if ( arg0 instanceof FileChannelImpl ) return newOutputStream ( ( FileChannelImpl ) arg0 ) ; return new ChannelOutputStream ( arg0 ) ; }
36,551
close the connection and stop the statement if one is currently executing . concode_field_sep WebServer server concode_elem_sep HashMap<String,Object> map concode_elem_sep Connection conn concode_elem_sep boolean shutdownServerOnDisconnect concode_elem_sep ArrayList<String> commandHistory concode_elem_sep long lastAcce...
void function ( ) { if ( executingStatement != null ) { try { executingStatement . cancel ( ) ; } catch ( Exception loc0 ) { } } if ( conn != null ) { try { conn . close ( ) ; } catch ( Exception loc0 ) { } } }
36,552
notifica el cambio de turno al jugador al que le toca mover concode_field_sep Accion porConfirmar concode_elem_sep Tablero tablero concode_elem_sep ArrayList<Jugador> jugadores concode_elem_sep ArrayList<PartidaListener> observadores concode_elem_sep boolean[] confirmaciones concode_field_sep void confirmaAccion concod...
void function ( String arg0 , Accion arg1 ) { Jugador loc0 = jugadores . get ( tablero . getTurno ( ) ) ; Evento loc1 = new Evento ( Evento . EVENTO_TURNO , arg0 , this , arg1 ) ; loc0 . onCambioEnPartida ( loc1 ) ; }
36,553
the url where the usernamepasswordauthenticationfilter login page can be found . should either be relative to the web-app context path include a leading / or an absolute url . concode_field_sep String loginFormUrl concode_elem_sep boolean forceHttps concode_elem_sep boolean useForward concode_elem_sep Log logger concod...
void function ( String arg0 ) { this . loginFormUrl = arg0 ; }
36,554
all registered workspacelistener s. concode_field_sep PlaceHolder placeHolder concode_field_sep void afterDelete concode_elem_sep void beforeUse
ExtensionList < WorkspaceListener > function ( ) { return ExtensionList . lookup ( WorkspaceListener . class ) ; }
36,555
sets the value of the name property . concode_field_sep Integer intNoDefault concode_elem_sep Address address concode_elem_sep String name concode_elem_sep Integer intDefault concode_elem_sep Point position concode_field_sep Point getPosition concode_elem_sep String getName concode_elem_sep Integer getIntNoDefault conc...
void function ( String arg0 ) { this . name = arg0 ; }
36,556
constructs a new probe packet . concode_field_sep int PROBE_INTERVAL_MS concode_elem_sep String LOG_TAG concode_elem_sep String DESIRED_SERVICE concode_elem_sep InetAddress mBroadcastAddress concode_elem_sep DatagramSocket mSocket concode_elem_sep TimerTask mProbeTimerTask concode_elem_sep String COMMAND_DISCOVER conco...
DatagramPacket function ( String arg0 , int arg1 ) { String loc0 = COMMAND_DISCOVER + "srini_string" + arg0 + "srini_string" + arg1 + "srini_string" ; byte [ ] loc1 = loc0 . getBytes ( ) ; DatagramPacket loc2 = new DatagramPacket ( loc1 , loc1 . length , mBroadcastAddress , BROADCAST_SERVER_PORT ) ; return loc2 ; }
36,557
returns the actual value of the menulistitem . concode_field_sep String name concode_elem_sep int id concode_elem_sep JMenuItem mi concode_field_sep void add concode_elem_sep void add concode_elem_sep void performAction
String function ( ) { return null ; }
36,558
returns the value associated with the parameter attributes.name key . concode_field_sep Name MANIFEST_VERSION concode_elem_sep Name NAME concode_elem_sep Name SIGNATURE_VERSION concode_elem_sep Name SPECIFICATION_VENDOR concode_elem_sep Name CLASS_PATH concode_elem_sep Name EXTENSION_LIST concode_elem_sep Name IMPLEMEN...
String function ( Attributes . Name arg0 ) { return ( String ) map . get ( arg0 ) ; }
36,559
initializes this instance with the specified key store and password . concode_field_sep Engine ENGINE concode_elem_sep String DEFAULT_PROPERTY concode_elem_sep String PROPERTY_NAME concode_elem_sep Provider provider concode_elem_sep KeyManagerFactorySpi spiImpl concode_elem_sep String SERVICE concode_elem_sep String al...
void function ( KeyStore arg0 , char [ ] arg1 ) { spiImpl . engineInit ( arg0 , arg1 ) ; }
36,560
tells if it was an expression which is intended to be used as a predicate determined from camel-core mode concode_field_sep String node concode_elem_sep Boolean predicate concode_elem_sep boolean parsed concode_elem_sep int position concode_elem_sep String element concode_field_sep int getPosition concode_elem_sep bool...
void function ( Boolean arg0 ) { this . predicate = arg0 ; }
36,561
gets the charset name . concode_field_sep char[] DIGITS_LOWER concode_elem_sep char[] DIGITS_UPPER concode_elem_sep String DEFAULT_CHARSET_NAME concode_elem_sep String charsetName concode_field_sep byte[] encode concode_elem_sep Object encode concode_elem_sep char[] encodeHex concode_elem_sep char[] encodeHex concode_e...
String function ( ) { return this . charsetName ; }
36,562
convert a value given in meters to a value of this unit concode_field_sep DistanceUnit unit concode_elem_sep String[] names concode_elem_sep double value concode_elem_sep DistanceUnit DEFAULT concode_elem_sep double meters concode_field_sep double getEarthCircumference concode_elem_sep double toMeters concode_elem_sep ...
double function ( double arg0 ) { return convert ( arg0 , DistanceUnit . METERS , this ) ; }
36,563
releases all of the resources used by this object instance and all of its owned children . its primary use is to allow the garbage collector to perform a vanilla job . this method should be called only if it is for sure that this object instance will never be used again . the results of referencing an instance of this ...
void function ( ) { }
36,564
sets the number of tuples emitted per application window . concode_field_sep int TUPLE_BYTE_SIZE concode_elem_sep int tuplesPerWindow concode_elem_sep int tupleSize concode_elem_sep int MAX_TUPLES_PER_WINDOW concode_elem_sep DefaultOutputPort<byte[]> output concode_elem_sep int tupleCounter concode_elem_sep Random rand...
void function ( int arg0 ) { this . tuplesPerWindow = arg0 ; }
36,565
adds is null restriction . concode_field_sep String OR concode_elem_sep MutableInteger queryParamCounter concode_elem_sep List<Parameters> negatedParameters concode_elem_sep List<Parameters> subParameters concode_elem_sep String alias concode_elem_sep String connective concode_elem_sep List<String> expressions concode_...
void function ( String arg0 , String arg1 ) { addWhere ( arg0 , arg1 , "srini_string" , null , "srini_string" ) ; }
36,566
get a message that has placeholders . an assertion will be raised if the message key does not exist in the resource bundle . concode_field_sep UResourceBundle resources concode_elem_sep String BUNDLE_NAME concode_field_sep UResourceBundle getUResourceBundle concode_elem_sep ResourceBundle getResourceBundle
String function ( String arg0 , Object [ ] arg1 ) { String loc0 = getMessage ( arg0 ) ; return MessageFormat . format ( loc0 , arg1 ) ; }
36,567
allows plugins to handle a link being clicked . return true here to cancel the navigation . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode...
boolean function ( String arg0 ) { return false ; }
36,568
get hex encoded representation of publickey concode_field_sep String SIGNATURE_ALGORITHM concode_elem_sep ECDomainParameters ecParams concode_elem_sep String SIGNATURE_ALGORITHM_PROVIDER concode_field_sep KeyPair getKeyPair concode_elem_sep byte[] sign concode_elem_sep byte[] sign concode_elem_sep PublicKey getPublicKe...
String function ( PublicKey arg0 ) { ECPublicKeyParameters loc0 = ( ECPublicKeyParameters ) ECUtil . generatePublicKeyParameter ( arg0 ) ; byte [ ] loc1 = loc0 . getQ ( ) . getEncoded ( false ) ; return Hex . toHexString ( loc1 ) ; }
36,569
returns the position of the cloudlet with that id , if it exists . otherwise -1 . concode_field_sep PlaceHolder placeHolder concode_field_sep T getById concode_elem_sep void sort
int function ( List < T > arg0 , int arg1 ) { int loc0 = 0 ; for ( T loc1 : arg0 ) { if ( loc1 . getCloudletId ( ) == arg1 ) { return loc0 ; } loc0 ++ ; } return - 1 ; }
36,570
get patients detail by name concode_field_sep ApplicationSettingsService applicationSettingsService concode_field_sep List<PatientLocation> getPatientsByVillage concode_elem_sep Patient getPatientDetail concode_elem_sep List<PatientLocation> getPatientsByPostalCode concode_elem_sep void setApplicationSettingsService co...
List < Patient > function ( String arg0 ) { Utility loc0 = new Utility ( applicationSettingsService . getApplicationSettings ( ) ) ; List < Patient > loc1 = loc0 . getPatientsDetailByName ( arg0 ) ; return loc1 ; }
36,571
determines whether this property editor is paintable . concode_field_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep ArrayList validValues concode_elem_sep String value concode_field_sep String getJavaInitializationString concode_elem_sep Object getValue concode_elem_sep Component getCustomEditor conco...
boolean function ( ) { return false ; }
36,572
initialize the threads , the number of threads depends on number defined from the user . concode_field_sep ArrayList<MigrationMessage> vmQueue concode_elem_sep CountDownLatch threadLocker concode_elem_sep boolean isExceedTime concode_elem_sep ArrayList<ControllerThread> workerList concode_elem_sep double highestMigTime...
void function ( SimEntity arg0 , SimEntity arg1 ) { workerList = new ArrayList < > ( ) ; threadLocker . countDown ( ) ; for ( int loc0 = 0 ; loc0 < threadNum ; loc0 ++ ) { ControllerThread loc1 = new ControllerThread ( loc0 , arg0 , arg1 , 0 , threadLocker ) ; workerList . add ( loc1 ) ; } }
36,573
reserve ids used by the predicates in some join graph . concode_field_sep int nextId concode_elem_sep LinkedHashSet<Integer> ids concode_field_sep int nextId concode_elem_sep void reserve
void function ( final IPredicate < ? > [ ] arg0 ) { if ( arg0 == null ) throw new IllegalArgumentException ( ) ; for ( IPredicate < ? > loc0 : arg0 ) { reserve ( loc0 . getId ( ) ) ; } }
36,574
get the result of the compilation . concode_field_sep Provider<XWikiContext> xcontextProvider concode_elem_sep SkinReferenceFactory skinReferenceFactory concode_elem_sep LESSCache<T> cache concode_elem_sep CurrentColorThemeGetter currentColorThemeGetter concode_elem_sep CacheKeyFactory cacheKeyFactory concode_elem_sep ...
T function ( LESSResourceReference arg0 , boolean arg1 , boolean arg2 , boolean arg3 ) { XWikiContext loc0 = xcontextProvider . get ( ) ; String loc1 = loc0 . getWiki ( ) . getSkin ( loc0 ) ; return getResult ( arg0 , arg1 , arg2 , loc1 , arg3 ) ; }
36,575
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 ; }
36,576
gets the value of the balanceinfo property . concode_field_sep String confirmationNumber concode_elem_sep String paymentApprovalCode concode_elem_sep PaymentEstimate estimatedTaxAndFess concode_elem_sep PaymentBalance balanceInfo concode_elem_sep long serialVersionUID concode_field_sep String getPaymentApprovalCode con...
PaymentBalance function ( ) { return balanceInfo ; }
36,577
returns a topological order if the digraph has a topologial order , and null otherwise . concode_field_sep int[] rank concode_elem_sep Iterable<Integer> order concode_field_sep boolean hasOrder concode_elem_sep int rank concode_elem_sep void main concode_elem_sep void validateVertex
Iterable < Integer > function ( ) { return order ; }
36,578
auto generated setter method concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.UnassignPrivateIpAddressesResponseType localUnassignPrivateIpAddressesResponse concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_...
void function ( com . amazon . ec2 . UnassignPrivateIpAddressesResponseType arg0 ) { this . localUnassignPrivateIpAddressesResponse = arg0 ; }
36,579
the event type associated with this operation . concode_field_sep String eventId concode_elem_sep String code concode_elem_sep String description concode_elem_sep String eventType concode_field_sep void setEventId concode_elem_sep VolumeStatusAction withEventType concode_elem_sep void setCode concode_elem_sep VolumeSta...
void function ( String arg0 ) { this . eventType = arg0 ; }
36,580
reads the device types from file and stores them in memory for later access . concode_field_sep HashMap<String,DeviceType> m_deviceTypes concode_elem_sep DeviceTypeLoader s_deviceTypeLoader concode_elem_sep Logger logger concode_field_sep String processFeatureGroup concode_elem_sep String processFeature concode_elem_se...
void function ( String arg0 ) { File loc0 = new File ( arg0 ) ; InputStream loc1 = new FileInputStream ( loc0 ) ; loadDeviceTypesXML ( loc1 ) ; }
36,581
size in bytes necessary to send or receive this object via the ov-chip protocol layer , see apdu_serializable #size apdu_serializable . size . the default implementation used misc #length_of_serializable_array misc.length _ of_serializable_array to determine the size . can be overriden for homegenous arrays that can de...
short function ( ) { return Misc . length_of_serializable_array ( get_array ( ) ) ; }
36,582
returns trueif the class is a public , non-abstract class concode_field_sep PackageScanClassResolver resolver concode_elem_sep BlueprintContainer blueprintContainer concode_elem_sep BlueprintCamelContext camelContext concode_elem_sep Logger LOG concode_elem_sep String[] packages concode_field_sep RoutesBuilder instanti...
boolean function ( Class < ? > arg0 ) { if ( ! Modifier . isPublic ( arg0 . getModifiers ( ) ) ) { return false ; } if ( ! Modifier . isAbstract ( arg0 . getModifiers ( ) ) && ! arg0 . isInterface ( ) ) { return true ; } return false ; }
36,583
applies the given classvisitor to all classes in the class pool , in random order . concode_field_sep Map classes concode_field_sep Clazz getClass concode_elem_sep int size concode_elem_sep void classesAcceptAlphabetically concode_elem_sep void removeClass concode_elem_sep void clear concode_elem_sep Iterator className...
void function ( ClassVisitor arg0 ) { Iterator loc0 = classes . values ( ) . loc0 ( ) ; while ( loc0 . hasNext ( ) ) { Clazz loc1 = ( Clazz ) loc0 . next ( ) ; loc1 . accept ( arg0 ) ; } }
36,584
returns the height of this dimension object . concode_field_sep long width concode_elem_sep boolean locked concode_elem_sep long height concode_field_sep void setSize concode_elem_sep StrictDimension getUnlockedInstance concode_elem_sep int hashCode concode_elem_sep boolean isLocked concode_elem_sep boolean equals conc...
long function ( ) { return height ; }
36,585
the width of the element . this is the minimum width of the element . concode_field_sep InlineSequenceElement INSTANCE concode_field_sep Classification getType concode_elem_sep long getMaximumWidth concode_elem_sep boolean isPreserveWhitespace concode_elem_sep int getClassification
long function ( final RenderNode arg0 ) { return arg0 . getMinimumChunkWidth ( ) ; }
36,586
this value is currently `` read replication . '' concode_field_sep Boolean normal concode_elem_sep String statusType concode_elem_sep String message concode_elem_sep String status concode_field_sep Boolean getNormal concode_elem_sep DBInstanceStatusInfo withStatus concode_elem_sep Boolean isNormal concode_elem_sep void...
String function ( ) { return statusType ; }
36,587
check if folder exists . if not - it will be created with with all subdirectories . concode_field_sep PlaceHolder placeHolder concode_field_sep void copyFile concode_elem_sep void writeToFile concode_elem_sep void writeToFile concode_elem_sep String readFromFile concode_elem_sep String readFromFile concode_elem_sep voi...
void function ( File arg0 ) { if ( arg0 != null && ( ! arg0 . exists ( ) || ! arg0 . isDirectory ( ) ) ) { arg0 . mkdirs ( ) ; } }
36,588
add all headers from a set of headers to this set . any existing header with the same case insensitive name as one of the new headers will be overridden . concode_field_sep DateFormat dateFormat concode_elem_sep ArrayList<HeaderElement> headers concode_elem_sep String name concode_elem_sep String value concode_field_se...
void function ( Headers arg0 ) { for ( Iterator < HeaderElement > loc0 = arg0 . iterator ( ) ; loc0 . hasNext ( ) ; ) { HeaderElement loc1 = loc0 . next ( ) ; remove ( loc1 . name ) ; addValue ( loc1 . name , loc1 . value ) ; } }
36,589
the number of documents that were deleted from the search domain . concode_field_sep Long deletes concode_elem_sep com.amazonaws.internal.SdkInternalList<DocumentServiceWarning> warnings concode_elem_sep String status concode_elem_sep Long adds concode_field_sep UploadDocumentsResult withStatus concode_elem_sep java.ut...
Long function ( ) { return this . deletes ; }
36,590
the artifact 's revision id . depending on the type of object , this could be a commit id github or a revision id amazon s3 . concode_field_sep String name concode_elem_sep ArtifactLocation location concode_elem_sep String revision concode_field_sep void setName concode_elem_sep ArtifactLocation getLocation concode_ele...
void function ( String arg0 ) { this . revision = arg0 ; }
36,591
called once at the beginning of the task . concode_field_sep PlaceHolder placeHolder concode_field_sep void cleanup concode_elem_sep void run concode_elem_sep void map
void function ( Context arg0 ) { }
36,592
returns the id of the category concode_field_sep Column[] columns concode_elem_sep long serialVersionUID concode_elem_sep String name concode_elem_sep String description concode_elem_sep String id concode_field_sep void setName concode_elem_sep void setColumns concode_elem_sep String getName concode_elem_sep String get...
void function ( String arg0 ) { this . id = arg0 ; }
36,593
sets the value of the item property . concode_field_sep Item item concode_field_sep Item getItem
void function ( Item arg0 ) { this . item = arg0 ; }
36,594
setter for the field activationnumbersacrifice . concode_field_sep boolean hellbent concode_elem_sep String svarToCheck concode_elem_sep String svarOperator concode_elem_sep boolean bAnyPlayer concode_elem_sep String presentDefined concode_elem_sep String sIsPresent concode_elem_sep int nCardsInHand concode_elem_sep St...
void function ( int arg0 ) { activationNumberSacrifice = arg0 ; }
36,595
gets the value of the mdkeywordtypecode property . concode_field_sep List<String> nilReason concode_elem_sep CodeListValueType mdKeywordTypeCode concode_field_sep List<String> getNilReason concode_elem_sep void setMDKeywordTypeCode
CodeListValueType function ( ) { return mdKeywordTypeCode ; }
36,596
setter method for onlineclosure concode_field_sep int subSubCatId concode_elem_sep int subCatId concode_elem_sep long serialVersionUID concode_elem_sep String caseType concode_elem_sep String description concode_elem_sep int callBackTemplateID concode_elem_sep List caseTypeDetails concode_elem_sep int educationalTempla...
void function ( String arg0 ) { this . onlineClosure = arg0 ; }
36,597
returns the phone id of this phone . concode_field_sep Phone _phone concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean is...
long function ( ) { return _phone . getPhoneId ( ) ; }
36,598
public : return the wrapped object . concode_field_sep Object value concode_field_sep boolean isInstantiated concode_elem_sep void setValue concode_elem_sep Object clone concode_elem_sep String toString
Object function ( ) { return value ; }
36,599
returns the `` host '' part of github urls . e.g. : https://github.com https://my.company.url note : there is no trailing slash in the returned url . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isGithubUrl concode_elem_sep boolean isGithubUrl concode_elem_sep String getApiProtocol concode_elem_s...
String function ( ) { return getApiProtocol ( ) + getGitHostWithoutProtocol ( ) ; }