idx int64 0 25k | question stringlengths 68 5.61k | target stringlengths 21 500 |
|---|---|---|
700 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep com.amazonaws.internal.ListWithAutoConstructFlag<Attribute> attributes concode_field_sep GetAttributesResult withAttributes concode_elem_sep GetAttributesResult withAttributes concode_elem_sep java.util.List<Attribute>... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getAttributes ( ) != null ) loc0 . append ( "srini_string" + getAttributes ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
701 | sets the totalresultsetsize value for this sharedadunitpage . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize concode... | void function ( java . lang . Integer arg0 ) { this . totalResultSetSize = arg0 ; } |
702 | remove a listener for satel events . concode_field_sep Logger logger concode_elem_sep Set<SatelEventListener> eventListeners concode_field_sep void dispatchEvent concode_elem_sep void addEventListener | void function ( SatelEventListener arg0 ) { this . eventListeners . remove ( arg0 ) ; } |
703 | if it is possible to collect all clusterwide available keys for this keyvaluesource implementation then this method returns true . if true is returned , a call to #getallkeys must return all available keysto execute a preselection of interesting partitions / nodes based on returns keys . if this functionality is not av... | boolean function ( ) { return false ; } |
704 | clear resources . concode_field_sep FuelLevelCommand command concode_elem_sep InputStream mockIn concode_field_sep void testFullTank concode_elem_sep void testEmptyTank concode_elem_sep void setUp concode_elem_sep void testSomeValue | void function ( ) { command = null ; mockIn = null ; } |
705 | helper for error callbacks that just returns the status.error by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String ... | void function ( JSONObject arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . ERROR , arg0 ) ) ; } |
706 | called to handle cordovaresourceapi.openforread calls for a cdvplugin : / / pluginid / url . should never return null . added in cordova-android@4.0.0 concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName co... | CordovaResourceApi . OpenForReadResult function ( Uri arg0 ) { throw new FileNotFoundException ( "srini_string" + arg0 ) ; } |
707 | check if identity is allowed to drop the specified view in this catalog . concode_field_sep PlaceHolder placeHolder concode_field_sep void checkCanCreateTable concode_elem_sep void checkCanCreateViewWithSelectFromView concode_elem_sep void checkCanRenameColumn concode_elem_sep void checkCanDropTable concode_elem_sep vo... | void function ( ConnectorTransactionHandle arg0 , Identity arg1 , SchemaTableName arg2 ) { denyDropView ( arg2 . toString ( ) ) ; } |
708 | returns the round trip time for this ping in nanoseconds , waiting for the response to arrive if necessary . returns -1 if the response was cancelled . concode_field_sep long sent concode_elem_sep CountDownLatch latch concode_elem_sep long received concode_field_sep void cancel concode_elem_sep void receive concode_ele... | long function ( ) { latch . await ( ) ; return received - sent ; } |
709 | reset any internal state , allowing this builder to be recycled . concode_field_sep StringBuilder mSelection concode_elem_sep HashMap<String,String> mProjectionMap concode_elem_sep ArrayList<String> mSelectionArgs concode_elem_sep String mTable concode_field_sep Cursor query concode_elem_sep Cursor query concode_elem_s... | SelectionBuilder function ( ) { mTable = null ; if ( mProjectionMap != null ) { mProjectionMap . clear ( ) ; } if ( mSelection != null ) { mSelection . setLength ( 0 ) ; } if ( mSelectionArgs != null ) { mSelectionArgs . clear ( ) ; } return this ; } |
710 | returns whether the resource is a framework resource . concode_field_sep ResourceFolder mFolder concode_elem_sep IAbstractFile mFile concode_field_sep ResourceFolder getFolder concode_elem_sep ResourceValue getValue concode_elem_sep FolderConfiguration getConfiguration concode_elem_sep void load concode_elem_sep boolea... | boolean function ( ) { return mFolder . getRepository ( ) . isFrameworkRepository ( ) ; } |
711 | the programming language to use or null if it should not be customized . concode_field_sep String bootVersion concode_elem_sep String javaVersion concode_elem_sep String groupId concode_elem_sep String format concode_elem_sep String description concode_elem_sep String packaging concode_elem_sep String language concode_... | String function ( ) { return this . language ; } |
712 | return true if object is between lower and upper concode_field_sep String[] args concode_elem_sep List<Runnable> initThreadHooks concode_elem_sep boolean testMode concode_elem_sep boolean hard concode_elem_sep Logger log concode_elem_sep List<Runnable> shutdownHooks concode_field_sep void setHardAssert concode_elem_sep... | boolean function ( ClarionObject arg0 , ClarionObject arg1 , ClarionObject arg2 ) { return ( arg0 . compareTo ( arg1 ) >= 0 && arg0 . compareTo ( arg2 ) <= 0 ) ; } |
713 | gets the value of the profilecmpinterfacename property . concode_field_sep List<CmpField> cmpField concode_elem_sep ProfileCmpInterfaceName profileCmpInterfaceName concode_elem_sep Description description concode_elem_sep String id concode_field_sep void setProfileCmpInterfaceName concode_elem_sep void setId concode_el... | ProfileCmpInterfaceName function ( ) { return profileCmpInterfaceName ; } |
714 | are sanity checks enabled ? takes debug mode into account for the result . concode_field_sep int LOG_GENERAL concode_elem_sep OnLogListener logListener concode_elem_sep int LOG_COMMAND concode_elem_sep int LOG_NONE concode_elem_sep int LOG_ALL concode_elem_sep int logTypes concode_elem_sep int LOG_OUTPUT concode_elem_s... | boolean function ( ) { return getDebug ( ) && getSanityChecksEnabled ( ) ; } |
715 | returns the camelcase string that followed the optional getter prefix ` set ' . concode_field_sep String PFX_BOOL_GETTER concode_elem_sep String PFX_GETTER concode_elem_sep int NON_GETTER_SETTER_MODIFIER concode_elem_sep String PFX_SETTER concode_field_sep Method findGetterForName concode_elem_sep boolean isPrefixedMet... | String function ( String arg0 ) { String loc0 ; if ( isPrefixedMethodName ( PFX_SETTER , arg0 ) ) { loc0 = arg0 . substring ( PFX_SETTER . length ( ) ) ; } else { loc0 = StringUtils . capitalize ( arg0 ) ; } return loc0 ; } |
716 | sets the name of this resource code . concode_field_sep ResourceCode _resourceCode concode_field_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep com.liferay.portlet.expando.model.ExpandoBridge g... | void function ( java . lang . String arg0 ) { _resourceCode . setName ( arg0 ) ; } |
717 | get calculated height concode_field_sep Color LINK_COLOR concode_elem_sep float p_maxWidth concode_elem_sep float p_maxHeight concode_elem_sep Point2D.Double p_pageLocation concode_elem_sep float p_width concode_elem_sep String p_FieldAlignmentType concode_elem_sep boolean m_imageNotLoaded concode_elem_sep boolean p_si... | float function ( ) { if ( ! p_sizeCalculated ) p_sizeCalculated = calculateSize ( ) ; return p_height ; } |
718 | retrieves current user concode_field_sep Map<Class<?>,Object> api concode_elem_sep OAuth2Interceptor oauthInterceptor concode_elem_sep Pubnub pubnub concode_elem_sep Retrofit retrofit concode_elem_sep List<MessageListener> messageListeners concode_elem_sep LoggingInterceptor loggingInterceptor concode_elem_sep SdkCallA... | Account function ( ) { return api ( AccountApi . class ) . get ( ) ; } |
719 | test long comments concode_field_sep int sTest1 concode_elem_sep int badStatic concode_elem_sep int sTest2 concode_elem_sep int sTest3 concode_elem_sep int badConstant concode_elem_sep int someMember concode_elem_sep int sNumCreated concode_elem_sep int badMember concode_elem_sep int mNumCreated1 concode_elem_sep int m... | void function ( ) { } |
720 | requests a `` dangerous '' permission for the application at runtime . this is a helper method alternative to cordovainterface.requestpermission that does not require the project to be built with cordova-android 5.0.0 + concode_field_sep String LOG_TAG concode_field_sep boolean hasPermission concode_elem_sep void deliv... | void function ( CordovaPlugin arg0 , int arg1 , String arg2 ) { PermissionHelper . requestPermissions ( arg0 , arg1 , new String [ ] { arg2 } ) ; } |
721 | get the keystore given the url to the keystore concode_field_sep PlaceHolder placeHolder concode_field_sep void addCertificate concode_elem_sep PublicKey getPublicKey concode_elem_sep KeyPair generateKeyPair | KeyStore function ( URL arg0 , char [ ] arg1 ) { if ( arg0 == null ) throw PicketBoxMessages . MESSAGES . invalidNullArgument ( "srini_string" ) ; return getKeyStore ( arg0 . openStream ( ) , arg1 ) ; } |
722 | compare two dates by birthday . this means , the dates are only compared by day and month , and not by year ! concode_field_sep PDTHelper s_aInstance concode_field_sep Month getAsMonth concode_elem_sep int getStartWeekOfMonth concode_elem_sep int getStartWeekOfMonth concode_elem_sep int getStartWeekOfMonth concode_elem... | int function ( @ Nullable final LocalDate arg0 , @ Nullable final LocalDate arg1 ) { if ( EqualsHelper . identityEqual ( arg0 , arg1 ) ) return 0 ; if ( arg0 == null ) return - 1 ; if ( arg1 == null ) return 1 ; int loc0 = arg0 . getMonth ( ) . compareTo ( arg1 . getMonth ( ) ) ; if ( loc0 == 0 ) { loc0 = arg0 . getDay... |
723 | returns a new simpleprocessimage instance . concode_field_sep PlaceHolder placeHolder concode_field_sep DigitalIn createDigitalIn concode_elem_sep DigitalIn createDigitalIn concode_elem_sep DigitalOut createDigitalOut concode_elem_sep DigitalOut createDigitalOut concode_elem_sep Register createRegister concode_elem_sep... | ProcessImageImplementation function ( ) { return new SimpleProcessImage ( ) ; } |
724 | by setting the unregister flag accordingly , information about the thread is not removed from the action . concode_field_sep ThreadLocal<Deque<BasicAction>> _threadList concode_elem_sep ArrayList<ThreadSetup> _threadSetups concode_field_sep void purgeActions concode_elem_sep void purgeActions concode_elem_sep void purg... | BasicAction function ( String arg0 , boolean arg1 ) { Deque < BasicAction > loc0 = _threadList . get ( ) ; if ( loc0 != null ) { BasicAction loc1 = loc0 . pop ( ) ; if ( loc1 != null && arg1 ) { loc1 . removeChildThread ( arg0 ) ; } if ( loc0 . size ( ) == 0 ) { _threadList . set ( null ) ; } return loc1 ; } return nul... |
725 | starts a job , if already existing updates it schedule concode_field_sep Logger log concode_elem_sep SchedulerService schedulerService concode_field_sep ResponseEntity<JobsListedEvent> listJobs concode_elem_sep ResponseEntity<JobStoppedEvent> stopJob concode_elem_sep ResponseEntity<SchedulerStartedEvent> startScheduler... | ResponseEntity < JobStartedEvent > function ( @ PathVariable String arg0 , @ RequestParam ( required = false ) String arg1 ) { log . debug ( "srini_string" + arg0 + "srini_string" + arg1 ) ; JobStartedEvent loc0 = schedulerService . startJob ( new StartJobEvent ( arg0 , arg1 ) ) ; return new ResponseEntity < JobStarted... |
726 | converts the given row and column into a coordinate pair . it is assumed that the row and column indices are in the jtable 's bounds . note : this method is not executed in the event dispatch thread edt . clients are responsible for invoking this method in the edt . concode_field_sep PlaceHolder placeHolder concode_fie... | Point function ( JTable arg0 , int arg1 , int arg2 ) { Rectangle loc0 = loc0 ( arg0 , arg1 , arg2 ) ; return new Point ( loc0 . x + loc0 . width / 2 , loc0 . y + loc0 . height / 2 ) ; } |
727 | returns true if any right at all has been granted to this user object on the database object identified by the dbobject argument . concode_field_sep HsqlHashMap rightsMap concode_elem_sep User uPublic concode_elem_sep String sName concode_elem_sep boolean bAdministrator concode_elem_sep String sPassword concode_field_s... | boolean function ( Object arg0 ) { return isAccessible ( arg0 , UserManager . ALL ) ; } |
728 | returns the number of times this connection has been returned to the connection pool . concode_field_sep Object owner concode_elem_sep Handshake handshake concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep int recycleCount concode_elem_sep SpdyConnection spdyConnection concode_elem_sep ... | int function ( ) { return recycleCount ; } |
729 | returns the number of rotation keys . concode_field_sep ByteBuffer m_rotKeys concode_elem_sep int ROT_KEY_SIZE concode_elem_sep int m_numRotKeys concode_elem_sep ByteBuffer m_scaleKeys concode_elem_sep int SCALE_KEY_SIZE concode_elem_sep AiAnimBehavior m_preState concode_elem_sep AiAnimBehavior m_postState concode_elem... | int function ( ) { return m_numRotKeys ; } |
730 | the unique id of the task . constraints : length : 1 - 256 concode_field_sep String activityId concode_elem_sep String input concode_elem_sep Long startedEventId concode_elem_sep WorkflowExecution workflowExecution concode_elem_sep ActivityType activityType concode_elem_sep String taskToken concode_field_sep Long getSt... | String function ( ) { return activityId ; } |
731 | returns -1 if unset . concode_field_sep int HEADER_TABLE_SIZE concode_elem_sep int set concode_elem_sep int COUNT concode_elem_sep int MAX_CONCURRENT_STREAMS concode_elem_sep int MAX_FRAME_SIZE concode_elem_sep int ENABLE_PUSH concode_elem_sep int MAX_HEADER_LIST_SIZE concode_elem_sep int[] values concode_elem_sep int ... | int function ( ) { int loc0 = 1 << HEADER_TABLE_SIZE ; return ( loc0 & set ) != 0 ? values [ HEADER_TABLE_SIZE ] : - 1 ; } |
732 | returns all the registered transientfingerprintfacetfactory s. concode_field_sep PlaceHolder placeHolder concode_field_sep void createFor | ExtensionList < TransientFingerprintFacetFactory > function ( ) { return ExtensionList . lookup ( TransientFingerprintFacetFactory . class ) ; } |
733 | gets the type of this type 's provider . concode_field_sep Class<? super T> rawType concode_elem_sep int hashCode concode_elem_sep Type type concode_field_sep Class<? super T> getRawType concode_elem_sep Type resolveType concode_elem_sep TypeLiteral<?> resolve concode_elem_sep TypeLiteral<?> getFieldType concode_elem_s... | TypeLiteral < Provider < T >> function ( ) { return ( TypeLiteral < Provider < T >> ) get ( Types . providerOf ( getType ( ) ) ) ; } |
734 | determine whether class named by given classdescriptor is an obligation type . concode_field_sep Map<String,Obligation> classNameToObligationMap concode_elem_sep Set<String> slashedClassNames concode_field_sep int getMaxObligationTypes concode_elem_sep Obligation getObligationById concode_elem_sep Obligation addObligat... | boolean function ( ClassDescriptor arg0 ) { try { return getObligationByType ( BCELUtil . getObjectTypeInstance ( arg0 . toDottedClassName ( ) ) ) != null ; } catch ( ClassNotFoundException loc0 ) { Global . getAnalysisCache ( ) . getErrorLogger ( ) . reportMissingClass ( loc0 ) ; return false ; } } |
735 | set system property to value . if securitymanager denies property modification , print debug trace concode_field_sep Logger logger concode_field_sep int intProperty concode_elem_sep boolean booleanProperty concode_elem_sep boolean booleanProperty concode_elem_sep void setProperty concode_elem_sep String property concod... | void function ( String arg0 , String arg1 ) { setProperty ( arg0 , arg1 ) ; } |
736 | returns number of jobs assiciated to activities in this activity sequence . concode_field_sep ArrayList<TourActivity> tourActivities concode_elem_sep Set<Job> jobs concode_elem_sep ReverseActivityIterator backward concode_elem_sep List<TourActivity> acts concode_elem_sep int currentIndex concode_field_sep TourActivity ... | int function ( ) { return jobs . size ( ) ; } |
737 | calls the receiver to execute the command concode_field_sep ClassifierBuilder clb concode_field_sep placeholderType placeHolder | void function ( ) { try { this . clb . calculateWmPrecision ( ) ; } catch ( Exception loc0 ) { loc0 . printStackTrace ( ) ; } } |
738 | this matcher always evaluates to true . with type inference . concode_field_sep PlaceHolder placeHolder concode_field_sep org.hamcrest.Matcher<T> allOf concode_elem_sep org.hamcrest.Matcher<T> allOf concode_elem_sep org.hamcrest.Matcher<T> sameInstance concode_elem_sep org.hamcrest.Matcher<T> not concode_elem_sep org.h... | org . hamcrest . Matcher < T > function ( java . lang . Class < T > arg0 ) { return org . hamcrest . core . IsAnything . any ( arg0 ) ; } |
739 | get the user identifier . this identifier is unique for this provider but not necessarily through all providers . concode_field_sep long serialVersionUID concode_elem_sep List<String> permissions concode_elem_sep Logger logger concode_elem_sep Map<String,Object> attributes concode_elem_sep String SEPARATOR concode_elem... | String function ( ) { return this . id ; } |
740 | set the clientrequestid value . concode_field_sep String ocpBatchFileMode concode_elem_sep String clientRequestId concode_elem_sep String requestId concode_elem_sep DateTimeRfc1123 ocpCreationTime concode_elem_sep String eTag concode_elem_sep Long contentLength concode_elem_sep DateTimeRfc1123 lastModified concode_elem... | FileGetNodeFilePropertiesFromComputeNodeHeaders function ( String arg0 ) { this . clientRequestId = arg0 ; return this ; } |
741 | 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 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 ) ; } |
742 | sets the value of the link property . concode_field_sep String _default concode_elem_sep Link link concode_elem_sep Map<QName,String> otherAttributes concode_elem_sep QName type concode_elem_sep List<Object> any concode_elem_sep Boolean required concode_elem_sep String path concode_elem_sep Boolean repeating concode_el... | void function ( Link arg0 ) { this . link = arg0 ; } |
743 | construct a list of parameters from name , value , name , value ... concode_field_sep String FORM_ENCODED concode_elem_sep String OAUTH_SIGNATURE concode_elem_sep String OAUTH_TIMESTAMP concode_elem_sep String OAUTH_CONSUMER_KEY concode_elem_sep String OAUTH_TOKEN concode_elem_sep String ENCODING concode_elem_sep Strin... | List < Parameter > function ( String ... arg0 ) { List < Parameter > loc0 = new ArrayList < Parameter > ( arg0 . length / 2 ) ; for ( int loc1 = 0 ; loc1 + 1 < arg0 . length ; loc1 += 2 ) { loc0 . add ( new Parameter ( arg0 [ loc1 ] , arg0 [ loc1 + 1 ] ) ) ; } return loc0 ; } |
744 | private implementation of drainto not implemented for linkedlist < w > s . concode_field_sep int MAX_QUEUE_LENGTH concode_elem_sep SetQueue<K> ready concode_elem_sep Set<K> unlimited concode_elem_sep Map<K,VariableLinkedBlockingQueue<W>> pool concode_elem_sep Set<K> inProgress concode_field_sep void unregisterAllKeys c... | int function ( VariableLinkedBlockingQueue < W > arg0 , Collection < W > arg1 , int arg2 ) { int loc0 = 0 ; while ( loc0 < arg2 ) { W loc1 = arg0 . poll ( ) ; if ( loc1 == null ) break ; arg1 . add ( loc1 ) ; ++ loc0 ; } return loc0 ; } |
745 | returns the path 's parent or null if this path is the root path . concode_field_sep int hashcode concode_elem_sep String[] components concode_elem_sep Logger log concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep int length concode_elem_sep String toString concode_elem_sep String getCompon... | POIFSDocumentPath function ( ) { final int loc0 = components . loc0 - 1 ; if ( loc0 < 0 ) { return null ; } POIFSDocumentPath loc1 = new POIFSDocumentPath ( null ) ; loc1 . components = new String [ loc0 ] ; System . arraycopy ( components , 0 , loc1 . components , 0 , loc0 ) ; return loc1 ; } |
746 | gets readonly id of the host prototype . concode_field_sep String name concode_elem_sep Integer hostid concode_elem_sep Integer group_prototypeid concode_elem_sep Integer templateid concode_field_sep void setName concode_elem_sep Integer getTemplateid concode_elem_sep void setHostid concode_elem_sep String getName conc... | Integer function ( ) { return hostid ; } |
747 | returns the category id . concode_field_sep ValidityTime validityTime concode_elem_sep PricingData pricingData concode_elem_sep String id concode_field_sep ValidityTime getValidityTime concode_elem_sep PricingData getPricingData | String function ( ) { return id ; } |
748 | sets the value of the sequence property . concode_field_sep BigInteger sequence concode_elem_sep BigInteger rc concode_elem_sep String sw concode_elem_sep String value concode_field_sep String getValue concode_elem_sep String getSW concode_elem_sep void setSW concode_elem_sep void setValue concode_elem_sep void setRc c... | void function ( BigInteger arg0 ) { this . sequence = arg0 ; } |
749 | get arrayarraynumber concode_field_sep List<List<BigDecimal>> arrayArrayNumber concode_field_sep String toIndentedString concode_elem_sep ArrayOfArrayOfNumberOnly addArrayArrayNumberItem concode_elem_sep ArrayOfArrayOfNumberOnly arrayArrayNumber concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem... | List < List < BigDecimal >> function ( ) { return arrayArrayNumber ; } |
750 | initializes the mapper for items in the list . concode_field_sep Class<?> listClass concode_elem_sep Mapper itemMapper concode_elem_sep Class<?> itemClass concode_elem_sep Type listType concode_field_sep ValueBuilder<?,?,?> toDatastore concode_elem_sep Object toModel | void function ( ) { if ( itemClass == null ) { itemMapper = CatchAllMapper . getInstance ( ) ; } else { try { itemMapper = MapperFactory . getInstance ( ) . getMapper ( itemClass ) ; } catch ( NoSuitableMapperException loc0 ) { itemMapper = CatchAllMapper . getInstance ( ) ; } } } |
751 | action listener for the changes the selected content path in the facelets version of component showcase . concode_field_sep boolean tableRender concode_elem_sep String selectedIncludePath concode_elem_sep boolean customRender concode_elem_sep boolean layoutRender concode_elem_sep boolean extendedRender concode_field_se... | void function ( ActionEvent arg0 ) { FacesContext loc0 = FacesContext . getCurrentInstance ( ) ; Map loc1 = loc0 . getExternalContext ( ) . getRequestParameterMap ( ) ; selectedIncludePath = ( String ) loc1 . get ( "srini_string" ) ; } |
752 | sets the strategyresolver for the current thread concode_field_sep ThreadLocal<StrategyResolver> resolver concode_elem_sep long serialVersionUID concode_elem_sep AuthorizationErrorKey MESSAGE_KEY concode_elem_sep Logger log concode_field_sep boolean isUserAuthenticated concode_elem_sep boolean isModelAuthorized concode... | void function ( StrategyResolver arg0 ) { resolver . set ( arg0 ) ; } |
753 | converts a single integer value into a string of four hex bytes . little_endian concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] convertStringToByteArray concode_elem_sep int convertByteArrayToInt concode_elem_sep byte[] convertIntToByteArray concode_elem_sep String convertByteArrayToHexString concode... | String function ( int arg0 ) { return convertByteArrayToHexString ( convertIntToByteArray ( arg0 ) ) ; } |
754 | gets the value of the ip property . concode_field_sep JAXBElement<String> opesusername concode_elem_sep JAXBElement<String> opstenantname concode_elem_sep JAXBElement<String> tokenId concode_elem_sep JAXBElement<String> ip concode_elem_sep JAXBElement<String> tenantId concode_elem_sep JAXBElement<String> opspassword co... | JAXBElement < String > function ( ) { return ip ; } |
755 | helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g... | void function ( int arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; } |
756 | a unique name for this artifact to use in maven_jar 's name attribute . concode_field_sep Artifact artifact concode_elem_sep String sha1 concode_elem_sep Set<String> exclusions concode_elem_sep String repository concode_elem_sep Set<String> parents concode_elem_sep Set<Rule> dependencies concode_field_sep Set<Rule> get... | String function ( ) { return Rule . name ( groupId ( ) , artifactId ( ) ) ; } |
757 | retrieves the canonical path for the given path , in a jdk 1.1 complaint way . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep FileUtil fileUtil concode_elem_sep FileDescriptor outDescriptor concode_elem_sep Random random concode_elem_sep boolean fsIsIgnoreCase concode_field_sep void renameElement... | String function ( String arg0 ) { return new File ( arg0 ) . getCanonicalPath ( ) ; } |
758 | calls channelhandlercontext #firechannelreadcomplete to forwardto the next channelhandler in the channelpipeline . sub-classes may override this method to change behavior . concode_field_sep boolean added concode_field_sep void disconnect concode_elem_sep void read concode_elem_sep void deregister concode_elem_sep void... | void function ( ChannelHandlerContext arg0 ) { arg0 . fireChannelReadComplete ( ) ; } |
759 | get the title . concode_field_sep String note concode_elem_sep Integer quantity concode_elem_sep Double price concode_elem_sep String title concode_elem_sep Order order concode_field_sep void setOrder concode_elem_sep Integer getQuantity concode_elem_sep void setQuantity concode_elem_sep void afterUnmarshal concode_ele... | String function ( ) { return title ; } |
760 | gets the value of the payperiodic property . concode_field_sep PayPerServiceType payPerService concode_elem_sep String identifier concode_elem_sep PayPeriodicType payPeriodic concode_elem_sep List<PeriodicChargeInfoType> periodicChargeInfo concode_elem_sep String description concode_elem_sep long serialVersionUID conco... | PayPeriodicType function ( ) { return payPeriodic ; } |
761 | test checkanswer concode_field_sep PlaceHolder placeHolder concode_field_sep void testHexAnswer1 concode_elem_sep void testConvertToHex1 concode_elem_sep void testHexAnswer2 concode_elem_sep void testSetRadixes concode_elem_sep void testBinaryConstructor concode_elem_sep void testConvertToOctal1 concode_elem_sep void t... | void function ( ) { Question loc0 = new Question ( 50 , 8 ) ; assertTrue ( loc0 . checkAnswer ( "srini_string" ) ) ; } |
762 | write as corba object . the orb is taken from the org.omg.corba.portable.delegate . the stub is automatically registered with this orb if not already done . concode_field_sep PlaceHolder placeHolder concode_field_sep Tie getTieFromStub concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Strin... | void function ( Stub arg0 , ObjectOutputStream arg1 ) { writeObject ( arg0 , arg1 , null ) ; } |
763 | gets the value of the filter property . concode_field_sep Layout layout concode_elem_sep RssMode mode concode_elem_sep String filter concode_elem_sep Boolean datetime concode_elem_sep List<Address> address concode_elem_sep String itemack concode_elem_sep String src concode_elem_sep BigInteger limit concode_elem_sep Big... | String function ( ) { return filter ; } |
764 | drop the specified tables . concode_field_sep Log logger concode_field_sep int countRowsInTableWhere concode_elem_sep int deleteFromTableWhere concode_elem_sep int deleteFromTables concode_elem_sep int countRowsInTable | void function ( JdbcTemplate arg0 , String ... arg1 ) { for ( String loc0 : arg1 ) { arg0 . execute ( "srini_string" + loc0 ) ; if ( logger . isInfoEnabled ( ) ) { logger . info ( "srini_string" + loc0 ) ; } } } |
765 | returns the bit flags for the options . concode_field_sep PrintSetupRecord printSetupRecord concode_field_sep short getPaperSize concode_elem_sep short getFitWidth concode_elem_sep void setFitHeight concode_elem_sep short getHResolution concode_elem_sep boolean getValidSettings concode_elem_sep void setFitWidth concode... | short function ( ) { return printSetupRecord . getOptions ( ) ; } |
766 | initialize a symmetric pair of halfedges . intended for use by edgegraph subclasses.the edges are initialized to have each other as the sym edge , and to have next pointerswhich point to edge other . this effectively creates a graph containing a single edge . concode_field_sep HalfEdge next concode_elem_sep Coordinate ... | HalfEdge function ( HalfEdge arg0 , HalfEdge arg1 ) { if ( arg0 . sym != null || arg1 . sym != null || arg0 . next != null || arg1 . next != null ) throw new IllegalStateException ( "srini_string" ) ; arg0 . init ( arg1 ) ; return arg0 ; } |
767 | a method deployed with method permissions such that only a run-as assignment will allow access . concode_field_sep Logger log concode_elem_sep SessionContext sessionContext concode_field_sep void ejbCreate concode_elem_sep void noop concode_elem_sep void ejbPassivate concode_elem_sep String forward concode_elem_sep voi... | void function ( ) { log . debug ( "srini_string" ) ; } |
768 | schedule refresh after one minute in case there is a value change between initial load and server startup concode_field_sep DelayedExecutor delayedExecutor concode_elem_sep HomematicContext context concode_elem_sep HomematicCallbackServer homematicCallbackServer concode_elem_sep HomematicClient homematicClient concode_... | void function ( ) { logger . info ( "srini_string" ) ; delayedExecutor . schedule ( new TimerTask ( ) { @ Override public void run ( ) { logger . debug ( "srini_string" ) ; context . getStateHolder ( ) . reloadDatapoints ( ) ; } } , 61000 ) ; } |
769 | set the shape sizes for the plot data concode_field_sep int m_xIndex concode_elem_sep int[] m_shapeType concode_elem_sep Color m_customColour concode_elem_sep boolean m_displayAllPoints concode_elem_sep int m_alwaysDisplayPointsOfThisSize concode_elem_sep int m_yIndex concode_elem_sep double m_maxY concode_elem_sep dou... | void function ( int [ ] arg0 ) { m_shapeSize = arg0 ; if ( m_shapeType . length != m_plotInstances . numInstances ( ) ) { throw new Exception ( "srini_string" + "srini_string" ) ; } } |
770 | information about the attachment . concode_field_sep VpcAttachment vpcAttachment concode_field_sep AttachVpnGatewayResult withVpcAttachment concode_elem_sep int hashCode concode_elem_sep void setVpcAttachment concode_elem_sep boolean equals concode_elem_sep AttachVpnGatewayResult clone concode_elem_sep String toString | VpcAttachment function ( ) { return this . vpcAttachment ; } |
771 | add integers to last position in an array list . concode_field_sep Random random concode_elem_sep List<Integer> array concode_elem_sep List<Integer> linked concode_field_sep void linkedAddLast concode_elem_sep int rndInt concode_elem_sep void linkedAddFirst concode_elem_sep void resetLists concode_elem_sep void linkedG... | void function ( ) { array . add ( rndInt ( ) ) ; } |
772 | set the defaultmutabletreenode instance that wraps this instance 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 ... | void function ( DefaultMutableTreeNode arg0 ) { this . wrapper = arg0 ; } |
773 | invalid scenario : mode and url must be provided concode_field_sep String mode concode_elem_sep HubValidator hubValidator concode_elem_sep String topic concode_elem_sep String callbackUrl concode_elem_sep String secret concode_elem_sep String url concode_elem_sep String leaseSeconds concode_field_sep void validateSubsc... | void function ( ) { mode = null ; url = null ; List < String > loc0 = hubValidator . validatePing ( mode , url ) ; assertNotNull ( loc0 ) ; assertEquals ( 2 , loc0 . size ( ) ) ; assertEquals ( "srini_string" , loc0 . get ( 0 ) ) ; assertEquals ( "srini_string" , loc0 . get ( 1 ) ) ; } |
774 | return the hashcode for this bom . concode_field_sep ByteOrderMark UTF_8 concode_elem_sep int[] bytes concode_elem_sep long serialVersionUID concode_elem_sep ByteOrderMark UTF_16LE concode_elem_sep ByteOrderMark UTF_16BE concode_elem_sep ByteOrderMark UTF_32LE concode_elem_sep ByteOrderMark UTF_32BE concode_elem_sep St... | int function ( ) { int loc0 = getClass ( ) . loc0 ( ) ; for ( int loc1 : bytes ) { loc0 += loc1 ; } return loc0 ; } |
775 | returns the specially constructed system_authorization_name user object for the current database object . concode_field_sep HashMappedList userList concode_elem_sep GranteeManager granteeManager concode_elem_sep Routine pwCheckFunction concode_elem_sep Routine extAuthenticationFunction concode_field_sep void setPasswor... | User function ( ) { return GranteeManager . systemAuthorisation ; } |
776 | indicates for which channels the gain is set . see audioformat #channel_out_stereo , audioformat #channel_out_mono ... concode_field_sep int mValues[] concode_elem_sep int mChannelMask concode_elem_sep int mMode concode_elem_sep AudioGain mGain concode_elem_sep int mIndex concode_elem_sep int mRampDurationMs concode_fi... | int function ( ) { return mChannelMask ; } |
777 | version of the workflow type . constraints : length : 0 - 64 concode_field_sep String name concode_elem_sep String version concode_field_sep void setName concode_elem_sep String getVersion concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep WorkflowTypeFilter c... | void function ( String arg0 ) { this . version = arg0 ; } |
778 | the vertex index of the vertex the iterator is currently at . concode_field_sep int vertexIndex concode_elem_sep Geometry linearGeom concode_elem_sep int numLines concode_elem_sep int componentIndex concode_elem_sep double segmentFraction concode_elem_sep LineString currentLine concode_field_sep void next concode_elem_... | int function ( ) { return vertexIndex ; } |
779 | define el valor de la propiedad ptoemi . concode_field_sep String claveAcceso concode_elem_sep String ruc concode_elem_sep String razonSocial concode_elem_sep String estab concode_elem_sep String ptoEmi concode_elem_sep String ambiente concode_elem_sep String nombreComercial concode_elem_sep String codDoc concode_elem_... | void function ( String arg0 ) { this . ptoEmi = arg0 ; } |
780 | find and remove all expired auth codes . concode_field_sep RandomValueStringGenerator generator concode_elem_sep Logger logger concode_elem_sep int authCodeExpirationSeconds concode_elem_sep AuthorizationCodeRepository repository concode_elem_sep AuthenticationHolderRepository authenticationHolderRepository concode_fie... | void function ( ) { Collection < AuthorizationCodeEntity > loc0 = repository . getExpiredCodes ( ) ; for ( AuthorizationCodeEntity loc1 : loc0 ) { repository . remove ( loc1 ) ; } logger . info ( "srini_string" + loc0 . size ( ) + "srini_string" ) ; } |
781 | if the coordinate array argument has repeated points , constructs a new array containing no repeated points . otherwise , returns the argument . concode_field_sep Coordinate[] coordArrayType concode_field_sep int compare concode_elem_sep int compare concode_elem_sep int compare concode_elem_sep boolean hasRepeatedPoint... | Coordinate [ ] function ( Coordinate [ ] arg0 ) { if ( ! hasRepeatedPoints ( arg0 ) ) return arg0 ; CoordinateList loc0 = new CoordinateList ( arg0 , false ) ; return loc0 . toCoordinateArray ( ) ; } |
782 | handles jtextarea concode_field_sep Map _bindings concode_elem_sep boolean _modified concode_elem_sep Map _optComponents concode_field_sep boolean isPropertyNull concode_elem_sep boolean isModified concode_elem_sep Binding getBinding concode_elem_sep Bindings addOptComponent concode_elem_sep Bindings addOptComponent co... | Bindings function ( String arg0 , JTextArea arg1 , String arg2 ) { registerPropertyChangeListener ( arg1 ) ; return add ( new JTextComponentBinding ( arg0 , arg1 , arg2 ) ) ; } |
783 | gets the value of the flavour property . concode_field_sep Layout layout concode_elem_sep String volume concode_elem_sep List<Address> address concode_elem_sep String flavour concode_elem_sep String src concode_elem_sep String loop concode_elem_sep String width concode_elem_sep String thresholdValue concode_elem_sep La... | String function ( ) { return flavour ; } |
784 | implements pathhandler #closepath . concode_field_sep PathHandler INSTANCE concode_field_sep void curvetoCubicRel concode_elem_sep void curvetoQuadraticAbs concode_elem_sep void linetoHorizontalAbs concode_elem_sep void curvetoCubicAbs concode_elem_sep void curvetoQuadraticRel concode_elem_sep void linetoVerticalAbs co... | void function ( ) { } |
785 | set the hash portion of the location ex . myanchor or #myanchor . concode_field_sep String protocol concode_elem_sep String host concode_elem_sep int PORT_UNSPECIFIED concode_elem_sep String path concode_elem_sep int port concode_elem_sep String hash concode_elem_sep Map<String,String[]> listParamMap concode_field_sep ... | URLBuilder function ( String arg0 ) { if ( arg0 != null && arg0 . startsWith ( "srini_string" ) ) { arg0 = arg0 . substring ( 1 ) ; } this . hash = arg0 ; return this ; } |
786 | removes a value from the collection . concode_field_sep long serialVersionUID concode_elem_sep ArrayList keys concode_elem_sep ArrayList values concode_elem_sep HashMap indexMap concode_field_sep void sortByValues concode_elem_sep Comparable getKey concode_elem_sep int getIndex concode_elem_sep void rebuildIndex concod... | void function ( int arg0 ) { this . keys . remove ( arg0 ) ; this . values . remove ( arg0 ) ; rebuildIndex ( ) ; } |
787 | retrieve the value associated with a given key . concode_field_sep int size concode_elem_sep T[] array concode_field_sep int size concode_elem_sep boolean containsKey concode_elem_sep IntegerMap<T> newMap concode_elem_sep Map<Integer,Object> toMap concode_elem_sep void ensureCapacity concode_elem_sep T put concode_elem... | T function ( int arg0 ) { if ( arg0 >= 0 && arg0 < array . length ) return array [ arg0 ] ; return null ; } |
788 | computes an hashcode for this factory . concode_field_sep HashMap<String,StyleKey> knownKeys concode_elem_sep Log logger concode_field_sep void loadFromClass concode_elem_sep Iterator getRegisteredKeys concode_elem_sep Object createBasicObject concode_elem_sep boolean equals concode_elem_sep void addKey concode_elem_se... | int function ( ) { return knownKeys . hashCode ( ) ; } |
789 | update the error map by recording a class prediction for a given data record concode_field_sep int numTrees concode_elem_sep RandomForest forest concode_elem_sep int C concode_elem_sep ArrayList<int[]> data concode_elem_sep int Ms concode_elem_sep ArrayList<ArrayList<Integer>> Prediction concode_elem_sep ExecutorServic... | void function ( int [ ] arg0 , int arg1 ) { if ( estimateOOB . get ( arg0 ) == null ) { int [ ] loc0 = new int [ C ] ; estimateOOB . put ( arg0 , loc0 ) ; } else { int [ ] loc0 = estimateOOB . get ( arg0 ) ; loc0 [ arg1 - 1 ] ++ ; } } |
790 | returns true if this kaleo node is initial . concode_field_sep KaleoNode _kaleoNode concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean getTerminal concode_elem_sep java.lang.String getName concode_e... | boolean function ( ) { return _kaleoNode . isInitial ( ) ; } |
791 | is the set empty ? concode_field_sep Node right concode_elem_sep Comparator<Point2D> ORDER_BY_Y concode_elem_sep Node root concode_elem_sep int count concode_elem_sep Node parent concode_elem_sep Comparator<Point2D> ORDER_BY_X concode_elem_sep Point2D key concode_elem_sep Node left concode_field_sep NodeType next conco... | boolean function ( ) { return ( root == null ) ; } |
792 | gets the value of the addressline2 property . concode_field_sep String zipCode concode_elem_sep String city concode_elem_sep String countryCd concode_elem_sep String stateProvince concode_elem_sep String isActive concode_elem_sep String poBox concode_elem_sep String addressTypeCd concode_elem_sep String buildingNum con... | String function ( ) { return addressLine2 ; } |
793 | convenient call for abstractdao #update object . entity must attached to an entity context . concode_field_sep RelationEntity parent concode_elem_sep long testIdNotNull concode_elem_sep Long testNotNull__resolvedKey concode_elem_sep TestEntity testWithoutProperty concode_elem_sep DaoSession daoSession concode_elem_sep ... | void function ( ) { if ( myDao == null ) { throw new DaoException ( "srini_string" ) ; } myDao . update ( this ) ; } |
794 | activates the currently selected item . concode_field_sep Element listElement concode_elem_sep PopupWidget<?> popupWidget concode_field_sep void focusLast concode_elem_sep void handleEvent concode_elem_sep void focusPrevious concode_elem_sep void focusNext concode_elem_sep void focusFirst | void function ( ) { final Element loc0 = Elements . getDocument ( ) . getActiveElement ( ) ; if ( loc0 . getParentElement ( ) . isEqualNode ( listElement ) ) { this . popupWidget . validateItem ( loc0 ) ; } } |
795 | returns the long parsed from the variable 's value . throws an illegalargumentexception if no long can be parsed . concode_field_sep PlaceHolder placeHolder concode_field_sep void checkInteger concode_elem_sep Integer toInteger concode_elem_sep void checkFloat concode_elem_sep Double toDouble concode_elem_sep Boolean t... | Long function ( String arg0 , String arg1 ) { try { return BindingUtils . toLong ( arg1 ) ; } catch ( IllegalArgumentException loc0 ) { throw new ResourceException ( Status . CLIENT_ERROR_BAD_REQUEST , "srini_string" + arg0 + "srini_string" + loc0 . getMessage ( ) ) ; } } |
796 | set the modification check interval . concode_field_sep long MILLIS_PER_SECOND concode_elem_sep long lastModified concode_elem_sep long modificationCheckInterval concode_elem_sep String name concode_elem_sep RuntimeServices rsvc concode_elem_sep long nextCheck concode_elem_sep ResourceLoader resourceLoader concode_elem... | void function ( long arg0 ) { this . modificationCheckInterval = arg0 ; } |
797 | double quotes around args containing whitespace , backslash chars are escaped using double backslash , platform line separators . concode_field_sep Pattern WHITESPACE concode_elem_sep PrintWriter writer concode_elem_sep boolean backslashEscape concode_field_sep ArgWriter args concode_elem_sep ArgCollector args concode_... | ArgWriter function ( PrintWriter arg0 ) { return new ArgWriter ( arg0 , true ) ; } |
798 | sets the interpolator used to interpolate the delays between the children . concode_field_sep long mDuration concode_elem_sep long mMaxDelay concode_elem_sep int ORDER_NORMAL concode_elem_sep int ORDER_RANDOM concode_elem_sep Interpolator mInterpolator concode_elem_sep Animation mAnimation concode_elem_sep float mDelay... | void function ( Interpolator arg0 ) { mInterpolator = arg0 ; } |
799 | sets the wsviewpk value for this wsgetview . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.talend.mdm.webservice.WSViewPK wsViewPK concode_field_sep org.apache.axis.description.TypeDesc getTypeD... | void function ( org . talend . mdm . webservice . WSViewPK arg0 ) { this . wsViewPK = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.