idx int64 0 25k | question stringlengths 68 5.61k | target stringlengths 21 500 |
|---|---|---|
4,800 | get a property from the project concode_field_sep BuildFileRule buildRule concode_field_sep void assertPropertyContains concode_elem_sep void testWorks concode_elem_sep void assertPropertyEndsWith concode_elem_sep void testEmpty concode_elem_sep void testFilesetSeparator concode_elem_sep void testIllegalCombinations co... | String function ( String arg0 ) { return buildRule . getProject ( ) . getProperty ( arg0 ) ; } |
4,801 | get the hash code of an array of methods methods are sorted before hashcode is calculated . so the returned value is irrelevant of the method order in the array . concode_field_sep int[] methods concode_elem_sep ProtocolSignature signature concode_elem_sep int fingerprint concode_elem_sep HashMap<String,ProtocolSigFing... | int function ( Method [ ] arg0 ) { return getFingerprint ( getFingerprints ( arg0 ) ) ; } |
4,802 | translation-time validation of the attributes . request-time attributes are indicated as such in the tagdata parameter . because of the higher quality validation messages possible , this is the preferred way to do validation although isvalid still works . jsp 2.0 and higher containers call validate instead of isvalid .... | ValidationMessage [ ] function ( TagData arg0 ) { ValidationMessage [ ] loc0 = null ; if ( ! isValid ( arg0 ) ) { loc0 = new ValidationMessage [ ] { new ValidationMessage ( arg0 . getId ( ) , "srini_string" ) } ; } return loc0 ; } |
4,803 | set the longitude , in degrees . it is normalized to + / -180 . concode_field_sep double lon concode_elem_sep double lat concode_field_sep void set concode_elem_sep void set concode_elem_sep void set concode_elem_sep double getLongitude concode_elem_sep boolean betweenLon concode_elem_sep double getLatitude concode_ele... | void function ( double arg0 ) { this . lon = lonNormal ( arg0 ) ; } |
4,804 | sets the tool tip text for the annotation . concode_field_sep String toolTipText concode_elem_sep String url concode_field_sep String getURL concode_elem_sep void addEntity concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void draw concode_elem_sep String getToolTipText concode_elem_sep vo... | void function ( String arg0 ) { this . toolTipText = arg0 ; } |
4,805 | returns the status of this social request . concode_field_sep SocialRequest _socialRequest concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_ele... | int function ( ) { return _socialRequest . getStatus ( ) ; } |
4,806 | increment the counter for the given key this one checks for existence concode_field_sep double entropy concode_elem_sep double purity concode_elem_sep double counter concode_elem_sep HashMap<String,MutableDouble> map concode_field_sep double getCounter concode_elem_sep double entropy concode_elem_sep double getEntropy ... | void function ( String arg0 ) { MutableDouble loc0 = this . map . get ( arg0 ) ; if ( loc0 == null ) { this . map . put ( arg0 , new MutableDouble ( 1 ) ) ; } else { increment ( arg0 ) ; } counter ++ ; } |
4,807 | sets the value of the percentage property . concode_field_sep BigDecimal amount concode_elem_sep String discountCode concode_elem_sep BigDecimal percentage concode_elem_sep XMLGregorianCalendar discountExpirationDate concode_elem_sep String discountMode concode_elem_sep long serialVersionUID concode_elem_sep String typ... | void function ( BigDecimal arg0 ) { this . percentage = arg0 ; } |
4,808 | the name label of a player concode_field_sep String macAddress concode_elem_sep String name concode_elem_sep String model concode_elem_sep String uuid concode_elem_sep String ipAddr concode_field_sep String getModel concode_elem_sep String getMacAddress concode_elem_sep String getName concode_elem_sep String getIpAddr ... | void function ( String arg0 ) { this . name = arg0 ; } |
4,809 | is the current result ` significant ' ? ie is it drawn from enough buckets or from enough samples ? concode_field_sep long bucketWidthMs concode_elem_sep int numSamples concode_elem_sep int numSignificantSamples concode_elem_sep Combine.BinaryCombineLongFn function concode_elem_sep Map<Long,Bucket> buckets concode_elem... | boolean function ( ) { if ( buckets . size ( ) >= numSignificantBuckets ) { return true ; } int loc0 = 0 ; for ( Bucket loc1 : buckets . values ( ) ) { loc0 += loc1 . numSamples ; } return loc0 >= numSignificantSamples ; } |
4,810 | indicates whether this entity has a body . concode_field_sep HttpHeaders headers concode_elem_sep HttpEntity<?> EMPTY concode_elem_sep T body concode_field_sep HttpHeaders getHeaders concode_elem_sep T getBody concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString | boolean function ( ) { return ( this . body != null ) ; } |
4,811 | returns a server socket bound to the specified port . the socket is configured with the socket options given to this factory . concode_field_sep HsqlSocketFactory sslImpl concode_elem_sep HsqlSocketFactory plainImpl concode_field_sep Socket createSocket concode_elem_sep Socket createSocket concode_elem_sep HsqlSocketFa... | ServerSocket function ( int arg0 ) { return new ServerSocket ( arg0 ) ; } |
4,812 | compares this object with the specified object for equality based on the millisecond length . all readableduration instances are accepted . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isShorterThan concode_elem_sep int hashCode concode_elem_sep boolean isEqual concode_elem_sep Period toPeriod co... | boolean function ( Object arg0 ) { if ( this == arg0 ) { return true ; } if ( arg0 instanceof ReadableDuration == false ) { return false ; } ReadableDuration loc0 = ( ReadableDuration ) arg0 ; return ( getMillis ( ) == loc0 . getMillis ( ) ) ; } |
4,813 | return the last node in the list concode_field_sep FastIterator fastIterator concode_elem_sep T current concode_elem_sep boolean immutable concode_elem_sep int size concode_elem_sep T nextNode concode_elem_sep long serialVersionUID concode_elem_sep T lastNode concode_elem_sep T currentNode concode_elem_sep T firstNode ... | T function ( ) { return this . lastNode ; } |
4,814 | add a new event to this track . specific events may only be added once . the event will be inserted into the appropriate spot in the event list based on its timecode . concode_field_sep HashSet<MidiEvent> eventSet concode_elem_sep Vector<MidiEvent> events concode_field_sep int size concode_elem_sep long ticks concode_e... | boolean function ( MidiEvent arg0 ) { synchronized ( events ) { if ( eventSet . contains ( arg0 ) ) return false ; eventSet . add ( arg0 ) ; long loc0 = arg0 . getTick ( ) ; int loc1 = events . size ( ) - 1 ; while ( loc1 >= 0 && ( events . get ( loc1 ) . getTick ( ) > loc0 ) ) loc1 -- ; events . add ( loc1 + 1 , arg0 ... |
4,815 | sets insert entry query . concode_field_sep String createTblQry concode_elem_sep Object appCtx concode_elem_sep String updateQry concode_elem_sep long serialVersionUID concode_elem_sep String delQry concode_elem_sep boolean initSchema concode_elem_sep String connUrl concode_elem_sep String dataSrcBean concode_elem_sep ... | CacheJdbcBlobStoreFactory < K , V > function ( String arg0 ) { this . insertQry = arg0 ; return this ; } |
4,816 | convert string value to instance . concode_field_sep int intCacheSize concode_elem_sep HashMap class2Value concode_elem_sep Integer minusOne concode_elem_sep Integer[] integerCache concode_elem_sep String[] integerStrCache concode_elem_sep Class[] stringArg concode_elem_sep HashMap name2Class concode_elem_sep HashMap c... | Object function ( String arg0 , String arg1 ) { return valueOf ( fromName ( arg0 ) , arg1 ) ; } |
4,817 | tests the insecuredefaultsservicebean #destroy method concode_field_sep String BASE_ALERT_TEST_MESSAGE concode_elem_sep String TRUSTSTORE_SYSTEM_PROPERTY concode_elem_sep String KEYSTORE_SYSTEM_PROPERTY concode_elem_sep ObjectName mbeanName concode_field_sep void testInitException concode_elem_sep void testInit concode... | void function ( ) { InsecureDefaultsServiceBean loc0 = createInsecureDefaultsServiceBean ( 0 ) ; loc0 . init ( ) ; assertThat ( isRegistered ( ) , is ( true ) ) ; loc0 . destroy ( ) ; assertThat ( isRegistered ( ) , is ( false ) ) ; } |
4,818 | util method to write an attribute with the ns prefix concode_field_sep com.amazon.ec2.StopInstancesType localStopInstances concode_elem_sep javax.xml.namespace.QName MY_QNAME concode_field_sep java.lang.String generatePrefix concode_elem_sep void setStopInstances concode_elem_sep void serialize concode_elem_sep void se... | void function ( java . lang . String arg0 , java . lang . String arg1 , java . lang . String arg2 , java . lang . String arg3 , javax . xml . stream . XMLStreamWriter arg4 ) { if ( arg4 . getPrefix ( arg1 ) == null ) { arg4 . writeNamespace ( arg0 , arg1 ) ; arg4 . setPrefix ( arg0 , arg1 ) ; } arg4 . writeAttribute ( ... |
4,819 | gets the value of this literal . concode_field_sep Object value concode_field_sep placeholderType placeHolder | Object function ( ) { return value ; } |
4,820 | returns the parent view of a tree node from the parent view annotation . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_elem_sep ArrayList<IGraphicalEditPart> getOrderedTreeChildren... | View function ( View arg0 ) { final EAnnotation loc0 = arg0 . getEAnnotation ( TREE_LAYOUT_ANNOTATION ) ; if ( loc0 != null ) { return ( View ) arg0 . eResource ( ) . getEObject ( loc0 . getDetails ( ) . get ( TREE_NODE_PARENT_URI ) ) ; } return null ; } |
4,821 | return a list of all languages extensions active in the compiler . concode_field_sep DeclStore inlinerData concode_elem_sep Map<String,Collection<String>> outputFiles concode_elem_sep ExtensionInfo extensionInfo concode_elem_sep Stats stats concode_elem_sep ClassFileLoader loader concode_elem_sep ErrorQueue eq concode_... | List < ExtensionInfo > function ( ) { return allExtensions ; } |
4,822 | called after a cache miss to compute a value for the corresponding key . returns the computed value or null if no value can be computed . the default implementation returns null . the method is called without synchronization : other threads may access the cache while this method is executing . if a value for key exists... | V function ( K arg0 ) { return null ; } |
4,823 | debug 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 setLogLevel concode_elem_sep void setLogLevel concode_elem_sep void e conco... | void function ( String arg0 , String arg1 ) { if ( LOG . DEBUG >= LOGLEVEL ) Log . d ( arg0 , arg1 ) ; } |
4,824 | converts a stone to a piece remove color info . concode_field_sep int F2 concode_elem_sep int NO_SQUARE concode_elem_sep int E1 concode_elem_sep int RES_WHITE_WINS concode_elem_sep int D4 concode_elem_sep int C5 concode_elem_sep int A7 concode_elem_sep int RES_BLACK_WINS concode_elem_sep int E3 concode_elem_sep char pi... | int function ( int arg0 ) { if ( arg0 < 0 ) return - arg0 ; else return arg0 ; } |
4,825 | 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 ) { } |
4,826 | returns the process cpu usage in percent concode_field_sep OperatingSystemMXBean osMxBean concode_elem_sep ProcessProbe INSTANCE concode_elem_sep Method getProcessCpuLoad concode_elem_sep Method getProcessCpuTime concode_elem_sep Method getCommittedVirtualMemorySize concode_elem_sep Method getMaxFileDescriptorCountFiel... | short function ( ) { return Probes . getLoadAndScaleToPercent ( getProcessCpuLoad , osMxBean ) ; } |
4,827 | gets whether the color buffer is dirty . concode_field_sep Shader shader concode_elem_sep String TAG concode_elem_sep GeometryData geometryData concode_elem_sep FloatBuffer normalsBuffer concode_elem_sep IntBuffer colorsBuffer concode_elem_sep ShortBuffer indexBuffer concode_elem_sep IntBuffer textureBuffer concode_ele... | boolean function ( ) { return colorBufferDirty ; } |
4,828 | helper for error callbacks that just returns the status.error by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String ... | void function ( String arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . ERROR , arg0 ) ) ; } |
4,829 | returns snapshot processing time concode_field_sep int numberOfFiles concode_elem_sep long totalSize concode_elem_sep int processedFiles concode_elem_sep boolean aborted concode_elem_sep String failure concode_elem_sep long startTime concode_elem_sep long indexVersion concode_elem_sep long time concode_elem_sep long pr... | long function ( ) { return this . time ; } |
4,830 | get name concode_field_sep String name concode_elem_sep Long id concode_field_sep void setName concode_elem_sep String toIndentedString concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Category name concode_elem_sep void setId concode_elem_sep Long getId concode_elem_sep String toString co... | String function ( ) { return name ; } |
4,831 | gets the value of the value property . concode_field_sep String name concode_elem_sep Value value concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void setValue concode_elem_sep String toString | Value function ( ) { return this . value ; } |
4,832 | returns a good hashcode . concode_field_sep long serialVersionUID concode_elem_sep String from concode_elem_sep String to concode_field_sep KnowledgeEdge serializableInstance concode_elem_sep boolean equals concode_elem_sep String getTo concode_elem_sep String toString concode_elem_sep String getFrom concode_elem_sep v... | int function ( ) { int loc0 = 31 + from . loc0 ( ) ; return 37 * loc0 + to . loc0 ( ) ; } |
4,833 | gets concurrency level . concode_field_sep Lock[] locks concode_field_sep Lock getLock concode_elem_sep Lock getLock concode_elem_sep Lock getLock concode_elem_sep void unlock concode_elem_sep void unlock concode_elem_sep void unlock concode_elem_sep void lock concode_elem_sep void lock concode_elem_sep void lock | int function ( ) { return locks . length ; } |
4,834 | sets the value of the source property . concode_field_sep List<JAXBElement<?>> recordContentSourceOrRecordCreationDateOrRecordChangeDate concode_elem_sep String altRepGroup concode_elem_sep String source concode_elem_sep String lang concode_elem_sep String value concode_elem_sep String script concode_elem_sep String tr... | void function ( String arg0 ) { this . source = arg0 ; } |
4,835 | returns the location of this error on the geometry containing the error . concode_field_sep int NESTED_SHELLS concode_elem_sep int HOLE_OUTSIDE_SHELL concode_elem_sep Coordinate pt concode_elem_sep int errorType concode_elem_sep int INVALID_COORDINATE concode_elem_sep int REPEATED_POINT concode_elem_sep int DISCONNECTE... | Coordinate function ( ) { return pt ; } |
4,836 | decrypt a block of ciphertext using the given key . the block size is 64 bits . the length of the key and the block must be eight bytes . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] encrypt concode_elem_sep long encrypt concode_elem_sep byte[] longToByteArray concode_elem_sep long byteArrayToLong | byte [ ] function ( byte [ ] arg0 , byte [ ] arg1 ) { return longToByteArray ( decrypt ( byteArrayToLong ( arg0 ) , byteArrayToLong ( arg1 ) ) ) ; } |
4,837 | this method creates/updates the value of document level fields for each document by searching for similarities in hocr content with the data in database tables mapped for each document type . concode_field_sep FuzzyLuceneEngine fuzzyLuceneEngine concode_elem_sep Logger LOGGER concode_elem_sep BatchInstanceService batch... | void function ( final BatchInstanceID arg0 , final String arg1 ) { try { fuzzyLuceneEngine . extractDataBaseFields ( arg0 . getID ( ) ) ; } catch ( Exception loc0 ) { throw new DCMAException ( loc0 . getMessage ( ) , loc0 ) ; } } |
4,838 | sets the value of the show property . concode_field_sep JAXBElement<? extends AbstractDQElementType> abstractDQElement concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_el... | void function ( String arg0 ) { this . show = arg0 ; } |
4,839 | get the id of this node concode_field_sep DiscoveryNode node concode_elem_sep List<ShardRouting> shards concode_elem_sep String nodeId concode_field_sep void add concode_elem_sep Iterator<ShardRouting> mutableIterator concode_elem_sep String prettyPrint concode_elem_sep boolean isEmpty concode_elem_sep int numberOfShar... | String function ( ) { return this . nodeId ; } |
4,840 | return a simple readable description of eobject using an iitemlabelprovider if possible . concode_field_sep ILabelGenerator.@NonNull Registry SIMPLE_NAME_REGISTRY concode_elem_sep ILabelGenerator.@NonNull Registry QUALIFIED_NAME_REGISTRY concode_elem_sep EValidator.@NonNull SubstitutionLabelProvider SUBSTITUTION_LABEL_... | String function ( @ Nullable Object arg0 ) { if ( arg0 instanceof Labelable ) { String loc0 = ( ( Labelable ) arg0 ) . getText ( ) ; if ( loc0 != null ) { return loc0 ; } } return NameUtil . qualifiedNameFor ( arg0 ) ; } |
4,841 | simple test for the indexof method . concode_field_sep double EPSILON concode_elem_sep SeriesChangeEvent lastEvent concode_field_sep void testClear concode_elem_sep void testIndexOf2 concode_elem_sep void testSetMaximumItemCount2 concode_elem_sep void testCloning concode_elem_sep void testRemove concode_elem_sep void s... | void function ( ) { XYIntervalSeries loc0 = new XYIntervalSeries ( "srini_string" ) ; loc0 . add ( 1.0 , 1.0 , 1.0 , 2.0 , 1.9 , 2.1 ) ; loc0 . add ( 2.0 , 2.0 , 2.0 , 3.0 , 2.9 , 3.1 ) ; loc0 . add ( 3.0 , 3.0 , 3.0 , 4.0 , 3.9 , 4.1 ) ; assertEquals ( 0 , loc0 . indexOf ( new Double ( 1.0 ) ) ) ; } |
4,842 | force introspection of the events this bean type fires . concode_field_sep PlaceHolder placeHolder concode_field_sep MethodDescriptor[] getMethodDescriptors concode_elem_sep int getDefaultPropertyIndex concode_elem_sep BeanInfo[] getAdditionalBeanInfo concode_elem_sep int getDefaultEventIndex concode_elem_sep PropertyD... | EventSetDescriptor [ ] function ( ) { return null ; } |
4,843 | adds a renderable , via a weakreference , to the set of renderables of this group . if the renderable is already in this set , it is not added again . concode_field_sep Set group concode_elem_sep String name concode_elem_sep boolean broadcasted concode_elem_sep boolean stopRequested concode_elem_sep Log LOG concode_fie... | void function ( final Renderable arg0 ) { add ( ( Object ) arg0 ) ; } |
4,844 | sets 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 org.apache.axi... | void function ( java . lang . String arg0 ) { this . proposalLineItemActionType = arg0 ; } |
4,845 | method to do the periodic boundary conditions concode_field_sep double k concode_elem_sep double confs concode_elem_sep Spin[][] system concode_elem_sep double T concode_elem_sep double probability concode_elem_sep double num1 concode_elem_sep double E concode_elem_sep double num0 concode_elem_sep int N concode_elem_se... | int function ( int arg0 ) { return ( ( arg0 + N ) % N ) ; } |
4,846 | set the amplitude of the oscillator , range is 0 , 1 . concode_field_sep float leftScale concode_elem_sep float portStep concode_elem_sep AudioSignal ampMod concode_elem_sep float amp concode_elem_sep float newPan concode_elem_sep float freq concode_elem_sep float stepSize concode_elem_sep AudioListener listener concod... | void function ( float arg0 ) { newAmp = constrain ( arg0 , 0 , 1 ) ; } |
4,847 | sets the state of the custom complete label . concode_field_sep boolean customProgress concode_elem_sep String labelPosition concode_elem_sep boolean customComplete concode_elem_sep String progressCompleteLabel concode_elem_sep String mode concode_elem_sep String progressLabel concode_field_sep boolean isCustomProgress... | void function ( boolean arg0 ) { this . customComplete = arg0 ; } |
4,848 | outputs the json string . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep String escapeString concode_elem_... | String function ( ) { return params . toString ( ) ; } |
4,849 | return the request associated to asychronous processing . concode_field_sep HttpServletRequest request concode_elem_sep Method handler concode_elem_sep Runnable cleanupCallback concode_elem_sep Log log concode_elem_sep boolean handlerInvoked concode_elem_sep HttpServletResponse response concode_elem_sep Constructor<?> ... | HttpServletRequest function ( ) { return request ; } |
4,850 | configure the checkpoint time threshold , in minutes . the default is 0 for this class and the database environment . concode_field_sep CheckpointConfig DEFAULT concode_elem_sep int minutes concode_elem_sep boolean force concode_elem_sep int kbytes concode_field_sep CheckpointConfig checkNull concode_elem_sep void setF... | void function ( final int arg0 ) { this . minutes = arg0 ; } |
4,851 | setup test . concode_field_sep DataSet dataSet concode_field_sep void simpleReferrersTest concode_elem_sep void addAndRemoveReferrer concode_elem_sep void setRelationMemberReferrerTest concode_elem_sep void nodeFromMultipleDatasets concode_elem_sep void multipleReferrers concode_elem_sep void setUp concode_elem_sep voi... | void function ( ) { JOSMFixture . createUnitTestFixture ( ) . init ( ) ; } |
4,852 | sets the value of the deductibleamount property . concode_field_sep Double deductibleAmount concode_elem_sep String deductibletype concode_elem_sep long serialVersionUID concode_field_sep Double getDeductibleAmount concode_elem_sep void setDeductibletype concode_elem_sep String getDeductibletype | void function ( Double arg0 ) { this . deductibleAmount = arg0 ; } |
4,853 | makes no sense in the case of an abscontentelementlist that has no attribute -- > just return null concode_field_sep boolean isAContentExpression concode_elem_sep String typeName concode_elem_sep List elements concode_field_sep void add concode_elem_sep void clear concode_elem_sep boolean isEmpty concode_elem_sep AbsCo... | String [ ] function ( ) { return null ; } |
4,854 | returns the number of idle connections in the pool . concode_field_sep Deque<RealConnection> connections concode_elem_sep boolean cleanupRunning concode_elem_sep long keepAliveDurationNs concode_elem_sep RouteDatabase routeDatabase concode_elem_sep Runnable cleanupRunnable concode_elem_sep int maxIdleConnections concod... | int function ( ) { int loc0 = 0 ; for ( RealConnection loc1 : connections ) { if ( loc1 . allocations . isEmpty ( ) ) loc0 ++ ; } return loc0 ; } |
4,855 | request any amount of bitcoins probably a donation from user , without feedback from the app . concode_field_sep String INTENT_EXTRA_PAYMENT concode_elem_sep String MIMETYPE_PAYMENTREQUEST concode_elem_sep String INTENT_EXTRA_PAYMENTREQUEST concode_elem_sep String INTENT_EXTRA_TRANSACTION_HASH concode_elem_sep int SATO... | void function ( final Context arg0 , final String arg1 ) { final Intent loc0 = makeBitcoinUriIntent ( arg1 , null ) ; start ( arg0 , loc0 ) ; } |
4,856 | the default sasl properties read from the configuration concode_field_sep Configuration conf concode_elem_sep Map<String,String> properties concode_field_sep Configuration getConf concode_elem_sep Map<String,String> getClientProperties concode_elem_sep Map<String,String> getServerProperties concode_elem_sep SaslPropert... | Map < String , String > function ( ) { return properties ; } |
4,857 | this is used to get the leader address from a remote machine without running a leader election . concode_field_sep PlaceHolder placeHolder concode_field_sep void registerListenerWithLeader concode_elem_sep void forwardReceivedUidMessage concode_elem_sep void sendPing concode_elem_sep void sendUidMessage concode_elem_se... | String function ( String arg0 ) { LeaderInterface loc0 = getLeaderInterface ( arg0 ) ; System . out . println ( "srini_string" + arg0 ) ; return loc0 . getClusterLeader ( ) ; } |
4,858 | gets the save options . concode_field_sep String endDate concode_elem_sep String repeatInterval concode_elem_sep String startTime concode_elem_sep JobInfo jobInfo concode_elem_sep String endTime concode_elem_sep String triggerDescription concode_elem_sep String triggerName concode_elem_sep String chronString concode_el... | Map < String , DispatchContext > function ( ) { return saveOptions ; } |
4,859 | reuse single connection . the connection object is thread safe and can be used concurrently concode_field_sep String BROKER_NAME concode_elem_sep MQBroker _instance concode_elem_sep String storageLimit concode_elem_sep Connection _connection concode_elem_sep String BROKER_URI concode_elem_sep BrokerService broker conco... | Connection function ( ) { return _connection ; } |
4,860 | returns a hash code value for the object , which is defined as the hash code of the path name . concode_field_sep long blocksize concode_elem_sep String owner concode_elem_sep Path path concode_elem_sep long length concode_elem_sep Path symlink concode_elem_sep FsPermission permission concode_elem_sep long modification... | int function ( ) { return getPath ( ) . hashCode ( ) ; } |
4,861 | safely invoke a method with the given signature name + parameter types on the given target object . concode_field_sep PlaceHolder placeHolder concode_field_sep T findAnnotation concode_elem_sep boolean isParameterAnnotatedWith concode_elem_sep Method findMethod concode_elem_sep T getAnnotationField concode_elem_sep Lis... | T function ( Object arg0 , String arg1 , Class < ? > ... arg2 ) { Method loc1 = findMethod ( arg0 . getClass ( ) , arg1 , arg2 ) ; try { return ( T ) loc1 . invoke ( arg0 , arg2 ) ; } catch ( Exception loc0 ) { return null ; } } |
4,862 | returns the id of this property . concode_field_sep Class nodeClass concode_elem_sep String propertyId concode_field_sep boolean isSimpleProperty concode_elem_sep Class getNodeClass concode_elem_sep boolean isChildProperty concode_elem_sep boolean isChildListProperty concode_elem_sep String toString | String function ( ) { return this . propertyId ; } |
4,863 | deflate the input into the output array , returning the number of bytes written to output . concode_field_sep PlaceHolder placeHolder concode_field_sep int deflateBound concode_elem_sep HttpEntity deflateBytes concode_elem_sep HttpEntity deflateBody | int function ( byte [ ] arg0 , byte [ ] arg1 ) { final Deflater loc0 = new Deflater ( ) ; loc0 . setInput ( arg0 ) ; loc0 . finish ( ) ; final int loc1 = loc0 . deflate ( arg1 ) ; loc0 . end ( ) ; return loc1 ; } |
4,864 | the data to save to the file system , e.g. text messages/attachments , binary file attachments etc. . concode_field_sep String filename concode_elem_sep Object data concode_elem_sep File directory concode_field_sep String getFilename concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep File ge... | Object function ( ) { return data ; } |
4,865 | if the notification is scheduled . concode_field_sep Class<?> defaultReceiver concode_elem_sep Class<?> receiver concode_elem_sep String PREF_KEY concode_elem_sep Context context concode_elem_sep Options options concode_elem_sep NotificationCompat.Builder builder concode_field_sep void cancel concode_elem_sep boolean w... | boolean function ( ) { return isRepeating ( ) || ! wasInThePast ( ) ; } |
4,866 | the status of the ip range , for example , `` authorized '' . returns a reference to this object so that method calls can be chained together . concode_field_sep String status concode_elem_sep String cIDRIP concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Tag> tags concode_field_sep IPRange withTags co... | IPRange function ( String arg0 ) { this . status = arg0 ; return this ; } |
4,867 | gets the value of the username property . concode_field_sep String password concode_elem_sep String username concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep void setUsername | String function ( ) { return username ; } |
4,868 | truncates the blob value that this blob object represents to be len bytes in length . concode_field_sep BlobDataID blob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_elem_sep BlobDataID originalBlob concode_elem_sep int colIndex concode_elem_sep boolean isWritable concode_elem_sep ... | void function ( long arg0 ) { try { blob . truncate ( session , arg0 ) ; } catch ( HsqlException loc0 ) { throw JDBCUtil . sqlException ( loc0 ) ; } } |
4,869 | utility method for recalculateding the total inventory price . concode_field_sep double inventoryPriceTotal concode_elem_sep ArrayList inventory concode_elem_sep int inventoryUnitTotal concode_field_sep int getInventoryUnitTotal concode_elem_sep double getInventoryPriceTotal concode_elem_sep void addInventoryItem conco... | void function ( ) { inventoryPriceTotal = 0 ; inventoryUnitTotal = 0 ; InventoryItem loc0 ; for ( int loc1 = 0 , loc2 = inventory . size ( ) ; loc1 < loc2 ; loc1 ++ ) { loc0 = ( InventoryItem ) inventory . get ( loc1 ) ; inventoryPriceTotal += loc0 . getPrice ( ) * loc0 . getQuantity ( ) ; inventoryUnitTotal += loc0 . ... |
4,870 | gets the delay before invoking the effect concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay... | float function ( ) { return delay ; } |
4,871 | get the length of the path , i.e. the number of steps concode_field_sep Array<Step> steps concode_elem_sep int x concode_elem_sep int y concode_field_sep int getX concode_elem_sep int getX concode_elem_sep boolean contains concode_elem_sep int getY concode_elem_sep int getY concode_elem_sep void prependStep concode_ele... | int function ( ) { return steps . size ; } |
4,872 | get the reference instance . concode_field_sep Reference reference concode_elem_sep long serialVersionUID concode_elem_sep Long first concode_elem_sep ResourceAdapter ra concode_elem_sep Boolean second concode_field_sep void setSecond concode_elem_sep void setResourceAdapter concode_elem_sep void setFirst concode_elem_... | Reference function ( ) { return reference ; } |
4,873 | send a log #verbose log message . concode_field_sep boolean DEBUG_SYSOUT concode_elem_sep int DEBUG_LEVEL concode_field_sep void printMyLog concode_elem_sep void printCallHierarchy concode_elem_sep void print concode_elem_sep void print concode_elem_sep String callMethodAndLine concode_elem_sep void d concode_elem_sep ... | void function ( String arg0 , String arg1 ) { Log . v ( arg0 , arg1 ) ; } |
4,874 | sets the content language response header override concode_field_sep String expires concode_elem_sep String cacheControl concode_elem_sep String RESPONSE_HEADER_CONTENT_ENCODING concode_elem_sep String RESPONSE_HEADER_CONTENT_DISPOSITION concode_elem_sep String[] PARAMETER_ORDER concode_elem_sep String RESPONSE_HEADER_... | ResponseHeaderOverrides function ( String arg0 ) { setContentLanguage ( arg0 ) ; return this ; } |
4,875 | the instance of tablibraryinfo we belong to . concode_field_sep String BODY_CONTENT_EMPTY concode_elem_sep boolean dynamicAttributes concode_elem_sep TagExtraInfo tagExtraInfo concode_elem_sep String displayName concode_elem_sep String tagClassName concode_elem_sep String bodyContent concode_elem_sep String tagName con... | TagLibraryInfo function ( ) { return tagLibrary ; } |
4,876 | used to print messages to system.out concode_field_sep String MESSAGE_TAG concode_elem_sep int SQL_STATE_DIGITS concode_elem_sep int ERROR_CODE_BASE concode_elem_sep int bundleHandle concode_elem_sep String errPropsName concode_elem_sep boolean TRACE concode_elem_sep boolean TRACESYSTEMOUT concode_elem_sep int SQL_CODE... | void function ( String arg0 , long arg1 ) { if ( TRACESYSTEMOUT ) { System . out . print ( arg0 ) ; System . out . println ( arg1 ) ; } } |
4,877 | returns a list of all the instances of t in the database . concode_field_sep EntityManager entityManager concode_elem_sep Class<T> modelClass concode_elem_sep String unqualifiedModelClassName concode_elem_sep Logger LOGGER concode_field_sep T readDeep concode_elem_sep T read concode_elem_sep void flush concode_elem_sep... | List < T > function ( ) { String loc0 = String . format ( "srini_string" , unqualifiedModelClassName ) ; Query loc1 = this . entityManager . createQuery ( loc0 ) ; @ SuppressWarnings ( "srini_string" ) List < T > loc2 = loc1 . getResultList ( ) ; return loc2 ; } |
4,878 | gets the alignment . concode_field_sep int TOP_ALIGNMENT concode_elem_sep int HANGING_BASELINE concode_elem_sep int CENTER_BASELINE concode_elem_sep int ROMAN_BASELINE concode_elem_sep int alignment concode_elem_sep int BOTTOM_ALIGNMENT concode_field_sep float getAscent concode_elem_sep GlyphJustificationInfo getJustif... | int function ( ) { return alignment ; } |
4,879 | confirm that the equals method distinguishes the known values . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerialization concode_elem_sep void testHashCode | void function ( ) { assertEquals ( CategoryLabelWidthType . CATEGORY , CategoryLabelWidthType . CATEGORY ) ; assertEquals ( CategoryLabelWidthType . RANGE , CategoryLabelWidthType . RANGE ) ; } |
4,880 | checks if the encoding is pcm . concode_field_sep boolean DEBUG concode_field_sep void listSupportedTargetTypes concode_elem_sep void listMixersAndExit concode_elem_sep void listMixersAndExit concode_elem_sep TargetDataLine getTargetDataLine concode_elem_sep Mixer.Info getMixerInfo concode_elem_sep void setDebug concod... | boolean function ( AudioFormat . Encoding arg0 ) { return arg0 . equals ( AudioFormat . Encoding . PCM_SIGNED ) || arg0 . equals ( AudioFormat . Encoding . PCM_UNSIGNED ) ; } |
4,881 | close existing office : calls disposemanager concode_field_sep PlaceHolder placeHolder concode_field_sep Object getManager concode_elem_sep boolean disposeManager concode_elem_sep String getUnorcName concode_elem_sep String getSysBinDir | boolean function ( TestParameters arg0 , boolean arg1 ) { return disposeManager ( arg0 ) ; } |
4,882 | returns a string representing the object . concode_field_sep DialShape CHORD concode_elem_sep long serialVersionUID concode_elem_sep String name concode_elem_sep DialShape PIE concode_elem_sep DialShape CIRCLE concode_field_sep Object readResolve concode_elem_sep int hashCode concode_elem_sep boolean equals | String function ( ) { return this . name ; } |
4,883 | sets the value of the s property . concode_field_sep Object parent concode_elem_sep String r concode_elem_sep long s concode_field_sep Object getParent concode_elem_sep void setR concode_elem_sep void afterUnmarshal concode_elem_sep void setParent concode_elem_sep String getR concode_elem_sep long getS | void function ( long arg0 ) { this . s = arg0 ; } |
4,884 | the rest status . concode_field_sep String STATUS_FIELD concode_elem_sep String _ID concode_elem_sep String _TYPE concode_elem_sep String STATUS concode_elem_sep OpType opType concode_elem_sep String ID_FIELD concode_elem_sep String index concode_elem_sep Exception cause concode_elem_sep String type concode_elem_sep St... | RestStatus function ( ) { return this . status ; } |
4,885 | hook for redirecting requests . applies to webview requests as well as requests made by plugins . to handle the request directly , return a uri in the form : cdvplugin : / / pluginid / ... and implement handleopenforread . to make this easier , use the topluginuri and frompluginuri helpers : public uri remapuri uri uri... | Uri function ( Uri arg0 ) { return null ; } |
4,886 | sets the name and returns a reference to this builder so that the methods can be chained together . concode_field_sep List<String> accessUrls concode_elem_sep String name concode_elem_sep String id concode_field_sep List<String> getAccessUrls concode_elem_sep String getName concode_elem_sep Label build concode_elem_sep... | Builder function ( String arg0 ) { this . name = arg0 ; return this ; } |
4,887 | indicate whether a noopcachemanager should be added at the end of the delegate list.in this case , any getcache requests not handled by the configured cachemanagers willbe automatically handled by the noopcachemanager and hence never return null . concode_field_sep boolean fallbackToNoOpCache concode_elem_sep List<Cach... | void function ( boolean arg0 ) { this . fallbackToNoOpCache = arg0 ; } |
4,888 | check if uri represents local file concode_field_sep String LOCAL_RESOURCE_SCHEME concode_elem_sep String LOCAL_CONTENT_SCHEME concode_elem_sep String LOCAL_ASSET_SCHEME concode_elem_sep String DATA_SCHEME concode_elem_sep String HTTP_SCHEME concode_elem_sep String LOCAL_FILE_SCHEME concode_elem_sep String HTTPS_SCHEME... | boolean function ( @ Nullable Uri arg0 ) { final String loc0 = getSchemeOrNull ( arg0 ) ; return LOCAL_FILE_SCHEME . equals ( loc0 ) ; } |
4,889 | a regular state must have a name . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart concode_field_s... | void function ( ) { prepareStateTest ( ) ; state . setName ( null ) ; assertFalse ( validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ) ; assertError ( diagnostics , ISSUE_STATE_WITHOUT_NAME ) ; } |
4,890 | gets the value of the getlicenseserversresult property . concode_field_sep JAXBElement<LicenseServersResponse> getLicenseServersResult concode_field_sep void setGetLicenseServersResult | JAXBElement < LicenseServersResponse > function ( ) { return getLicenseServersResult ; } |
4,891 | allow a mock for of the class for c++ unit testing . concode_field_sep Uri mQueryUri concode_elem_sep Uri mRequestUri concode_elem_sep WebRestrictionsClient sMock concode_elem_sep ContentObserver mContentObserver concode_elem_sep ContentResolver mContentResolver concode_field_sep WebRestrictionsClientResult shouldProce... | void function ( WebRestrictionsClient arg0 ) { sMock = arg0 ; } |
4,892 | gets the domain object name . concode_field_sep String daoSuffix concode_elem_sep String introspectedSchema concode_elem_sep String dmoSuffix concode_elem_sep String runtimeTableName concode_elem_sep String runtimeCatalog concode_elem_sep boolean ignoreQualifiersAtRuntime concode_elem_sep String introspectedTableName c... | String function ( ) { if ( stringHasValue ( domainObjectName ) ) { return domainObjectName ; } else if ( stringHasValue ( runtimeTableName ) ) { return getCamelCaseString ( runtimeTableName , true ) ; } else { return getCamelCaseString ( introspectedTableName , true ) ; } } |
4,893 | discards all cached principals . concode_field_sep LoadingCache<C,Optional<P>> cache concode_elem_sep Meter cacheMisses concode_elem_sep Authenticator<C,P> underlying concode_elem_sep Timer gets concode_field_sep Optional<P> authenticate concode_elem_sep long size concode_elem_sep CacheStats stats concode_elem_sep void... | void function ( ) { cache . invalidateAll ( ) ; } |
4,894 | implements this method from the interface with an empty method body . concode_field_sep PlaceHolder placeHolder concode_field_sep void windowDeactivated concode_elem_sep void windowClosed concode_elem_sep void windowLostFocus concode_elem_sep void windowOpened concode_elem_sep void windowActivated concode_elem_sep void... | void function ( WindowEvent arg0 ) { } |
4,895 | is the result of the lookup a cname ? concode_field_sep int NXRRSET concode_elem_sep int DELEGATION concode_elem_sep Object data concode_elem_sep int CNAME concode_elem_sep int SUCCESSFUL concode_elem_sep SetResponse nxrrset concode_elem_sep SetResponse nxdomain concode_elem_sep int NXDOMAIN concode_elem_sep int type c... | boolean function ( ) { return ( type == CNAME ) ; } |
4,896 | create an instance of jaxbelement concode_field_sep QName _InfoFromServerResponse_QNAME concode_elem_sep QName _GetCurrentTime_QNAME concode_elem_sep QName _FindUserResponse_QNAME concode_elem_sep QName _CreateUserResponse_QNAME concode_elem_sep QName _CreateUser_QNAME concode_elem_sep QName _GetAll_QNAME concode_elem_... | JAXBElement < CreateUserResponse > function ( CreateUserResponse arg0 ) { return new JAXBElement < CreateUserResponse > ( _CreateUserResponse_QNAME , CreateUserResponse . class , null , arg0 ) ; } |
4,897 | keys that should be sanitized . keys can be simple strings that the property ends with or regex expressions . concode_field_sep Pattern[] keysToSanitize concode_elem_sep String[] REGEX_PARTS concode_field_sep boolean isRegex concode_elem_sep Pattern getPattern concode_elem_sep Object sanitize | void function ( String ... arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . keysToSanitize = new Pattern [ arg0 . length ] ; for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { this . keysToSanitize [ loc0 ] = getPattern ( arg0 [ loc0 ] ) ; } } |
4,898 | returns the current minimum level at which messages will be printed . concode_field_sep String RUNTIME_LOG_LEVEL_KEY concode_elem_sep ServletContext servletContext concode_elem_sep String PREFIX concode_elem_sep int enabled concode_field_sep void init concode_elem_sep void setEnabledLevel concode_elem_sep int toLevel c... | int function ( ) { return this . enabled ; } |
4,899 | get phone concode_field_sep String password concode_elem_sep String phone concode_elem_sep String lastName concode_elem_sep Integer userStatus concode_elem_sep String username concode_elem_sep Long id concode_elem_sep String firstName concode_elem_sep String email concode_field_sep User lastName concode_elem_sep void s... | String function ( ) { return phone ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.