idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
4,600 | validates the given value is an instance of the target class . concode_field_sep PlaceHolder placeHolder concode_field_sep Type getElementType concode_elem_sep Type getKeyType concode_elem_sep boolean isArrayType concode_elem_sep boolean isMapType concode_elem_sep Type getValueType | B function ( A arg0 , Class < B > arg1 , String arg2 ) { if ( arg0 == null ) { throw new NullPointerException ( format ( "srini_string" , arg2 ) ) ; } checkArgument ( arg1 . isInstance ( arg0 ) , "srini_string" , arg2 , arg1 . getName ( ) , arg0 . getClass ( ) . getName ( ) ) ; return arg1 . cast ( arg0 ) ; } |
4,601 | gets the user profile . concode_field_sep User user concode_field_sep void setUser | User function ( ) { return this . user ; } |
4,602 | process for a distributed search . concode_field_sep Map<String,Class<? extends SearchComponent>> standard_components concode_elem_sep String name concode_field_sep void setName concode_elem_sep String getVersion concode_elem_sep void prepare concode_elem_sep void init concode_elem_sep void process concode_elem_sep Str... | int function ( ResponseBuilder arg0 ) { return ResponseBuilder . STAGE_DONE ; } |
4,603 | returns the number of bits set to true in this bit set concode_field_sep int ADDRESS_BITS_PER_WORD concode_elem_sep int BITS_PER_WORD concode_elem_sep int size concode_elem_sep long WORD_MASK concode_elem_sep long[] words concode_field_sep int nextClearBit concode_elem_sep boolean set concode_elem_sep void set concode_... | int function ( ) { int loc0 = 0 ; for ( int loc1 = 0 ; loc1 < words . length ; loc1 ++ ) loc0 += Long . bitCount ( words [ loc1 ] ) ; return loc0 ; } |
4,604 | parses the raw content of the box . it surrounds the actual parsing which is done concode_field_sep ContainerBox parent concode_elem_sep ByteBuffer deadBytes concode_elem_sep byte[] userType concode_elem_sep Logger LOG concode_elem_sep String type concode_elem_sep ByteBuffer content concode_field_sep ContainerBox getPa... | void function ( ) { if ( content != null ) { ByteBuffer loc0 = this . content ; this . content = null ; loc0 . rewind ( ) ; _parseDetails ( loc0 ) ; if ( loc0 . remaining ( ) > 0 ) { deadBytes = loc0 . slice ( ) ; } assert verify ( loc0 ) ; } } |
4,605 | given a value the logit is calculated and returned . concode_field_sep PlaceHolder placeHolder concode_field_sep double logNormDens concode_elem_sep double logMVNormDens concode_elem_sep double[] seamansFormula concode_elem_sep double[] normaliseProps concode_elem_sep double invLogit concode_elem_sep int powerOf2 conco... | double function ( double arg0 ) { double loc0 = Math . log ( ( double ) ( arg0 / ( 1 - arg0 ) ) ) ; return loc0 ; } |
4,606 | converts a hex string representation to a byte array . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] writeInt concode_elem_sep byte[] writeInt concode_elem_sep int makeIntFromByte4 concode_elem_sep int makeIntFromByte4 concode_elem_sep String asHex concode_elem_sep String asHex concode_elem_sep byt... | byte [ ] function ( String arg0 ) { byte [ ] loc0 = new byte [ arg0 . length ( ) / 2 ] ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { loc0 [ loc1 ] = ( byte ) Integer . parseInt ( arg0 . substring ( 2 * loc1 , 2 * loc1 + 2 ) , 16 ) ; } return loc0 ; } |
4,607 | start the task , created a new swingworker for the text extraction process . concode_field_sep File file concode_elem_sep ResourceBundle messageBundle concode_elem_sep int lengthOfTask concode_elem_sep String dialogMessage concode_elem_sep Document document concode_elem_sep Logger logger concode_elem_sep boolean done c... | void function ( ) { final SwingWorker loc0 = new SwingWorker ( ) { public Object construct ( ) { current = 0 ; done = false ; canceled = false ; dialogMessage = null ; return new ActualTask ( ) ; } } ; loc0 . setThreadPriority ( Thread . MIN_PRIORITY ) ; loc0 . start ( ) ; } |
4,608 | encode to a full precision geohash string from a given morton encoded long value concode_field_sep int PRECISION concode_elem_sep short MORTON_OFFSET concode_elem_sep String BASE_32_STRING concode_elem_sep char[] BASE_32 concode_field_sep long fromMorton concode_elem_sep char encode concode_elem_sep long longEncode con... | String function ( final long arg0 ) { return stringEncode ( arg0 , PRECISION ) ; } |
4,609 | attribute specifying whether to ignore the difference between / and \ the two common directory characters . concode_field_sep int prefixLength concode_elem_sep int postfixLength concode_elem_sep boolean fromContainsStar concode_elem_sep String fromPrefix concode_elem_sep boolean handleDirSep concode_elem_sep boolean ca... | boolean function ( ) { return handleDirSep ; } |
4,610 | get the xmlreader to be used for the source . concode_field_sep String FEATURE concode_elem_sep XMLReader reader concode_elem_sep InputSource inputSource concode_field_sep String getSystemId concode_elem_sep InputSource sourceToInputSource concode_elem_sep void setSystemId concode_elem_sep void setInputSource concode_e... | XMLReader function ( ) { return reader ; } |
4,611 | writes other into this . if any setting is populated by this and other , the value and flags from other will be kept . concode_field_sep int FLAG_CLEAR_PREVIOUSLY_PERSISTED_SETTINGS concode_elem_sep int CLIENT_CERTIFICATE_VECTOR_SIZE concode_elem_sep int set concode_elem_sep int DEFAULT_INITIAL_WINDOW_SIZE concode_elem... | void function ( Settings arg0 ) { for ( int loc0 = 0 ; loc0 < COUNT ; loc0 ++ ) { if ( ! arg0 . isSet ( loc0 ) ) continue ; set ( loc0 , arg0 . flags ( loc0 ) , arg0 . get ( loc0 ) ) ; } } |
4,612 | gets the attributes of this token . concode_field_sep long serialVersionUID concode_elem_sep String secret concode_elem_sep Map<String,Object> _attributes concode_elem_sep String key concode_field_sep String getKey concode_elem_sep void setAttribute concode_elem_sep Object getAttribute concode_elem_sep String getSecret... | Map < String , Object > function ( ) { return _attributes ; } |
4,613 | restarts processing for the file . should only be called after #start . concode_field_sep boolean firstLineRead concode_elem_sep int index concode_elem_sep Map<Integer,NumberFormat> fieldFormats concode_elem_sep BitSet y2PostSelection concode_elem_sep String fieldString concode_elem_sep FileProcessor processor concode_... | void function ( ) { if ( processor == null ) { throw new IllegalStateException ( "srini_string" ) ; } processor . stop ( ) ; processor = null ; start ( ) ; } |
4,614 | sets the value of the gtype property . concode_field_sep GoalType gType concode_field_sep GoalType getGType | void function ( GoalType arg0 ) { this . gType = arg0 ; } |
4,615 | deletes the d l sync with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep DLSyncLocalService _dlSyncLocalService concode_field_sep void setWrappedService concode_elem_sep void setWrappedDLSyncLocalService concode_elem_sep int getDLSyncsCount concode_elem_sep com.lif... | com . liferay . portlet . documentlibrary . model . DLSync function ( long arg0 ) { return _dlSyncLocalService . deleteDLSync ( arg0 ) ; } |
4,616 | changes the item at position idx . concode_field_sep boolean okToRemove concode_elem_sep int theSize concode_elem_sep AnyType[] theItems concode_elem_sep int DEFAULT_CAPACITY concode_elem_sep int current concode_field_sep boolean add concode_elem_sep void add concode_elem_sep AnyType next concode_elem_sep boolean isEmp... | AnyType function ( int arg0 , AnyType arg1 ) { if ( arg0 < 0 || arg0 >= size ( ) ) throw new ArrayIndexOutOfBoundsException ( "srini_string" + arg0 + "srini_string" + size ( ) ) ; AnyType loc0 = theItems [ arg0 ] ; theItems [ arg0 ] = arg1 ; return loc0 ; } |
4,617 | add new workflow concode_field_sep Log log concode_elem_sep WorkflowImplAdminServiceStub stubImpl concode_elem_sep WorkflowAdminServiceStub stub concode_field_sep WorkflowEvent getEvent concode_elem_sep Template[] listTemplates concode_elem_sep WorkflowImpl getWorkflowImpl concode_elem_sep Template getTemplate concode_... | void function ( WorkflowWizard arg0 ) { stub . addWorkflow ( arg0 ) ; } |
4,618 | reset the index as empty . concode_field_sep int[] hashTable concode_elem_sep boolean fixedSize concode_elem_sep int newNodePointer concode_elem_sep boolean modified concode_elem_sep int elementCount concode_elem_sep int[] linkTable concode_elem_sep int reclaimedNodePointer concode_field_sep void resetTables concode_el... | void function ( ) { Arrays . fill ( linkTable , 0 , newNodePointer , 0 ) ; Arrays . fill ( hashTable , - 1 ) ; resetTables ( ) ; } |
4,619 | get the interop client singleton . concode_field_sep String responseAction concode_elem_sep InitiatorClient CLIENT concode_elem_sep String faultAction concode_field_sep void sendSoapFault concode_elem_sep void sendResponse | InitiatorClient function ( ) { return CLIENT ; } |
4,620 | adds the s c product screenshot to the database . also notifies the appropriate model listeners . concode_field_sep SCProductScreenshotLocalService _scProductScreenshotLocalService concode_field_sep void deleteProductScreenshot concode_elem_sep com.liferay.portlet.softwarecatalog.model.SCProductScreenshot getSCProductS... | com . liferay . portlet . softwarecatalog . model . SCProductScreenshot function ( com . liferay . portlet . softwarecatalog . model . SCProductScreenshot arg0 ) { return _scProductScreenshotLocalService . addSCProductScreenshot ( arg0 ) ; } |
4,621 | gets the value of the horizontal property . concode_field_sep STHorizontalAlignment horizontal concode_elem_sep Object parent concode_elem_sep Long readingOrder concode_elem_sep Boolean shrinkToFit concode_elem_sep Long indent concode_elem_sep Long textRotation concode_elem_sep STVerticalAlignment vertical concode_elem... | STHorizontalAlignment function ( ) { return horizontal ; } |
4,622 | gets the value of the cash property . concode_field_sep BigDecimal pct concode_elem_sep String rndDir concode_elem_sep BigDecimal qty concode_elem_sep BigDecimal cash concode_elem_sep BigDecimal rndMod concode_field_sep BigDecimal getPct concode_elem_sep void setQty concode_elem_sep void setRndDir concode_elem_sep Stri... | BigDecimal function ( ) { return cash ; } |
4,623 | set the factory for the key in this context . concode_field_sep Map<Key<?>,Object> ht concode_elem_sep Map<Key<?>,Factory<?>> ft concode_elem_sep Map<Class<?>,Key<?>> kt concode_field_sep T get concode_elem_sep T get concode_elem_sep void clear concode_elem_sep void checkState concode_elem_sep T uncheckedCast concode_e... | void function ( Key < T > arg0 , Factory < T > arg1 ) { checkState ( ht ) ; Object loc0 = ht . put ( arg0 , arg1 ) ; if ( loc0 != null ) throw new AssertionError ( "srini_string" ) ; checkState ( ft ) ; ft . put ( arg0 , arg1 ) ; } |
4,624 | sets the value of the this property . concode_field_sep List<ManagedObjectReference> host concode_elem_sep ManagedObjectReference _this concode_field_sep ManagedObjectReference getThis concode_elem_sep List<ManagedObjectReference> getHost | void function ( ManagedObjectReference arg0 ) { this . _this = arg0 ; } |
4,625 | removes a host from this network record concode_field_sep String name concode_elem_sep String guid concode_elem_sep Map<String,MacAddress> portToMac concode_elem_sep String gateway concode_field_sep void setName concode_elem_sep void clearHosts concode_elem_sep void setGateway concode_elem_sep void addHost | boolean function ( MacAddress arg0 ) { for ( Entry < String , MacAddress > loc0 : this . portToMac . entrySet ( ) ) { if ( loc0 . getValue ( ) . equals ( arg0 ) ) { this . portToMac . remove ( loc0 . getKey ( ) ) ; return true ; } } return false ; } |
4,626 | serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testPublicCloneable concode_elem_sep void testHashcode concode_elem_sep void testEquals | void function ( ) { VectorRenderer loc0 = new VectorRenderer ( ) ; VectorRenderer loc1 = ( VectorRenderer ) TestUtilities . serialised ( loc0 ) ; assertEquals ( loc0 , loc1 ) ; } |
4,627 | sets the group id of this resource type permission . concode_field_sep ResourceTypePermission _resourceTypePermission concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setEx... | void function ( long arg0 ) { _resourceTypePermission . setGroupId ( arg0 ) ; } |
4,628 | route with no parameters . concode_field_sep Method actionMethod concode_elem_sep String method concode_elem_sep Pattern paramExtractor concode_elem_sep List<Route> routes concode_elem_sep String name concode_elem_sep PathBindable<?> pathBindable concode_elem_sep Object action concode_elem_sep String pathPattern concod... | RoutingDsl function ( Supplier < F . Promise < Result >> arg0 ) { return build ( 0 , arg0 , Supplier . class ) ; } |
4,629 | gets the value of the sp property . concode_field_sep String generalType concode_elem_sep String lm concode_elem_sep String id concode_elem_sep String sp concode_elem_sep String tr concode_field_sep void setContent concode_elem_sep void setTr concode_elem_sep String getGeneralType concode_elem_sep void setLm concode_el... | String function ( ) { return sp ; } |
4,630 | gets the value of the totalresultsetsize property . concode_field_sep Integer startIndex concode_elem_sep Integer totalResultSetSize concode_elem_sep List<ReconciliationOrderReport> results concode_field_sep void setTotalResultSetSize concode_elem_sep Integer getStartIndex concode_elem_sep void setStartIndex concode_el... | Integer function ( ) { return totalResultSetSize ; } |
4,631 | gets the value of the position 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 void setName concode_elem_sep String getName concode_elem_sep Integer getIntNoDefault conco... | Point function ( ) { return position ; } |
4,632 | sets the service component id of this service component . concode_field_sep ServiceComponent _serviceComponent concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_se... | void function ( long arg0 ) { _serviceComponent . setServiceComponentId ( arg0 ) ; } |
4,633 | to be closed at teardown . concode_field_sep List<Blob> m_blobs concode_elem_sep List<ResultSet> m_resultSets concode_elem_sep List<ConnectionFactoryEventListener> m_listeners concode_elem_sep List<ConnectionRegistration> m_connectionRegistrations concode_elem_sep Connection m_connection concode_elem_sep boolean m_roll... | void function ( ResultSet arg0 ) { m_resultSets . add ( arg0 ) ; } |
4,634 | the name of the group . concode_field_sep String userId concode_elem_sep String group concode_field_sep void setGroup concode_elem_sep void setGroup concode_elem_sep int hashCode concode_elem_sep String getGroup concode_elem_sep boolean equals concode_elem_sep LaunchPermission clone concode_elem_sep LaunchPermission wi... | LaunchPermission function ( PermissionGroup arg0 ) { setGroup ( arg0 ) ; return this ; } |
4,635 | sets the factory that will create new file information when needed . concode_field_sep MacroCallback macroCallback concode_elem_sep CommentCallback comments concode_elem_sep IncludeProvider includeProvider concode_elem_sep FileInfoFactory fileInfoFactory concode_elem_sep MessageHandler messageHandler concode_elem_sep I... | void function ( FileInfoFactory arg0 ) { if ( arg0 == null ) throw new NullPointerException ( "srini_string" ) ; this . fileInfoFactory = arg0 ; } |
4,636 | protected method that is invoked after a setting changed . concode_field_sep Map<String,Object> m_aMap concode_elem_sep String m_sName concode_field_sep void restoreValue concode_elem_sep String getName concode_elem_sep int getIntValue concode_elem_sep double getDoubleValue concode_elem_sep ISettings getSettingsValue c... | void function ( @ Nonnull @ Nonempty final String arg0 , @ Nullable final Object arg1 , @ Nullable final Object arg2 ) { } |
4,637 | gets the http servlet response . concode_field_sep String CAS_ACCESS_DENIED_REASON concode_field_sep String getTicketGrantingTicketId concode_elem_sep void putLoginTicket concode_elem_sep String getLoginTicketFromFlowScope concode_elem_sep Credential getCredential concode_elem_sep void putTicketGrantingTicketIntoMap co... | HttpServletResponse function ( final RequestContext arg0 ) { Assert . isInstanceOf ( ServletExternalContext . class , arg0 . getExternalContext ( ) , "srini_string" + arg0 . getExternalContext ( ) . getClass ( ) . getName ( ) ) ; return ( HttpServletResponse ) arg0 . getExternalContext ( ) . getNativeResponse ( ) ; } |
4,638 | get error 's counts concode_field_sep Integer level_FATAL concode_elem_sep Integer year concode_elem_sep String rabbitId concode_elem_sep Integer dateInt concode_elem_sep Integer level_DEBUG concode_elem_sep Integer level_ERROR concode_elem_sep Integer level_WARN concode_elem_sep Integer level_INFO concode_elem_sep Int... | Integer function ( ) { return getValZero ( level_ERROR ) ; } |
4,639 | sets a property in the `` videocapture '' . concode_field_sep long nativeObj concode_field_sep boolean n_isOpened concode_elem_sep boolean n_read concode_elem_sep boolean isOpened concode_elem_sep boolean read concode_elem_sep void release concode_elem_sep boolean n_set concode_elem_sep void n_delete concode_elem_sep v... | boolean function ( int arg0 , double arg1 ) { boolean loc0 = n_set ( nativeObj , arg0 , arg1 ) ; return loc0 ; } |
4,640 | setdownservicecount concode_field_sep String m_nodeLabel concode_elem_sep int m_downServiceCount concode_elem_sep String m_availabilityStyle concode_elem_sep String m_availability concode_elem_sep String m_serviceStyle concode_elem_sep boolean m_isDashboardRole concode_elem_sep int m_serviceCount concode_elem_sep Strin... | void function ( int arg0 ) { m_downServiceCount = arg0 ; } |
4,641 | called whenever the osgi framework stops our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void start concode_elem_sep BundleContext getContext | void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; } |
4,642 | open a read-only connection . concode_field_sep PlaceHolder placeHolder concode_field_sep void onCreate concode_elem_sep void onUpgrade concode_elem_sep void onOpen concode_elem_sep H2Database getWritableDatabase concode_elem_sep void close | H2Database function ( ) { return null ; } |
4,643 | the panel stack is controlled by a group of radio buttons and their state changes call this method to register the newly selected panel . concode_field_sep String selectedFruit concode_elem_sep String selectedColor concode_elem_sep String selectedMineral concode_elem_sep String selectedPanel concode_field_sep void setS... | void function ( ValueChangeEvent arg0 ) { selectedPanel = arg0 . getNewValue ( ) . toString ( ) ; } |
4,644 | returns a copy of the current contents of the cache , ordered from least recently accessed to most recently accessed . concode_field_sep int evictionCount concode_elem_sep int putCount concode_elem_sep int hitCount concode_elem_sep int size concode_elem_sep int createCount concode_elem_sep int maxSize concode_elem_sep ... | Map < K , V > function ( ) { return new LinkedHashMap < K , V > ( map ) ; } |
4,645 | check that a non static class correctly produces an error . concode_field_sep PlaceHolder placeHolder concode_field_sep void testNonStaticMethod concode_elem_sep void aPublicMethod concode_elem_sep void testNonFinalClass concode_elem_sep void testNonPrivateConstructor concode_elem_sep void testFinalNoConstructorClass | void function ( ) { boolean loc0 = false ; try { assertThatClassIsUtility ( TwoConstructors . class ) ; } catch ( AssertionError loc1 ) { assertThat ( loc1 . getMessage ( ) , containsString ( "srini_string" ) ) ; loc0 = true ; } assertThat ( loc0 , is ( true ) ) ; } |
4,646 | disconnect from the server . concode_field_sep DefaultCallbackHandler handler concode_elem_sep ModelNode request concode_elem_sep String cliCommand concode_elem_sep CommandContext ctx concode_elem_sep ModelNode response concode_elem_sep boolean isSuccess concode_elem_sep boolean isLocalCommand concode_field_sep String ... | void function ( ) { try { if ( ! isConnected ( ) ) { throw new IllegalStateException ( "srini_string" ) ; } ctx . terminateSession ( ) ; } finally { initOfflineContext ( ) ; } } |
4,647 | consolidate suppresswarnings into one method call . concode_field_sep Logger log concode_elem_sep HibernateSessionManager INSTANCE concode_field_sep HibernateSessionManager init concode_elem_sep HibernateSessionManager initFromConfig concode_elem_sep HibernateSessionManager instance concode_elem_sep int getNextSequence... | List < T > function ( final Query arg0 ) { @ SuppressWarnings ( "srini_string" ) List < T > loc0 = arg0 . loc0 ( ) ; return loc0 ; } |
4,648 | convenience method equivalent to assign symbol , new rexpinteger d , null see #assign string , rexp , rexp concode_field_sep REngine lastEngine concode_field_sep REngine engineForClass concode_elem_sep REngine engineForClass concode_elem_sep void unlock concode_elem_sep REXP getParentEnvironment concode_elem_sep REXP r... | void function ( String arg0 , int [ ] arg1 ) { try { assign ( arg0 , new REXPInteger ( arg1 ) , null ) ; } catch ( REXPMismatchException loc0 ) { throw ( new REngineException ( this , "srini_string" + loc0 ) ) ; } } |
4,649 | adds the ireviewmodelelementchangelistener implementing listener . concode_field_sep ProjectManager projectManager concode_elem_sep List<IReviewModelElementChangeListener> listeners concode_elem_sep ReviewerIdManager reviewerIdManager concode_elem_sep String PHASE_INDIVIDUAL concode_elem_sep PhaseManager phaseManager c... | void function ( IReviewModelElementChangeListener arg0 ) { this . listeners . add ( arg0 ) ; } |
4,650 | sets the value of the getchildrelationmethodname property . concode_field_sep GetChildRelationMethodName getChildRelationMethodName concode_elem_sep SbbAliasRef sbbAliasRef concode_elem_sep DefaultPriority defaultPriority concode_elem_sep Description description concode_elem_sep String id concode_field_sep void setId c... | void function ( GetChildRelationMethodName arg0 ) { this . getChildRelationMethodName = arg0 ; } |
4,651 | the id of the document . concode_field_sep GetResponse response concode_elem_sep MultiGetResponse.Failure failure concode_field_sep void writeTo concode_elem_sep String getIndex concode_elem_sep boolean isFailed concode_elem_sep void readFrom concode_elem_sep String getType concode_elem_sep GetResponse getResponse conc... | String function ( ) { if ( failure != null ) { return failure . getId ( ) ; } return response . getId ( ) ; } |
4,652 | instantiate an empty methodjmslistenerendpoint for furtherconfiguration with provided parameters in #processjmslistener . concode_field_sep Set<Class<?>> nonAnnotatedClasses concode_elem_sep String DEFAULT_JMS_LISTENER_CONTAINER_FACTORY_BEAN_NAME concode_elem_sep BeanFactory beanFactory concode_elem_sep Log logger conc... | MethodJmsListenerEndpoint function ( ) { return new MethodJmsListenerEndpoint ( ) ; } |
4,653 | get the time in millis passed since a previous time concode_field_sep long nanosPerMilli concode_field_sep long nanoTime concode_elem_sep long millisToNanos concode_elem_sep long timeSinceNanos concode_elem_sep long millis concode_elem_sep long nanosToMillis | long function ( long arg0 ) { return millis ( ) - arg0 ; } |
4,654 | logs messages concode_field_sep Category logger concode_elem_sep RuntimeServices rsvc concode_field_sep void init concode_elem_sep void finalize concode_elem_sep void internalInit concode_elem_sep void shutdown | void function ( int arg0 , String arg1 ) { switch ( arg0 ) { case LogSystem . WARN_ID : logger . warn ( arg1 ) ; break ; case LogSystem . INFO_ID : logger . info ( arg1 ) ; break ; case LogSystem . DEBUG_ID : logger . debug ( arg1 ) ; break ; case LogSystem . ERROR_ID : logger . error ( arg1 ) ; break ; default : logge... |
4,655 | get a non-const reference to a const node . requires : node is part of this game tree . concode_field_sep Node m_root concode_elem_sep int m_boardSize concode_field_sep ConstGameInfo getGameInfoConst concode_elem_sep Node getGameInfoNode concode_elem_sep GameInfo getGameInfo concode_elem_sep boolean hasVariations conco... | Node function ( ConstNode arg0 ) { assert NodeUtil . getRoot ( arg0 ) == getRoot ( ) ; return ( Node ) arg0 ; } |
4,656 | todo summary sentence for getsubstitutiongroup ... concode_field_sep String name concode_elem_sep URI ns concode_elem_sep int max concode_elem_sep int min concode_elem_sep Type type concode_elem_sep String id concode_elem_sep boolean _abstract concode_elem_sep Element sub concode_elem_sep boolean nillable concode_field... | Element function ( ) { return sub ; } |
4,657 | is called by the main application to give a reference back to itself . concode_field_sep MainApp mainApp concode_field_sep void handleSave concode_elem_sep void handleAbout concode_elem_sep void handleOpen concode_elem_sep void handleSaveAs concode_elem_sep void handleExit concode_elem_sep void handleShowBirthdayStatis... | void function ( MainApp arg0 ) { this . mainApp = arg0 ; } |
4,658 | sets the certificacao value for this bridgemulticastparametros . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep com.gvt.www.ws.eai.oss.gpon.EnumCertificacao certificacao concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.St... | void function ( com . gvt . www . ws . eai . oss . gpon . EnumCertificacao arg0 ) { this . certificacao = arg0 ; } |
4,659 | gets the value of the pathexport property . concode_field_sep List<Seed> seed concode_elem_sep String pathExport concode_elem_sep String pathIde concode_elem_sep long serialVersionUID concode_field_sep boolean isSetPathIde concode_elem_sep List<Seed> getSeed concode_elem_sep void unsetSeed concode_elem_sep void setPath... | String function ( ) { return pathExport ; } |
4,660 | latitude of the location where this instruction should take place . concode_field_sep int KEEP_LEFT concode_elem_sep InstructionAnnotation annotation concode_elem_sep double distance concode_elem_sep int USE_ROUNDABOUT concode_elem_sep int TURN_SHARP_RIGHT concode_elem_sep int TURN_SLIGHT_LEFT concode_elem_sep int sign... | double function ( ) { return points . getLatitude ( 0 ) ; } |
4,661 | create an instance of direction concode_field_sep PlaceHolder placeHolder concode_field_sep OrthogonalCamera createOrthogonalCamera concode_elem_sep VisualizationInfo.Lines createVisualizationInfoLines concode_elem_sep VisualizationInfo.ClippingPlanes createVisualizationInfoClippingPlanes concode_elem_sep PerspectiveCa... | Direction function ( ) { return new Direction ( ) ; } |
4,662 | returns true iff this binary is released -- that is , a binary built with a release label . concode_field_sep String BUILD_TIMESTAMP concode_elem_sep String BUILD_LABEL concode_elem_sep Map<String,String> buildData concode_elem_sep BlazeVersionInfo instance concode_elem_sep Logger LOG concode_field_sep void setBuildInf... | boolean function ( ) { String loc0 = buildData . get ( BUILD_LABEL ) ; return loc0 != null && loc0 . length ( ) > 0 ; } |
4,663 | sets the value of the flavour property . concode_field_sep Layout layout concode_elem_sep String mapping concode_elem_sep List<Address> address concode_elem_sep BigDecimal shorttime concode_elem_sep String styling concode_elem_sep String flavour concode_elem_sep String shortvalue concode_elem_sep Boolean bindClickToWid... | void function ( String arg0 ) { this . flavour = arg0 ; } |
4,664 | gets the value of the leaseinfo property . concode_field_sep BigDecimal remainingBillCredit concode_elem_sep String jumpCreditEIPPayOff concode_elem_sep LeaseInfo leaseInfo concode_elem_sep long serialVersionUID concode_elem_sep String adjustedTerm concode_elem_sep String finalDownPayment concode_elem_sep BigDecimal re... | LeaseInfo function ( ) { return leaseInfo ; } |
4,665 | returns the date of the new moon . concode_field_sep Calendar firstQuarter concode_elem_sep double illumination concode_elem_sep Calendar thirdQuarter concode_elem_sep MoonPhaseName name concode_elem_sep Calendar _new concode_elem_sep int age concode_elem_sep Calendar full concode_field_sep void setName concode_elem_se... | Calendar function ( ) { return _new ; } |
4,666 | called after options have been initialized and can be accessed via getoption . subclasses may override this to process any needed options . concode_field_sep Map<String,String> options concode_field_sep void processUnit concode_elem_sep void initPlugin concode_elem_sep void endProcessing concode_elem_sep String getOpti... | void function ( ) { } |
4,667 | navigates to the new device enrollment page . concode_field_sep WebDriver driver concode_elem_sep Log log concode_elem_sep UIElementMapper uiElementMapper concode_field_sep LoginPage logout concode_elem_sep DeviceGroupsPage viewGroups concode_elem_sep AddUserPage addUser concode_elem_sep UserListingPage viewUser concod... | EnrollDevicePage function ( ) { driver . findElement ( By . xpath ( uiElementMapper . getElement ( "srini_string" ) ) ) . click ( ) ; return new EnrollDevicePage ( driver ) ; } |
4,668 | returns the default namespace for a document with the characteristics given in the xmldocumentinfo . concode_field_sep PlaceHolder placeHolder concode_field_sep int getDocumentSupport concode_elem_sep XmlReadHandler createReadHandler | String function ( final XmlDocumentInfo arg0 ) { return ClassicEngineBoot . METADATA_NAMESPACE ; } |
4,669 | some text . concode_field_sep InnerClassWithAnnotations anon concode_elem_sep String fFirstName concode_elem_sep String tThirdName concode_elem_sep String sSecondName concode_field_sep String method5 concode_elem_sep String method5 concode_elem_sep String method5 concode_elem_sep String method6 concode_elem_sep String ... | String function ( String arg0 ) { return "srini_string" ; } |
4,670 | forward a preformatted message to the interface concode_field_sep SprogSystemConnectionMemo memo concode_elem_sep SprogReply reply concode_elem_sep AbstractPortController controller concode_elem_sep OutputStream ostream concode_elem_sep SprogListener lastSender concode_elem_sep DataInputStream istream concode_elem_sep ... | void function ( SprogMessage arg0 ) { try { if ( ostream != null ) { ostream . write ( arg0 . getFormattedMessage ( sprogState ) ) ; } else { log . warn ( "srini_string" ) ; } } catch ( Exception loc0 ) { log . warn ( "srini_string" + loc0 . toString ( ) ) ; } } |
4,671 | indicates that current chart instance supports image map interaction concode_field_sep String plotPointShape concode_elem_sep boolean enableDynamicValues concode_elem_sep boolean areaMapEnabled concode_elem_sep int CUSTOM_CHART_TYPE concode_elem_sep String xAxisTitle concode_elem_sep boolean barChartOrientationHorizont... | boolean function ( ) { return areaMapEnabled ; } |
4,672 | gets the total number of mp3 sounds in the file . concode_field_sep String magic concode_elem_sep NXFile file concode_elem_sep long stringCount concode_elem_sep long bitmapOffset concode_elem_sep String MAGIC concode_elem_sep long nodeOffset concode_elem_sep long soundOffset concode_elem_sep long stringOffset concode_e... | long function ( ) { return soundCount ; } |
4,673 | retrieves the thread name to be used when this object is the runnable object of a thread . concode_field_sep Thread runnerThread concode_elem_sep Server server concode_elem_sep boolean keepAlive concode_elem_sep BinaryServerRowOutput rowOut concode_elem_sep Session session concode_elem_sep byte[] mainBuffer concode_ele... | String function ( ) { return "srini_string" + Integer . toString ( hashCode ( ) , 16 ) ; } |
4,674 | creates a classloader that can be used to load resources from theworkspace . concode_field_sep boolean resolveSimpleProjectReferences concode_field_sep File getFileSystemFile concode_elem_sep void addJavaClasspathEntries concode_elem_sep void addClasspathEntries concode_elem_sep URL[] convertClassPath concode_elem_sep ... | ClassLoader function ( IProject arg0 ) { return createClassLoader ( arg0 , WorkspaceClassLoaderFactory . class . getClassLoader ( ) ) ; } |
4,675 | method to closedocument the loading / conversion of the current zip document concode_field_sep Presentation presentation concode_elem_sep boolean loaded concode_field_sep void load concode_elem_sep void setLoaded concode_elem_sep void updateStatus concode_elem_sep void dispose concode_elem_sep boolean isLoaded concode_... | void function ( ) { } |
4,676 | returns a clone of the palette . concode_field_sep double log10 concode_elem_sep int[] r concode_elem_sep int[] b concode_elem_sep String paletteName concode_elem_sep double[] tickValues concode_elem_sep double minZ concode_elem_sep boolean stepped concode_elem_sep int[] g concode_elem_sep long serialVersionUID concode... | Object function ( ) { ColorPalette loc0 = ( ColorPalette ) super . loc0 ( ) ; return loc0 ; } |
4,677 | sets the function id of this e d function department . concode_field_sep EDFunctionDepartment _edFunctionDepartment concode_field_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep void setDepartmentId concode_elem_sep com.liferay.portlet.... | void function ( long arg0 ) { _edFunctionDepartment . setFunctionId ( arg0 ) ; } |
4,678 | constructs a configurationoptionbuilder whose value is of type boolean concode_field_sep ValueConverter<T> valueConverter concode_elem_sep Logger logger concode_elem_sep T defaultValue concode_elem_sep String valueAsString concode_elem_sep String defaultValueAsString concode_elem_sep String errorMessage concode_elem_se... | ConfigurationOptionBuilder < Boolean > function ( ) { return new ConfigurationOptionBuilder < Boolean > ( BooleanValueConverter . INSTANCE , Boolean . class ) ; } |
4,679 | for cascade operations concode_field_sep HashMappedList tableUpdateList concode_elem_sep HsqlArrayList stack concode_elem_sep LongDeque savepointTimestamps concode_elem_sep Session session concode_elem_sep Object[] routineArguments concode_elem_sep HashSet constraintPath concode_elem_sep Object[] dynamicArguments conco... | HashMappedList function ( ) { if ( tableUpdateList == null ) { tableUpdateList = new HashMappedList ( ) ; } return tableUpdateList ; } |
4,680 | returns the look-up key for the message . this is the programmatic reference for the message , typically used when the message is retrieved from a org.springframework.context.messagesource . concode_field_sep String code concode_elem_sep String description concode_elem_sep Locale locale concode_elem_sep String message ... | String function ( ) { return code ; } |
4,681 | get an instance of hiveserdewrapper . concode_field_sep String SERDE_SERIALIZER_PREFIX concode_elem_sep String outputFormatClassName concode_elem_sep String SERDE_DESERIALIZER_INPUT_FORMAT_TYPE concode_elem_sep String serDeClassName concode_elem_sep String SERDE_SERIALIZER_TYPE concode_elem_sep String SERDE_DESERIALIZE... | HiveSerDeWrapper function ( String arg0 ) { return get ( arg0 , Optional . < String > absent ( ) , Optional . < String > absent ( ) ) ; } |
4,682 | convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep String name concode_elem_sep List<String> photoUrls concode_elem_sep List<Tag> tags concode_elem_sep Category category concode_elem_sep Long id concode_elem_sep String value concode_elem_sep StatusEnum statu... | String function ( Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; } |
4,683 | gets the value of the license property . concode_field_sep DeviceDetails deviceDetails concode_elem_sep TaskConfiguration taskConfiguration concode_elem_sep PushNotificationProvider pushNotificationProvider concode_elem_sep Features features concode_elem_sep License license concode_elem_sep List<String> operations conc... | License function ( ) { return license ; } |
4,684 | increments the sequence number . concode_field_sep long duration concode_elem_sep long mCacheSize concode_elem_sep float m concode_elem_sep int TRANSPORT_UDP concode_elem_sep DatagramPacket[] mPackets concode_elem_sep long mClock concode_elem_sep int mTotal concode_elem_sep int mSeq concode_elem_sep int mCount concode_... | void function ( ) { setLong ( mBuffers [ mBufferIn ] , ++ mSeq , 2 , 4 ) ; } |
4,685 | returns internal regular expression syntax flag value see regexpflag #value concode_field_sep int maxDeterminizedStates concode_elem_sep int flagsValue concode_elem_sep ParseField FLAGS_VALUE concode_elem_sep ObjectParser<Builder,ParseFieldMatcherSupplier> PARSER concode_elem_sep int flagsValue concode_elem_sep ParseFi... | int function ( ) { return flagsValue ; } |
4,686 | extracts the array of subjectalt dns names from an x509certificate . returns null if there are n't any . note : java does n't appear able to extract international characters from the subjectalts . it can only extract international characters from the cn field . or maybe the version of openssl i 'm using to test is n't ... | String [ ] function ( X509Certificate arg0 ) { return getSubjectAlts ( arg0 , null ) ; } |
4,687 | remove whitespace from mime containing encoded base64 data . concode_field_sep int SIGN concode_elem_sep boolean fDebug concode_elem_sep int FOURBYTE concode_elem_sep int EIGHTBIT concode_elem_sep int LOOKUPLENGTH concode_elem_sep int TWENTYFOURBITGROUP concode_elem_sep int BASELENGTH concode_elem_sep int SIXTEENBIT co... | int function ( char [ ] arg0 ) { if ( arg0 == null ) { return 0 ; } int loc0 = 0 ; int loc1 = arg0 . length ; for ( int loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) { if ( ! isWhiteSpace ( arg0 [ loc2 ] ) ) { arg0 [ loc0 ++ ] = arg0 [ loc2 ] ; } } return loc0 ; } |
4,688 | registers a compiled statement to be managed . the only caller should be a session that is attempting to prepare a statement for the first time or process a statement that has been invalidated due to ddl changes . concode_field_sep Database database concode_elem_sep IntValueHashMap sqlMap concode_elem_sep IntKeyHashMap... | int function ( int arg0 , CompiledStatement arg1 ) { if ( arg0 < 0 ) { arg0 = nextID ( ) ; sqlMap . put ( arg1 . sql , arg0 ) ; sqlLookup . put ( arg0 , arg1 . sql ) ; } csidMap . put ( arg0 , arg1 ) ; return arg0 ; } |
4,689 | verbose log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void s... | void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 , arg2 ) ; } |
4,690 | enlarge the rectangle in the given directions by the given amounts . concode_field_sep int x concode_elem_sep int width concode_elem_sep int y concode_elem_sep int height concode_field_sep Point avoidBounds concode_elem_sep Point getLocation concode_elem_sep Rectangle move concode_elem_sep Rectangle intersect concode_e... | Rectangle function ( int arg0 , int arg1 , int arg2 , int arg3 ) { return new Rectangle ( x - arg0 , y - arg1 , width + arg0 + arg2 , height + arg1 + arg3 ) ; } |
4,691 | returns true if the encoding name is a valid iana encoding . this method does not verify that there is a decoder available for this encoding , only that the characters are valid for an iana encoding name . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isValidNmtoken concode_elem_sep boolean isVali... | boolean function ( String arg0 ) { return org . apache . xml . utils . XMLChar . isValidIANAEncoding ( arg0 ) ; } |
4,692 | sets the last name column rendered state . concode_field_sep boolean renderFirstName concode_elem_sep boolean multipleSelection concode_elem_sep boolean renderLastName concode_elem_sep boolean renderPhone concode_elem_sep Person[] personsList concode_elem_sep List selectedRows concode_elem_sep String scrollableHeight c... | void function ( boolean arg0 ) { this . renderLastName = arg0 ; } |
4,693 | removes the specified observer from the list of observers . passing null wo n't do anything . concode_field_sep boolean changed concode_elem_sep List<Observer> observers concode_field_sep void deleteObservers concode_elem_sep void addObserver concode_elem_sep boolean hasChanged concode_elem_sep void clearChanged concod... | void function ( Observer arg0 ) { observers . remove ( arg0 ) ; } |
4,694 | sets the value2 value for this formatrulecondition . concode_field_sep java.lang.String value2 concode_elem_sep java.lang.String value1 concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer columnIndex concode_elem_sep org.apache.axis.description.TypeD... | void function ( java . lang . String arg0 ) { this . value2 = arg0 ; } |
4,695 | add a file transfer listener to listen to incoming file transfer requests . concode_field_sep List<FileTransferListener> listeners concode_elem_sep Connection connection concode_elem_sep FileTransferNegotiator fileTransferNegotiator concode_field_sep void fireNewRequest concode_elem_sep void removeFileTransferListener ... | void function ( final FileTransferListener arg0 ) { if ( listeners == null ) { initListeners ( ) ; } synchronized ( this . listeners ) { listeners . add ( arg0 ) ; } } |
4,696 | clears the error message . concode_field_sep Control widget concode_elem_sep MedStatus status concode_field_sep int getMessageType concode_elem_sep int getMessageType concode_elem_sep Object getKey concode_elem_sep Control getControl concode_elem_sep String getPrefix concode_elem_sep boolean isWarning concode_elem_sep ... | void function ( ) { setMessage ( null ) ; } |
4,697 | returns true if this route tunnels https through an http proxy . see rfc 2817 , section 5.2 . concode_field_sep Proxy proxy concode_elem_sep Address address concode_elem_sep InetSocketAddress inetSocketAddress concode_field_sep Proxy getProxy concode_elem_sep InetSocketAddress getSocketAddress concode_elem_sep int hash... | boolean function ( ) { return address . sslSocketFactory != null && proxy . type ( ) == Proxy . Type . HTTP ; } |
4,698 | add a short integer 2 bytes to the message . concode_field_sep int len concode_elem_sep int pos concode_elem_sep Log log concode_elem_sep StringManager sm concode_elem_sep byte buf[] concode_field_sep int peekInt concode_elem_sep void validatePos concode_elem_sep void appendByteChunk concode_elem_sep void appendString ... | void function ( int arg0 ) { buf [ pos ++ ] = ( byte ) ( ( arg0 >>> 8 ) & 0xFF ) ; buf [ pos ++ ] = ( byte ) ( arg0 & 0xFF ) ; } |
4,699 | unsupported . concode_field_sep BufferedReader reader concode_elem_sep String segment concode_elem_sep String DASH_COMMENT concode_elem_sep String SLASH_COMMENT concode_elem_sep String SEMI concode_field_sep Object next concode_elem_sep void closeReader concode_elem_sep boolean hasNext concode_elem_sep int nextInt conc... | void function ( Object arg0 ) { throw new UnsupportedOperationException ( ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.