idx int64 0 25k | question stringlengths 68 5.14k | target stringlengths 20 503 |
|---|---|---|
8,100 | returns the warnings collected during file analysis and handling . concode_field_sep ProgressIndicator progressIndicator concode_elem_sep OpenCmsPlugin plugin concode_elem_sep Logger LOG concode_elem_sep StringBuilder warnings concode_elem_sep HashSet<String> handledPaths concode_elem_sep List<File> files concode_field... | StringBuilder function ( ) { return warnings ; } |
8,101 | adds a post selection listener to this tracker concode_field_sep ListenerList fListeners concode_elem_sep ListenerList postListeners concode_elem_sep String fPartId concode_field_sep void removeSelectionListener concode_elem_sep void addSelectionListener concode_elem_sep ISelection getSelection concode_elem_sep String ... | void function ( ISelectionListener arg0 ) { postListeners . add ( arg0 ) ; } |
8,102 | check if the current authentication is acting on behalf of an authenticated user . concode_field_sep Set<String> missingScopes concode_elem_sep Authentication authentication concode_field_sep boolean clientHasRole concode_elem_sep boolean clientHasAnyRole concode_elem_sep boolean throwOnError concode_elem_sep boolean h... | boolean function ( ) { return OAuth2ExpressionUtils . isOAuthUserAuth ( authentication ) ; } |
8,103 | tests whether the supplied object is an instance of the supplied class type . concode_field_sep PlaceHolder placeHolder concode_field_sep E isNotNull concode_elem_sep long checkNotNegative concode_elem_sep int checkNotNegative concode_elem_sep int checkAsyncBackupCount concode_elem_sep void checkFalse concode_elem_sep ... | E function ( Class arg0 , E arg1 , String arg2 ) { isNotNull ( arg0 , "srini_string" ) ; if ( ! arg0 . isInstance ( arg1 ) ) { throw new IllegalArgumentException ( arg2 ) ; } return arg1 ; } |
8,104 | return a boolean array representing passed in keyusage mask . concode_field_sep int VALIDITY_PERIOD concode_elem_sep String INTERMEDIATE_ALIAS concode_elem_sep String END_ENTITY_ALIAS concode_elem_sep String ROOT_ALIAS concode_elem_sep char[] KEY_PASSWD concode_field_sep X509Certificate buildIntermediateCert concode_el... | boolean [ ] function ( int arg0 ) { byte [ ] loc0 = new byte [ ] { ( byte ) ( arg0 & 0xff ) , ( byte ) ( ( arg0 & 0xff00 ) >> 8 ) } ; boolean [ ] loc1 = new boolean [ 9 ] ; for ( int loc2 = 0 ; loc2 != 9 ; loc2 ++ ) { loc1 [ loc2 ] = ( loc0 [ loc2 / 8 ] & ( 0x80 >>> ( loc2 % 8 ) ) ) != 0 ; } return loc1 ; } |
8,105 | convert hashmap of key/value pairs back to string concode_field_sep Logger logger concode_elem_sep ProducerTemplate producer concode_field_sep void sendNmea concode_elem_sep double round concode_elem_sep String hashMapToJSON concode_elem_sep HashMap<String,Object> handle concode_elem_sep void appendValue concode_elem_s... | String function ( HashMap < String , Object > arg0 ) { StringBuilder loc0 = new StringBuilder ( ) ; for ( String loc1 : arg0 . keySet ( ) ) { if ( loc1 . equals ( Constants . NMEA ) ) { loc0 . append ( arg0 . get ( loc1 ) ) ; } else { appendValue ( loc0 , loc1 , arg0 . get ( loc1 ) . toString ( ) ) ; } } return loc0 . ... |
8,106 | gets the value of the online property . concode_field_sep OfflineType offline concode_elem_sep List<String> system concode_elem_sep InlineType inline concode_elem_sep au.org.ecoinformatics.eml.jaxb.eml.ViewType.References references concode_elem_sep ScopeType scope concode_elem_sep OnlineType online concode_elem_sep Li... | OnlineType function ( ) { return online ; } |
8,107 | get endpointsecurity concode_field_sep String name concode_elem_sep String endpointConfig concode_elem_sep Long maxTps concode_elem_sep String endpointSecurity concode_elem_sep String type concode_elem_sep String id concode_field_sep void setName concode_elem_sep String toIndentedString concode_elem_sep String getName ... | String function ( ) { return endpointSecurity ; } |
8,108 | retrieves the tcp client host . concode_field_sep String mongoHost concode_elem_sep String twitterConsumerKey concode_elem_sep int tcpClientPort concode_elem_sep String gemfireHost concode_elem_sep String jdbcUsername concode_elem_sep String twitterAccessTokenSecret concode_elem_sep String jmsHost concode_elem_sep Logg... | String function ( ) { return tcpClientHost ; } |
8,109 | this method unregisters the welcomehometemplateprovider as templateprovider service . concode_field_sep ServiceRegistration providerReg concode_elem_sep Map<String,RuleTemplate> providedRuleTemplates concode_field_sep T getTemplate concode_elem_sep Collection<T> getTemplates concode_elem_sep void register | void function ( ) { providerReg . unregister ( ) ; providerReg = null ; providedRuleTemplates = null ; } |
8,110 | return the state name . concode_field_sep String name concode_elem_sep int x concode_elem_sep int width concode_elem_sep int y concode_elem_sep int index concode_elem_sep Test displayTest concode_elem_sep int state concode_elem_sep Image picture concode_elem_sep int height concode_field_sep boolean paint concode_elem_s... | String function ( ) { return name ; } |
8,111 | the number of vectors in each slice of an ndarray . concode_field_sep PlaceHolder placeHolder concode_field_sep int mapIndexOntoTensor concode_elem_sep int matricesPerSlice concode_elem_sep int sliceOffsetForTensor concode_elem_sep int numVectors concode_elem_sep int lengthPerSlice concode_elem_sep int lengthPerSlice c... | int function ( INDArray arg0 , int ... arg1 ) { if ( arg0 . arg1 ( ) > 2 ) { return arg0 . size ( - 2 ) * arg0 . size ( - 1 ) ; } return arg0 . size ( - 1 ) ; } |
8,112 | returns the x-coordinate of the center . concode_field_sep Color color concode_elem_sep int yCenter concode_elem_sep int radius concode_elem_sep int xCenter concode_field_sep void move concode_elem_sep int getY concode_elem_sep double distance concode_elem_sep Color getColor concode_elem_sep boolean isInside concode_el... | int function ( ) { return xCenter ; } |
8,113 | returns java type signature for a return type . concode_field_sep String fieldtype concode_elem_sep String returntype concode_elem_sep int argumentlength concode_elem_sep String parameterdes concode_elem_sep String parameters concode_field_sep void init concode_elem_sep String getParametersHelper concode_elem_sep Strin... | String function ( String arg0 ) { return getFieldTypeSignature ( arg0 ) ; } |
8,114 | execute a callable on the current thread , capturing the result or any exceptions that may be thrown into a completablefuture . concode_field_sep PlaceHolder placeHolder concode_field_sep Predicate<E> predicateAnd concode_elem_sep Predicate<E> predicateAnd concode_elem_sep BiPredicate<L,R> biPredicateAnd concode_elem_s... | CompletableFuture < T > function ( Callable < T > arg0 ) { CompletableFuture < T > loc0 = new CompletableFuture < > ( ) ; try { loc0 . complete ( arg0 . arg0 ( ) ) ; } catch ( Exception loc1 ) { loc0 . completeExceptionally ( loc1 ) ; } return loc0 ; } |
8,115 | gets the value of the restoredate property . concode_field_sep XMLGregorianCalendar suspendDate concode_elem_sep String userMemoText concode_elem_sep XMLGregorianCalendar cancelDate concode_elem_sep Boolean extendContract concode_elem_sep List<SuspendSubscriberInfo.SuspendMSISDN> suspendMSISDN concode_elem_sep String s... | XMLGregorianCalendar function ( ) { return restoreDate ; } |
8,116 | gets the value of the name property . concode_field_sep String name concode_elem_sep ManagedObjectReference datacenter concode_elem_sep ManagedObjectReference _this concode_field_sep void setThis concode_elem_sep void setName concode_elem_sep ManagedObjectReference getThis concode_elem_sep ManagedObjectReference getDat... | String function ( ) { return name ; } |
8,117 | finds zipped sip from a previous export . concode_field_sep File targetFolder concode_elem_sep MetaModelRepository models concode_elem_sep DesaServices desaServices concode_elem_sep Logger LOG concode_elem_sep MetsExportException validationError concode_elem_sep RemoteStorage rstorage concode_field_sep void storeObject... | File function ( File arg0 , String arg1 ) { File loc0 = new File ( arg0 , arg1 ) ; if ( ! loc0 . exists ( ) ) { return null ; } File [ ] loc1 = loc0 . listFiles ( ) ; for ( File loc2 : loc1 ) { if ( loc2 . isFile ( ) && loc2 . getName ( ) . endsWith ( "srini_string" ) ) { return loc2 ; } } return null ; } |
8,118 | combine the value to the record . concode_field_sep long MIN concode_elem_sep long MAX concode_elem_sep int LENGTH concode_elem_sep int OFFSET concode_elem_sep long serialVersionUID concode_elem_sep String NAME concode_elem_sep long MASK concode_field_sep long getMin concode_elem_sep long retrieve | long function ( long arg0 , long arg1 ) { if ( arg0 < MIN ) { throw new IllegalArgumentException ( "srini_string" + NAME + "srini_string" + arg0 + "srini_string" + MIN ) ; } if ( arg0 > MAX ) { throw new IllegalArgumentException ( "srini_string" + NAME + "srini_string" + arg0 + "srini_string" + MAX ) ; } return ( arg1 ... |
8,119 | sets the costcategory value for this manufacturingcostdetail . concode_field_sep com.netsuite.webservices.platform.core_2014_2.RecordRef costCategory concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef item concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Ob... | void function ( com . netsuite . webservices . platform . core_2014_2 . RecordRef arg0 ) { this . costCategory = arg0 ; } |
8,120 | given an output root and an initial relative path , return the output file according to the handle_existing strategy in the most basic use case , given a root directory `` input '' , a file 's relative path `` dir1/dir2/filea.docx '' , and an output directory `` output '' , the output file would be `` output/dir1/dir2/... | File function ( File arg0 , String arg1 , HANDLE_EXISTING arg2 , String arg3 ) { return getOutputPath ( Paths . get ( arg0 . toURI ( ) ) , arg1 , arg2 , arg3 ) . toFile ( ) ; } |
8,121 | given a vertex v that the edge is pointing to return the residual capacity , be it a forward edge or a backward edge ; concode_field_sep Object name concode_elem_sep Edge back concode_elem_sep Vertex v1 concode_elem_sep Vertex v2 concode_elem_sep double flow concode_elem_sep Object capacity concode_field_sep void setBa... | double function ( Vertex arg0 ) { if ( arg0 == v1 ) return flow ; else if ( arg0 == v2 ) return ( double ) capacity - flow ; else throw new IllegalArgumentException ( "srini_string" + arg0 . getName ( ) + "srini_string" + v1 . getName ( ) + "srini_string" + v2 . getName ( ) ) ; } |
8,122 | setter method for circle concode_field_sep String subSubCategoryName concode_elem_sep String ticketNo concode_elem_sep String customer_Segment concode_elem_sep String loggedBy concode_elem_sep long serialVersionUID concode_elem_sep String source concode_elem_sep String circle concode_elem_sep String mobile_number conco... | void function ( String arg0 ) { this . circle = arg0 ; } |
8,123 | helper wrapper to call the provided lifecycle on unhandled error . concode_field_sep AtomicLong UNCAUGHT_EXCEPTIONS concode_field_sep ThreadPoolExecutor loggingExecutor concode_elem_sep void evaluateResult concode_elem_sep ScheduledThreadPoolExecutor loggingScheduledExecutor concode_elem_sep ScheduledThreadPoolExecutor... | Runnable function ( Lifecycle arg0 , Logger arg1 , String arg2 , Runnable arg3 ) { requireNonNull ( arg0 ) ; requireNonNull ( arg1 ) ; requireNonNull ( arg2 ) ; requireNonNull ( arg3 ) ; return ( ) -> { try { arg3 . run ( ) ; } catch ( Throwable loc0 ) { arg1 . error ( arg2 , loc0 ) ; arg0 . shutdown ( ) ; } } ; } |
8,124 | get 's a shared instance of the velocityengine . the engine is initialized and outputs its logging to idea logging . concode_field_sep VelocityEngine engine concode_field_sep VelocityEngine newVeloictyEngine | VelocityEngine function ( ) { return Holder . engine ; } |
8,125 | returns whether specified language key exists or not . concode_field_sep PlaceHolder placeHolder concode_field_sep Value getValue concode_elem_sep String get concode_elem_sep String get concode_elem_sep Character getMnemonic | boolean function ( final String arg0 ) { return LanguageManager . contains ( arg0 ) ; } |
8,126 | remove the original interceptor , as we are going to proxy the calls with cdiinterceptorwrapper . concode_field_sep AnnotationLiteral<Default> DEFAULT_ANNOTATION_LITERAL concode_elem_sep AnnotationLiteral<Any> ANY_ANNOTATION_LITERAL concode_elem_sep AnnotatedType<ValidationInterceptor> interceptorAnnotatedType concode_... | void function ( @ Observes final AfterTypeDiscovery arg0 ) { arg0 . getInterceptors ( ) . remove ( ValidationInterceptor . class ) ; } |
8,127 | sets the x-offset for the shadow effect . concode_field_sep Paint shadowPaint concode_elem_sep double shadowXOffset concode_elem_sep double shadowYOffset concode_elem_sep Paint outlinePaint concode_elem_sep Stroke outlineStroke concode_elem_sep Paint backgroundPaint concode_elem_sep long serialVersionUID concode_elem_s... | void function ( final double arg0 ) { this . shadowXOffset = arg0 ; } |
8,128 | logs the given message and throwable at the ` debug ' level . concode_field_sep Level ERROR concode_elem_sep Level WARN concode_elem_sep Logger jdkLogger concode_elem_sep Level TRACE concode_elem_sep Level DEBUG concode_elem_sep Level FATAL concode_elem_sep Level INFO concode_field_sep boolean isWarnEnabled concode_ele... | void function ( Object arg0 , Throwable arg1 ) { logInternal ( DEBUG , arg0 , arg1 ) ; } |
8,129 | returns the id of the node or data object that is represented by this entry . concode_field_sep Integer id concode_field_sep void writeExternal concode_elem_sep int hashCode concode_elem_sep boolean isLeafEntry concode_elem_sep boolean equals concode_elem_sep void readExternal concode_elem_sep String toString concode_e... | Integer function ( ) { return id ; } |
8,130 | returns the release id of this release . concode_field_sep Release _release concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setBuildNumber concode_elem_sep boolean isEscapedModel concode_elem_sep ja... | long function ( ) { return _release . getReleaseId ( ) ; } |
8,131 | returns total number of spdy connections in the pool . concode_field_sep ConnectionPool systemDefault concode_elem_sep LinkedList<Connection> connections concode_elem_sep long keepAliveDurationNs concode_elem_sep long DEFAULT_KEEP_ALIVE_DURATION_MS concode_elem_sep int MAX_CONNECTIONS_TO_CLEANUP concode_elem_sep Callab... | int function ( ) { int loc0 = 0 ; for ( Connection loc1 : connections ) { if ( loc1 . isSpdy ( ) ) loc0 ++ ; } return loc0 ; } |
8,132 | get the field with the given name . concode_field_sep boolean isStatic concode_elem_sep int arrayLevel concode_elem_sep ArrayList<ClassObj> imports concode_elem_sep String className concode_elem_sep boolean isPrivate concode_elem_sep Type type concode_elem_sep boolean isNative concode_elem_sep Type baseType concode_ele... | FieldObj function ( String arg0 ) { return instanceFields . get ( arg0 ) ; } |
8,133 | checks the equality of the appid vs. o.getappid concode_field_sep long requestCount concode_elem_sep OrgScore orgScore concode_elem_sep long userCount concode_elem_sep String appName concode_elem_sep UUID appId concode_field_sep String getAppName concode_elem_sep OrgScore getOrgScore concode_elem_sep long getRequestCou... | boolean function ( Object arg0 ) { if ( arg0 instanceof AppScore ) { return ( ( AppScore ) arg0 ) . getAppId ( ) . equals ( appId ) ; } return false ; } |
8,134 | used to communicate a progress update between a plugin tool and the main whitebox user interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amI... | void function ( int arg0 ) { if ( myHost != null && arg0 != previousProgress ) { myHost . updateProgress ( arg0 ) ; } previousProgress = arg0 ; } |
8,135 | gets a set of page hit page indexes . that is to say a list of all page indexes that have search hits . this list can be used to clear searches or to iterate more quickly of the resutls set . concode_field_sep HashMap<Integer,WeakReference<PageText>> searchResultCache concode_elem_sep ArrayList<SearchTerm> searchTerms ... | Set < Integer > function ( ) { return searchResultCache . keySet ( ) ; } |
8,136 | gets string concode_field_sep Prefix TIME concode_elem_sep ChatColor color concode_elem_sep String prefix concode_field_sep ChatColor getColor concode_elem_sep Prefix INFO | String function ( ) { return prefix ; } |
8,137 | get just the name of the file this frame points to . for js traces this is different from #getfile in that it only returns the filename , not the full path . for java traces there is no difference . concode_field_sep int mLine concode_elem_sep String mFileName concode_elem_sep String mFile concode_elem_sep int mColumn ... | String function ( ) { return mFileName ; } |
8,138 | returns the client 's transports . this method always returns a non-null list that contains `` http/1 .1 '' , possibly among other transports . concode_field_sep Proxy proxy concode_elem_sep List<String> transports concode_elem_sep int uriPort concode_elem_sep SSLSocketFactory sslSocketFactory concode_elem_sep Hostname... | List < String > function ( ) { return transports ; } |
8,139 | returns the resource interface value . concode_field_sep Class<?> javaClass concode_elem_sep java.lang.reflect.Method javaMethodImpl concode_elem_sep String annotationValue concode_elem_sep java.lang.reflect.Method javaMethod concode_field_sep java.lang.reflect.Method getJavaMethod concode_elem_sep String getAnnotation... | Class < ? > function ( ) { return javaClass ; } |
8,140 | returns the tool tip text for the entity . be aware that this text may have been generated from user supplied data , so for security reasons some form of filtering should be applied before incorporating this text into any html output . concode_field_sep Shape area concode_elem_sep long serialVersionUID concode_elem_sep... | String function ( ) { return this . toolTipText ; } |
8,141 | the transaction has completed successfully . the participant previously informed the coordinator that it was ready to complete . concode_field_sep Logger log concode_elem_sep HashMap<String,Set<BACoordinationCompletionParticipant>> participants concode_elem_sep String txID concode_elem_sep EventLog eventLog concode_ele... | void function ( ) { eventLog . addEvent ( participantName , EventLogEvent . CLOSE ) ; log . info ( "srini_string" + EventLogEvent . CLOSE ) ; removeParticipant ( txID , this ) ; } |
8,142 | gets whether the effect should render new frames automatically which it does by default . if true , you can render frames manually by calling the render instance method of an effect . this is used by effect.parallel . concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concod... | boolean function ( ) { return sync ; } |
8,143 | initiate the dictionary . retrieve any needed attributes . concode_field_sep Name LENGTH_KEY concode_elem_sep Name FORM_TYPE_KEY concode_elem_sep HashMap entries concode_elem_sep Library library concode_elem_sep boolean inited concode_elem_sep boolean isDeleted concode_elem_sep Reference pObjectReference concode_elem_s... | void function ( ) { } |
8,144 | sends the password recovery notification . concode_field_sep UserInformationRecoveryServiceStub stub concode_field_sep VerificationBean resetPassword concode_elem_sep VerificationBean verifyAccount concode_elem_sep VerificationBean verifyUser concode_elem_sep UserChallengesCollectionDTO getChallengeQuestions concode_el... | VerificationBean function ( String arg0 , String arg1 ) { return stub . sendRecoveryNotification ( arg0 , arg1 , IdentityManagementEndpointConstants . PasswordRecoveryOptions . EMAIL ) ; } |
8,145 | sets the principal returns this instance . concode_field_sep Principal principal concode_elem_sep List<CredentialMetaData> credentials concode_elem_sep Map<String,Object> attributes concode_elem_sep ZonedDateTime authenticationDate concode_elem_sep Map<String,HandlerResult> successes concode_elem_sep Map<String,Class<?... | AuthenticationBuilder function ( final Principal arg0 ) { this . principal = arg0 ; return this ; } |
8,146 | given a count of black/white/black pixels just seen and an end position , figures the location of the center of this black/white/black run . concode_field_sep BitMatrix image concode_elem_sep int[] crossCheckStateCount concode_elem_sep int width concode_elem_sep int startY concode_elem_sep int startX concode_elem_sep L... | float function ( int [ ] arg0 , int arg1 ) { return ( float ) ( arg1 - arg0 [ 2 ] ) - arg0 [ 1 ] / 2.0f ; } |
8,147 | the user name and password create date . concode_field_sep LoginProfile loginProfile concode_field_sep LoginProfile getLoginProfile concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CreateLoginProfileResult clone concode_elem_sep String toString concode_elem_sep void setLoginProfile | CreateLoginProfileResult function ( LoginProfile arg0 ) { setLoginProfile ( arg0 ) ; return this ; } |
8,148 | sets the min char width . this is the minimum width we expect a character to be , based on the resolution of the image and what we know about the font , etc. . concode_field_sep char[] mrchToTest concode_elem_sep PrototypesCollection mPrototypesCollection concode_elem_sep int mnMinCharWidth concode_elem_sep int MAX_MAT... | void function ( int arg0 ) { this . mnMinCharWidth = arg0 ; } |
8,149 | calculates a mixed color from two colors by interpolating the rgb parts using a mix ratio . concode_field_sep PlaceHolder placeHolder concode_field_sep void fillVerticalGradientRectangle concode_elem_sep void fillVerticalGradientRoundedRectangle | Color function ( Color arg0 , Color arg1 , int arg2 ) { return new Color ( arg0 . getDevice ( ) , arg0 . getRed ( ) + ( arg1 . getRed ( ) - arg0 . getRed ( ) ) * arg2 / 255 , arg0 . getGreen ( ) + ( arg1 . getGreen ( ) - arg0 . getGreen ( ) ) * arg2 / 255 , arg0 . getBlue ( ) + ( arg1 . getBlue ( ) - arg0 . getBlue ( )... |
8,150 | returns the unique session id identifying this in-band bytestream . concode_field_sep byte[] decodedData concode_elem_sep String data concode_elem_sep String ELEMENT_NAME concode_elem_sep String sessionID concode_elem_sep long seq concode_field_sep long getSeq concode_elem_sep byte[] getDecodedData concode_elem_sep Str... | String function ( ) { return sessionID ; } |
8,151 | return the policy set , applicable for the root poa , as defined in omg specs . concode_field_sep AccessiblePolicy[] rootPOASet concode_field_sep Policy[] withDefault | Policy [ ] function ( ) { Policy [ ] loc0 = new Policy [ rootPOASet . length ] ; System . arraycopy ( rootPOASet , 0 , loc0 , 0 , loc0 . length ) ; return loc0 ; } |
8,152 | stop the activation concode_field_sep MessageEndpointFactory endpointFactory concode_elem_sep ValidActivationSpec spec concode_elem_sep ValidResourceAdapter ra concode_field_sep ValidActivationSpec getActivationSpec concode_elem_sep MessageEndpointFactory getMessageEndpointFactory concode_elem_sep void start | void function ( ) { } |
8,153 | prints the log if the log verbose_level is greater than 0 concode_field_sep int verbose_level concode_elem_sep long MAX_SIZE concode_elem_sep long counter concode_elem_sep String log_tag concode_elem_sep PrintStream out_stream concode_elem_sep boolean do_log concode_elem_sep long max_size concode_elem_sep int tag_size ... | Log function ( String arg0 ) { return println ( arg0 , 1 ) ; } |
8,154 | removes and returns the last item . concode_field_sep boolean ordered concode_elem_sep int size concode_elem_sep short[] items concode_field_sep void mul concode_elem_sep void insert concode_elem_sep short random concode_elem_sep boolean removeAll concode_elem_sep void truncate concode_elem_sep int hashCode concode_ele... | short function ( ) { return items [ -- size ] ; } |
8,155 | returns the coded character set identifier used to encode the translated bytes . valid ccsid values are in the range 1 through 65535 . the special value 0 can be used to indicate the default ccsid for the current user when the validation list apis are invoked on the system . in some cases , primarily attribute data , t... | int function ( ) { return ccsid_ ; } |
8,156 | determine whether the element is set or not . concode_field_sep String image concode_elem_sep String IMAGE_ALERT concode_elem_sep boolean set concode_elem_sep String IMAGE_BLANK concode_elem_sep String value concode_elem_sep String IMAGE_PROGRESS concode_field_sep String getValue concode_elem_sep void setValue concode_... | boolean function ( ) { return this . set ; } |
8,157 | this implementation enforces f x = 0.0 at x = 0.0 . concode_field_sep long serialVersionUID concode_elem_sep DstNormalization normalization concode_field_sep double[] fst | double [ ] function ( final UnivariateFunction arg0 , final double arg1 , final double arg2 , final int arg3 , final TransformType arg4 ) { final double [ ] loc0 = FunctionUtils . sample ( arg0 , arg1 , arg2 , arg3 ) ; loc0 [ 0 ] = 0.0 ; return transform ( loc0 , arg4 ) ; } |
8,158 | send a lostcommitted request . concode_field_sep SyncParticipantClient CLIENT concode_field_sep void sendVolatileAndDurable concode_elem_sep void sendReadonly concode_elem_sep void sendCompletionRollback concode_elem_sep void sendEarlyAborted concode_elem_sep SyncParticipantClient getClient concode_elem_sep void sendRe... | void function ( final CoordinationContextType arg0 , final MAP arg1 ) { } |
8,159 | the last time when logs failed to be delivered . concode_field_sep String bucketName concode_elem_sep String lastFailureMessage concode_elem_sep Boolean loggingEnabled concode_elem_sep java.util.Date lastSuccessfulDeliveryTime concode_elem_sep java.util.Date lastFailureTime concode_elem_sep String s3KeyPrefix concode_f... | java . util . Date function ( ) { return lastFailureTime ; } |
8,160 | returns true if this stubstrategy 's method is non void . concode_field_sep Class<?> clz concode_elem_sep String reposId concode_elem_sep CDRStreamWriter[] paramWriters concode_elem_sep CDRStreamReader retvalReader concode_elem_sep List<Class<?>> exceptionList concode_elem_sep Class<?> retvalRemoteInterface concode_ele... | boolean function ( ) { return ( retvalReader != null ) ; } |
8,161 | returns the list of addresses that matches the specified type . examples of address type are : to , cc , bcc , etc. . . concode_field_sep String TO concode_elem_sep List<Address> addresses concode_elem_sep String jid concode_elem_sep String description concode_elem_sep boolean delivered concode_elem_sep String type con... | List < Address > function ( String arg0 ) { List < Address > loc0 = new ArrayList < Address > ( addresses . size ( ) ) ; for ( Iterator < Address > loc1 = addresses . iterator ( ) ; loc1 . hasNext ( ) ; ) { Address loc2 = ( Address ) loc1 . next ( ) ; if ( loc2 . getType ( ) . equals ( arg0 ) ) { loc0 . add ( loc2 ) ; ... |
8,162 | the name of the replaceable attribute . returns a reference to this object so that method calls can be chained together . concode_field_sep String name concode_elem_sep Boolean replace concode_elem_sep String value concode_field_sep void setName concode_elem_sep String getValue concode_elem_sep String getName concode_e... | ReplaceableAttribute function ( String arg0 ) { this . name = arg0 ; return this ; } |
8,163 | sets the value of the customtargeting property . concode_field_sep GeoTargeting geoTargeting concode_elem_sep TechnologyTargeting technologyTargeting concode_elem_sep InventoryTargeting inventoryTargeting concode_elem_sep VideoPositionTargeting videoPositionTargeting concode_elem_sep CustomCriteriaSet customTargeting c... | void function ( CustomCriteriaSet arg0 ) { this . customTargeting = arg0 ; } |
8,164 | converts the attribute to a string . concode_field_sep HashMap knownColorsByName concode_elem_sep HashMap knownColorNamesByColor concode_field_sep String colorToString concode_elem_sep Object toPropertyValue | String function ( final Object arg0 ) { if ( arg0 == null ) { return null ; } if ( ! ( arg0 instanceof Color ) ) { throw new BeanException ( "srini_string" + arg0 . getClass ( ) + "srini_string" ) ; } final Color loc0 = ( Color ) arg0 ; return colorToString ( loc0 ) ; } |
8,165 | obtiene el valor de la propiedad return . concode_field_sep Result _return concode_field_sep void setReturn | Result function ( ) { return _return ; } |
8,166 | sets the lineoptimizer.bygradient to use in l-bfgs optimization . concode_field_sep LineOptimizer.ByGradient lineMaximizer concode_elem_sep Optimizable.ByGradientValue optimizable concode_elem_sep LinkedList s concode_elem_sep double eps concode_elem_sep int m concode_elem_sep double[] g concode_elem_sep OptimizerEvalu... | void function ( LineOptimizer . ByGradient arg0 ) { lineMaximizer = arg0 ; } |
8,167 | returns the number of tokens in the string . concode_field_sep ITokenComparatorFactory fTextTokenComparatorFactory concode_elem_sep String fText concode_elem_sep boolean DEBUG concode_elem_sep int[] fStarts concode_elem_sep int fCount concode_elem_sep int[] fLengths concode_field_sep int getCommentStartTokenLength conc... | int function ( ) { return fCount ; } |
8,168 | this method was generated by mybatis generator . this method sets the value of the database column public.survey _ id_seq . increment_by concode_field_sep Boolean isCalled concode_elem_sep Long lastValue concode_elem_sep Long minValue concode_elem_sep Long logCnt concode_elem_sep Long maxValue concode_elem_sep Long inc... | void function ( Long arg0 ) { this . incrementBy = arg0 ; } |
8,169 | gets the value of the payload property . concode_field_sep String annotation concode_elem_sep PayloadType payload concode_elem_sep GroupsType groups concode_elem_sep String message concode_elem_sep List<ElementType> element concode_field_sep String getAnnotation concode_elem_sep void setAnnotation concode_elem_sep void... | PayloadType function ( ) { return payload ; } |
8,170 | builds a result with the settings of this builder . concode_field_sep ThingUID bridgeUID concode_elem_sep long ttl concode_elem_sep ThingUID thingUID concode_elem_sep Map<String,Object> properties concode_elem_sep String label concode_elem_sep String representationProperty concode_field_sep DiscoveryResultBuilder withB... | DiscoveryResult function ( ) { return new DiscoveryResultImpl ( thingUID , bridgeUID , properties , representationProperty , label , ttl ) ; } |
8,171 | converts meter to feet . concode_field_sep PlaceHolder placeHolder concode_field_sep Double celsiusToFahrenheit concode_elem_sep String getWindDirection concode_elem_sep Double millimetersToInches concode_elem_sep double getSeaLevelPressure concode_elem_sep Double mpsToKmh concode_elem_sep Double kmhToKnots concode_ele... | Double function ( Double arg0 ) { if ( arg0 == null ) { return null ; } return arg0 * 3.2808399 ; } |
8,172 | return true if white and black time controls are equal . concode_field_sep ArrayList<TimeControlField> tcB concode_elem_sep int increment concode_elem_sep ArrayList<TimeControlField> tcW concode_elem_sep int timeControl concode_elem_sep int movesPerSession concode_field_sep void writeToStream concode_elem_sep boolean e... | boolean function ( ) { return arrayEquals ( tcW , tcB ) ; } |
8,173 | floor the buffer in log scale . concode_field_sep boolean isLog concode_elem_sep int id concode_elem_sep boolean wasUsed concode_elem_sep double[] numerator concode_elem_sep double denominator concode_field_sep float[] getValues concode_elem_sep void logNormalizeToSum concode_elem_sep void normalizeToSum concode_elem_s... | boolean function ( float arg0 ) { assert isLog ; boolean loc0 = false ; for ( int loc1 = 0 ; loc1 < numerator . length ; loc1 ++ ) { if ( numerator [ loc1 ] < arg0 ) { loc0 = true ; numerator [ loc1 ] = arg0 ; } } return loc0 ; } |
8,174 | used to communicate a cancel operation from the whitebox gui . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive concode_field_sep String getN... | void function ( boolean arg0 ) { cancelOp = arg0 ; } |
8,175 | adds a parse warning . concode_field_sep List<String> warnings concode_field_sep void clear concode_elem_sep List<String> copy | void function ( Integer arg0 , String arg1 , int arg2 , Object ... arg3 ) { String loc0 = Messages . INSTANCE . getParseMessage ( arg2 , arg3 ) ; add ( arg0 , arg1 , loc0 ) ; } |
8,176 | removes the article from this advertising . concode_field_sep Date date concode_elem_sep String adNumber concode_elem_sep ArrayList articles concode_elem_sep ArrayList articleReducedPrices concode_elem_sep Customer customer concode_field_sep void addArticle concode_elem_sep Article getArticle concode_elem_sep double ge... | void function ( final Article arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( "srini_string" ) ; } final int loc0 = articles . indexOf ( arg0 ) ; if ( loc0 != - 1 ) { articleReducedPrices . remove ( loc0 ) ; articles . remove ( loc0 ) ; } } |
8,177 | returns the fixed height . concode_field_sep LengthConstraintType widthConstraintType concode_elem_sep Range widthRange concode_elem_sep double width concode_elem_sep RectangleConstraint NONE concode_elem_sep Range heightRange concode_elem_sep double height concode_elem_sep LengthConstraintType heightConstraintType con... | double function ( ) { return this . height ; } |
8,178 | creates a new user object under management of this object . a set of constraints regarding user creation is imposed : if the specified name is null , then an assertion_failed exception is thrown stating that the name is null . if this object 's collection already contains an element whose name attribute equals the name... | User function ( HsqlName arg0 , String arg1 ) { User loc0 = granteeManager . addUser ( arg0 ) ; loc0 . setPassword ( arg1 ) ; boolean loc1 = userList . add ( arg0 . arg0 , loc0 ) ; if ( ! loc1 ) { throw Error . error ( ErrorCode . X_28503 , arg0 . statementName ) ; } return loc0 ; } |
8,179 | get the raw value that was set using #set int , float , without taking into account any default values . concode_field_sep boolean mHasAliasesSet concode_elem_sep int END concode_elem_sep float[] mDefaultSpacing concode_elem_sep int LEFT concode_elem_sep int VERTICAL concode_elem_sep int mValueFlags concode_elem_sep in... | float function ( int arg0 ) { return mSpacing [ arg0 ] ; } |
8,180 | test for paragraph 4 : bullet 1 concode_field_sep WorkConnectionFactory wcf concode_field_sep void testAnytimeWorkInstanceSubmitted concode_elem_sep ResourceAdapterArchive createResourceAdapter concode_elem_sep void testAsActiveThreadOnLoadCondition concode_elem_sep ResourceAdaptersDescriptor createActivation concode_e... | void function ( ) { } |
8,181 | returns a description of the series . concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listeners concode_elem_sep VetoableChangeSupport vetoableChangeSupport concode_elem_sep String description concode_elem_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep Comparable key concode... | String function ( ) { return this . description ; } |
8,182 | get the short date time formatter for the passed locale . concode_field_sep PDTFormatter s_aInstance concode_field_sep DateTimeFormatter getWithLocaleAndChrono concode_elem_sep DateTimeFormatter getMediumFormatterDate concode_elem_sep DateTimeFormatter getFullFormatterDate concode_elem_sep DateTimeFormatter getFullForm... | DateTimeFormatter function ( @ Nullable final Locale arg0 ) { return getWithLocaleAndChrono ( DateTimeFormat . shortDateTime ( ) , arg0 ) ; } |
8,183 | sets the value of the customtargetingvalueactiontype property . concode_field_sep String customTargetingValueActionType concode_field_sep String getCustomTargetingValueActionType | void function ( String arg0 ) { this . customTargetingValueActionType = arg0 ; } |
8,184 | gets the progress bar binding . concode_field_sep OutputProgress progressBar concode_elem_sep int percent concode_elem_sep PersistentFacesState state concode_elem_sep OutputProgressRenderBean outputBean concode_elem_sep RenderManager renderManager concode_elem_sep boolean disableStartButton concode_elem_sep PersistentF... | OutputProgress function ( ) { return progressBar ; } |
8,185 | returns requested token given position number starting at 0 . concode_field_sep String processedLine concode_elem_sep ArrayList tokenList concode_field_sep void add concode_elem_sep void set concode_elem_sep int size concode_elem_sep void setProcessedLine concode_elem_sep boolean isEmpty concode_elem_sep Object clone c... | Token function ( int arg0 ) { return ( Token ) tokenList . get ( arg0 ) ; } |
8,186 | return the value of the username column . concode_field_sep java.lang.Integer month concode_elem_sep java.lang.Integer year concode_elem_sep java.lang.Integer id concode_elem_sep int hashValue concode_elem_sep java.lang.Integer day concode_elem_sep java.lang.String plan concode_elem_sep java.lang.String username concod... | java . lang . String function ( ) { return this . username ; } |
8,187 | update the lastseenuid . lastseenuid must be updated when a new email is processed so that mailboxservice fetches new emails correctly . concode_field_sep String IMAP_USER_KEY concode_elem_sep String IMAP_FOLDER_KEY concode_elem_sep String IMAP_HOST_KEY concode_elem_sep IMAPStore store concode_elem_sep Thread idleThrea... | void function ( IMAPMessage arg0 ) { long loc0 = folder . getUID ( arg0 ) ; try { long loc1 = Property . getLong ( Property . Name . MAILBOX_LAST_SEEN_UID ) ; if ( loc0 <= loc1 ) { return ; } } catch ( Exception loc1 ) { } Property . set ( Property . Name . MAILBOX_LAST_SEEN_UID , loc0 ) ; } |
8,188 | this method was generated by mybatis generator . this method returns the value of the database column public.questions.name _ s concode_field_sep String nameF concode_elem_sep String nameE concode_elem_sep String nameS concode_elem_sep String nameC concode_elem_sep Integer deleted concode_elem_sep Integer id concode_el... | String function ( ) { return nameS ; } |
8,189 | ensures that the extensions are read and stored in fdescriptors . concode_field_sep String EXTENSION_POINT concode_elem_sep Map fDescriptors concode_field_sep IJavaFoldingStructureProvider getCurrentFoldingProvider concode_elem_sep void reloadExtensions concode_elem_sep JavaFoldingStructureProviderDescriptor getFolding... | void function ( ) { if ( fDescriptors == null ) reloadExtensions ( ) ; } |
8,190 | returns inner errors when the default system property is set to true . concode_field_sep String ODATA4J_DEBUG concode_field_sep ErrorResponseExtension returnInnerErrorsBasedOnSystemProperty concode_elem_sep ErrorResponseExtension returnInnerErrors concode_elem_sep ErrorResponseExtension returnInnerErrorsBasedOnDefaultQ... | ErrorResponseExtension function ( ) { return returnInnerErrorsBasedOnSystemProperty ( ODATA4J_DEBUG ) ; } |
8,191 | other ejb lifecycle method concode_field_sep EntityContext context concode_field_sep String getPoLocale concode_elem_sep Collection getAllItems concode_elem_sep void ejbActivate concode_elem_sep void setPoStatus concode_elem_sep void ejbRemove concode_elem_sep String ejbCreate concode_elem_sep void setLineItems concode... | void function ( String arg0 , String arg1 , String arg2 , long arg3 , String arg4 , float arg5 , String arg6 ) { } |
8,192 | is diverted . this will give false results if we did n't receive the schedule concode_field_sep String tpl concode_elem_sep Predicate<TrainMovement> isSuppressed concode_elem_sep TplLocation scheduled concode_elem_sep boolean origin concode_elem_sep boolean destination concode_elem_sep Predicate<TrainMovement> isNotOri... | boolean function ( ) { return ! isScheduled ( ) && isTsPresent ( ) ; } |
8,193 | creates a concatenation expression . concode_field_sep boolean validateSolution concode_elem_sep boolean verbose concode_elem_sep AbstractSolver solver concode_field_sep Regexp plusRegexp concode_elem_sep Expression subsequenceExpr concode_elem_sep Constraint regexpConstraint concode_elem_sep Regexp rangeRegexp concode... | Expression function ( List < Expression > arg0 ) { return HampiConstraints . concatExpr ( arg0 ) ; } |
8,194 | gets the proposallineitemactiontype value for this proposallineitemaction . concode_field_sep java.lang.String proposalLineItemActionType concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep void setPropos... | java . lang . String function ( ) { return proposalLineItemActionType ; } |
8,195 | gets the year . concode_field_sep int year concode_elem_sep VehicleInformationModel vehicleInformationModel concode_elem_sep boolean isEnabled concode_elem_sep long serialVersionUID concode_elem_sep int vehicleId concode_elem_sep int userId concode_elem_sep String vehicleRegNo concode_field_sep void setIsEnabled concod... | int function ( ) { return year ; } |
8,196 | get the proxy port . concode_field_sep String password concode_elem_sep String formatNamespace concode_elem_sep Logger log concode_elem_sep boolean md5 concode_elem_sep String TYPE_MULTI_POST concode_elem_sep boolean checksumError concode_elem_sep String username concode_elem_sep String TYPE_SERVICE concode_elem_sep St... | int function ( ) { return proxyPort ; } |
8,197 | returns the model name of the accessory . concode_field_sep String mVersion concode_elem_sep String mManufacturer concode_elem_sep String mModel concode_elem_sep String mDescription concode_elem_sep String mUri concode_elem_sep String mSerial concode_field_sep String getVersion concode_elem_sep boolean compare concode_... | String function ( ) { return mModel ; } |
8,198 | gets the type of this edge . concode_field_sep AbstractVertex destinationVertex concode_elem_sep Map<String,String> annotations concode_elem_sep long serialVersionUID concode_elem_sep AbstractVertex sourceVertex concode_field_sep byte[] bigHashCode concode_elem_sep AbstractVertex getDestinationVertex concode_elem_sep v... | String function ( ) { return annotations . get ( "srini_string" ) ; } |
8,199 | deletes all properties stored in this object and the record associated with this object itself . the behaviour of objects of this class after calling this method is undefined concode_field_sep int RECORD_SIZE concode_elem_sep int VALUE concode_elem_sep int KEY concode_elem_sep long record concode_elem_sep int PROP_INDE... | void function ( ) { clear ( ) ; db . free ( record ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.