idx int64 0 25k | question stringlengths 68 5.14k | target stringlengths 20 503 |
|---|---|---|
12,000 | verify that udf in the whitelist can be access concode_field_sep PlaceHolder placeHolder concode_field_sep void testUdfNotInWhiteList concode_elem_sep void setUp concode_elem_sep void testUdfInBlackAndWhiteList concode_elem_sep void testUdfInBlackList concode_elem_sep void testMalformattedListProperty concode_elem_sep ... | void function ( ) { Set < String > loc0 = FunctionRegistry . getFunctionNames ( ) ; loc0 . remove ( "srini_string" ) ; FunctionRegistry . setupPermissionsForBuiltinUDFs ( loc0 . toString ( ) , "srini_string" ) ; assertEquals ( "srini_string" , FunctionRegistry . getFunctionInfo ( "srini_string" ) . getDisplayName ( ) )... |
12,001 | f0 - > assignmentstatement | arrayassignmentstatement | printstatement concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | R function ( Statement arg0 ) { R loc0 = null ; arg0 . f0 . accept ( this ) ; return loc0 ; } |
12,002 | tests if the specified list contains errors concode_field_sep PlaceHolder placeHolder concode_field_sep IStatus getMoreSevere concode_elem_sep IStatus getMostSevere concode_elem_sep void applyToStatusLine | boolean function ( List < IStatus > arg0 ) { for ( IStatus loc0 : arg0 ) { if ( loc0 . matches ( IStatus . ERROR ) ) { return true ; } } return false ; } |
12,003 | initializes a weight matrix with random weights between -2 and 2 concode_field_sep int[] neuronsPerLayer concode_elem_sep PrintWriter log concode_elem_sep int logLine concode_elem_sep ArrayList<double[]> deltaValues concode_elem_sep ArrayList<double[]> neuronOutputs concode_elem_sep int inputDimension concode_elem_sep ... | void function ( double [ ] [ ] arg0 ) { Random loc0 = new Random ( seed ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { for ( int loc2 = 0 ; loc2 < arg0 [ loc1 ] . length ; loc2 ++ ) { arg0 [ loc1 ] [ loc2 ] = 4 * loc0 . nextDouble ( ) - 2 ; } } } |
12,004 | indicate that we just encountered a client-side error . concode_field_sep UUID fileSystemInstanceId concode_elem_sep String METRIC_TAG_ACCOUNT_NAME concode_elem_sep String WASB_UPLOAD_LATENCY concode_elem_sep long currentMaximumDownloadBytesPerSecond concode_elem_sep MetricsRegistry registry concode_elem_sep String WAS... | void function ( ) { clientErrors . incr ( ) ; } |
12,005 | sets the value of the returndesc property . concode_field_sep String returnCode concode_elem_sep XMLGregorianCalendar rtxCreateDate concode_elem_sep List<FailedCtDtls> failedPmntDtls concode_elem_sep String creditorRef concode_elem_sep String returnDesc concode_field_sep String getCreditorRef concode_elem_sep void setR... | void function ( String arg0 ) { this . returnDesc = arg0 ; } |
12,006 | returns the most recent dialog message , or null if there is no current dialog message . concode_field_sep boolean wholeWord concode_elem_sep int totalHitCount concode_elem_sep SwingController controller concode_elem_sep SearchPanel searchPanel concode_elem_sep int lengthOfTask concode_elem_sep boolean caseSensitive co... | String function ( ) { return dialogMessage ; } |
12,007 | start building a sort order by sorting a provided column in ascending order . concode_field_sep Sort previous concode_elem_sep int count concode_elem_sep SortOrder order concode_field_sep List<SortOrder> build concode_elem_sep Sort then concode_elem_sep Sort then | Sort function ( Grid . Column < ? , ? > arg0 ) { return by ( arg0 , SortDirection . ASCENDING ) ; } |
12,008 | to set batch instance id . concode_field_sep String batchInstanceId concode_elem_sep boolean isUsingGhostScript concode_elem_sep List<AbstractRunnable> taskList concode_elem_sep long waitThreadSleepTime concode_elem_sep Logger LOG concode_field_sep void add concode_elem_sep void wait concode_elem_sep void addAll concod... | void function ( String arg0 ) { this . batchInstanceId = arg0 ; } |
12,009 | return the formatted work duration . example : format locale.french , duration.encode `` 9d 10h '' , durationformat.short - > 10j 2h if sonar.technicaldebt.hoursinday property is set to 8 concode_field_sep Settings settings concode_elem_sep I18n i18n concode_field_sep String encode concode_elem_sep String format concod... | String function ( Locale arg0 , Duration arg1 , DurationFormat arg2 ) { return arg2 ( arg0 , arg1 ) ; } |
12,010 | associates a list of requestmatcher instances with the abstractconfigattributerequestmatcherregistry concode_field_sep RequestMatcher ANY_REQUEST concode_elem_sep ApplicationContext context concode_field_sep C anyRequest concode_elem_sep List<MvcRequestMatcher> createMvcMatchers concode_elem_sep void setApplicationCont... | C function ( RequestMatcher ... arg0 ) { return chainRequestMatchers ( Arrays . asList ( arg0 ) ) ; } |
12,011 | gets the factory . concode_field_sep JAXBContext jaxbContext concode_elem_sep ObjectFactory factory concode_elem_sep Marshaller marshaller concode_field_sep Marshaller getMarshaller concode_elem_sep void createContext | ObjectFactory function ( ) { return factory ; } |
12,012 | return an array containing the names of all currently defined configuration attributes . if there are no such attributes , a zero length array is returned . concode_field_sep Properties logConfig concode_elem_sep String HASHTABLE_IMPLEMENTATION_PROPERTY concode_elem_sep String FACTORY_DEFAULT concode_elem_sep String FA... | String [ ] function ( ) { return ( String [ ] ) logConfig . keySet ( ) . toArray ( ) ; } |
12,013 | set the value of the action property . concode_field_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_sep long serialVersionUID concode_elem_sep boolean leaf concode_elem_sep String leafIcon concode_elem_sep String br... | void function ( String arg0 ) { this . action = arg0 ; } |
12,014 | forces the reference object to be enqueued if it has been associated with a queue . concode_field_sep Reference<?> pendingNext concode_elem_sep T referent concode_elem_sep Reference queueNext concode_elem_sep ReferenceQueue<? super T> queue concode_field_sep void weakenReferent concode_elem_sep T get concode_elem_sep v... | boolean function ( ) { return enqueueInternal ( ) ; } |
12,015 | returns the revision string . concode_field_sep long serialVersionUID concode_elem_sep double m_fAlpha concode_field_sep Enumeration listOptions concode_elem_sep void initCPTs concode_elem_sep double[] distributionForInstance concode_elem_sep void setOptions concode_elem_sep void setAlpha concode_elem_sep String global... | String function ( ) { return RevisionUtils . extract ( "srini_string" ) ; } |
12,016 | creates a new physical connection to the underlying eis resource manager . concode_field_sep Logger log concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep void setResourceAdapter c... | ManagedConnection function ( Subject arg0 , ConnectionRequestInfo arg1 ) { log . trace ( "srini_string" ) ; return new MultipleManagedConnection2 ( this ) ; } |
12,017 | obtains value of the coreconnectionpnames #connection_timeout parameter . if not set , defaults to 0 . concode_field_sep PlaceHolder placeHolder concode_field_sep void setSoReuseaddr concode_elem_sep int getLinger concode_elem_sep void setTcpNoDelay concode_elem_sep void setConnectionTimeout concode_elem_sep void setSo... | int function ( final HttpParams arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return arg0 . getIntParameter ( CoreConnectionPNames . CONNECTION_TIMEOUT , 0 ) ; } |
12,018 | checks if any of the rights represented by the rights argument have been granted on the specified database object . this is done by checking that a mapping exists in the rights map from the dbobject argument for at least one of the rights contained in the rights argument . otherwise , it throws . concode_field_sep IntV... | void function ( Object arg0 , int arg1 ) { if ( ! isAccessible ( arg0 , arg1 ) ) { throw Trace . error ( Trace . ACCESS_IS_DENIED ) ; } } |
12,019 | returns amount of xems as integer . microxems are ignored . concode_field_sep long _amountMicro concode_elem_sep Xems ZERO concode_field_sep double getAsFractional concode_elem_sep boolean isMoreOrEqual concode_elem_sep long getAsMicro concode_elem_sep boolean isMoreThan concode_elem_sep Xems fromXems concode_elem_sep ... | long function ( ) { } |
12,020 | checks if the given path has watches set . concode_field_sep Map<String,Set<Long>> path2Ids concode_field_sep Map<String,Set<Long>> toMap concode_elem_sep Set<Long> getSessions concode_elem_sep Map<String,Set<Long>> deepCopy | boolean function ( String arg0 ) { return path2Ids . containsKey ( arg0 ) ; } |
12,021 | convenience method to encode a string , in our shortened format . please use this to encode a string , rather than trying to encode the string yourself using the 0-arg string.getbytes which is not deterministic . concode_field_sep byte[] base64Reverse concode_elem_sep char[] base64Alphabet concode_elem_sep char[] base6... | String function ( String arg0 ) { return encodeUTF8 ( arg0 , false ) ; } |
12,022 | retrieves a byte sequence representing the md5 digest of the specified character sequence , using the specified encoding to first convert the character sequence into a byte sequence . if the specified encoding is null , then iso-8859-1 is assumed . concode_field_sep MessageDigest md5 concode_field_sep String encode | byte [ ] function ( String arg0 , String arg1 ) { byte [ ] loc0 ; if ( arg1 == null ) { arg1 = "srini_string" ; } try { loc0 = arg0 . getBytes ( arg1 ) ; } catch ( UnsupportedEncodingException loc1 ) { throw new RuntimeException ( loc1 . toString ( ) ) ; } return digest ( loc0 ) ; } |
12,023 | return the exception associated with this build step . concode_field_sep int result concode_elem_sep Vertex vertex concode_elem_sep int FOLLOW concode_elem_sep Throwable throwable concode_elem_sep X509Certificate cert concode_elem_sep int POSSIBLE concode_elem_sep int FAIL concode_elem_sep int SUCCEED concode_elem_sep ... | Throwable function ( ) { return throwable ; } |
12,024 | assert a cookie value with the given hamcrest matcher . concode_field_sep PlaceHolder placeHolder concode_field_sep ResultMatcher path concode_elem_sep ResultMatcher path concode_elem_sep ResultMatcher maxAge concode_elem_sep ResultMatcher maxAge concode_elem_sep ResultMatcher doesNotExist concode_elem_sep ResultMatche... | ResultMatcher function ( final String arg0 , final Matcher < ? super String > arg1 ) { return new ResultMatcher ( ) { @ Override public void match ( MvcResult arg2 ) { Cookie loc0 = arg2 . getResponse ( ) . getCookie ( arg0 ) ; assertTrue ( "srini_string" + arg0 , loc0 != null ) ; assertThat ( "srini_string" , loc0 . g... |
12,025 | call getresourceadapterproperty concode_field_sep ValidManagedConnectionFactory1 mcf concode_elem_sep ValidManagedConnection1 mc concode_field_sep String getManagedConnectionFactoryProperty concode_elem_sep void close | int function ( ) { return ( ( ValidResourceAdapter ) mcf . getResourceAdapter ( ) ) . getRaProperty ( ) ; } |
12,026 | get the radios power state concode_field_sep String REQUEST_GET_MODE concode_elem_sep FrontierSiliconRadioConnection conn concode_elem_sep String REQUEST_SET_MUTE concode_elem_sep String REQUEST_GET_VOLUME concode_elem_sep String REQUEST_GET_PLAY_INFO_TEXT concode_elem_sep String REQUEST_GET_MUTE concode_elem_sep Strin... | boolean function ( ) { final FrontierSiliconRadioApiResult loc0 = conn . doRequest ( REQUEST_GET_POWER ) ; return loc0 . getValueU8AsBoolean ( ) ; } |
12,027 | the target virtualization environment . constraints : allowed values : citrix , vmware , microsoft concode_field_sep String instanceId concode_elem_sep String targetEnvironment concode_field_sep String getInstanceId concode_elem_sep String getTargetEnvironment concode_elem_sep InstanceExportDetails withInstanceId conco... | void function ( String arg0 ) { this . targetEnvironment = arg0 ; } |
12,028 | two objects that are equal are required to return the same hashcode . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testEventNotification concode_elem_sep void testFindRangeBounds concode_elem_sep void testPublicCloneable concode_elem_sep void testSerialization conco... | void function ( ) { BarRenderer loc0 = new BarRenderer ( ) ; BarRenderer loc1 = new BarRenderer ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; } |
12,029 | normalizes a previously calculated score concode_field_sep float logLanguageScore concode_elem_sep int frameNumber concode_elem_sep DecimalFormat numFmt concode_elem_sep float logAcousticScore concode_elem_sep int curCount concode_elem_sep float logTotalScore concode_elem_sep float logInsertionScore concode_elem_sep in... | float function ( float arg0 ) { logTotalScore -= arg0 ; logAcousticScore -= arg0 ; return logTotalScore ; } |
12,030 | sets the flag that indicates whether or not a change event has been received . concode_field_sep boolean notified concode_field_sep boolean getNotified concode_elem_sep void rendererChanged | void function ( boolean arg0 ) { this . notified = arg0 ; } |
12,031 | gets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep JAXBElement<? extends AbstractGeometricAggregateType> abstractGeometricAggregate concode_elem_sep String show concode_elem_sep java.lang.Boolean owns concode_elem_sep String actuate concode_elem_sep L... | String function ( ) { return arcrole ; } |
12,032 | this is exposed internally only for the removing synthetic fields from the json output . concode_field_sep Field field concode_field_sep Class<?> getDeclaringClass concode_elem_sep String getName concode_elem_sep T getAnnotation concode_elem_sep boolean hasModifier concode_elem_sep Object get concode_elem_sep Type getD... | boolean function ( ) { return field . isSynthetic ( ) ; } |
12,033 | remove the onexceptionlist by look up the route id from the errorhandlerbuilder internal map concode_field_sep Map<RouteContext,List<OnExceptionDefinition>> onExceptions concode_elem_sep ExceptionPolicyStrategy exceptionPolicyStrategy concode_field_sep void setExceptionPolicyStrategy concode_elem_sep List<OnExceptionDe... | boolean function ( String arg0 ) { for ( RouteContext loc0 : onExceptions . keySet ( ) ) { if ( getRouteId ( loc0 ) . equals ( arg0 ) ) { onExceptions . remove ( loc0 ) ; return true ; } } return false ; } |
12,034 | returns true iff the value is either of the following : true , 1 , on , yes otherwise false concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isBoolean concode_elem_sep Boolean parseBooleanExact concode_elem_sep boolean parseBoolean concode_elem_sep Boolean parseBoolean concode_elem_sep boolean parseB... | boolean function ( String arg0 ) { return arg0 != null && ( arg0 . equals ( "srini_string" ) || arg0 . equals ( "srini_string" ) || arg0 . equals ( "srini_string" ) || arg0 . equals ( "srini_string" ) ) ; } |
12,035 | checks if any newly formed interlinks are in the outerlink or innerlink collections concode_field_sep Map<Id,ClusterLink> outLinks concode_elem_sep int clusterStepParented concode_elem_sep LinkedHashMap<Id,ClusterLink> newInterlinks concode_elem_sep NodeCluster child2 concode_elem_sep double outFlowSum concode_elem_sep... | void function ( ) { for ( ClusterLink loc0 : newInterlinks . values ( ) ) { inLinks . remove ( loc0 . getId ( ) ) ; outLinks . remove ( loc0 . getId ( ) ) ; } } |
12,036 | it clones this pattern . concode_field_sep BitSet appearingIn concode_elem_sep List<ItemAbstractionPair> elements concode_field_sep void add concode_elem_sep String toStringToFile concode_elem_sep int getSupport concode_elem_sep void setElements concode_elem_sep int compareTo concode_elem_sep ItemAbstractionPair getIth... | Pattern function ( ) { PatternCreator loc0 = new PatternCreator ( ) ; List < ItemAbstractionPair > loc1 = new ArrayList < ItemAbstractionPair > ( elements ) ; Pattern loc2 = loc0 . createPattern ( loc1 ) ; return loc2 ; } |
12,037 | create an instance of publishresponsetype concode_field_sep PlaceHolder placeHolder concode_field_sep DownloadUpdateType createDownloadUpdateType concode_elem_sep ForgotPasswdParamsType createForgotPasswdParamsType concode_elem_sep GetResponseTypeParams createGetResponseTypeParams concode_elem_sep ACKTypeParams createA... | PublishResponseType function ( ) { return new PublishResponseType ( ) ; } |
12,038 | reports an error to the error manager associated with this handler , errormanager is used for that purpose . no security checks aredone , therefore this is compatible with environments where the caller is non-privileged . concode_field_sep Level DEFAULT_LEVEL concode_elem_sep Formatter formatter concode_elem_sep Filter... | void function ( String arg0 , Exception arg1 , int arg2 ) { this . errorMan . error ( arg0 , arg1 , arg2 ) ; } |
12,039 | sets the value of the returnval property . concode_field_sep String returnval concode_field_sep String getReturnval | void function ( String arg0 ) { this . returnval = arg0 ; } |
12,040 | getter . concode_field_sep String PAX_TINYBUNDLES_VERSION concode_elem_sep String ATINJECT_VERSION concode_elem_sep boolean paxUrlSnapshotVersion concode_elem_sep boolean paxSwissboxSnapshotVersion concode_elem_sep String PAX_EXAM_VERSION concode_elem_sep boolean paxExamSnapshotVersion concode_elem_sep String OPS4J_BAS... | boolean function ( ) { return paxTinybundlesSnapshotVersion ; } |
12,041 | converts a java object to json . concode_field_sep String _result concode_elem_sep CloseableHttpClient _httpClient concode_elem_sep String _message concode_elem_sep ObjectMapper MAPPER concode_elem_sep String _endpoint concode_elem_sep BasicHttpContext _httpContext concode_elem_sep String _errorMessage concode_elem_sep... | String function ( I arg0 ) { return MAPPER . writeValueAsString ( arg0 ) ; } |
12,042 | metodo para obtener el codigo del pedido del producto . concode_field_sep String codProducto concode_elem_sep String estadoProducto concode_elem_sep String fechaEnvio concode_elem_sep int codPedido concode_elem_sep int cantidad concode_elem_sep String codVendedor concode_elem_sep int stock concode_field_sep String getE... | int function ( ) { return codPedido ; } |
12,043 | gets the value of this axis angle into the array a of length four in x , y , z , angle order . concode_field_sep double x concode_elem_sep double y concode_elem_sep double angle concode_elem_sep double z concode_elem_sep long serialVersionUID concode_field_sep void setFromQuat concode_elem_sep void set concode_elem_sep... | void function ( double arg0 [ ] ) { arg0 [ 0 ] = x ; arg0 [ 1 ] = y ; arg0 [ 2 ] = z ; arg0 [ 3 ] = angle ; } |
12,044 | enables/disables logging of imageloader completely even error logs . concode_field_sep boolean writeLogs concode_elem_sep String LOG_FORMAT concode_elem_sep boolean writeDebugLogs concode_field_sep void disableLogging concode_elem_sep void d concode_elem_sep void writeDebugLogs concode_elem_sep void e concode_elem_sep ... | void function ( boolean arg0 ) { L . arg0 = arg0 ; } |
12,045 | called by scene concode_field_sep Number3d _scale concode_elem_sep Number3d _rotation concode_elem_sep String _name concode_elem_sep boolean _lightingEnabled concode_elem_sep RenderType _renderType concode_elem_sep boolean _isVisible concode_elem_sep FacesBufferedList _faces concode_elem_sep boolean _ignoreFaces concod... | void function ( Scene arg0 ) { _scene = arg0 ; } |
12,046 | call this at the beginning to make sure that the class is loaded and the static initializer has run concode_field_sep PlaceHolder placeHolder concode_field_sep void uncaughtException concode_elem_sep void handle | void function ( ) { Log . debug ( "srini_string" ) ; } |
12,047 | returns the number of email addresses . concode_field_sep EmailAddressLocalService _emailAddressLocalService concode_field_sep com.liferay.portal.model.EmailAddress deleteEmailAddress concode_elem_sep com.liferay.portal.model.EmailAddress deleteEmailAddress concode_elem_sep void setWrappedService concode_elem_sep com.l... | int function ( ) { return _emailAddressLocalService . getEmailAddressesCount ( ) ; } |
12,048 | delay for 5 seconds the executionof broadcaster #broadcast java.lang.object operation concode_field_sep Broadcaster broadcaster concode_elem_sep Logger logger concode_field_sep Broadcastable broadcast concode_elem_sep Broadcastable subscribe concode_elem_sep void destroy concode_elem_sep Broadcastable subscribeAndResum... | Broadcastable function ( @ FormParam ( "srini_string" ) String arg0 ) { return broadcast ( arg0 ) ; } |
12,049 | create a new instance of random concode_field_sep String ANSI_YELLOW concode_elem_sep Unsafe m_unsafe concode_elem_sep ServiceLoader<NonVolatileMemoryAllocatorService> m_nvmasvcloader concode_elem_sep String ANSI_GREEN concode_elem_sep String ANSI_PURPLE concode_elem_sep String ANSI_BLACK concode_elem_sep String ANSI_B... | Random function ( long arg0 ) { Random loc0 = new Random ( ) ; if ( 0L == arg0 ) { arg0 = System . currentTimeMillis ( ) ; System . out . println ( "srini_string" + arg0 ) ; } else { System . out . println ( "srini_string" + arg0 ) ; } loc0 . setSeed ( arg0 ) ; return loc0 ; } |
12,050 | information about the reserved instance listing . concode_field_sep com.amazonaws.internal.SdkInternalList<ReservedInstancesListing> reservedInstancesListings concode_field_sep void setReservedInstancesListings concode_elem_sep DescribeReservedInstancesListingsResult withReservedInstancesListings concode_elem_sep Descr... | java . util . List < ReservedInstancesListing > function ( ) { if ( reservedInstancesListings == null ) { reservedInstancesListings = new com . amazonaws . internal . SdkInternalList < ReservedInstancesListing > ( ) ; } return reservedInstancesListings ; } |
12,051 | injects the jetty context object to be initialized . concode_field_sep Context jettyContext concode_elem_sep Logger log concode_elem_sep ApplicationContext ctx concode_elem_sep String contextAttribute concode_field_sep void setApplicationContext concode_elem_sep void setContextAttribute concode_elem_sep void postConstr... | void function ( Context arg0 ) { this . jettyContext = arg0 ; } |
12,052 | gets the value of the classifyresult property . concode_field_sep String classifyResult concode_field_sep void setClassifyResult | String function ( ) { return classifyResult ; } |
12,053 | compare the specified country to this country object ignoring the source and timestamp fields , return true if the countryiso fields are equal concode_field_sep String mCountryIso concode_elem_sep int mHashCode concode_elem_sep int COUNTRY_SOURCE_NETWORK concode_elem_sep int mSource concode_elem_sep int COUNTRY_SOURCE_... | boolean function ( Country arg0 ) { return arg0 != null && mCountryIso . equals ( arg0 . getCountryIso ( ) ) ; } |
12,054 | sets an offset that will be added to the timestamps and sub-sample timestamps of samples subsequently written to the track outputs . concode_field_sep int[] trackTypes concode_elem_sep String TAG concode_elem_sep DefaultTrackOutput[] trackOutputs concode_field_sep int[] getWriteIndices concode_elem_sep TrackOutput trac... | void function ( long arg0 ) { for ( DefaultTrackOutput loc0 : trackOutputs ) { if ( loc0 != null ) { loc0 . setSampleOffsetUs ( arg0 ) ; } } } |
12,055 | sets the line style . concode_field_sep HSSFShape parent concode_elem_sep int fillColor concode_elem_sep int LINEWIDTH_ONE_PT concode_elem_sep int LINEWIDTH_DEFAULT concode_elem_sep int LINESTYLE_DASHGEL concode_elem_sep int LINESTYLE_LONGDASHDOTGEL concode_elem_sep boolean noFill concode_elem_sep int LINESTYLE_DOTGEL ... | void function ( int arg0 ) { this . lineStyle = arg0 ; } |
12,056 | test method for com.hazelcast.config.topicconfig #setname java.lang.string . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetName concode_elem_sep void testIsGlobalOrderingEnabled concode_elem_sep void testSetMultiThreadingEnabled concode_elem_sep void testSetGlobalOrderingEnabled concode_elem_s... | void function ( ) { TopicConfig loc0 = new TopicConfig ( ) . setName ( "srini_string" ) ; assertTrue ( "srini_string" . equals ( loc0 . getName ( ) ) ) ; } |
12,057 | gets the timezone location used to identify this time zone . concode_field_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_elem_sep String checkboxId concode_field_sep String getUseDaylightTime concode_elem_sep boolean isRelevantComponentId concode_elem_sep String... | String function ( ) { return id ; } |
12,058 | a flag to indicate the presence of one or more far out values at the bottom end of the range . concode_field_sep List outlierLists concode_elem_sep boolean highFarOut concode_elem_sep boolean lowFarOut concode_field_sep boolean add concode_elem_sep boolean isHighFarOut concode_elem_sep Iterator iterator concode_elem_se... | boolean function ( ) { return this . lowFarOut ; } |
12,059 | returns the mapping code for a given character . the mapping codes are maintained in an internal char array named soundexmapping , and the default values of these mappings are us english . concode_field_sep RefinedSoundex US_ENGLISH concode_elem_sep char[] soundexMapping concode_elem_sep char[] US_ENGLISH_MAPPING conco... | char function ( char arg0 ) { if ( ! Character . isLetter ( arg0 ) ) { return 0 ; } return this . soundexMapping [ Character . toUpperCase ( arg0 ) - 'A' ] ; } |
12,060 | enqueues the data provided to the rear of the queue . concode_field_sep int rear concode_elem_sep int[] queue concode_elem_sep int size concode_elem_sep int front concode_elem_sep int capacity concode_field_sep int dequeue concode_elem_sep boolean isEmpty concode_elem_sep String toString concode_elem_sep boolean isFull | void function ( int arg0 ) { if ( isFull ( ) ) { throw new QueueFullException ( ) ; } size ++ ; queue [ rear ] = arg0 ; rear = ( rear + 1 ) % capacity ; } |
12,061 | retrieve the spring beanfactory to delegate bean name resolution to . the default implementation delegates to getwebapplicationcontext . can be overridden to provide an arbitrary listablebeanfactory reference to resolve against ; usually , this will be a full spring applicationcontext . concode_field_sep PlaceHolder pl... | ListableBeanFactory function ( FacesContext arg0 ) { return getWebApplicationContext ( arg0 ) ; } |
12,062 | the identifier of the vpc in which the ad connector is created . concode_field_sep String customerUserName concode_elem_sep String vpcId concode_elem_sep com.amazonaws.internal.SdkInternalList<String> customerDnsIps concode_elem_sep com.amazonaws.internal.SdkInternalList<String> subnetIds concode_field_sep void setCust... | String function ( ) { return this . vpcId ; } |
12,063 | creates a service name for the batch environment service . concode_field_sep ServiceName BASE_BATCH_THREAD_POOL_NAME concode_field_sep ServiceName beanManagerServiceName concode_elem_sep ServiceName jobOperatorServiceName concode_elem_sep ServiceName jobOperatorServiceName | ServiceName function ( final DeploymentUnit arg0 ) { return arg0 . getServiceName ( ) . append ( "srini_string" ) . append ( "srini_string" ) ; } |
12,064 | sets the value of the permissionsenum property . concode_field_sep SettingNameEnum settingNameEnum concode_elem_sep TransactionTypeEnum transactionTypeEnum concode_elem_sep SettlementStateEnum settlementStateEnum concode_elem_sep CardTypeEnum cardTypeEnum concode_elem_sep CustomerProfileSummaryType customerProfileSumma... | void function ( PermissionsEnum arg0 ) { this . permissionsEnum = arg0 ; } |
12,065 | execute shell commands concode_field_sep int result concode_elem_sep String COMMAND_SU concode_elem_sep String COMMAND_EXIT concode_elem_sep String COMMAND_LINE_END concode_elem_sep String COMMAND_ZLSU concode_elem_sep String successMsg concode_elem_sep String COMMAND_SH concode_elem_sep String errorMsg concode_field_s... | CommandResult function ( List < String > arg0 , boolean arg1 , boolean arg2 ) { return execCommand ( arg0 == null ? null : arg0 . toArray ( new String [ ] { } ) , arg1 , arg2 ) ; } |
12,066 | parses a string value as a json object , array , or value into a new instance of the given destination class using jsonparser #parse class . concode_field_sep PlaceHolder placeHolder concode_field_sep T fromInputStream concode_elem_sep T fromInputStream concode_elem_sep JsonParser createJsonParser concode_elem_sep Json... | T function ( String arg0 , Class < T > arg1 ) { return createJsonParser ( arg0 ) . parse ( arg1 ) ; } |
12,067 | copies all of the bytes from in to out . neither stream is closed . returns the total number of bytes transferred . concode_field_sep Charset US_ASCII concode_elem_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep AtomicReference<byte[]> skipBuffer concode_elem_sep Charset UTF_8 concode_elem_sep String[] EMPTY_STRING_ARRAY ... | int function ( InputStream arg0 , OutputStream arg1 ) { int loc0 = 0 ; byte [ ] loc1 = new byte [ 8192 ] ; int loc2 ; while ( ( loc2 = arg0 . read ( loc1 ) ) != - 1 ) { loc0 += loc2 ; arg1 . write ( loc1 , 0 , loc2 ) ; } return loc0 ; } |
12,068 | returns an object that was stored using the given key . if such object is not found , null is returned . concode_field_sep HashMap<String,List<ModuleCommunicationListener>> listeners concode_elem_sep HashMap<String,Object> values concode_elem_sep int INIT_CAPACITY concode_field_sep int getInt concode_elem_sep void upda... | Object function ( String arg0 ) { if ( this . values == null ) { return null ; } return this . values . get ( arg0 ) ; } |
12,069 | set operator concode_field_sep long serialVersionUID concode_elem_sep boolean caseSensitive concode_elem_sep LinkedList<UiFilterFieldName> name concode_elem_sep String id concode_elem_sep String categoryName concode_elem_sep FieldType fieldType concode_elem_sep Serializable value concode_elem_sep UiFilterOperator opera... | void function ( UiFilterOperator arg0 ) { operator = arg0 ; } |
12,070 | create a default messageparticipant object for a message and user . this is so they can mark messages as unread/delete them . not persisted until actioned . concode_field_sep ProfilePreferencesLogic preferencesLogic concode_elem_sep ProfileDao dao concode_elem_sep ProfileLinkLogic linkLogic concode_elem_sep SakaiProxy ... | MessageParticipant function ( final String arg0 , final String arg1 ) { MessageParticipant loc0 = new MessageParticipant ( ) ; loc0 . setMessageId ( arg0 ) ; loc0 . setUuid ( arg1 ) ; loc0 . setRead ( false ) ; loc0 . setDeleted ( false ) ; return loc0 ; } |
12,071 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep Step step concode_field_sep int hashCode concode_elem_sep Step getStep concode_elem_sep boolean equals concode_elem_sep DescribeStepResult clone concode_elem_sep void setStep concode_elem_sep DescribeStepResult withSte... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getStep ( ) != null ) loc0 . append ( "srini_string" + getStep ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
12,072 | the current status of the requested operation in the system . type : string concode_field_sep String domainName concode_elem_sep String operationId concode_elem_sep String message concode_elem_sep String type concode_elem_sep java.util.Date submittedDate concode_elem_sep String status concode_field_sep GetOperationDeta... | void function ( String arg0 ) { this . status = arg0 ; } |
12,073 | returns a string representation of the object . this implementation constructs that representation based on the id fields . concode_field_sep Collection<BookmarkEntity> bookmarkEntityCollection concode_elem_sep String password concode_elem_sep String userid concode_elem_sep String email concode_elem_sep String username... | String function ( ) { return MoreObjects . toStringHelper ( this ) . add ( "srini_string" , userid ) . toString ( ) ; } |
12,074 | add class loader , might be used for resolving methods/fields concode_field_sep Set<Scanner> scanners concode_elem_sep Set<URL> urls concode_elem_sep ExecutorService executorService concode_elem_sep ClassLoader[] classLoaders concode_elem_sep Serializer serializer concode_elem_sep Predicate<String> inputsFilter concode... | ConfigurationBuilder function ( ClassLoader ... arg0 ) { this . classLoaders = this . classLoaders == null ? arg0 : ObjectArrays . concat ( this . classLoaders , arg0 , ClassLoader . class ) ; return this ; } |
12,075 | setter method for callsource concode_field_sep Integer customerType concode_elem_sep Integer callSource concode_elem_sep Date endDate concode_elem_sep Integer caseStatus concode_elem_sep long serialVersionUID concode_elem_sep Integer subCategoryId concode_elem_sep String circleID concode_elem_sep String circle concode_... | void function ( Integer arg0 ) { this . callSource = arg0 ; } |
12,076 | generates a digest based on the contents of an array of bytes . concode_field_sep double bitsPerElement concode_elem_sep MessageDigest digestFunction concode_elem_sep int numberOfAddedElements concode_elem_sep String hashName concode_elem_sep Charset charset concode_elem_sep int bitSetSize concode_elem_sep int expected... | long function ( byte [ ] arg0 ) { long loc0 = 0 ; byte [ ] loc1 ; synchronized ( digestFunction ) { loc1 = digestFunction . digest ( arg0 ) ; } for ( int loc2 = 0 ; loc2 < 4 ; loc2 ++ ) { loc0 <<= 8 ; loc0 |= ( ( int ) loc1 [ loc2 ] ) & 0xFF ; } return loc0 ; } |
12,077 | generates a timestamp for use with aws request signing concode_field_sep String accessKeyId concode_elem_sep String secretAccessKey concode_elem_sep String ACTION_NAME concode_elem_sep String site concode_elem_sep Integer NUMBER_OF_DAYS concode_elem_sep String AWS_BASE_URL concode_elem_sep String DATEFORMAT_AWS concode... | String function ( Date arg0 ) { SimpleDateFormat loc0 = new SimpleDateFormat ( DATEFORMAT_AWS ) ; loc0 . setTimeZone ( TimeZone . getTimeZone ( "srini_string" ) ) ; return loc0 . loc0 ( arg0 ) ; } |
12,078 | override this to perform actions after startup . concode_field_sep String m_name concode_elem_sep boolean m_stopped concode_elem_sep long m_retryInterval concode_elem_sep AlarmQueue<NorthboundAlarm> m_queue concode_elem_sep Thread m_thread concode_field_sep void discard concode_elem_sep String getName concode_elem_sep ... | void function ( ) { } |
12,079 | returns the selected element if the selection consists of a single element only . concode_field_sep PlaceHolder placeHolder concode_field_sep void selectAndReveal concode_elem_sep List toList | Object function ( ISelection arg0 ) { if ( ! ( arg0 instanceof IStructuredSelection ) ) return null ; IStructuredSelection loc0 = ( IStructuredSelection ) arg0 ; if ( loc0 . size ( ) != 1 ) return null ; return loc0 . getFirstElement ( ) ; } |
12,080 | extract a property value by name from the given properties object . both null and empty string are viewed as the same , and return null . concode_field_sep String PLACEHOLDER_START concode_field_sep void resolvePlaceHolders concode_elem_sep Integer getInteger concode_elem_sep String getString concode_elem_sep String ge... | String function ( String arg0 , Properties arg1 ) { String loc0 = arg1 . getProperty ( arg0 ) ; if ( loc0 == null ) { return null ; } loc0 = loc0 . trim ( ) ; if ( StringHelper . isEmpty ( loc0 ) ) { return null ; } return loc0 ; } |
12,081 | reads and returns the next line , excluding the line separator if present . concode_field_sep Pattern EMPTY_PATTERN concode_elem_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep Scanner scanner concode_elem_sep Pattern WHITESPACE_PATTERN concode_elem_sep Pattern EVERYTHING_PATTERN concode_field_s... | String function ( ) { String loc0 ; try { loc0 = scanner . nextLine ( ) ; } catch ( Exception loc1 ) { loc0 = null ; } return loc0 ; } |
12,082 | gets the value of the softwareinstall 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 softwareinstall property . for example , to add a ... | List < SoftwareInstallArgsType > function ( ) { return this . softwareInstall ; } |
12,083 | sets the lognode data will be sent to . . concode_field_sep LogNode mNext concode_field_sep void println concode_elem_sep LogNode getNext | void function ( LogNode arg0 ) { mNext = arg0 ; } |
12,084 | some text . concode_field_sep String fFirstName concode_elem_sep InnerClassWithAnnotations anon concode_elem_sep String tThirdName concode_elem_sep String sSecondName concode_field_sep String method5 concode_elem_sep String method5 concode_elem_sep String method5 concode_elem_sep String method6 concode_elem_sep String ... | String function ( ) { return "srini_string" ; } |
12,085 | evaluate the json path expression against the response content and assert that the result is a string . concode_field_sep JsonPathExpectationsHelper jsonPathHelper concode_elem_sep String prefix concode_field_sep ResultMatcher isBoolean concode_elem_sep JsonPathResultMatchers prefix concode_elem_sep ResultMatcher doesN... | ResultMatcher function ( ) { return new ResultMatcher ( ) { @ Override public void match ( MvcResult arg0 ) throws Exception { String loc0 = getContent ( arg0 ) ; jsonPathHelper . assertValueIsString ( loc0 ) ; } } ; } |
12,086 | set the value of the tooltip property . concode_field_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_sep long serialVersionUID concode_elem_sep boolean leaf concode_elem_sep String leafIcon concode_elem_sep String b... | void function ( String arg0 ) { this . tooltip = arg0 ; } |
12,087 | returns list of operationdesc objects with this name concode_field_sep it.eng.spagobi.sdk.domains.stub.DomainsService impl concode_elem_sep java.util.Map _myOperations concode_elem_sep java.util.Collection _myOperationsList concode_field_sep it.eng.spagobi.sdk.domains.bo.SDKDomain[] getAllDomains concode_elem_sep it.en... | java . util . List function ( java . lang . String arg0 ) { return ( java . util . List ) _myOperations . get ( arg0 ) ; } |
12,088 | set the path to the tesseract executable , needed if it is not on system path . note that if you set this value , it is highly recommended that you also set the path to the ` tessdata ' folder using #settessdatapath . concode_field_sep String tessdataPath concode_elem_sep String language concode_elem_sep String pageSeg... | void function ( String arg0 ) { if ( ! arg0 . isEmpty ( ) && ! arg0 . endsWith ( File . separator ) ) arg0 += File . separator ; this . tesseractPath = arg0 ; } |
12,089 | the label . concode_field_sep Boolean autoTriage concode_elem_sep Integer code concode_elem_sep BigDecimal rank concode_field_sep void setRank concode_elem_sep Integer code concode_elem_sep TriageStatus createInitialized concode_elem_sep BigDecimal getRank concode_elem_sep int hashCode concode_elem_sep void setCode con... | String function ( Integer arg0 ) { if ( arg0 . equals ( CODE_NOW ) ) { return LABEL_NOW ; } if ( arg0 . equals ( CODE_LATER ) ) { return LABEL_LATER ; } if ( arg0 . equals ( CODE_DONE ) ) { return LABEL_DONE ; } throw new IllegalStateException ( "srini_string" + arg0 ) ; } |
12,090 | gets the cached expiration date from 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_... | long function ( Bundle arg0 ) { Validate . notNull ( arg0 , "srini_string" ) ; return arg0 . getLong ( EXPIRATION_DATE_KEY ) ; } |
12,091 | gets the value of the opstenantname property . concode_field_sep JAXBElement<String> opsTenantName concode_elem_sep JAXBElement<String> instId concode_elem_sep JAXBElement<String> opsPassword concode_elem_sep JAXBElement<String> opsUsername concode_elem_sep JAXBElement<String> opsIp concode_field_sep JAXBElement<String... | JAXBElement < String > function ( ) { return opsTenantName ; } |
12,092 | formats the node and writes it to the specified writer . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean hasChildren concode_elem_sep Reduction asReduction concode_elem_sep void addChildrenOf concode_elem_sep int getMeaningAs concode_elem_sep String getRootText concode_elem_sep String getDescription... | void function ( PrintWriter arg0 ) { write ( arg0 , "srini_string" ) ; } |
12,093 | add a new declared parameter . order of parameter addition is significant . concode_field_sep String[] generatedKeysColumnNames concode_elem_sep boolean updatableResults concode_elem_sep String actualSql concode_elem_sep List<SqlParameter> declaredParameters concode_elem_sep NativeJdbcExtractor nativeJdbcExtractor conc... | void function ( SqlParameter arg0 ) { this . declaredParameters . add ( arg0 ) ; } |
12,094 | this method resets the incoming events time events included . concode_field_sep long number concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean reset concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep SCInterface getSCInterface concode... | void function ( ) { sCInterface . clearEvents ( ) ; } |
12,095 | a list of snapshots . each item in the list contains detailed information about one snapshot . concode_field_sep com.amazonaws.internal.ListWithAutoConstructFlag<Snapshot> snapshots concode_elem_sep String marker concode_field_sep String getMarker concode_elem_sep void setMarker concode_elem_sep DescribeSnapshotsResult... | java . util . List < Snapshot > function ( ) { if ( snapshots == null ) { snapshots = new com . amazonaws . internal . ListWithAutoConstructFlag < Snapshot > ( ) ; snapshots . setAutoConstruct ( true ) ; } return snapshots ; } |
12,096 | returns the blend factor . concode_field_sep AiTextureMapMode m_textureMapModeU concode_elem_sep String m_file concode_elem_sep float m_blend concode_elem_sep AiTextureOp m_textureOp concode_elem_sep AiTextureMapMode m_textureMapModeV concode_elem_sep AiTextureType m_type concode_elem_sep AiTextureMapMode m_textureMapM... | float function ( ) { return m_blend ; } |
12,097 | direct memory access concode_field_sep PlaceHolder placeHolder concode_field_sep Object getPrototype concode_elem_sep Object resolveAddress concode_elem_sep int tie concode_elem_sep int tied concode_elem_sep int instance concode_elem_sep int address concode_elem_sep int address concode_elem_sep void untie concode_elem_... | void function ( ClarionObject arg0 , ClarionObject arg1 ) { throw new RuntimeException ( "srini_string" ) ; } |
12,098 | get a modifier for the instance 's list . concode_field_sep Shader[] shaders concode_elem_sep Matrix4 o2w concode_elem_sep Matrix4 w2o concode_elem_sep BoundingBox bounds concode_elem_sep Geometry geometry concode_elem_sep Modifier[] modifiers concode_field_sep Shader getShader concode_elem_sep Vector3 transformNormalW... | Modifier function ( int arg0 ) { if ( modifiers == null || arg0 < 0 || arg0 >= modifiers . length ) return null ; return modifiers [ arg0 ] ; } |
12,099 | sets the value of the wtls property . concode_field_sep ExtensionOnlyType mobileNetworkNoEncryption concode_elem_sep ExtensionOnlyType ipSec concode_elem_sep ExtensionOnlyType adsl concode_elem_sep List<ExtensionType> extension concode_elem_sep ExtensionOnlyType wtls concode_elem_sep ExtensionOnlyType isdn concode_elem... | void function ( ExtensionOnlyType arg0 ) { this . wtls = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.