idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
8,700 | appends the given data to the file specified in the input and returns the reference to the file . concode_field_sep int ASCII_LOW concode_elem_sep int ASCII_HIGH concode_elem_sep Random rand concode_elem_sep int modulo concode_field_sep byte[] fillRandomAscii concode_elem_sep File generateRandomAsciiFile concode_elem_s... | File function ( File arg0 , String arg1 ) { FileWriter loc0 = new FileWriter ( arg0 ) ; try { loc0 . append ( arg1 ) ; } finally { loc0 . close ( ) ; } return arg0 ; } |
8,701 | sets the value of the versionable property . concode_field_sep ArrayOfString altIDs concode_elem_sep String dsID concode_elem_sep String logMessage concode_elem_sep String pid concode_elem_sep boolean versionable concode_elem_sep String mimeType concode_elem_sep String dsLabel concode_elem_sep String formatURI concode_... | void function ( boolean arg0 ) { this . versionable = arg0 ; } |
8,702 | sets the value of the screensavepage property . concode_field_sep String screensavePage concode_elem_sep BigDecimal maxMobileScreenWidth concode_elem_sep BigDecimal defaultColumns concode_elem_sep Meta meta concode_elem_sep String design concode_elem_sep Boolean bindClickToWidget concode_elem_sep String backend concode... | void function ( String arg0 ) { this . screensavePage = arg0 ; } |
8,703 | retrieves the current fill color of this feature as an argb color integer . that color is stored in the feature metadata . concode_field_sep Vector<Location> points concode_elem_sep int LINE concode_elem_sep int MARKER concode_elem_sep MapsFeatureMetadata featureInfo concode_elem_sep int SHAPE concode_elem_sep String a... | int function ( ) { return featureInfo . getFillColor ( ) ; } |
8,704 | checkpoints the database . the most important effect of calling this method is to cause the log file to be rewritten in the most efficient form to reflect the current state of the database , i.e. only the ddl and insert dml required to recreate the database in its present state . other house-keeping duties are performe... | void function ( boolean arg0 ) { if ( lLog != null ) { lLog . checkpoint ( arg0 ) ; } } |
8,705 | some checks for cloning . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerialization2 concode_elem_sep void testSerialization1 concode_elem_sep void testGetStroke concode_elem_sep void testPut concode_elem_sep void testEquals | void function ( ) { StrokeMap loc0 = new StrokeMap ( ) ; StrokeMap loc1 = ( StrokeMap ) loc0 . clone ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; loc0 . put ( "srini_string" , new BasicStroke ( 1.1f ) ) ; loc0 . put ( "srini_string" , new BasicStroke ( 2.2f ) ) ; loc1 = ( StrokeMap ) loc0 . clone ( ) ; assertTrue ( lo... |
8,706 | fires an event indicating that an edge is about to be added . concode_field_sep List sessionListeners concode_elem_sep Object source concode_field_sep void fireNodeRemoved concode_elem_sep void fireParentAdded concode_elem_sep void fireNodeAdded concode_elem_sep void fireSessionEvent concode_elem_sep void fireSessionEv... | void function ( ) { SessionEvent loc0 = new SessionEvent ( this . source , SessionEvent . ADDING_EDGE ) ; fireSessionEvent ( loc0 ) ; } |
8,707 | the temporary security credentials , which include an access key id , a secret access key , and a security or session token . note : the size of the security token that sts apis return is not fixed . we strongly recommend that you make no assumptions about the maximum size . as of this writing , the typical size is les... | GetFederationTokenResult function ( Credentials arg0 ) { setCredentials ( arg0 ) ; return this ; } |
8,708 | convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep Integer name concode_elem_sep Integer snakeCase concode_field_sep void setName concode_elem_sep Name snakeCase concode_elem_sep Integer getName concode_elem_sep Integer getSnakeCase concode_elem_sep int hash... | String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; } |
8,709 | returns a range of all the bars . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end to com.liferay.portal.kernel.dao.orm.queryutil #all_pos wi... | java . util . List < com . liferay . testtransaction . model . Bar > function ( int arg0 , int arg1 ) { return getService ( ) . getBars ( arg0 , arg1 ) ; } |
8,710 | disables the current thread for thread scheduling purposes , for up to the specified waiting time , unless the permit is available . if the permit is available then it is consumed and the call returns immediately ; otherwise the current thread becomes disabled for thread scheduling purposes and lies dormant until one o... | void function ( long arg0 ) { if ( arg0 > 0 ) unsafe . park ( false , arg0 ) ; } |
8,711 | makes note of a block in which the variable is defined by a phistmt . concode_field_sep LinkedList[] reals concode_elem_sep FlowGraph cfg concode_elem_sep LinkedList allReals concode_elem_sep PhiStmt[] phis concode_elem_sep Set defBlocks concode_elem_sep VarExpr prototype concode_field_sep Collection reals concode_elem... | void function ( final Block arg0 ) { defBlocks . add ( arg0 ) ; } |
8,712 | returns the number of recent layout branchs . concode_field_sep RecentLayoutBranchLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep com.liferay.portal.model.RecentLayoutBr... | int function ( ) { return getService ( ) . getRecentLayoutBranchsCount ( ) ; } |
8,713 | get the confidence . concode_field_sep double confidence concode_elem_sep int transactionCount concode_elem_sep int sequentialTransactionCount concode_elem_sep Itemset itemset2 concode_elem_sep Itemset itemset1 concode_field_sep void print concode_elem_sep double getSequentialConfidence concode_elem_sep double getRelat... | double function ( ) { return confidence ; } |
8,714 | creates a producer . concode_field_sep String clientID concode_elem_sep int deliveryMode concode_elem_sep String durableName concode_elem_sep boolean transacted concode_elem_sep boolean isTopic concode_elem_sep int ackMode concode_field_sep void setTransacted concode_elem_sep String getClientID concode_elem_sep void se... | MessageProducer function ( Session arg0 , Destination arg1 ) { MessageProducer loc0 = arg0 . createProducer ( arg1 ) ; loc0 . setDeliveryMode ( deliveryMode ) ; return loc0 ; } |
8,715 | the default implementation does nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep void exitExpression concode_elem_sep void enterMethodDeclaration concode_elem_sep void exitType concode_elem_sep void enterClassDeclaration concode_elem_sep void exitGoal concode_elem_sep void exitVarDeclaration concod... | void function ( @ NotNull ParserRuleContext arg0 ) { } |
8,716 | get the task finish time concode_field_sep TaskUpdated datum concode_field_sep TaskID getTaskId concode_elem_sep EventType getEventType concode_elem_sep Object getDatum concode_elem_sep void setDatum | long function ( ) { return datum . getFinishTime ( ) ; } |
8,717 | method settotaltimesheet . concode_field_sep String strRealPath concode_elem_sep String strApprover concode_elem_sep int intCurrentPage concode_elem_sep String strGroup concode_elem_sep String strAccount concode_elem_sep int intTotalPage concode_elem_sep String strExcelFile concode_elem_sep StringMatrix mtxGroupList co... | void function ( int arg0 ) { this . intTotalTimesheet = arg0 ; } |
8,718 | get total . concode_field_sep AtomicInteger failed concode_elem_sep AtomicLong totalElapsed concode_elem_sep AtomicInteger active concode_elem_sep AtomicLong succeededMaxElapsed concode_elem_sep ConcurrentMap<String,RpcStatus> SERVICE_STATISTICS concode_elem_sep ConcurrentMap<String,ConcurrentMap<String,RpcStatus>> MET... | long function ( ) { return total . longValue ( ) ; } |
8,719 | test method for org.talend.core.model.metadata.queryutil #generatenewquery org.talend.core.model.process.ielement , org.talend.core.model.metadata.imetadatatable , boolean , java.lang.string , java.lang.string , java.lang.string . concode_field_sep PlaceHolder placeHolder concode_field_sep void testNeedFormatSQL concod... | void function ( ) { } |
8,720 | configures if paths with a trailing slash should be treated as fake directories . concode_field_sep boolean stripPrefixSlash concode_elem_sep int maxChannelReopens concode_elem_sep boolean usePseudoDirectories concode_elem_sep int blockSize concode_elem_sep CloudStorageConfiguration DEFAULT concode_elem_sep String work... | Builder function ( boolean arg0 ) { usePseudoDirectories = arg0 ; return this ; } |
8,721 | set the filetype . concode_field_sep String filetype concode_elem_sep boolean noOp concode_elem_sep boolean checksumError concode_elem_sep String filepath concode_elem_sep String destination concode_elem_sep String onBehalfOf concode_elem_sep String packaging concode_elem_sep String userAgent concode_elem_sep boolean c... | void function ( String arg0 ) { this . filetype = arg0 ; } |
8,722 | add dependencies and all of their dependencies . the group id and version of the dependencies are resolved from the modules using the customizer 's artifactcoordinatesresolver . concode_field_sep ClassNode classNode concode_elem_sep GroovyClassLoader loader concode_elem_sep DependencyResolutionContext dependencyResolut... | DependencyCustomizer function ( String ... arg0 ) { for ( String loc0 : arg0 ) { add ( loc0 , null , null , true ) ; } return this ; } |
8,723 | return all collations . will include # of hits and misspelling-to-correction details if `` spellcheck.collateextendedresults was true . concode_field_sep int endOffset concode_elem_sep String original concode_elem_sep List<Collation> collations concode_elem_sep List<Integer> alternativeFrequencies concode_elem_sep Stri... | List < Collation > function ( ) { return collations ; } |
8,724 | tells this strategy whether to inform its listeners . concode_field_sep boolean fIsJavaReconcilingListener concode_elem_sep IDocumentProvider fDocumentProvider concode_elem_sep boolean fNotify concode_elem_sep IJavaReconcilingListener fJavaReconcilingListener concode_elem_sep IProgressMonitor fProgressMonitor concode_e... | void function ( boolean arg0 ) { fNotify = arg0 ; } |
8,725 | checks if a memory cell with the given name exists . concode_field_sep CultureMemoryCell[] m_memory concode_elem_sep int m_size concode_elem_sep int m_width concode_elem_sep List m_memoryNames concode_elem_sep String CVS_REVISION concode_field_sep CultureMemoryCell set concode_elem_sep CultureMemoryCell set concode_ele... | boolean function ( final String arg0 ) { if ( arg0 == null || arg0 . length ( ) < 1 ) { throw new IllegalArgumentException ( "srini_string" ) ; } int loc0 = m_memoryNames . indexOf ( arg0 ) ; return loc0 >= 0 ; } |
8,726 | factory method , responsible for creating the environment view . concode_field_sep PlaceHolder placeHolder concode_field_sep AgentAppFrame createFrame concode_elem_sep AgentAppController createController concode_elem_sep AgentAppFrame constructApplicationFrame concode_elem_sep void main concode_elem_sep void startAppli... | AgentAppEnvironmentView function ( ) { return new EmptyEnvironmentView ( ) ; } |
8,727 | returns the nav sub of this n a v i g a t i o n. concode_field_sep NAVIGATION _navigation 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_el... | java . lang . String function ( ) { return _navigation . getNavSub ( ) ; } |
8,728 | within the for-header there are 3 statements , but this is legal . concode_field_sep int a concode_elem_sep int b concode_elem_sep int c concode_elem_sep int d concode_elem_sep int two concode_elem_sep int one concode_elem_sep int e concode_elem_sep int f concode_elem_sep int g concode_elem_sep int h concode_field_sep ... | void function ( ) { for ( int loc0 = 0 ; loc0 < 20 ; loc0 ++ ) { one = loc0 ; } } |
8,729 | load the gesture library concode_field_sep boolean PROFILE_LOADING_SAVING concode_elem_sep boolean mChanged concode_elem_sep int SEQUENCE_INVARIANT concode_elem_sep int ORIENTATION_SENSITIVE concode_elem_sep Learner mClassifier concode_elem_sep int ORIENTATION_INVARIANT concode_elem_sep int mOrientationStyle concode_el... | void function ( InputStream arg0 ) { load ( arg0 , false ) ; } |
8,730 | add a service to be run by this applicationlauncher . this method is public because there are certain classes launchers such as azkaban that require the applicationlauncher to extend a pre-defined class . since java classes can not extend multiple classes , composition needs to be used . in which case this method needs... | void function ( Service arg0 ) { if ( this . hasStarted ) { throw new IllegalArgumentException ( "srini_string" ) ; } this . services . add ( arg0 ) ; } |
8,731 | used by pooled connections to reset the server-side session to a new one . in case of failure , the connection is closed . when the connection.close method is called , a pooled connection calls this method instead of hsqlclientconnection.close . it can then reuse the hsqlclientconnection object with no further initiali... | void function ( ) { Result loc0 = new Result ( ResultConstants . HSQLRESETSESSION ) ; Result loc1 = execute ( loc0 ) ; if ( loc1 . isError ( ) ) { isClosed = true ; closeConnection ( ) ; throw Trace . error ( loc1 ) ; } sessionID = loc1 . sessionID ; databaseID = loc1 . databaseID ; } |
8,732 | gets the value of the replaceall property . concode_field_sep List<Partners> partners concode_elem_sep Boolean replaceAll concode_field_sep List<Partners> getPartners concode_elem_sep void setReplaceAll | boolean function ( ) { if ( replaceAll == null ) { return true ; } else { return replaceAll ; } } |
8,733 | parses out a token until any of the given terminators is encountered . concode_field_sep int pos concode_elem_sep int len concode_elem_sep boolean lowerCaseNames concode_elem_sep int i1 concode_elem_sep int i2 concode_elem_sep char[] chars concode_field_sep boolean hasChar concode_elem_sep void setLowerCaseNames concod... | String function ( final char [ ] arg0 ) { char loc0 ; i1 = pos ; i2 = pos ; while ( hasChar ( ) ) { loc0 = chars [ pos ] ; if ( isOneOf ( loc0 , arg0 ) ) { break ; } i2 ++ ; pos ++ ; } return getToken ( false ) ; } |
8,734 | invoked after a tree has changed . concode_field_sep PlaceHolder placeHolder concode_field_sep void treeNodesRemoved concode_elem_sep void treeStructureChanged concode_elem_sep void treeNodesChanged concode_elem_sep void treeNodesInserted | void function ( TreeModelEvent arg0 , EventType arg1 ) { } |
8,735 | override to add single response mode support - e.g. if the supplied transport is l2cap . concode_field_sep long mConnectionId concode_field_sep void setConnectionId concode_elem_sep void onDisconnect concode_elem_sep int onConnect concode_elem_sep int onDelete concode_elem_sep void onClose concode_elem_sep void onAuthe... | boolean function ( ) { return false ; } |
8,736 | sets the port the hazelcast member will try to bind on . a valid port value is between 0 and 65535 . a port number of 0 will let the system pick up an ephemeral port . concode_field_sep int port concode_elem_sep Collection<Integer> outboundPorts concode_elem_sep SSLConfig sslConfig concode_elem_sep SymmetricEncryptionC... | NetworkConfig function ( int arg0 ) { if ( arg0 < 0 || arg0 > PORT_MAX ) { throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; } this . port = arg0 ; return this ; } |
8,737 | return the attribute name concode_field_sep String ATTRIBUTE_NAME_INVERTED concode_elem_sep boolean forceCancel concode_elem_sep String name concode_elem_sep String ATTRIBUTE_NAME_UNDIRECTED concode_elem_sep String ATTRIBUTE_NAME concode_elem_sep BaseGraph graph concode_elem_sep GraphDirection direction concode_field_s... | String function ( ) { return name ; } |
8,738 | shutdown and close all db objects created by this instance . concode_field_sep PreparedStatement pstmt_country_code concode_elem_sep stiki_con_server con_server concode_elem_sep PreparedStatement pstmt_gmt_offset concode_field_sep double get_gmt_offset concode_elem_sep String get_country_code concode_elem_sep void prep... | void function ( ) { pstmt_gmt_offset . close ( ) ; pstmt_country_code . close ( ) ; } |
8,739 | copy the byte value into the map at given position 0 , 24 concode_field_sep int limitPos concode_elem_sep int defaultCapacity concode_elem_sep int[] map concode_elem_sep int capacity concode_field_sep int compare concode_elem_sep int set concode_elem_sep int set concode_elem_sep byte set concode_elem_sep void set conco... | int function ( int arg0 , byte arg1 , int arg2 ) { int loc0 = ( arg1 & 0xff ) << ( 24 - arg2 ) ; int loc1 = 0xff000000 >>> arg2 ; loc1 = ~ loc1 ; arg0 &= loc1 ; return ( arg0 | loc0 ) ; } |
8,740 | this method is used to forward the leader published message concode_field_sep PlaceHolder placeHolder concode_field_sep void registerListenerWithLeader concode_elem_sep void forwardReceivedUidMessage concode_elem_sep void sendPing concode_elem_sep void sendUidMessage concode_elem_sep void sendPulse concode_elem_sep Str... | void function ( String arg0 , String arg1 ) { LeaderInterface loc0 = getLeaderInterface ( arg0 ) ; loc0 . receiveMessage ( arg1 ) ; System . out . println ( "srini_string" + arg0 ) ; } |
8,741 | creates a thread for each runnable in the provided array.the provided threadfactory is used to create threads.the newly created threads are not started . concode_field_sep Runnable runnable concode_elem_sep Logger LOG concode_elem_sep ThreadFactory DEFAULT_THREAD_FACTORY concode_field_sep boolean interruptAndJoinThread... | Thread [ ] function ( Runnable [ ] arg0 , ThreadFactory arg1 ) { Thread [ ] loc0 = new Thread [ arg0 . length ] ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 [ loc1 ] = arg1 . newThread ( arg0 [ loc1 ] ) ; } return loc0 ; } |
8,742 | updates the account in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep AccountLocalService _service concode_field_sep com.liferay.mail.model.Account updateFolders concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.... | com . liferay . mail . model . Account function ( com . liferay . mail . model . Account arg0 ) { return getService ( ) . updateAccount ( arg0 ) ; } |
8,743 | returns the single instance , creating one if it 's the first time this method is called . concode_field_sep List<String> mruFileList concode_elem_sep MRUDesignFile instance concode_elem_sep EventListenerList listenerList concode_elem_sep int MAX_SIZE concode_elem_sep String MRU_FILE_LIST_PROPERTY concode_field_sep Lis... | MRUDesignFile function ( ) { return instance ; } |
8,744 | returns the attribute 's value . concode_field_sep Object value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep Map<String,Object> attributes concode_elem_sep Attribute value concode_elem_sep AttributeBuilder key | Object function ( ) { return this . value ; } |
8,745 | do any of the services for this set of service codes run on this serviceday ? concode_field_sep long midnight concode_elem_sep ServiceDate serviceDate concode_elem_sep long serialVersionUID concode_elem_sep BitSet serviceIdsRunning concode_field_sep void init concode_elem_sep ServiceDate getServiceDate concode_elem_sep... | boolean function ( BitSet arg0 ) { return this . serviceIdsRunning . intersects ( arg0 ) ; } |
8,746 | log an information message concode_field_sep PrintStream out concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void debug concode_elem_sep void error concode_elem_sep void error concode_elem_sep void error | void function ( String arg0 ) { out . println ( new Date ( ) + "srini_string" + arg0 ) ; } |
8,747 | returns the company id of this browser tracker . concode_field_sep BrowserTracker _browserTracker concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isE... | long function ( ) { return _browserTracker . getCompanyId ( ) ; } |
8,748 | clear response header concode_field_sep String NAME concode_elem_sep String RESPONSE_KEY concode_elem_sep NamedList<Object> values concode_elem_sep NamedList<String> headers concode_elem_sep Exception err concode_elem_sep String RESPONSE_HEADER_SEGMENT_TERMINATED_EARLY_KEY concode_elem_sep String RESPONSE_HEADER_KEY co... | void function ( ) { values . remove ( RESPONSE_HEADER_KEY ) ; } |
8,749 | a regular state may be a dead end . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart concode_field_... | void function ( ) { prepareStateTest ( ) ; validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ; assertNoIssue ( diagnostics , ISSUE_STATE_WITHOUT_OUTGOING_TRANSITION ) ; } |
8,750 | sets the second object . concode_field_sep V third concode_elem_sep T first concode_elem_sep U second concode_field_sep V getThird concode_elem_sep void setFirst concode_elem_sep T getFirst concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep U getSecond concode_elem_sep void setThird concode_... | void function ( U arg0 ) { this . second = arg0 ; } |
8,751 | converts thrift type to wire type . concode_field_sep PlaceHolder placeHolder concode_field_sep alluxio.thrift.BlockInfo toThrift concode_elem_sep alluxio.thrift.BlockLocation toThrift concode_elem_sep alluxio.thrift.CommandLineJobInfo toThrift concode_elem_sep alluxio.thrift.FileBlockInfo toThrift concode_elem_sep all... | TtlAction function ( TTtlAction arg0 ) { return TtlAction . fromThrift ( arg0 ) ; } |
8,752 | sets the value of the dgame property . concode_field_sep String sTeamFlag concode_elem_sep int iMinute concode_elem_sep boolean bRedCard concode_elem_sep XMLGregorianCalendar dGame concode_elem_sep String sPlayerName concode_elem_sep String sTeamName concode_elem_sep String sTeamFlagLarge concode_elem_sep boolean bYell... | void function ( XMLGregorianCalendar arg0 ) { this . dGame = arg0 ; } |
8,753 | util method to write an attribute with the ns prefix concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.ModifyImageAttributeType localModifyImageAttribute concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_sep ... | void function ( java . lang . String arg0 , java . lang . String arg1 , java . lang . String arg2 , java . lang . String arg3 , javax . xml . stream . XMLStreamWriter arg4 ) { if ( arg4 . getPrefix ( arg1 ) == null ) { arg4 . writeNamespace ( arg0 , arg1 ) ; arg4 . setPrefix ( arg0 , arg1 ) ; } arg4 . writeAttribute ( ... |
8,754 | gets the value of the supplierdetails property . concode_field_sep String suppname concode_elem_sep String currstep concode_elem_sep TriggerDynamicWorkFlowRequest.SupplierDetails supplierDetails concode_elem_sep String suppid concode_field_sep void setSuppname concode_elem_sep void setSuppid concode_elem_sep String get... | TriggerDynamicWorkFlowRequest . SupplierDetails function ( ) { return supplierDetails ; } |
8,755 | invoked in dev mode when a server error occurs . concode_field_sep Provider<Router> routes concode_elem_sep Environment environment concode_elem_sep Option<String> playEditor concode_elem_sep OptionalSourceMapper sourceMapper concode_field_sep CompletionStage<Result> onNotFound concode_elem_sep CompletionStage<Result> ... | CompletionStage < Result > function ( RequestHeader arg0 , UsefulException arg1 ) { return CompletableFuture . completedFuture ( Results . internalServerError ( views . html . defaultpages . devError . render ( playEditor , arg1 ) ) ) ; } |
8,756 | returns total size of inline < script > tags concode_field_sep int filesize concode_elem_sep int inlineScriptSize concode_elem_sep int emptyChars concode_elem_sep int inlineStyleSize concode_elem_sep int inlineEventSize concode_field_sep void setEmptyChars concode_elem_sep int getFilesize concode_elem_sep void setInlin... | int function ( ) { return inlineScriptSize ; } |
8,757 | create a new httpinputmessage from the given nativewebrequest . concode_field_sep HttpHeaders headers concode_elem_sep List<MediaType> allSupportedMediaTypes concode_elem_sep HttpMethod method concode_elem_sep Log logger concode_elem_sep RequestResponseBodyAdviceChain advice concode_elem_sep List<HttpMethod> SUPPORTED_... | ServletServerHttpRequest function ( NativeWebRequest arg0 ) { HttpServletRequest loc0 = arg0 . getNativeRequest ( HttpServletRequest . class ) ; return new ServletServerHttpRequest ( loc0 ) ; } |
8,758 | returns length of mpunreach . concode_field_sep List<BgpLSNlri> mpUnReachNlri concode_elem_sep byte safi concode_elem_sep byte MPUNREACHNLRI_TYPE concode_elem_sep short afi concode_elem_sep Logger log concode_elem_sep int length concode_elem_sep byte LINK_NLRITYPE concode_elem_sep boolean isMpUnReachNlri concode_field_... | int function ( ) { return this . length ; } |
8,759 | set mqtt service from ds . concode_field_sep boolean configured concode_elem_sep MqttService mqttService concode_elem_sep Logger logger concode_elem_sep String topic concode_elem_sep MqttPersistencePublisher publisher concode_elem_sep String brokerName concode_elem_sep String messageTemplate concode_field_sep String ge... | void function ( MqttService arg0 ) { this . mqttService = arg0 ; } |
8,760 | get parent , or self if no parent . concode_field_sep int index concode_elem_sep ArrayList childList concode_elem_sep TreeLevel parent concode_elem_sep boolean child concode_field_sep List getChildren concode_elem_sep String toString concode_elem_sep void main concode_elem_sep int addChild concode_elem_sep boolean isCh... | TreeLevel function ( ) { return parent ; } |
8,761 | closes the agenda database concode_field_sep SQLiteDatabase database concode_elem_sep SQLiteHelper dbHelper concode_elem_sep String[] allColumns concode_elem_sep ItemDataSource dsInstance concode_field_sep ArrayList<String> getAllItems concode_elem_sep void deleteItem concode_elem_sep void createItem concode_elem_sep I... | void function ( ) { dbHelper . close ( ) ; } |
8,762 | callback method that is invoked after a message was added . concode_field_sep List<LogMessage> m_aMessages concode_field_sep void log concode_elem_sep void log concode_elem_sep boolean containsNoSuccess concode_elem_sep boolean containsOnlyError concode_elem_sep boolean containsNoFailure concode_elem_sep int getErrorCo... | void function ( @ Nonnull final LogMessage arg0 ) { } |
8,763 | sets the id of the revoked security token . concode_field_sep String tokenId concode_elem_sep Date tokenCreationDate concode_elem_sep byte[] token concode_field_sep String getTokenId concode_elem_sep void setTokenCreationDate concode_elem_sep void setToken concode_elem_sep byte[] getToken concode_elem_sep Object unmars... | void function ( String arg0 ) { this . tokenId = arg0 ; } |
8,764 | link to the next subset of resources qualified . \ nempty if no more resources are to be returned . concode_field_sep String next concode_elem_sep String previous concode_elem_sep int count concode_field_sep String getPrevious concode_elem_sep void setNext concode_elem_sep int getCount concode_elem_sep void setCount co... | String function ( ) { return next ; } |
8,765 | get the type name of the abs term concode_field_sep PlaceHolder placeHolder concode_field_sep String getABSDataValue concode_elem_sep Map<ABSRef,ABSObject> getInitialState concode_elem_sep List<PreviousCall> getPreviousCalls concode_elem_sep String getMethodName concode_elem_sep String getMethodMame concode_elem_sep Ma... | String [ ] function ( ABSTerm arg0 ) { return arg0 . typeParams ; } |
8,766 | messagedigest block update operation . continues a message-digest operation , processing another message block , and updating the context . concode_field_sep PlaceHolder placeHolder concode_field_sep String asHex concode_elem_sep String asHex concode_elem_sep byte[] getDigest concode_elem_sep byte[] doFinal | MessageDigest function ( String arg0 ) { byte [ ] loc0 = arg0 . getBytes ( ) ; return update ( loc0 , 0 , loc0 . length ) ; } |
8,767 | gets the value of the awardenddate property . concode_field_sep AwardType award concode_elem_sep XMLGregorianCalendar awardStartDate concode_elem_sep XMLGregorianCalendar awardEndDate concode_elem_sep long serialVersionUID concode_field_sep void setAward concode_elem_sep void setAwardStartDate concode_elem_sep XMLGrego... | XMLGregorianCalendar function ( ) { return awardEndDate ; } |
8,768 | returns a connection from the default datasource , with auto-commit enabled . concode_field_sep PlaceHolder placeHolder concode_field_sep DataSource getDataSource concode_elem_sep DataSource getDataSource | Connection function ( ) { return getConnection ( "srini_string" ) ; } |
8,769 | not supported . concode_field_sep AuditLogFilter filter concode_elem_sep long serialVersionUID concode_elem_sep LinkedList<AuditLogEntry> entries concode_field_sep boolean add concode_elem_sep void add concode_elem_sep List<AuditLogEntry> subList concode_elem_sep AuditLogEntry set concode_elem_sep boolean containsAll c... | boolean function ( Collection < ? > arg0 ) { throw new UnsupportedOperationException ( ) ; } |
8,770 | see #tohexstring byte , int , int . concode_field_sep String HEX concode_field_sep String hexDump concode_elem_sep String hexDump concode_elem_sep String formatInt concode_elem_sep byte[] toByteArray | String function ( byte [ ] arg0 ) { return Util . toHexString ( arg0 , 0 , arg0 . length ) ; } |
8,771 | this is ok ! concode_field_sep int field concode_elem_sep int dummy concode_elem_sep int ASDF concode_elem_sep String first concode_elem_sep String second concode_field_sep void method5 concode_elem_sep void method6 concode_elem_sep void method7 concode_elem_sep void method8 concode_elem_sep void method2 concode_elem_s... | void function ( ) { } |
8,772 | gets the value of the evt property . concode_field_sep STTLTriggerEvent evt concode_elem_sep String delay concode_elem_sep CTTLTriggerTimeNodeID tn concode_elem_sep CTTLTimeTargetElement tgtEl concode_elem_sep CTTLTriggerRuntimeNode rtn concode_field_sep CTTLTimeTargetElement getTgtEl concode_elem_sep void setEvt conco... | STTLTriggerEvent function ( ) { return evt ; } |
8,773 | method to close db . remember to close db after every query !!!!!! concode_field_sep SQLiteDatabase database concode_elem_sep Context context concode_elem_sep DbHelper dbHelper concode_field_sep ContentValues createContentValues concode_elem_sep ContentValues createContentValuesByObject concode_elem_sep long insertTupl... | void function ( ) { dbHelper . close ( ) ; } |
8,774 | sets the value of the numberrecordsfailed property . concode_field_sep String jobId concode_elem_sep Long apexProcessingTime concode_elem_sep XMLGregorianCalendar createdDate concode_elem_sep Integer numberRecordsFailed concode_elem_sep int numberRecordsProcessed concode_elem_sep String stateMessage concode_elem_sep XM... | void function ( Integer arg0 ) { this . numberRecordsFailed = arg0 ; } |
8,775 | not-null value ; ensure this value is available before it is saved to the database . concode_field_sep String firstName concode_elem_sep String lastName concode_elem_sep String password concode_elem_sep String phoneNumber concode_elem_sep String gender concode_elem_sep Long dob concode_elem_sep Long id concode_elem_sep... | void function ( String arg0 ) { this . gender = arg0 ; } |
8,776 | the result of the child workflow execution if any . constraints : length : 0 - 32768 concode_field_sep String result concode_elem_sep WorkflowExecution workflowExecution concode_elem_sep Long startedEventId concode_elem_sep WorkflowType workflowType concode_elem_sep Long initiatedEventId concode_field_sep Long getStart... | String function ( ) { return result ; } |
8,777 | retrieve a specific tree based on id and org id concode_field_sep User currentUser concode_elem_sep Logger log concode_field_sep void processRepos concode_elem_sep PackageName findPackageName concode_elem_sep KickstartCommand createCommand concode_elem_sep List<Channel> getAvailableChannels concode_elem_sep List<Kickst... | KickstartableTree function ( Long arg0 ) { return KickstartFactory . lookupKickstartTreeByIdAndOrg ( arg0 , currentUser . getOrg ( ) ) ; } |
8,778 | provides serialization support . concode_field_sep long serialVersionUID concode_elem_sep PaintType defaultPaintType concode_elem_sep double upperBound concode_elem_sep List lookupTable concode_elem_sep PaintType paintLightGray concode_elem_sep PaintType paintType concode_elem_sep double lowerBound concode_elem_sep lon... | void function ( ObjectOutputStream arg0 ) { arg0 . defaultWriteObject ( ) ; SerialUtilities . writePaintType ( this . paintType , arg0 ) ; } |
8,779 | returns the modified date 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_e... | Date function ( ) { return _kbFolder . getModifiedDate ( ) ; } |
8,780 | returns names of bundles with registered settings . concode_field_sep StatusMessageService statusMessageService concode_elem_sep Logger LOGGER concode_elem_sep SettingsService settingsService concode_elem_sep String ADMIN_MODULE_NAME concode_elem_sep String PLATFORM_SETTINGS_SAVED concode_field_sep void uploadSettingsF... | List < String > function ( ) { return settingsService . retrieveRegisteredBundleNames ( ) ; } |
8,781 | get a bit in a bit array . concode_field_sep int MAX_SIZE concode_elem_sep byte[] data concode_elem_sep int pos concode_elem_sep int SPLIT_MANY concode_elem_sep int[] MAX_OFFSETS concode_elem_sep int[] SIZE_OFFSETS concode_elem_sep int DIVIDE concode_field_sep int read concode_elem_sep int getOffset concode_elem_sep vo... | boolean function ( byte [ ] arg0 , int arg1 ) { return ( arg0 [ arg1 / 8 ] & ( 1 << ( arg1 & 7 ) ) ) != 0 ; } |
8,782 | get the tprotocol being used as the input read protocol . concode_field_sep TProtocol oprot_ concode_elem_sep TProtocol iprot_ concode_elem_sep int seqid_ concode_field_sep void receiveBase concode_elem_sep TProtocol getOutputProtocol concode_elem_sep void sendBase | TProtocol function ( ) { return this . iprot_ ; } |
8,783 | gets the value of the title property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep String title concode_elem_sep MLOperationPa... | String function ( ) { return title ; } |
8,784 | mark a client as the selected . concode_field_sep String selectedClient concode_elem_sep String PREF_COLLAPSED_CLIENT_GUIDS concode_elem_sep SharedPreferences sharedPrefs concode_elem_sep String PREF_HIDDEN_CLIENT_GUIDS concode_elem_sep Set<String> collapsedClients concode_elem_sep Set<String> hiddenClients concode_ele... | void function ( String arg0 ) { if ( hiddenClients . contains ( arg0 ) ) { selectedClient = null ; } else { selectedClient = arg0 ; } final Editor loc0 = sharedPrefs . edit ( ) ; loc0 . putString ( PREF_SELECTED_CLIENT_GUID , selectedClient ) ; loc0 . apply ( ) ; } |
8,785 | clean template cache for this id concode_field_sep CLogger log concode_elem_sep String[] cacheURLs concode_field_sep String convertJNPURLToCacheURL concode_elem_sep void cleanContainer concode_elem_sep void cleanContainer concode_elem_sep void cleanContainerElement concode_elem_sep void cleanContainerElement concode_el... | void function ( String arg0 ) { runURLRequest ( "srini_string" , arg0 ) ; } |
8,786 | make an instance of javafx.scene.media.audioclip based on the properties set on this builder . concode_field_sep double volume concode_elem_sep double balance concode_elem_sep int __set concode_elem_sep double rate concode_elem_sep int cycleCount concode_elem_sep java.lang.String source concode_elem_sep double pan conc... | javafx . scene . media . AudioClip function ( ) { javafx . scene . media . AudioClip loc0 = new javafx . scene . media . AudioClip ( this . source ) ; applyTo ( loc0 ) ; return loc0 ; } |
8,787 | called by the renderer when a texture has been set . concode_field_sep int numFboSwitches concode_elem_sep int numTriangles concode_elem_sep int memoryTextures concode_elem_sep HashSet<Integer> shadersUsed concode_elem_sep int numObjects concode_elem_sep int memoryShaders concode_elem_sep int numVertices concode_elem_s... | void function ( Image arg0 , boolean arg1 ) { assert arg0 . getId ( ) >= 1 ; if ( ! enabled ) return ; if ( ! texturesUsed . contains ( arg0 . getId ( ) ) ) texturesUsed . add ( arg0 . getId ( ) ) ; if ( arg1 ) numTextureBinds ++ ; } |
8,788 | gets the name of the jsp file from which the java source file was generated . concode_field_sep int javaLineNum concode_elem_sep String javaFileName concode_elem_sep int jspBeginLineNum concode_elem_sep StringBuilder errMsg concode_elem_sep String jspExtract concode_elem_sep String jspFileName concode_field_sep int get... | String function ( ) { return this . jspFileName ; } |
8,789 | add tunnels to tunnel request queues . concode_field_sep Map<Integer,PcepTunnelData> tunnelDB concode_elem_sep Logger log concode_elem_sep Map<Integer,PcepTunnelData> tunnelRequestQueue concode_elem_sep Map<TunnelId,Integer> tunnelIdMap concode_elem_sep TunnelProviderService tunnelApiMapperservice concode_elem_sep Stri... | void function ( int arg0 , PcepTunnelData arg1 ) { tunnelRequestQueue . put ( new Integer ( arg0 ) , arg1 ) ; log . debug ( "srini_string" ) ; } |
8,790 | call this after constructing to initialize the plugin . final because we want to be able to change args without breaking plugins . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep bool... | void function ( String arg0 , CordovaInterface arg1 , CordovaWebView arg2 , CordovaPreferences arg3 ) { assert this . cordova == null ; this . serviceName = arg0 ; this . cordova = arg1 ; this . webView = arg2 ; this . preferences = arg3 ; initialize ( arg1 , arg2 ) ; pluginInitialize ( ) ; } |
8,791 | the open type that was supplied to the constructor . concode_field_sep Class<?> openClass concode_elem_sep Type javaType concode_elem_sep OpenType<?> openType concode_field_sep Class<?> getOpenClass concode_elem_sep Object toOpenValue concode_elem_sep Class<?> makeOpenClass concode_elem_sep void checkReconstructible co... | OpenType < ? > function ( ) { return openType ; } |
8,792 | returns the http status text associated with this response . concode_field_sep Request<?> request concode_elem_sep String statusText concode_elem_sep HttpRequestBase httpRequest concode_elem_sep Map<String,String> headers concode_elem_sep InputStream content concode_elem_sep int statusCode concode_field_sep HttpRequest... | String function ( ) { return statusText ; } |
8,793 | log a warn message concode_field_sep int STACK_TRACE_START_INDEX concode_field_sep void debug concode_elem_sep String formatClassAndMethodName concode_elem_sep Logger getLogger concode_elem_sep String getFullyQualifiedClassName concode_elem_sep void error concode_elem_sep void info concode_elem_sep void fatal | void function ( Object arg0 ) { getLogger ( ) . warn ( formatClassAndMethodName ( ) + arg0 ) ; } |
8,794 | the time stamp used for the datapoint . concode_field_sep Double sampleCount concode_elem_sep Double average concode_elem_sep String unit concode_elem_sep Double maximum concode_elem_sep Double sum concode_elem_sep Double minimum concode_elem_sep java.util.Date timestamp concode_field_sep void setAverage concode_elem_s... | java . util . Date function ( ) { return this . timestamp ; } |
8,795 | performs a dynamic query on the database and returns the matching rows . concode_field_sep ThauphuLocalService _thauphuLocalService concode_field_sep com.newway.model.Thauphu addThauphu concode_elem_sep java.util.List<com.newway.model.Thauphu> getThauphus concode_elem_sep com.newway.model.Thauphu updateThauphu concode_... | java . util . List function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _thauphuLocalService . arg0 ( arg0 ) ; } |
8,796 | count cumulative index for chromosomes before given chromosome . concode_field_sep LinkedHashMap<String,IntArrayList> locations concode_elem_sep LinkedHashMap<String,DoubleArrayList> values concode_elem_sep DescriptionCache descriptionCache concode_elem_sep double maxValue concode_elem_sep Logger log concode_elem_sep I... | int function ( String arg0 ) { Object [ ] loc0 = this . locations . keySet ( ) . toArray ( ) ; int loc1 = 0 ; int loc2 = 0 ; while ( loc1 < loc0 . length && ! loc0 [ loc1 ] . toString ( ) . equals ( arg0 ) ) { loc2 += locations . get ( loc0 [ loc1 ] . toString ( ) ) . size ( ) ; loc1 ++ ; } return loc2 ; } |
8,797 | lock that guards access to global variables that track sparkcontext construction . concode_field_sep SparkContext$ MODULE$ concode_field_sep org.apache.spark.WritableConverter<java.lang.Object> booleanWritableConverter concode_elem_sep org.apache.spark.WritableConverter<byte[]> bytesWritableConverter concode_elem_sep o... | java . lang . Object function ( ) { throw new RuntimeException ( ) ; } |
8,798 | utility method for generating random double values in the range specified by the low and high attributes . used during the storeiventory initialization . concode_field_sep Random random concode_elem_sep RandomNumberGenerator randomNumberGenerator concode_field_sep void main concode_elem_sep RandomNumberGenerator getIns... | int function ( int arg0 , int arg1 ) { return ( int ) getRandomDouble ( arg0 , arg1 ) ; } |
8,799 | setter method for the text concode_field_sep String text concode_field_sep String getText concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString | void function ( String arg0 ) { this . text = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.