idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
12,800 | info 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 setL... | void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . INFO >= LOGLEVEL ) Log . i ( arg0 , arg1 , arg2 ) ; } |
12,801 | java serialization api method that provides a replacement to serialize , as the fields contained in this instance are not serializable themselves . concode_field_sep long serialVersionUID concode_elem_sep SerializedMessage<T> message concode_elem_sep DateTime timestamp concode_field_sep Class getPayloadType concode_ele... | Object function ( ) { return new GenericEventMessage < T > ( getIdentifier ( ) , getTimestamp ( ) , getPayload ( ) , getMetaData ( ) ) ; } |
12,802 | sets the company id of this feed . concode_field_sep Feed _feed concode_field_sep java.lang.String getTwitterScreenName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_... | void function ( long arg0 ) { _feed . setCompanyId ( arg0 ) ; } |
12,803 | the amazon s3 bucket that contains the artifact . concode_field_sep String type concode_elem_sep S3ArtifactLocation s3Location concode_field_sep S3ArtifactLocation getS3Location concode_elem_sep String getType concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ArtifactLocation clone concode_... | ArtifactLocation function ( S3ArtifactLocation arg0 ) { setS3Location ( arg0 ) ; return this ; } |
12,804 | returns the provider specific condition id . concode_field_sep Calendar lastUpdate concode_elem_sep String icon concode_elem_sep String commonId concode_elem_sep String text concode_elem_sep Calendar observationTime concode_elem_sep String id concode_field_sep void setIcon concode_elem_sep String getText concode_elem_s... | String function ( ) { return id ; } |
12,805 | checks the authentication status of the web interface concode_field_sep int asynctimeout concode_elem_sep Pattern CHALLENGE_PATTERN concode_elem_sep int timeout concode_elem_sep int asyncmaxconns concode_elem_sep String sid concode_elem_sep String protocol concode_elem_sep String password concode_elem_sep int port conc... | boolean function ( ) { return ! ( sid == null ) ; } |
12,806 | get the edges of the route . concode_field_sep RoutingGraph routingGraph concode_elem_sep List<Node> nodes concode_elem_sep boolean changeOneway concode_elem_sep List<OsmEdge> path concode_elem_sep Logger logger concode_elem_sep boolean changeNodes concode_field_sep void setNodesChanged concode_elem_sep void setOnewayC... | List < OsmEdge > function ( ) { if ( this . changeNodes || path == null ) { path = this . routingGraph . applyAlgorithm ( nodes , Algorithm . ROUTING_ALG_DIJKSTRA ) ; this . changeNodes = false ; this . changeOneway = false ; } return path ; } |
12,807 | returns current vertical real screen in pixels concode_field_sep float mRealScreenWidthMeters concode_elem_sep int mHorizontalRealScreenPixels concode_elem_sep int mVerticalRealScreenPixels concode_elem_sep VrAppSettings mAppSettings concode_elem_sep boolean mCustomFBOSize concode_elem_sep float mRealScreenHeightMeters... | int function ( ) { return mVerticalRealScreenPixels ; } |
12,808 | test to see if this datastore is available , if it has all the appropriate libraries to construct a datastore . this datastore just returns true for now . this method is used for gui apps , so as to not advertise data store capabilities they do n't actually have . concode_field_sep Param FILE concode_elem_sep Param NAM... | boolean function ( ) { return true ; } |
12,809 | adds an argument to the ffmpeg executable call . concode_field_sep ProcessKiller ffmpegKiller concode_elem_sep OutputStream outputStream concode_elem_sep InputStream inputStream concode_elem_sep InputStream errorStream concode_elem_sep String ffmpegExecutablePath concode_elem_sep List<String> args concode_elem_sep Proc... | void function ( String arg0 ) { args . add ( arg0 ) ; } |
12,810 | return true if the specified value is a legal public value rather than a dangerous degenerate or confined subgroup value . tor-spec 5.2 before computing g ^ xy , both client and server must verify that the received g ^ x or g ^ y value is not degenerate ; that is , it must be strictly greater than 1 and strictly less t... | boolean function ( BigInteger arg0 ) { if ( arg0 . signum ( ) < 1 || arg0 . equals ( BigInteger . ONE ) ) return false ; if ( arg0 . compareTo ( P1024 . subtract ( BigInteger . ONE ) ) >= 0 ) return false ; return true ; } |
12,811 | gets the value of the nomegrupo property . concode_field_sep String nomeGrupo concode_field_sep void setNomeGrupo | String function ( ) { return nomeGrupo ; } |
12,812 | generates a list of all powers of two that fit within a int concode_field_sep PlaceHolder placeHolder concode_field_sep void setUpClass concode_elem_sep void testCeilToInt concode_elem_sep void setUp concode_elem_sep void tearDownClass concode_elem_sep void testSizeOfPower concode_elem_sep void tearDown concode_elem_se... | List < Integer > function ( ) { List < Integer > loc0 = new ArrayList < > ( ) ; int loc1 = 1 ; while ( loc1 > 0 ) { loc0 . add ( loc1 ) ; loc1 <<= 1 ; } System . out . println ( loc0 . get ( loc0 . size ( ) - 1 ) ) ; return loc0 ; } |
12,813 | gets the cglib-wrapped seam component from a reference . concode_field_sep PlaceHolder placeHolder concode_field_sep String getSeamComponentName concode_elem_sep Method findMethod concode_elem_sep Object getSeamComponentByName concode_elem_sep Object callSeamComponentByRef concode_elem_sep Object callSeamComponentByRef... | Object function ( Object arg0 ) { String loc0 = getSeamComponentName ( arg0 ) ; if ( loc0 == null ) { return null ; } return getSeamComponentByName ( loc0 ) ; } |
12,814 | checks the operation of equals methods . concode_field_sep TenantId sameAsTenantId1 concode_elem_sep TenantId tenantId1 concode_elem_sep TenantId tenantId2 concode_field_sep void testImmutability concode_elem_sep void testConstruction | void function ( ) { new EqualsTester ( ) . addEqualityGroup ( tenantId1 , sameAsTenantId1 ) . addEqualityGroup ( tenantId2 ) . testEquals ( ) ; } |
12,815 | log a debug exception concode_field_sep Listeners<String,Event> messageListeners concode_elem_sep boolean enableLogTraceback concode_elem_sep Listeners<Exception,Event> exceptionListeners concode_elem_sep org.slf4j.Logger log concode_elem_sep boolean enableStackTraces concode_field_sep void init concode_elem_sep boolea... | void function ( String arg0 , Exception arg1 ) { doLog ( Level . DEBUG , arg0 , arg1 ) ; } |
12,816 | sets the symbol table used by the distance feature function concode_field_sep SingleFeatureValue featureValue concode_elem_sep AddressFunction addressFunction2 concode_elem_sep SymbolTableHandler tableHandler concode_elem_sep AddressFunction addressFunction1 concode_elem_sep String normalizationString concode_elem_sep ... | void function ( SymbolTable arg0 ) { this . table = arg0 ; } |
12,817 | returns the chart that contains the dataset and plot to use for this axis . the plot is used to figure out how to render the dataset when adding to the multiple axis chart . concode_field_sep int PSEUDO_SERIAL_VERSION_UID concode_elem_sep byte position concode_elem_sep AxisPositionEnum positionValue concode_elem_sep JR... | JRChart function ( ) { return chart ; } |
12,818 | aggregate metrics . concode_field_sep int filesCnt concode_elem_sep long serialVersionUID concode_elem_sep int filesOpenedForWrt concode_elem_sep long blocksWrtRmt concode_elem_sep long totalSpaceSz concode_elem_sep int filesOpenedForRd concode_elem_sep long usedSpaceSz concode_elem_sep long bytesRd concode_elem_sep lo... | VisorIgfsMetrics function ( int arg0 ) { if ( arg0 > 0 ) { foldersCnt /= arg0 ; filesCnt /= arg0 ; } return this ; } |
12,819 | gets the value of the reportjobid property . concode_field_sep Long reportJobId concode_field_sep void setReportJobId | Long function ( ) { return reportJobId ; } |
12,820 | returns the timeout in milliseconds used when retrieving a org.apache.ogt.http.conn.managedclientconnection from the org.apache.ogt.http.conn.clientconnectionmanager . concode_field_sep int DEFAULT_MAX_TOTAL_CONNECTIONS concode_elem_sep ConnPerRoute DEFAULT_CONN_PER_ROUTE concode_field_sep void setMaxTotalConnections c... | long function ( final HttpParams arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return arg0 . getLongParameter ( TIMEOUT , 0 ) ; } |
12,821 | sets the value of the strategy property . concode_field_sep PlanCalcScoreType planCalcScore concode_elem_sep ControlerType controler concode_elem_sep StrategyType strategy concode_elem_sep InputPlansFileType hotStartPlansFile concode_elem_sep FileType matsimConfig concode_elem_sep InputPlansFileType inputPlansFile conc... | void function ( StrategyType arg0 ) { this . strategy = arg0 ; } |
12,822 | throws an illegalargumentexception when called . concode_field_sep boolean closed concode_field_sep Object next concode_elem_sep XMLEvent nextTag concode_elem_sep String getElementText concode_elem_sep boolean isClosed concode_elem_sep void close concode_elem_sep void remove concode_elem_sep void checkIfClosed | Object function ( String arg0 ) { throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; } |
12,823 | closes and removes cursor . concode_field_sep QueryCursor<List<?>> cursor concode_elem_sep ScheduledExecutorService SCHEDULER concode_elem_sep Ignite ignite concode_elem_sep boolean loc concode_elem_sep List<String> types concode_elem_sep List<String> tbls concode_elem_sep long lastAccessTime concode_elem_sep int fetch... | void function ( UUID arg0 ) { Cursor loc0 = CURSORS . remove ( arg0 ) ; if ( loc0 != null ) loc0 . cursor . close ( ) ; } |
12,824 | get the current version from #config_store_metadata_filename file at #storemetadatafilepath concode_field_sep String CONFIG_STORE_METADATA_FILENAME concode_elem_sep String CONFIG_STORE_METADATA_CURRENT_VERSION_KEY concode_elem_sep FileSystem fs concode_elem_sep Path storeMetadataFilePath concode_field_sep boolean isSto... | String function ( ) { return readMetadata ( ) . getString ( CONFIG_STORE_METADATA_CURRENT_VERSION_KEY ) ; } |
12,825 | transform the data concode_field_sep double maxPixelVal concode_elem_sep double maxRange concode_elem_sep int maxBits concode_elem_sep double minRange concode_field_sep void fit concode_elem_sep void fit concode_elem_sep void revertFeatures concode_elem_sep void revertFeatures concode_elem_sep boolean isFitLabel concod... | void function ( DataSet arg0 ) { this . preProcess ( arg0 ) ; } |
12,826 | gets data source . concode_field_sep DataSource dataSrc concode_field_sep void stop concode_elem_sep void start concode_elem_sep void onSessionStart concode_elem_sep void setDataSource concode_elem_sep void onSessionEnd | DataSource function ( ) { return dataSrc ; } |
12,827 | checks whether this rectangle intersects with another rectangle given an update in position to this rectangle concode_field_sep double y1 concode_elem_sep double x1 concode_elem_sep double y2 concode_elem_sep double x2 concode_field_sep double get_width concode_elem_sep boolean contains concode_elem_sep boolean contain... | boolean function ( Rectangle arg0 , double arg1 , double arg2 ) { return ! ( ( arg0 . x1 > this . x2 + arg1 ) || ( arg0 . x2 < this . x1 + arg1 ) || ( arg0 . y1 > this . y2 + arg2 ) || ( arg0 . y2 < this . y1 + arg2 ) ) ; } |
12,828 | parse button text into level number concode_field_sep Button level5 concode_elem_sep Button level4 concode_elem_sep DataIO data concode_elem_sep Button level7 concode_elem_sep VBox vBox concode_elem_sep Button level6 concode_elem_sep ArrayList<Button> buttons concode_elem_sep Button level9 concode_elem_sep Button level... | int function ( String arg0 ) { String loc0 = arg0 . substring ( arg0 . length ( ) - 1 ) ; if ( loc0 . equals ( "srini_string" ) ) { return 10 ; } return Integer . parseInt ( loc0 ) ; } |
12,829 | adds an image to the animation with the specified duration time to display the image . concode_field_sep long totalDuration concode_elem_sep long tempTime concode_elem_sep Image image concode_elem_sep ArrayList frames concode_elem_sep int currFrameIndex concode_elem_sep long animTime concode_elem_sep long endTime conco... | void function ( Image arg0 , long arg1 ) { totalDuration += arg1 ; frames . add ( new AnimFrame ( arg0 , totalDuration ) ) ; } |
12,830 | clears the value of the field . concode_field_sep GeneratedMessage.BuilderParent parent concode_elem_sep boolean isClean concode_elem_sep BType builder concode_elem_sep MType message concode_field_sep BType getBuilder concode_elem_sep void onChanged concode_elem_sep void markDirty concode_elem_sep MType build concode_e... | SingleFieldBuilder < MType , BType , IType > function ( ) { message = ( MType ) ( message != null ? message . getDefaultInstanceForType ( ) : builder . getDefaultInstanceForType ( ) ) ; if ( builder != null ) { builder . dispose ( ) ; builder = null ; } onChanged ( ) ; return this ; } |
12,831 | returns the number of settings that have values assigned . concode_field_sep int FLAG_CLEAR_PREVIOUSLY_PERSISTED_SETTINGS concode_elem_sep int DOWNLOAD_BANDWIDTH concode_elem_sep int set concode_elem_sep int DEFAULT_INITIAL_WINDOW_SIZE concode_elem_sep int UPLOAD_BANDWIDTH concode_elem_sep int CLIENT_CERTIFICATE_VECTOR... | int function ( ) { return Integer . bitCount ( set ) ; } |
12,832 | gets the value of the subtotals property . concode_field_sep NonEipSubTotals subTotals concode_elem_sep Items items concode_field_sep Items getItems concode_elem_sep void setItems concode_elem_sep void setSubTotals | NonEipSubTotals function ( ) { return subTotals ; } |
12,833 | store the item - used when a new item is created concode_field_sep boolean reinstated concode_elem_sep Item item concode_elem_sep List<DCValue> constant concode_elem_sep boolean newItem concode_elem_sep boolean withdrawn concode_elem_sep boolean empty concode_elem_sep Collection oldOwningCollection concode_elem_sep boo... | void function ( Item arg0 ) { item = arg0 ; } |
12,834 | sets the value of the lbracket property . concode_field_sep String cmpCode concode_elem_sep int parentIndex concode_elem_sep String valueTo concode_elem_sep TypeCtLeftBracketVocab lBracket concode_elem_sep String reserved concode_elem_sep int index concode_elem_sep TypeComResponsibility vocab concode_elem_sep TypeCtRig... | void function ( TypeCtLeftBracketVocab arg0 ) { this . lBracket = arg0 ; } |
12,835 | returns the rotation of the screen from its `` natural '' orientation . the returned value may be surface #rotation_0 surface.rotation _ 0 no rotation , surface #rotation_90 surface.rotation _ 90 , surface #rotation_180 surface.rotation _ 180 , or surface #rotation_270 surface.rotation _ 270 . for example , if a device... | int function ( ) { return getOrientation ( ) ; } |
12,836 | gets the value of the secgrpdetails 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 secgrpdetails property . for example , to add a new ... | List < Rules > function ( ) { if ( secGrpDetails == null ) { secGrpDetails = new ArrayList < Rules > ( ) ; } return this . secGrpDetails ; } |
12,837 | get slave data byte array concode_field_sep byte ACK_OK concode_elem_sep byte SYN concode_elem_sep byte MASTER_MASTER concode_elem_sep byte ACK_FAIL concode_elem_sep ByteBuffer data concode_elem_sep byte MASTER_SLAVE concode_elem_sep byte BROADCAST concode_field_sep byte getDestination concode_elem_sep ByteBuffer getBu... | byte [ ] function ( ) { int loc0 = getSlaveDataLen ( ) ; if ( loc0 == - 1 ) return new byte [ 0 ] ; byte [ ] loc1 = new byte [ loc0 ] ; System . arraycopy ( data . array ( ) , getDataLen ( ) + 8 , loc1 , 0 , loc0 ) ; return loc1 ; } |
12,838 | method to retrieve a single itemtype with a matching itemid concode_field_sep String INITIAL_PRICE concode_elem_sep String IMAGE concode_elem_sep String BID_COUNT concode_elem_sep String CURRENCY concode_elem_sep ItemType[] itemList concode_elem_sep Log log concode_elem_sep String SELLER concode_elem_sep String DATE_FO... | ItemType function ( String arg0 ) { ItemType [ ] loc0 = getSearchResults ( ) ; ItemType loc1 ; for ( int loc2 = 0 ; loc2 < loc0 . length ; loc2 ++ ) { loc1 = loc0 [ loc2 ] ; if ( arg0 . equals ( loc1 . getItemID ( ) ) ) { return loc1 ; } } return null ; } |
12,839 | returns the json representation of these docs . a category may be passed to have impact on the content enrichers concode_field_sep JsonFactory factory concode_elem_sep ContentEnricherService rcs concode_elem_sep CoreSession session concode_elem_sep String[] NO_SCHEMA concode_elem_sep String[] ALL_SCHEMAS concode_field_... | String function ( List < DocumentModel > arg0 , String arg1 ) { ByteArrayOutputStream loc0 = new ByteArrayOutputStream ( ) ; JsonGenerator loc1 = getJsonGenerator ( loc0 ) ; JsonDocumentListWriter . writeDocuments ( loc1 , arg0 , NO_SCHEMA , getFakeHeaders ( arg1 ) , null ) ; loc1 . flush ( ) ; return loc0 . toString (... |
12,840 | retrieves a list of the sessions in this container that are visible to the specified session , given the access rights of the session user . concode_field_sep Session sysLobSession concode_elem_sep long sessionIdCount concode_elem_sep LongKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void ... | Session [ ] function ( Session arg0 ) { return arg0 . isAdmin ( ) ? getAllSessions ( ) : new Session [ ] { arg0 } ; } |
12,841 | sets the value of the performacesystematiccheck property . concode_field_sep Boolean performaceSystematicCheck concode_elem_sep EnabledOTVListType enabledOTVList concode_elem_sep Boolean performDeviceValidation concode_elem_sep long serialVersionUID concode_field_sep EnabledOTVListType getEnabledOTVList concode_elem_se... | void function ( Boolean arg0 ) { this . performaceSystematicCheck = arg0 ; } |
12,842 | prepares the associated modbustransport of this tcpmasterconnection for use . concode_field_sep InetAddress m_Address concode_elem_sep int m_Timeout concode_elem_sep int m_Port concode_elem_sep Socket m_Socket concode_elem_sep boolean m_Connected concode_elem_sep Logger logger concode_elem_sep ModbusTCPTransport m_Modb... | void function ( ) { if ( m_ModbusTransport == null ) { m_ModbusTransport = new ModbusTCPTransport ( m_Socket ) ; } else { m_ModbusTransport . setSocket ( m_Socket ) ; } } |
12,843 | allocate an array of large , constant size concode_field_sep int alloc3Limit concode_elem_sep int a concode_elem_sep int b concode_elem_sep int alloc4Limit concode_elem_sep int assertionSpace concode_elem_sep int alloc1Limit concode_elem_sep int alloc2Limit concode_field_sep int trivial concode_elem_sep int[] alloc4 co... | int [ ] function ( ) { return new int [ 100000 ] ; } |
12,844 | returns the claim retriever class name concode_field_sep Log log concode_field_sep OAuthServerConfiguration getOAuthServerConfiguration concode_elem_sep String getAccessTokenValidator concode_elem_sep String getHostName concode_elem_sep String getUserInfoResponseBuilder concode_elem_sep String getLoginPageURL concode_e... | String function ( ) { return getOAuthServerConfiguration ( ) . getOpenIDConnectUserInfoEndpointClaimRetriever ( ) ; } |
12,845 | gets the current impact . concode_field_sep Random random_ concode_elem_sep float DefaultImpact concode_elem_sep float impact_ concode_field_sep void setImpact concode_elem_sep void reset concode_elem_sep float getFactor | float function ( ) { return impact_ ; } |
12,846 | forcibly closes the space and frees all system resources . this method should be called with caution as it may result to the other-party process crash . it is intended to call when there was an io error during handshake and other party has not yet attached to the space . concode_field_sep boolean DEBUG concode_elem_sep... | void function ( ) { close0 ( true ) ; } |
12,847 | gets the value of the return property . concode_field_sep User _return concode_field_sep void setReturn | User function ( ) { return _return ; } |
12,848 | the file after it has been compressed concode_field_sep String gpsDateStamp concode_elem_sep String gpsLatitudeRef concode_elem_sep String gpsLongitude concode_elem_sep String gpsLatitude concode_elem_sep String whiteBalance concode_elem_sep String orientation concode_elem_sep String model concode_elem_sep String focal... | void function ( String arg0 ) { this . outFile = new ExifInterface ( arg0 ) ; } |
12,849 | loop this sound effect at a given volume and pitch concode_field_sep Audio sound concode_field_sep void play concode_elem_sep void play concode_elem_sep void stop concode_elem_sep void playAt concode_elem_sep void playAt concode_elem_sep boolean playing | void function ( float arg0 , float arg1 ) { sound . playAsSoundEffect ( arg0 , arg1 * SoundStore . get ( ) . getSoundVolume ( ) , true ) ; } |
12,850 | puts the last refresh date into a bundle . concode_field_sep String TOKEN_SOURCE_KEY concode_elem_sep long INVALID_BUNDLE_MILLISECONDS concode_elem_sep String TOKEN_KEY concode_elem_sep String PERMISSIONS_KEY concode_elem_sep String EXPIRATION_DATE_KEY concode_elem_sep String DECLINED_PERMISSIONS_KEY concode_elem_sep S... | void function ( Bundle arg0 , long arg1 ) { Validate . notNull ( arg0 , "srini_string" ) ; arg0 . putLong ( LAST_REFRESH_DATE_KEY , arg1 ) ; } |
12,851 | questions 1.1 . a to 1.1 . f concode_field_sep int myNum concode_elem_sep double MY_CONST concode_field_sep int hashCodeB concode_elem_sep int hashCodeA concode_elem_sep String isValidHashA concode_elem_sep void main concode_elem_sep String isValidHashC concode_elem_sep String isValidHashB concode_elem_sep int hashCode... | String function ( ) { return "srini_string" ; } |
12,852 | performs a dynamic query on the database and returns a range of the matching rows . 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.l... | java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 ) { return _shoppingItemPriceLocalService . arg0 ( arg0 , arg1 , arg2 ) ; } |
12,853 | the method initializes the object . concode_field_sep ValidateService validateService concode_elem_sep TaskGroupModel taskGroupModel concode_elem_sep User user concode_elem_sep UserService userService concode_field_sep void addUser concode_elem_sep User getUser concode_elem_sep void setUser concode_elem_sep String chec... | void function ( ) { user = new User ( ) ; } |
12,854 | sets the size of this attachment . concode_field_sep Attachment _attachment concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_el... | void function ( long arg0 ) { _attachment . setSize ( arg0 ) ; } |
12,855 | sets the text of this bar . concode_field_sep Bar _bar concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep Bar getWrappedBar concode_elem_sep boolean isEscapedMo... | void function ( java . lang . String arg0 ) { _bar . setText ( arg0 ) ; } |
12,856 | sets the payload of this message to be the specified byte array . concode_field_sep boolean retained concode_elem_sep boolean dup concode_elem_sep byte[] payload concode_elem_sep int qos concode_elem_sep boolean mutable concode_field_sep void validateQos concode_elem_sep byte[] getPayload concode_elem_sep void clearPay... | void function ( byte [ ] arg0 ) { checkMutable ( ) ; if ( arg0 == null ) { throw new NullPointerException ( ) ; } this . payload = arg0 ; } |
12,857 | gets the component id of the commandbutton , in the map ui , corresponding to this time zone . concode_field_sep Polygon mapPolygon concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep boolean isRelevantComponentId concode_elem_sep String getId concode_elem_sep Polygon getMapPolygon | String function ( ) { return mapCommandButtonId ; } |
12,858 | returns the next thread in the queue . concode_field_sep LinkedList<BasicPoolEntry> freeEntries concode_elem_sep HttpRoute route concode_elem_sep int maxEntries concode_elem_sep Queue<WaitingThread> waitingThreads concode_elem_sep int numEntries concode_elem_sep ConnPerRoute connPerRoute concode_elem_sep HttpClientAndr... | WaitingThread function ( ) { return this . waitingThreads . peek ( ) ; } |
12,859 | set methods concode_field_sep float roll concode_elem_sep float pitch concode_elem_sep float yaw concode_field_sep PLRotation PLRotationMake concode_elem_sep PLRotation PLRotationMake concode_elem_sep PLRotation PLRotationMake concode_elem_sep boolean equals concode_elem_sep boolean isResetted concode_elem_sep PLRotati... | PLRotation function ( PLRotation arg0 ) { pitch = arg0 . pitch ; yaw = arg0 . yaw ; roll = arg0 . roll ; return this ; } |
12,860 | sets the filename value for this wsprocessfileusingtransformerasbackgroundjob . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String fileName concode_elem_sep org.talend.mdm.webservice.WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions[] wsOutputDecisionTable conco... | void function ( java . lang . String arg0 ) { this . fileName = arg0 ; } |
12,861 | gets the addressbookaddress value for this vendoraddressbook . concode_field_sep java.lang.String internalId concode_elem_sep java.lang.Boolean defaultBilling concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_ele... | com . netsuite . webservices . platform . common_2014_2 . Address function ( ) { return addressbookAddress ; } |
12,862 | gets the value of the enrollmentflags property . concode_field_sep String commonName concode_elem_sep PrivateKeyAttributes privateKeyAttributes concode_elem_sep Long generalFlags concode_elem_sep CertificateValidity certificateValidity concode_elem_sep SupersededPolicies supersededPolicies concode_elem_sep long policyS... | Long function ( ) { return enrollmentFlags ; } |
12,863 | returns a new or existing pool for the specified type , stored in a class to pool map . the max size of the pool usedis 100 . concode_field_sep ObjectMap<Class,Pool> typePools concode_field_sep T obtain concode_elem_sep void set concode_elem_sep void freeAll concode_elem_sep void freeAll concode_elem_sep void free | Pool < T > function ( Class < T > arg0 ) { return get ( arg0 , 100 ) ; } |
12,864 | tests parsing value from string representation . concode_field_sep String string concode_field_sep Collection<Object[]> data | void function ( ) { DataTypeBinder . parseUri ( string ) ; } |
12,865 | get the total number of backups : the backup count plus the asynchronous backup count . concode_field_sep int DEFAULT_ASYNC_BACKUP_COUNT concode_elem_sep List<ItemListenerConfig> listenerConfigs concode_elem_sep QueueConfigReadOnly readOnly concode_elem_sep int backupCount concode_elem_sep int maxSize concode_elem_sep ... | int function ( ) { return backupCount + asyncBackupCount ; } |
12,866 | gets the import transformations . concode_field_sep String extension concode_elem_sep List<Transformation> imports concode_elem_sep List<Transformation> exports concode_elem_sep String type concode_field_sep String getFileExtension concode_elem_sep String getContentType concode_elem_sep List<Transformation> getExportTr... | List < Transformation > function ( ) { return this . imports ; } |
12,867 | uses `` backtracking '' through recursion to determine if the `` target '' a positive integer can be computed as the result of summing any combination of integers in the arrayofintegers . note : make no assumptions about what is included in the array of integer , except that each integer in the array may be used only o... | boolean function ( int arg0 , int [ ] arg1 , int arg2 , int arg3 ) { if ( arg3 == arg0 ) { return true ; } if ( arg2 == arg1 . length ) { return false ; } else { return ( summableHelper ( arg0 , arg1 , arg2 + 1 , arg3 + arg1 [ arg2 ] ) || summableHelper ( arg0 , arg1 , arg2 + 1 , arg3 ) ) ; } } |
12,868 | makes a deep clone of the object , using reflection . concode_field_sep Constructor m_noArgConstructor concode_elem_sep SerializeObjectCopyStrategy _serialize concode_elem_sep boolean m_fieldsAccessible concode_elem_sep boolean m_hasNoArgConstructor concode_elem_sep Object[] EMPTY_OBJECT_ARRAY concode_elem_sep boolean ... | Object function ( final Object arg0 , PersistenceBroker arg1 ) { return clone ( arg0 , IdentityMapFactory . getIdentityMap ( ) , new HashMap ( ) ) ; } |
12,869 | the source of the event . concode_field_sep String detailType concode_elem_sep java.util.List<String> resources concode_elem_sep java.util.Date time concode_elem_sep String source concode_elem_sep String detail concode_field_sep void setSource concode_elem_sep PutEventsRequestEntry withDetail concode_elem_sep PutEvents... | PutEventsRequestEntry function ( String arg0 ) { setSource ( arg0 ) ; return this ; } |
12,870 | returns all element types of python dialects that are subclasses of com.jetbrains.python.psi.pyfunction . concode_field_sep TokenSet myParameterTokens concode_elem_sep TokenSet myUnbalancedBracesRecoveryTokens concode_elem_sep TokenSet myExpressionTokens concode_elem_sep TokenSet myNameDefinerTokens concode_elem_sep To... | TokenSet function ( ) { return myFunctionDeclarationTokens ; } |
12,871 | returns the string representation of this priority . concode_field_sep Priority FATAL concode_elem_sep int level concode_elem_sep Priority DEBUG concode_elem_sep Priority WARN concode_elem_sep int syslogEquivalent concode_elem_sep int WARN_INT concode_elem_sep int OFF_INT concode_elem_sep int INFO_INT concode_elem_sep ... | String function ( ) { return levelStr ; } |
12,872 | next transition in linked list of transitions out of a state concode_field_sep lalr_state _to_state concode_elem_sep lalr_transition _next concode_elem_sep symbol _on_symbol concode_field_sep String toString concode_elem_sep symbol on_symbol concode_elem_sep lalr_state to_state | lalr_transition function ( ) { return _next ; } |
12,873 | determine if log level will be logged 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 void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setLogLevel concode_e... | boolean function ( int arg0 ) { return ( arg0 >= LOGLEVEL ) ; } |
12,874 | set whether a node can be moved or not . added by sct for dlm . concode_field_sep String name concode_elem_sep double precedence concode_elem_sep boolean editAllowed concode_elem_sep boolean unremovable concode_elem_sep boolean moveAllowed concode_elem_sep boolean addChildAllowed concode_elem_sep boolean hidden concode... | void function ( boolean arg0 ) { this . moveAllowed = arg0 ; } |
12,875 | set the bytebuf from which to read data . concode_field_sep ByteBuf in concode_elem_sep int bitCount concode_elem_sep long bitBuffer concode_elem_sep int MAX_COUNT_OF_READABLE_BYTES concode_field_sep void refill concode_elem_sep boolean hasReadableBytes concode_elem_sep boolean hasReadableBits concode_elem_sep boolean ... | void function ( ByteBuf arg0 ) { this . in = arg0 ; } |
12,876 | sets the parallelism for the task . concode_field_sep String invokableClassName concode_elem_sep ArrayList<JobEdge> inputs concode_elem_sep String operatorDescription concode_elem_sep CoLocationGroup coLocationGroup concode_elem_sep Configuration configuration concode_elem_sep InputSplitSource<?> inputSplitSource conco... | void function ( int arg0 ) { if ( arg0 < 1 ) { throw new IllegalArgumentException ( "srini_string" ) ; } this . parallelism = arg0 ; } |
12,877 | methods that abstract the set and get of the stack values of user realm . concode_field_sep ThreadLocal<Stack<String>> tChrootStack concode_elem_sep ThreadLocal<Stack<UserRegistry>> tUserRegistryStack concode_elem_sep ThreadLocal<Stack<UserRealm>> tUserRealmStack concode_elem_sep ThreadLocal<Stack<Integer>> tTenantIdSt... | String function ( ) { Stack < String > loc0 = tUserIdStack . get ( ) ; if ( loc0 == null ) { tUserIdStack . remove ( ) ; loc0 = tUserIdStack . get ( ) ; } if ( loc0 . isEmpty ( ) ) { return null ; } return loc0 . peek ( ) ; } |
12,878 | changes the seek pointer to a new location relative to the beginning of the stream . concode_field_sep int read concode_elem_sep int offset concode_elem_sep byte[] bigbuffer concode_field_sep long getPosition concode_elem_sep void closeInput concode_elem_sep int readSomeBytes concode_elem_sep int available concode_elem... | void function ( long arg0 ) { if ( bigbuffer != null ) { arg0 += offset ; read = ( int ) arg0 ; if ( read < offset || read > bigbuffer . length ) throw new IllegalArgumentException ( ) ; } } |
12,879 | convert a byte array into a printable format containing a string of hexadecimal digit characters two per byte . concode_field_sep StringManager sm concode_elem_sep byte[] HEX concode_elem_sep int[] DEC concode_field_sep int convert2Int concode_elem_sep int getDec concode_elem_sep char convertDigit | String function ( byte arg0 [ ] ) { StringBuffer loc0 = new StringBuffer ( arg0 . length * 2 ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 . append ( convertDigit ( ( int ) ( arg0 [ loc1 ] >> 4 ) ) ) ; loc0 . append ( convertDigit ( ( int ) ( arg0 [ loc1 ] & 0x0f ) ) ) ; } return ( loc0 . toString ( ... |
12,880 | this method stops the tomcat server . concode_field_sep String contentDir concode_elem_sep Host host concode_elem_sep String TOMCAT_CD_PATH concode_elem_sep String path concode_elem_sep String indexDir concode_elem_sep String logDir concode_elem_sep String INDEXDIR_CD_PATH concode_elem_sep String configDir concode_elem... | void function ( ) { embedded . stop ( ) ; } |
12,881 | return the value of the action property . concode_field_sep String branchContractedIcon concode_elem_sep boolean expanded concode_elem_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep String action concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_se... | String function ( ) { return action ; } |
12,882 | getinstance purpose . completes the singleton pattern of this factory class . concode_field_sep Map namespaceTranslators concode_elem_sep Map namespaceTranslatorInstances concode_elem_sep NameSpaceTranslatorFactory instance concode_field_sep void registerNameSpaceTranslator concode_elem_sep void addNameSpaceTranslator ... | NameSpaceTranslatorFactory function ( ) { return instance ; } |
12,883 | test allow and deny rules for the provided user . concode_field_sep Host host concode_elem_sep org.apache.juli.logging.Log log concode_elem_sep StringManager sm concode_elem_sep String contextClass concode_elem_sep String userClass concode_elem_sep String home concode_elem_sep Pattern deny concode_elem_sep String confi... | boolean function ( String arg0 ) { if ( deny != null && deny . matcher ( arg0 ) . matches ( ) ) { return false ; } if ( allow != null ) { if ( allow . matcher ( arg0 ) . matches ( ) ) { return true ; } else { return false ; } } return true ; } |
12,884 | returns the graph associated with this match . concode_field_sep IndexedWord findCurrent concode_elem_sep IndexedWord node concode_elem_sep WeakHashMap<Integer,List<IndexedWord>> topologicalSortCache concode_elem_sep Iterator<IndexedWord> findIterator concode_elem_sep Map<String,IndexedWord> namesToNodes concode_elem_s... | SemanticGraph function ( ) { return sg ; } |
12,885 | register the supplied beandefinitionholder bean with the supplied beandefinitionregistry registry . subclasses can override this method to control whether or not the supplied beandefinitionholder bean is actually even registered , or toregister even more beans . the default implementation registers the supplied beandef... | void function ( BeanDefinitionHolder arg0 , BeanDefinitionRegistry arg1 ) { BeanDefinitionReaderUtils . registerBeanDefinition ( arg0 , arg1 ) ; } |
12,886 | return the secret key registered with the given application . this key is used to authenticate the executors before they can fetch shuffle files written by this application from the external shuffle service . if the specified application is not registered , return null . concode_field_sep ConcurrentHashMap<String,Strin... | String function ( String arg0 ) { return shuffleSecretMap . get ( arg0 ) ; } |
12,887 | converts given readablearray to an array of float . writes result to the array passed in @param into . this method will write to the output array up to the number of items from the input array . if the input array is longer than output the remaining part of the input will not be converted . concode_field_sep PlaceHolde... | int function ( ReadableArray arg0 , float [ ] arg1 ) { int loc0 = arg0 . size ( ) > arg1 . loc0 ? arg1 . loc0 : arg0 . size ( ) ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { arg1 [ loc1 ] = ( float ) arg0 . getDouble ( loc1 ) ; } return arg0 . size ( ) ; } |
12,888 | sets custom user data . concode_field_sep Object userData concode_elem_sep short[] tmp concode_elem_sep Shape shape concode_elem_sep Filter filter concode_elem_sep Body body concode_elem_sep long addr concode_field_sep float getRestitution concode_elem_sep float jniGetRestitution concode_elem_sep Shape getShape concode... | void function ( Object arg0 ) { this . userData = arg0 ; } |
12,889 | add a vector to this vector concode_field_sep double[] array concode_elem_sep long serialVersionUID concode_elem_sep double x concode_elem_sep double y concode_elem_sep double z concode_field_sep void sub concode_elem_sep void sub concode_elem_sep PVector sub concode_elem_sep PVector sub concode_elem_sep void set conco... | void function ( PVector arg0 ) { x += arg0 . x ; y += arg0 . y ; z += arg0 . z ; } |
12,890 | default implementation just does ` instanceof targetclass ' . subtypes that are wrappers should override . concode_field_sep Type type concode_elem_sep Exp exp concode_elem_sep Calc[] calcs concode_field_sep boolean butDepends concode_elem_sep String getName concode_elem_sep boolean dependsOn concode_elem_sep T unwrap ... | boolean function ( Class < ? > arg0 ) { return arg0 . isInstance ( this ) ; } |
12,891 | gets the request results as binary . the invocation is made asynchronously . concode_field_sep String UTF_8 concode_elem_sep HttpRequest httpRequest concode_field_sep HttpResponse<Document> asHtml concode_elem_sep HttpResponse<JsonNode> asJson concode_elem_sep Future<HttpResponse<JsonNode>> asJsonAsync concode_elem_sep... | Future < HttpResponse < InputStream >> function ( Callback < InputStream > arg0 ) { return HttpClientHelper . requestAsync ( httpRequest , InputStream . class , arg0 ) ; } |
12,892 | get date in clarion format concode_field_sep Long localizedEpoch concode_field_sep int epochToClarionDate concode_elem_sep int date concode_elem_sep int month concode_elem_sep int year concode_elem_sep int clock concode_elem_sep int day concode_elem_sep String age concode_elem_sep long clarionDateToEpoch concode_elem_s... | int function ( ) { return epochToClarionDate ( System . currentTimeMillis ( ) ) ; } |
12,893 | 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... | void function ( boolean arg0 ) { this . handleDirSep = arg0 ; } |
12,894 | replace all uri template variables with the values from a given map . the given map keys represent variable names ; the corresponding values represent variable values . the order of variables is not significant . concode_field_sep String fragment concode_elem_sep String scheme concode_elem_sep Map<String,?> uriVariable... | UriComponents function ( Map < String , ? > arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; return expandInternal ( new MapTemplateVariables ( arg0 ) ) ; } |
12,895 | 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 testRemoveSeries concode_elem_sep void testEquals | void function ( ) { VectorSeries loc0 = new VectorSeries ( "srini_string" ) ; loc0 . add ( 1.0 , 1.1 , 1.2 , 1.3 ) ; VectorSeriesCollection loc1 = new VectorSeriesCollection ( ) ; loc1 . addSeries ( loc0 ) ; VectorSeriesCollection loc2 = ( VectorSeriesCollection ) TestUtilities . serialised ( loc1 ) ; assertEquals ( lo... |
12,896 | the name of the severity level that corresponds to the severity level code . concode_field_sep String code concode_elem_sep String name concode_field_sep void setName concode_elem_sep String getName concode_elem_sep SeverityLevel withCode concode_elem_sep int hashCode concode_elem_sep void setCode concode_elem_sep bool... | SeverityLevel function ( String arg0 ) { setName ( arg0 ) ; return this ; } |
12,897 | returns the url for the connection using the specified databasename . concode_field_sep String DEFAULT_DATABASE_NAME concode_elem_sep String driverClass concode_elem_sep EmbeddedDatabaseConnection override concode_elem_sep EmbeddedDatabaseType type concode_elem_sep String url concode_field_sep String getDriverClassName... | String function ( String arg0 ) { Assert . hasText ( arg0 , "srini_string" ) ; return String . format ( this . url , arg0 ) ; } |
12,898 | sac : implements org.w3c.css.sac.selectorfactory #createnegativeselector simpleselector . concode_field_sep SelectorFactory INSTANCE concode_field_sep CharacterDataSelector createTextNodeSelector concode_elem_sep SimpleSelector createRootNodeSelector concode_elem_sep DescendantSelector createChildSelector concode_elem_... | NegativeSelector function ( SimpleSelector arg0 ) { throw new CSSException ( "srini_string" ) ; } |
12,899 | convenience method to print a message using app start time and current time as yardsticks . concode_field_sep long mStartTime concode_field_sep void DIALOG concode_elem_sep void ERROR concode_elem_sep void TIME concode_elem_sep void TIME concode_elem_sep void DEBUG concode_elem_sep void WARN | void function ( String arg0 ) { TRACE ( 0 , System . currentTimeMillis ( ) , arg0 ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.