idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
34,600
sets the value of the actualdeliverypercentage property . concode_field_sep Double actualDeliveryPercentage concode_elem_sep Double expectedDeliveryPercentage concode_field_sep Double getActualDeliveryPercentage concode_elem_sep void setExpectedDeliveryPercentage concode_elem_sep Double getExpectedDeliveryPercentage
void function ( Double arg0 ) { this . actualDeliveryPercentage = arg0 ; }
34,601
return the custom @initbinder argument resolvers . concode_field_sep List<HandlerMethodArgumentResolver> customArgumentResolvers concode_elem_sep ConfigurableBeanFactory beanFactory concode_elem_sep List<SyncHandlerMethodArgumentResolver> initBinderArgumentResolvers concode_elem_sep Map<Class<?>,ExceptionHandlerMethodR...
List < SyncHandlerMethodArgumentResolver > function ( ) { return this . customInitBinderArgumentResolvers ; }
34,602
partitionby operation for connected data stream using key expressions . partitions the elements of input1 and input2 according to fields1 and fields2 . a field expression is either the name of a public field or a getter method with parentheses of the datastream s underlying type . a dot can be used to drill down into o...
ConnectedStreams < IN1 , IN2 > function ( String [ ] arg0 , String [ ] arg1 ) { return new ConnectedStreams < > ( environment , inputStream1 . partitionByHash ( arg0 ) , inputStream2 . partitionByHash ( arg1 ) ) ; }
34,603
stop reconciling positions . concode_field_sep StyledTextXtextAdapter styledTextXtextAdapter concode_elem_sep ISemanticHighlightingCalculator calculator concode_elem_sep ITextAttributeProvider attributeProvider concode_elem_sep HighlightingPresenter presenter concode_elem_sep List<AttributedPosition> removedPositions c...
void function ( ) { removedPositions . clear ( ) ; removedPositionCount = 0 ; addedPositions . clear ( ) ; }
34,604
whether to show parse username/password ui elements on the login screen , and the associated signup screen . default is false . concode_field_sep ParseLoginConfig config concode_elem_sep Context context concode_field_sep ParseLoginBuilder setAppLogo concode_elem_sep ParseLoginBuilder setParseSignupButtonText concode_el...
ParseLoginBuilder function ( boolean arg0 ) { config . setParseLoginEnabled ( arg0 ) ; return this ; }
34,605
applies this spec to sslsocket . concode_field_sep ConnectionSpec COMPATIBLE_TLS concode_elem_sep boolean supportsTlsExtensions concode_elem_sep ConnectionSpec CLEARTEXT concode_elem_sep String[] tlsVersions concode_elem_sep String[] cipherSuites concode_elem_sep boolean tls concode_elem_sep ConnectionSpec MODERN_TLS c...
void function ( SSLSocket arg0 , boolean arg1 ) { ConnectionSpec loc0 = supportedSpec ( arg0 , arg1 ) ; arg0 . setEnabledProtocols ( loc0 . tlsVersions ) ; String [ ] loc1 = loc0 . cipherSuites ; if ( loc1 != null ) { arg0 . setEnabledCipherSuites ( loc1 ) ; } }
34,606
get custom deserializer concode_field_sep java.lang.String designadorTurbonet concode_elem_sep java.lang.String instancia concode_elem_sep com.gvt.www.metaData.smarttool.Credenciais credencial concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.descrip...
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; }
34,607
get the fs location where model instance is saved . concode_field_sep LensMLJerseyClient client concode_field_sep List<String> getModels concode_elem_sep MLModel getModel concode_elem_sep Map<String,String> getAlgoParamDescription concode_elem_sep MLAlgo getAlgoForName concode_elem_sep MLTestReport getTestReport concod...
String function ( String arg0 , String arg1 ) { ModelMetadata loc0 = client . getModelMetadata ( arg0 , arg1 ) ; return loc0 . getModelPath ( ) ; }
34,608
the default permission to use when no matching case is found for a street . concode_field_sep Map<String,P2<StreetTraversalPermission>> _permissions concode_elem_sep String _attributeName concode_elem_sep Logger log concode_elem_sep P2<StreetTraversalPermission> _defaultPermission concode_field_sep void setAttributeNam...
void function ( StreetTraversalPermission arg0 ) { _defaultPermission = P2 . createPair ( arg0 , arg0 ) ; }
34,609
returns the maximum number of patterns that can be cached at one time . concode_field_sep PatternCompiler _compiler concode_elem_sep int DEFAULT_CAPACITY concode_elem_sep Cache _cache concode_field_sep int size concode_elem_sep Pattern addPattern concode_elem_sep Pattern addPattern concode_elem_sep Pattern getPattern c...
int function ( ) { return _cache . capacity ( ) ; }
34,610
gets the dhcpbinding object from the dhcppool containing byte mac concode_field_sep ArrayList<DHCPBinding> DHCP_POOL concode_elem_sep IPv4Address STARTING_ADDRESS concode_elem_sep Logger log concode_elem_sep boolean POOL_FULL concode_elem_sep int POOL_SIZE concode_elem_sep int POOL_AVAILABILITY concode_elem_sep MacAddr...
DHCPBinding function ( MacAddress arg0 ) { if ( arg0 == null ) return null ; for ( DHCPBinding loc0 : DHCP_POOL ) { if ( loc0 . getMACAddress ( ) . equals ( arg0 ) ) { return loc0 ; } } return null ; }
34,611
calls the parser #parse inputstream , contenthandler , metadata , parsecontext method with an empty parsecontext . this method exists as a leftover from tika 0.x when the three-argument parse method still existed in the parser interface . no new code should call thismethod anymore , it 's only here for backwards compat...
void function ( InputStream arg0 , ContentHandler arg1 , Metadata arg2 ) { parse ( arg0 , arg1 , arg2 , new ParseContext ( ) ) ; }
34,612
this is the filtering method . when an auditlogentry is added to an auditlog the auditlog calls this method to determine whether the auditlogentry should be added . concode_field_sep Map<String,Boolean> acceptedTypes concode_field_sep void addType concode_elem_sep Map<String,Boolean> getAcceptedTypes
boolean function ( final AuditLogEntry arg0 ) { if ( ! acceptedTypes . containsKey ( arg0 . getGenericType ( ) ) ) { return false ; } return acceptedTypes . get ( arg0 . getGenericType ( ) ) ; }
34,613
ensure that the given property source is not being added relative to itself . concode_field_sep List<PropertySource<?>> propertySourceList concode_elem_sep Log logger concode_field_sep void replace concode_elem_sep PropertySource<?> remove concode_elem_sep void addLast concode_elem_sep void addBefore concode_elem_sep b...
void function ( String arg0 , PropertySource < ? > arg1 ) { String loc0 = arg1 . getName ( ) ; if ( arg0 . equals ( loc0 ) ) { throw new IllegalArgumentException ( String . format ( "srini_string" , loc0 ) ) ; } }
34,614
gets the value of the replaceall property . concode_field_sep List<PaymentMethodVisuals> paymentMethodVisuals concode_elem_sep Boolean replaceAll concode_field_sep List<PaymentMethodVisuals> getPaymentMethodVisuals concode_elem_sep void setReplaceAll
boolean function ( ) { if ( replaceAll == null ) { return true ; } else { return replaceAll ; } }
34,615
helper function to make a good hash value of an integer concode_field_sep boolean[] distinctInts concode_elem_sep int numTuples concode_elem_sep int numDistinctTuples concode_field_sep double estimateSelectivity concode_elem_sep void addValue
int function ( int arg0 ) { arg0 ^= ( arg0 >>> 20 ) ^ ( arg0 >>> 12 ) ; return arg0 ^ ( arg0 >>> 7 ) ^ ( arg0 >>> 4 ) ; }
34,616
set the param value . concode_field_sep String param concode_elem_sep String orientation concode_field_sep void setOrientation concode_elem_sep String getParam concode_elem_sep String getOrientation concode_elem_sep void listener
void function ( String arg0 ) { this . param = arg0 ; }
34,617
getst the bounds of the text that makes up this sprite . the bounds are defined pdf space and are relative to the current ctm . concode_field_sep ArrayList<GlyphText> glyphTexts concode_elem_sep String fontName concode_elem_sep AffineTransform graphicStateTransform concode_elem_sep AffineTransform tmTransform concode_e...
Rectangle2D . Float function ( ) { return bounds ; }
34,618
is debug mode enabled ? 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_sep boolean sanityChecks concode_elem_sep boolean de...
boolean function ( ) { return debug ; }
34,619
set an offset in dp that allows the user to drag the chart over it 's bounds on the x-axis . concode_field_sep RectF mContentRect concode_elem_sep float mChartWidth concode_elem_sep float mTransOffsetX concode_elem_sep float mTransOffsetY concode_elem_sep float mMinScaleY concode_elem_sep float mMinScaleX concode_elem_...
void function ( float arg0 ) { mTransOffsetX = Utils . convertDpToPixel ( arg0 ) ; }
34,620
look up the index of an attribute by raw xml 1.0 name . concode_field_sep NamedNodeMap m_attrs concode_elem_sep int m_lastIndex concode_elem_sep DOM2Helper m_dh concode_field_sep String getValue concode_elem_sep String getValue concode_elem_sep String getValue concode_elem_sep String getLocalName concode_elem_sep Strin...
int function ( String arg0 ) { for ( int loc0 = m_attrs . getLength ( ) - 1 ; loc0 >= 0 ; -- loc0 ) { Node loc1 = m_attrs . item ( loc0 ) ; if ( loc1 . getNodeName ( ) . equals ( arg0 ) ) return loc0 ; } return - 1 ; }
34,621
two objects that are equal are required to return the same hashcode . concode_field_sep double EPSILON concode_field_sep void testCloning concode_elem_sep void testFindRangeBounds concode_elem_sep void testPublicCloneable concode_elem_sep void testSerialization concode_elem_sep void testConstructor concode_elem_sep voi...
void function ( ) { CandlestickRenderer loc0 = new CandlestickRenderer ( ) ; CandlestickRenderer loc1 = new CandlestickRenderer ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; }
34,622
set the packaging format of the deposit concode_field_sep SWORDEntry entry concode_elem_sep Bitstream bitstream concode_elem_sep Deposit deposit concode_elem_sep SWORDService swordService concode_elem_sep DepositResult result concode_elem_sep Item item concode_field_sep void addContentElement concode_elem_sep void addP...
void function ( ) { if ( deposit != null ) { entry . setPackaging ( deposit . getPackaging ( ) ) ; } }
34,623
returns the offset in a string . concode_field_sep int offset concode_field_sep byte[] getValue concode_elem_sep String getName concode_elem_sep int getBytecodeOffset
String function ( ) { return "srini_string" + offset ; }
34,624
a convenience method for single-event take transactions . concode_field_sep Logger logger concode_field_sep void transact concode_elem_sep T transact concode_elem_sep void put concode_elem_sep void put
Event function ( final Channel arg0 ) { return transact ( arg0 , new Callable < Event > ( ) { @ Override public Event call ( ) { return arg0 . take ( ) ; } } ) ; }
34,625
returns the parser factory to use . only one parser factory is ever created by this method and is then cached for future use . concode_field_sep SAXParserFactory nsParserFactory concode_elem_sep DocumentBuilderFactory builderFactory concode_elem_sep SAXParserFactory parserFactory concode_elem_sep FileUtils FILE_UTILS c...
SAXParserFactory function ( ) { if ( parserFactory == null ) { parserFactory = newParserFactory ( ) ; } return parserFactory ; }
34,626
initialise the resourcefactoryregistry of the resourceset . the default implementation installs the xmiresourcefactory for all extensions . concode_field_sep FileHandle handle concode_elem_sep ProjectRegistry projectRegistry concode_elem_sep ResourceSet resourceSet concode_field_sep Resource getResource concode_elem_se...
void function ( Registry arg0 ) { arg0 . getExtensionToFactoryMap ( ) . put ( Registry . DEFAULT_EXTENSION , new XMIResourceFactoryImpl ( ) ) ; }
34,627
returns the kaleo task with the primary key . concode_field_sep ServiceTracker<KaleoTaskLocalService,KaleoTaskLocalService> _serviceTracker concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep java.util.List<com.liferay.portal.workflow.kaleo.model.KaleoTa...
com . liferay . portal . workflow . kaleo . model . KaleoTask function ( long arg0 ) { return getService ( ) . getKaleoTask ( arg0 ) ; }
34,628
returns the status of the error . concode_field_sep String id concode_elem_sep String detail concode_elem_sep String title concode_elem_sep String status concode_field_sep String getTitle concode_elem_sep String getDetail concode_elem_sep String getId concode_elem_sep String toString
String function ( ) { return status ; }
34,629
see comment for getmoreresults . concode_field_sep boolean isEscapeProcessing concode_elem_sep int queryTimeout concode_elem_sep Result errorResult concode_elem_sep int SUCCESS_NO_INFO concode_elem_sep Result batchResultOut concode_elem_sep int maxRows concode_elem_sep JDBCConnection connection concode_elem_sep int RET...
void function ( ) { if ( currentResultSet != null ) { currentResultSet . close ( ) ; } if ( generatedResultSet != null ) { generatedResultSet . close ( ) ; } generatedResultSet = null ; generatedResult = null ; resultIn = null ; currentResultSet = null ; }
34,630
this is used to acquire the trace object that is associated with the operation . a trace object is used to collection details on what operations are being performed . for instance it may contain information relating to i/o events or errors . concode_field_sep Trace trace concode_elem_sep Reactor reactor concode_elem_se...
Trace function ( ) { return trace ; }
34,631
returns the shipping id concode_field_sep BigDecimal cost concode_elem_sep Long shippingId concode_field_sep void setShippingId concode_elem_sep void setCost concode_elem_sep BigDecimal getCost
Long function ( ) { return shippingId ; }
34,632
returns a clone of the dataset . the cloned dataset will not include the datasetchangelistener references that have been registered withthis dataset . concode_field_sep EventListenerList listenerList concode_elem_sep long serialVersionUID concode_elem_sep boolean notify concode_elem_sep DatasetGroup group concode_field...
Object function ( ) { AbstractDataset loc0 = ( AbstractDataset ) super . loc0 ( ) ; loc0 . listenerList = new EventListenerList ( ) ; return loc0 ; }
34,633
ascertains whether mapcommandbuttonid or checkboxid are a part of componentid . componentid might be a fully qualified id , with a prefix corresponding to container component s . concode_field_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButt...
boolean function ( String arg0 ) { return arg0 . endsWith ( mapCommandButtonId ) ; }
34,634
confirm we can create statement data instance and get the query back . concode_field_sep PlaceHolder placeHolder concode_field_sep void testBinaryQuery
void function ( ) { StatementData loc0 = new StatementData ( "srini_string" ) ; Assert . assertEquals ( "srini_string" , "srini_string" , loc0 . getQuery ( ) ) ; loc0 . appendToQuery ( "srini_string" ) ; Assert . assertEquals ( "srini_string" , "srini_string" , loc0 . getQuery ( ) ) ; }
34,635
close the visitor concode_field_sep int version concode_elem_sep Map<FSEditLogOpCodes,Long> opCodeCount concode_elem_sep PrintWriter out concode_field_sep Map<FSEditLogOpCodes,Long> getStatistics concode_elem_sep void start concode_elem_sep void incrementOpCodeCount concode_elem_sep String getStatisticsString concode_e...
void function ( Throwable arg0 ) { out . print ( getStatisticsString ( ) ) ; if ( arg0 != null ) { out . print ( "srini_string" + arg0 . toString ( ) + "srini_string" ) ; } out . close ( ) ; }
34,636
creates a singlevaluewrapper instance of the given type , representing a nullvalue . concode_field_sep PlaceHolder placeHolder concode_field_sep V instantiateValueWrapper concode_elem_sep MathsContentOutputValueWrapper createFromUpconvertedMaximaOutput concode_elem_sep MathsContentInputValueWrapper createFromUpconverte...
S function ( final Class < S > arg0 ) { return instantiateValueWrapper ( arg0 ) ; }
34,637
if the users decides to write `` http://localhost:8080/search/ '' into the browser she should get redirected to the advanced search formular concode_field_sep SearchService searchService concode_elem_sep Logger LOG concode_elem_sep CategoryService categoryService concode_field_sep ModelAndView getAdvancedSearchResults ...
String function ( ) { return "srini_string" ; }
34,638
for use in the request header : if-match return the object only if its payload tag etag is the same as the etag specified , otherwise return a 412 precondition failed . concode_field_sep List<String> ranges concode_elem_sep Date ifUnmodifiedSince concode_elem_sep Date ifModifiedSince concode_elem_sep String ifNoneMatch...
String function ( ) { return this . ifMatch ; }
34,639
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 ( byte [ ] arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; }
34,640
returns the salt . concode_field_sep int iterationCount concode_elem_sep AlgorithmParameterSpec paramSpec concode_elem_sep byte[] salt concode_field_sep int getIterationCount concode_elem_sep AlgorithmParameterSpec getParameterSpec
byte [ ] function ( ) { return this . salt . clone ( ) ; }
34,641
sets the value of the layout property . concode_field_sep Layout layout concode_elem_sep List<Address> address concode_elem_sep BigInteger refresh concode_elem_sep Label label concode_field_sep Layout getLayout concode_elem_sep Label getLabel concode_elem_sep void setRefresh concode_elem_sep void setLabel concode_elem_...
void function ( Layout arg0 ) { this . layout = arg0 ; }
34,642
checks if this type sort represents a generic array . concode_field_sep TypeDefinition nextClass concode_field_sep TypeDefinition next concode_elem_sep boolean isParameterized concode_elem_sep TypeList.Generic getInterfaces concode_elem_sep boolean isWildcard concode_elem_sep boolean hasNext concode_elem_sep boolean is...
boolean function ( ) { return this == GENERIC_ARRAY ; }
34,643
this method returns a string representation of this object . concode_field_sep int error_index concode_elem_sep int index concode_field_sep int getIndex concode_elem_sep void setIndex concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep int getErrorIndex concode_elem_sep void setErrorIndex
String function ( ) { return ( getClass ( ) . getName ( ) + "srini_string" + getIndex ( ) + "srini_string" + getErrorIndex ( ) + "srini_string" ) ; }
34,644
returns the left of the view bounds , relative to the view parent bounds . concode_field_sep int mBottom concode_elem_sep Object mViewObject concode_elem_sep int mLeft concode_elem_sep List<ViewInfo> mChildren concode_elem_sep int mBaseLine concode_elem_sep Object mLayoutParamsObject concode_elem_sep int mRightMargin c...
int function ( ) { return mLeft ; }
34,645
returns all matching items for this page of query results . concode_field_sep Integer scannedCount concode_elem_sep Map<String,AttributeValue> lastEvaluatedKey concode_elem_sep Integer count concode_elem_sep ConsumedCapacity consumedCapacity concode_elem_sep List<T> results concode_field_sep void setScannedCount concod...
List < T > function ( ) { return results ; }
34,646
returns a view of this heappage before it was modified -- used by recovery concode_field_sep TupleDesc td concode_elem_sep byte[] oldData concode_elem_sep byte[] data concode_elem_sep HeapPageId pid concode_field_sep void writeInt concode_elem_sep byte[] getPageData concode_elem_sep void markDirty concode_elem_sep void...
HeapPage function ( ) { try { return new HeapPage ( pid , oldData ) ; } catch ( IOException loc0 ) { loc0 . printStackTrace ( ) ; System . exit ( 1 ) ; } return null ; }
34,647
this is setter method for accessmsg concode_field_sep String password concode_elem_sep String confirmpass concode_elem_sep String accessMsg concode_elem_sep String customerId concode_elem_sep String restrictSegAllow concode_elem_sep String changepass concode_elem_sep String protect concode_field_sep void setConfirmpass...
void function ( String arg0 ) { this . accessMsg = arg0 ; }
34,648
submits a runnable to be executed asynchronously . if maxconcurrent runnables are already running , the runnable willbe queued . concode_field_sep ExecutorService executor concode_field_sep void dispose
AsyncResult < T > function ( final AsyncTask < T > arg0 ) { if ( executor . isShutdown ( ) ) { throw new GdxRuntimeException ( "srini_string" ) ; } return new AsyncResult ( executor . submit ( new Callable < T > ( ) { @ Override public T call ( ) throws Exception { return arg0 . call ( ) ; } } ) ) ; }
34,649
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 boolean amIActive concode_field_sep String getName concode_elem_sep void setPluginHost concode_elem_sep void updateProgress concode...
void function ( boolean arg0 ) { cancelOp = arg0 ; }
34,650
gets the timezone id used to identify this time zone in the javacode . 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 String getLocation concode_elem_sep boolean...
String function ( ) { return id ; }
34,651
the amazon resource name arn of the replication instance . concode_field_sep String lastFailureMessage concode_elem_sep String endpointIdentifier concode_elem_sep String replicationInstanceArn concode_elem_sep String endpointArn concode_elem_sep String replicationInstanceIdentifier concode_elem_sep String status concod...
void function ( String arg0 ) { this . replicationInstanceArn = arg0 ; }
34,652
set the search space parameters concode_field_sep AllSettings settings concode_elem_sep AllModalitySettings modality concode_elem_sep AllFingerprintMethodSettings method concode_elem_sep AllTestGeneratorSettings testGenerator concode_elem_sep int nMax concode_elem_sep int rMax concode_elem_sep int binMax concode_elem_s...
void function ( ) { }
34,653
set la id concode_field_sep String image concode_elem_sep String name concode_elem_sep String description concode_elem_sep int id concode_elem_sep MyDate expirationDate concode_field_sep void setName concode_elem_sep String getName concode_elem_sep MyDate getExpirationDate concode_elem_sep int getId concode_elem_sep vo...
void function ( int arg0 ) { this . id = arg0 ; }
34,654
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep Long id concode_elem_sep Date shipDate concode_elem_sep String value concode_elem_sep StatusEnum status concode_elem_sep Long petId concode_elem_sep Integer quantity concode_elem_sep Boolean complete concode...
String function ( Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
34,655
get dictionary sort index writer concode_field_sep DictionaryService dictService concode_field_sep CarbonDictionaryWriter getDictionaryWriter concode_elem_sep CarbonDictionaryReader getDictionaryReader concode_elem_sep CarbonDictionarySortIndexReader getDictionarySortIndexReader concode_elem_sep CarbonDictionaryMetadat...
CarbonDictionarySortIndexWriter function ( CarbonTableIdentifier arg0 , ColumnIdentifier arg1 , String arg2 ) { return new CarbonDictionarySortIndexWriterImpl ( arg0 , arg1 , arg2 ) ; }
34,656
sets the path of this cookie . concode_field_sep io.vertx.ext.web.Cookie delegate concode_field_sep String encode concode_elem_sep String getName concode_elem_sep Cookie cookie concode_elem_sep Cookie setDomain concode_elem_sep Cookie setMaxAge concode_elem_sep Cookie newInstance concode_elem_sep Object getDelegate con...
Cookie function ( String arg0 ) { this . delegate . setPath ( arg0 ) ; return this ; }
34,657
invoked when the mouse moves while the button is still held down . concode_field_sep PlaceHolder placeHolder concode_field_sep void mouseReleased concode_elem_sep void mouseClicked concode_elem_sep void mousePressed
void function ( LayerEvent arg0 ) { arg0 . consume ( ) ; }
34,658
this method returns the current decomposition setting for this object . this will be one of no_decomposition , canonical_decomposition , or full_decomposition . see the documentation for those constants for an explanation of this setting . concode_field_sep int TERTIARY concode_elem_sep int strength concode_elem_sep in...
int function ( ) { return decmp ; }
34,659
append an additional key/value pair to an existing objectname with the key beingthe static value identity and the value being the identity hash code of themanaged resource being exposed on the supplied objectname . this can be used to provide a unique objectname for each distinct instance of a particular bean orclass ....
ObjectName function ( ObjectName arg0 , Object arg1 ) { Hashtable < String , String > loc0 = arg0 . getKeyPropertyList ( ) ; loc0 . put ( IDENTITY_OBJECT_NAME_KEY , ObjectUtils . getIdentityHexString ( arg1 ) ) ; return ObjectNameManager . getInstance ( arg0 . getDomain ( ) , loc0 ) ; }
34,660
sends the presentation time stamp to egl . time is expressed in nanoseconds . concode_field_sep EGLDisplay mEGLDisplay concode_elem_sep int EGL_RECORDABLE_ANDROID concode_elem_sep String TAG concode_elem_sep int FLAG_TRY_GLES3 concode_elem_sep EGLContext mEGLContext concode_elem_sep int FLAG_RECORDABLE concode_elem_sep...
void function ( EGLSurface arg0 , long arg1 ) { EGLExt . eglPresentationTimeANDROID ( mEGLDisplay , arg0 , arg1 ) ; }
34,661
set the dataserviceid value . concode_field_sep String dataServiceId concode_elem_sep String clientRequestId concode_elem_sep String requestId concode_elem_sep String eTag concode_elem_sep DateTimeRfc1123 lastModified concode_field_sep TaskAddHeaders withLastModified concode_elem_sep String dataServiceId concode_elem_s...
TaskAddHeaders function ( String arg0 ) { this . dataServiceId = arg0 ; return this ; }
34,662
the predefined supplier selects values using the given com.hazelcast.mapreduce.keypredicate and chains the filtered value to the given supplier which might perform data transformation . concode_field_sep PlaceHolder placeHolder concode_field_sep Supplier<KeyIn,ValueIn,ValueOut> all concode_elem_sep Supplier<KeyIn,Value...
Supplier < KeyIn , ValueIn , ValueOut > function ( KeyPredicate < KeyIn > arg0 , Supplier < KeyIn , ValueIn , ValueOut > arg1 ) { return new KeyPredicateSupplier < KeyIn , ValueIn , ValueOut > ( arg0 , arg1 ) ; }
34,663
returns a set of ids that correspond to catalog destinations concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
Set < String > function ( ) { return new HashSet < > ( ) ; }
34,664
when truncated is true , this value is present and contains the value to use for the marker parameter in a subsequent pagination request . concode_field_sep String nextMarker concode_elem_sep com.amazonaws.internal.SdkInternalList<AliasListEntry> aliases concode_elem_sep Boolean truncated concode_field_sep Boolean isTr...
String function ( ) { return this . nextMarker ; }
34,665
return the regionserver-level coprocessors concode_field_sep int storefileSizeMB concode_elem_sep long currentCompactedKVs concode_elem_sep int storefiles concode_elem_sep int storefileIndexSizeMB concode_elem_sep int totalStaticIndexSizeKB concode_elem_sep int writeRequestsCount concode_elem_sep int readRequestsCount ...
String [ ] function ( ) { List < Coprocessor > loc0 = obtainServerLoadPB ( ) . getCoprocessorsList ( ) ; String [ ] loc1 = new String [ loc0 . size ( ) ] ; int loc2 = 0 ; for ( Coprocessor loc3 : loc0 ) { loc1 [ loc2 ++ ] = loc3 . getName ( ) ; } return loc1 ; }
34,666
returns true if any of the rights represented by the rights argument has been granted on the database object identified by the dbobject argument . 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 . concode_field_s...
boolean function ( Object arg0 , int arg1 ) { if ( isAdministrator ) { return true ; } int loc0 = rightsMap . get ( arg0 , 0 ) ; if ( loc0 != 0 ) { return ( loc0 & arg1 ) != 0 ; } return ( uPublic == null ) ? false : uPublic . isAccessible ( arg0 , arg1 ) ; }
34,667
the type of the document . concode_field_sep TermVectorResponse response concode_elem_sep MultiTermVectorsResponse.Failure failure concode_field_sep void writeTo concode_elem_sep String getIndex concode_elem_sep boolean isFailed concode_elem_sep void readFrom concode_elem_sep TermVectorResponse getResponse concode_elem...
String function ( ) { if ( failure != null ) { return failure . getType ( ) ; } return response . getType ( ) ; }
34,668
set the configuration to be used by this object . concode_field_sep Configuration conf concode_field_sep void checkNativeCodeLoaded concode_elem_sep Configuration getConf concode_elem_sep Decompressor createDecompressor concode_elem_sep CompressionOutputStream createOutputStream concode_elem_sep CompressionOutputStream...
void function ( Configuration arg0 ) { this . conf = arg0 ; }
34,669
returns the ternaryset . concode_field_sep List components concode_elem_sep One one concode_elem_sep List manyToMany concode_elem_sep Foo foo concode_elem_sep int count concode_elem_sep Collection bag concode_elem_sep Simple simple concode_elem_sep Many many concode_elem_sep Set composites concode_elem_sep Collection l...
Set function ( ) { return ternarySet ; }
34,670
called by the text area when the extension is to paint a screen line which has an associated physical line number in the buffer . note that since one physical line may consist of several screen lines due to soft wrap , the start and end offsets of the screen line are passed in as well . concode_field_sep PlaceHolder pl...
void function ( Graphics2D arg0 , int arg1 , int arg2 , int arg3 , int arg4 , int arg5 ) { }
34,671
gets the edge around the right face ccw following this edge . concode_field_sep QuadEdge next concode_elem_sep Vertex vertex concode_elem_sep QuadEdge rot concode_elem_sep Object data concode_field_sep QuadEdge oPrev concode_elem_sep QuadEdge oNext concode_elem_sep QuadEdge getPrimary concode_elem_sep QuadEdge sym conc...
QuadEdge function ( ) { return rot . next . invRot ( ) ; }
34,672
renders to a @linkplain graphics2d graphics context . concode_field_sep Object mUse6 concode_elem_sep String ftpClient concode_elem_sep Class mUse1 concode_elem_sep Class mUse4 concode_elem_sep Class mUse2 concode_elem_sep JToolBar.Separator mSep concode_elem_sep Class mUse3 concode_elem_sep int Component concode_elem_...
void function ( ) { }
34,673
set the value of this attribute in the task attribute under the root of the given taskdata . concode_field_sep boolean initTask concode_elem_sep String kind concode_elem_sep boolean readOnly concode_elem_sep String id concode_elem_sep String label concode_elem_sep String type concode_field_sep String getValue concode_e...
void function ( TaskData arg0 , String arg1 ) { TaskAttribute loc0 = arg0 . getRoot ( ) ; if ( arg1 == null ) arg1 = "srini_string" ; TaskAttribute loc1 = loc0 . getAttribute ( id ) ; if ( loc1 != null ) arg0 . getAttributeMapper ( ) . setValue ( loc1 , arg1 ) ; }
34,674
githubprofile reject get assets with no friend user . concode_field_sep PlaceHolder placeHolder concode_field_sep void rejectGetAssetWithNotExistFile concode_elem_sep void rejectsYamlWithoutReleaseScript concode_elem_sep void rejectGetAssetWithWrongRepo concode_elem_sep void rejectGetAssetWithNoFriends concode_elem_sep...
void function ( ) { }
34,675
obtains the type name . see notes on #getjavatype for details concode_field_sep String typeName concode_elem_sep Class<X> javaType concode_field_sep Class<X> getJavaType
String function ( ) { return typeName ; }
34,676
called when a context is created . concode_field_sep PlaceHolder placeHolder concode_field_sep void close concode_elem_sep void open
void function ( CamelContext arg0 ) { }
34,677
method to represent a vertex by its name concode_field_sep Vertex parent concode_elem_sep int distance concode_elem_sep List<Edge> Adj concode_elem_sep int name concode_elem_sep List<Edge> revAdj concode_elem_sep boolean adjSeen concode_elem_sep boolean seen concode_field_sep placeholderType placeHolder
String function ( ) { return Integer . toString ( name ) ; }
34,678
called by the system when the device configuration changes while your activity is running . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode...
void function ( Configuration arg0 ) { }
34,679
verbose log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void s...
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 , arg2 ) ; }
34,680
gets the fieldpath value for this apierror . concode_field_sep java.lang.String errorString concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String fieldPath concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String ...
java . lang . String function ( ) { return fieldPath ; }
34,681
serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testHashCode concode_elem_sep void testEquals
void function ( ) { QuarterDateFormat loc0 = new QuarterDateFormat ( TimeZone . getTimeZone ( "srini_string" ) , new String [ ] { "srini_string" , "srini_string" , "srini_string" , "srini_string" } ) ; QuarterDateFormat loc1 = ( QuarterDateFormat ) TestUtilities . serialised ( loc0 ) ; assertEquals ( loc0 , loc1 ) ; }
34,682
create a new builder instance with a specific status code . concode_field_sep Map<String,Object> details concode_elem_sep Status status concode_field_sep Builder withDetail concode_elem_sep Builder withException concode_elem_sep Health build concode_elem_sep int hashCode concode_elem_sep Builder outOfService concode_el...
Builder function ( String arg0 ) { return status ( new Status ( arg0 ) ) ; }
34,683
retrieves the name of the data source . concode_field_sep String description concode_elem_sep String dataSourceName concode_elem_sep String password concode_elem_sep String serverName concode_elem_sep int loginTimeout concode_elem_sep String user concode_elem_sep String networkProtocol concode_elem_sep PrintWriter logW...
String function ( ) { return dataSourceName ; }
34,684
get custom deserializer concode_field_sep int crossSiteDuplication concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep int frequencyToConversion concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep int timeLagToConversion concode_field_sep i...
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; }
34,685
returns the singleton instance . concode_field_sep Pattern REGEX_PARAGRAPH concode_elem_sep SimpleParagraphSplitter singleton concode_elem_sep Pattern REGEX_BLANK_LINE concode_field_sep String[] split
SimpleParagraphSplitter function ( ) { return singleton ; }
34,686
create an instance of pathtype concode_field_sep QName _HandlerChains_QNAME concode_field_sep XsdAnyURIType createXsdAnyURIType concode_elem_sep EmptyType createEmptyType concode_elem_sep PortComponentRefType createPortComponentRefType concode_elem_sep SecurityRoleRefType createSecurityRoleRefType concode_elem_sep XsdB...
PathType function ( ) { return new PathType ( ) ; }
34,687
returns the feed resolution for the given units . concode_field_sep long serialVersionUID concode_elem_sep int crossFeedResolution concode_elem_sep int feedResolution concode_elem_sep int DPCM concode_elem_sep int DPI concode_field_sep int[] getResolution concode_elem_sep int hashCode concode_elem_sep boolean equals co...
int function ( int arg0 ) { if ( arg0 < 1 ) throw new IllegalArgumentException ( "srini_string" ) ; return feedResolution / arg0 ; }
34,688
gets the last name . concode_field_sep String SEQUENCE_NAME concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep long serialVersionUID concode_elem_sep String DEFAULT_SORTING_FIELD concode_elem_sep String loginToken concode_elem_sep Integer id concode_elem_sep String email concode_elem_se...
String function ( ) { return this . lastName ; }
34,689
the average upload bandwidth rate limit in bits per second . this field does not appear in the response if the upload rate limit is not set . concode_field_sep Long averageUploadRateLimitInBitsPerSec concode_elem_sep String gatewayARN concode_elem_sep Long averageDownloadRateLimitInBitsPerSec concode_field_sep Long get...
void function ( Long arg0 ) { this . averageUploadRateLimitInBitsPerSec = arg0 ; }
34,690
get the documents library object . concode_field_sep Library library concode_elem_sep Object leastRectlyUsedLock concode_elem_sep Object streamLock concode_elem_sep CrossReference crossReference concode_elem_sep Logger logger concode_elem_sep SeekableInput seekableInput concode_elem_sep SoftLRUCache<Reference,ObjectStr...
Library function ( ) { return library ; }
34,691
get the cache use specified name and keygenerator . create cache if not existed yet . concode_field_sep ConcurrentMap<String,ReferenceConfig<?>> cache concode_elem_sep ConcurrentMap<String,ReferenceConfigCache> cacheHolder concode_elem_sep String name concode_elem_sep String DEFAULT_NAME concode_elem_sep KeyGenerator g...
ReferenceConfigCache function ( String arg0 ) { return getCache ( arg0 , DEFAULT_KEY_GENERATOR ) ; }
34,692
visits a non standard attribute of the field . concode_field_sep FieldVisitor fv concode_elem_sep int api concode_field_sep AnnotationVisitor visitTypeAnnotation concode_elem_sep void visitEnd concode_elem_sep AnnotationVisitor visitAnnotation
void function ( Attribute arg0 ) { if ( fv != null ) { fv . visitAttribute ( arg0 ) ; } }
34,693
gets helixpropertystore path for a topic . concode_field_sep String MESSAGE_KEY concode_elem_sep HelixPropertyStore<ZNRecord> helixStore concode_elem_sep ConcurrentHashMap<TopicListener,HelixPropertyListener> topicListenerToHelixListenerMap concode_elem_sep Logger logger concode_elem_sep String TOPIC_PATH concode_field...
String function ( String arg0 ) { return TOPIC_PATH + "srini_string" + arg0 ; }
34,694
sets the value of the beans property . concode_field_sep JspxPages jspxPages concode_elem_sep ResourceType templateRef concode_elem_sep Beans beans concode_field_sep void setTemplateRef concode_elem_sep JspxPages getJspxPages concode_elem_sep void setJspxPages concode_elem_sep ResourceType getTemplateRef concode_elem_s...
void function ( Beans arg0 ) { this . beans = arg0 ; }
34,695
specifies the gradle user home for the builder . if not set , an empty directory under the project directory will be used . concode_field_sep File projectDir concode_elem_sep File gradleUserHomeDir concode_elem_sep Project parent concode_elem_sep ProjectBuilderImpl impl concode_elem_sep String name concode_field_sep Pr...
ProjectBuilder function ( File arg0 ) { gradleUserHomeDir = arg0 ; return this ; }
34,696
assert the selected view name . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
ResultMatcher function ( final String arg0 ) { return new ResultMatcher ( ) { @ Override public void match ( MvcResult arg1 ) throws Exception { ModelAndView loc0 = arg1 . getModelAndView ( ) ; assertTrue ( "srini_string" , loc0 != null ) ; assertEquals ( "srini_string" , arg0 , loc0 . getViewName ( ) ) ; } } ; }
34,697
number of successful shards concode_field_sep XContentBuilderString FAILED concode_elem_sep XContentBuilderString TOTAL concode_elem_sep ImmutableList<String> indices concode_elem_sep XContentBuilderString SUCCESSFUL concode_elem_sep XContentBuilderString SHARDS concode_elem_sep String name concode_elem_sep int success...
int function ( ) { return successfulShards ; }
34,698
get password concode_field_sep byte[] _byte concode_elem_sep String password concode_elem_sep BigDecimal number concode_elem_sep Float _float concode_elem_sep Integer integer concode_elem_sep Double _double concode_elem_sep String string concode_elem_sep DateTime dateTime concode_elem_sep byte[] binary concode_elem_sep...
String function ( ) { return password ; }
34,699
the time of the last comment on this post . concode_field_sep String TO concode_elem_sep Place mPlace concode_elem_sep String UPDATED_TIME concode_elem_sep List<Action> mActions concode_elem_sep String CAPTION concode_elem_sep String MESSAGE concode_elem_sep String LENGTH concode_elem_sep String mDescription concode_el...
Date function ( ) { return mUpdatedTime ; }