idx int64 0 100k | question stringlengths 68 7.19k | target stringlengths 20 663 |
|---|---|---|
35,600 | isvertex returns true if the parameter `` vertex '' represents a vertex of the graph . running time : o 1 . concode_field_sep int numVertices concode_elem_sep DList vertices concode_elem_sep int numEdges concode_elem_sep HashTableChained verticeTable concode_elem_sep HashTableChained edgeTable concode_field_sep void re... | boolean function ( Object arg0 ) { Entry loc0 = verticeTable . find ( arg0 ) ; if ( loc0 == null ) { return false ; } return true ; } |
35,601 | set the reference instance . concode_field_sep Reference reference concode_elem_sep PerfManagedConnectionFactory mcf concode_elem_sep ConnectionManager connectionManager concode_elem_sep long serialVersionUID concode_field_sep PerfConnection getConnection concode_elem_sep Reference getReference | void function ( Reference arg0 ) { this . reference = arg0 ; } |
35,602 | clear client cert lookup table . should only be called from ui thread . concode_field_sep String sUnreachableWebDataUrl concode_elem_sep ClientCertLookupTable sClientCertLookupTable concode_elem_sep boolean sRecordFullDocument concode_field_sep void nativeSetServiceWorkerIoThreadClient concode_elem_sep void setLegacyCa... | void function ( Runnable arg0 ) { ThreadUtils . assertOnUiThread ( ) ; getClientCertLookupTable ( ) . clear ( ) ; nativeClearClientCertPreferences ( arg0 ) ; } |
35,603 | define el valor de la propiedad codigoporcentaje . concode_field_sep String codigoPorcentaje concode_elem_sep BigDecimal tarifa concode_elem_sep String codigo concode_elem_sep BigDecimal valor concode_elem_sep BigDecimal baseImponible concode_field_sep BigDecimal getTarifa concode_elem_sep void setBaseImponible concode... | void function ( String arg0 ) { this . codigoPorcentaje = arg0 ; } |
35,604 | check if employee id 's are automatically set concode_field_sep Employee testEmp concode_elem_sep DatabaseHandler db1 concode_elem_sep Employee e1 concode_elem_sep Employee e2 concode_elem_sep Employee e3 concode_field_sep void testLnameWithNumbers concode_elem_sep void testSameDetailEmployees concode_elem_sep void tes... | void function ( ) { assertEquals ( 1 , db1 . getEmployee ( 1 ) . getEmployeeNo ( ) ) ; assertEquals ( 2 , db1 . getEmployee ( 2 ) . getEmployeeNo ( ) ) ; assertEquals ( 3 , db1 . getEmployee ( 3 ) . getEmployeeNo ( ) ) ; } |
35,605 | get a particular item . concode_field_sep Log log concode_field_sep void deleteItemContent concode_elem_sep void addItemMetaData concode_elem_sep ItemDataIfc saveItem concode_elem_sep void deleteItem concode_elem_sep void deleteItemMetaData concode_elem_sep Map getItemsByKeyword | ItemDataIfc function ( Long arg0 , String arg1 ) { ItemFacade loc0 = null ; try { ItemService loc1 = new ItemService ( ) ; loc0 = loc1 . getItem ( arg0 , arg1 ) ; } catch ( Exception loc1 ) { throw new AssessmentServiceException ( loc1 ) ; } return loc0 ; } |
35,606 | 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 ) ; } } |
35,607 | get servlet context . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep Object getElValue concode_elem_sep Object getManagedBean concode_elem_sep String getJsfEl concode_elem_sep void resetManagedBean concode_elem_sep void... | ServletContext function ( ) { return ( ServletContext ) FacesContext . getCurrentInstance ( ) . getExternalContext ( ) . getContext ( ) ; } |
35,608 | set the runtimeversion value . concode_field_sep String runtimeVersion concode_elem_sep String script concode_field_sep JobProperties withScript concode_elem_sep String runtimeVersion concode_elem_sep String script | JobProperties function ( String arg0 ) { this . runtimeVersion = arg0 ; return this ; } |
35,609 | test , on a local filesystem , that the filelink is still readable even when the current file gets renamed . concode_field_sep PlaceHolder placeHolder concode_field_sep void writeSomeData concode_elem_sep void skipBuffer concode_elem_sep void testHDFSLinkReadDuringRename concode_elem_sep void testHDFSLinkReadDuringDele... | void function ( ) { HBaseTestingUtility loc0 = new HBaseTestingUtility ( ) ; FileSystem loc1 = loc0 . getTestFileSystem ( ) ; assertEquals ( "srini_string" , loc1 . getUri ( ) . getScheme ( ) ) ; testLinkReadDuringRename ( loc1 , loc0 . getDataTestDir ( ) ) ; } |
35,610 | updates the layout data . concode_field_sep HashMap<Integer,Axis> xAxisMap concode_elem_sep HashMap<Integer,Axis> yAxisMap concode_elem_sep Chart chart concode_field_sep IAxis getYAxis concode_elem_sep int createXAxis concode_elem_sep IAxis[] getAxes concode_elem_sep void deleteXAxis concode_elem_sep void zoomIn concod... | void function ( ) { for ( IAxis loc0 : getAxes ( ) ) { ( ( Axis ) loc0 ) . updateLayoutData ( ) ; } } |
35,611 | get year in yyyy format based on provided date concode_field_sep Long localizedEpoch concode_field_sep int epochToClarionDate concode_elem_sep int date concode_elem_sep int month concode_elem_sep int today concode_elem_sep int clock concode_elem_sep int day concode_elem_sep String age concode_elem_sep long clarionDateT... | int function ( int arg0 ) { Calendar loc0 = Calendar . getInstance ( ) ; loc0 . setTimeInMillis ( clarionDateToEpoch ( arg0 ) ) ; return loc0 . get ( Calendar . YEAR ) ; } |
35,612 | returns the size of substring that does not contain ane trailing spaces concode_field_sep PlaceHolder placeHolder concode_field_sep String arrayToString concode_elem_sep String[] split concode_elem_sep String getList concode_elem_sep String getList concode_elem_sep String getList concode_elem_sep String getList concode... | int function ( String arg0 ) { int loc0 = arg0 . length ( ) ; while ( loc0 > 0 ) { loc0 -- ; if ( arg0 . charAt ( loc0 ) != ' ' ) { return loc0 + 1 ; } } return 0 ; } |
35,613 | get the mode concode_field_sep Vector<Double> v concode_field_sep Vector getValues concode_elem_sep double max concode_elem_sep int modeOccurrenceCount concode_elem_sep int count concode_elem_sep double range concode_elem_sep double sum concode_elem_sep void clearAll concode_elem_sep Vector<Double> sorted concode_elem_... | double function ( ) { if ( v . isEmpty ( ) ) return ( 0.0D / 0.0D ) ; return ( Double ) mode0 ( true ) ; } |
35,614 | returns the suggester for a field , if not loaded already , loads the appropriate suggester from completiondictionary concode_field_sep NRTSuggester suggester concode_elem_sep IndexInput dictIn concode_elem_sep long offset concode_elem_sep long minWeight concode_elem_sep long maxWeight concode_elem_sep byte type concod... | NRTSuggester function ( ) { if ( suggester == null ) { try ( IndexInput loc0 = dictIn . clone ( ) ) { loc0 . seek ( offset ) ; suggester = NRTSuggester . load ( loc0 ) ; } } return suggester ; } |
35,615 | pushes the product of the top two elements of the stack onto the stack concode_field_sep Stack stack concode_field_sep void add concode_elem_sep void swap concode_elem_sep void subtract concode_elem_sep void duplicate concode_elem_sep void push concode_elem_sep int peek concode_elem_sep void setStack concode_elem_sep i... | void function ( ) { int loc0 = pop ( ) ; int loc1 = pop ( ) ; push ( loc0 * loc1 ) ; } |
35,616 | gets the value of the description property . concode_field_sep SbbVersion sbbVersion concode_elem_sep Description description concode_elem_sep String id concode_elem_sep SbbVendor sbbVendor concode_elem_sep SbbName sbbName concode_field_sep SbbVendor getSbbVendor concode_elem_sep void setSbbVendor concode_elem_sep void... | Description function ( ) { return description ; } |
35,617 | returns an immutable range map mapping a single range to a single value . concode_field_sep long serialVersionUID concode_elem_sep ImmutableRangeMap<Comparable<?>,Object> EMPTY concode_elem_sep ImmutableList<Range<K>> ranges concode_elem_sep ImmutableList<V> values concode_elem_sep RangeMap<K,V> rangeMap concode_elem_s... | ImmutableRangeMap < K , V > function ( Range < K > arg0 , V arg1 ) { return new ImmutableRangeMap < K , V > ( ImmutableList . of ( arg0 ) , ImmutableList . of ( arg1 ) ) ; } |
35,618 | sets the value of the addressbookaddress property . concode_field_sep String internalId concode_elem_sep Boolean defaultBilling concode_elem_sep String label concode_elem_sep Boolean defaultShipping concode_elem_sep Address addressbookAddress concode_field_sep Boolean isDefaultBilling concode_elem_sep String getLabel c... | void function ( Address arg0 ) { this . addressbookAddress = arg0 ; } |
35,619 | gets the names of the parameters . concode_field_sep long MAX_CACHETIME concode_elem_sep long DEFAULT_CACHETIME concode_elem_sep String fileName concode_elem_sep String CONTENT_DISPOSITION concode_elem_sep InputStream stream concode_elem_sep long cacheTime concode_elem_sep int bufferSize concode_elem_sep Map<String,Str... | Iterator < String > function ( ) { if ( params != null ) { return params . keySet ( ) . iterator ( ) ; } return null ; } |
35,620 | checks if the database has sub-second resolution . concode_field_sep DatabaseHelper databaseHelper concode_field_sep boolean supportsMultipleFulltextIndexes concode_elem_sep boolean isVCSH2 concode_elem_sep void waitForFulltextIndexing concode_elem_sep boolean isVCSOracle concode_elem_sep boolean isVCSDB2 concode_elem_... | boolean function ( ) { return databaseHelper . hasSubSecondResolution ( ) ; } |
35,621 | 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 ) ) ; } |
35,622 | returns a new domain which is created from the transformed domain of this boundary . concode_field_sep Boundary2D boundary concode_field_sep Boundary2D boundary concode_elem_sep Box2D boundingBox concode_elem_sep double distance concode_elem_sep double distance concode_elem_sep boolean isEmpty concode_elem_sep void dra... | GenericDomain2D function ( AffineTransform2D arg0 ) { Boundary2D loc0 = boundary . transform ( arg0 ) ; if ( ! arg0 . isDirect ( ) ) loc0 = loc0 . reverse ( ) ; return new GenericDomain2D ( loc0 ) ; } |
35,623 | returns a string representation suitable for encoding in depgraph and deps.js files . concode_field_sep int number concode_elem_sep FeatureSet features concode_elem_sep FeatureSet ES6_IMPL concode_elem_sep boolean unsupported concode_elem_sep boolean typeScript concode_elem_sep boolean es6Modules concode_elem_sep Strin... | String function ( ) { if ( typeScript ) { return "srini_string" ; } else if ( unsupported || es6Modules ) { return "srini_string" ; } else if ( number > 5 ) { return "srini_string" ; } else if ( number > 3 ) { return "srini_string" ; } return "srini_string" ; } |
35,624 | get arrayarrayofmodel concode_field_sep List<List<Long>> arrayArrayOfInteger concode_elem_sep List<String> arrayOfString concode_elem_sep List<List<ReadOnlyFirst>> arrayArrayOfModel concode_field_sep String toIndentedString concode_elem_sep void setArrayArrayOfInteger concode_elem_sep void setArrayArrayOfModel concode_... | List < List < ReadOnlyFirst >> function ( ) { return arrayArrayOfModel ; } |
35,625 | the id of the last commit made to the branch . concode_field_sep String branchName concode_elem_sep String commitId concode_field_sep BranchInfo withCommitId concode_elem_sep void setBranchName concode_elem_sep String getBranchName concode_elem_sep int hashCode concode_elem_sep BranchInfo withBranchName concode_elem_se... | void function ( String arg0 ) { this . commitId = arg0 ; } |
35,626 | sets the radius of this shape concode_field_sep long addr concode_field_sep void jniSetRadius concode_elem_sep int getChildCount concode_elem_sep int jniGetType concode_elem_sep void jniDispose concode_elem_sep Type getType concode_elem_sep float jniGetRadius concode_elem_sep void dispose concode_elem_sep int jniGetChi... | void function ( float arg0 ) { jniSetRadius ( addr , arg0 ) ; } |
35,627 | gets the value of the index property . concode_field_sep GuestAuthentication auth concode_elem_sep Integer maxResults concode_elem_sep ManagedObjectReference vm concode_elem_sep String filePath concode_elem_sep Integer index concode_elem_sep ManagedObjectReference _this concode_elem_sep String matchPattern concode_fiel... | Integer function ( ) { return index ; } |
35,628 | gets the value of the lvl6ppr property . concode_field_sep CTTextParagraphProperties lvl9PPr concode_elem_sep CTTextParagraphProperties lvl2PPr concode_elem_sep CTTextParagraphProperties lvl1PPr concode_elem_sep CTTextParagraphProperties lvl7PPr concode_elem_sep CTTextParagraphProperties lvl8PPr concode_elem_sep CTText... | CTTextParagraphProperties function ( ) { return lvl6PPr ; } |
35,629 | decode the text . subclasses may override this method to change the decoding . concode_field_sep String decodedText concode_elem_sep String text concode_elem_sep long lastUpdateTime concode_field_sep long getLastUpdateTime concode_elem_sep String getDecodedText concode_elem_sep void setText | String function ( String arg0 ) { return arg0 ; } |
35,630 | sets the target object whose property will be animated by this animation . not all subclasses operate on target objects for example , valueanimator , but this method is on the superclass for the convenience of dealing generically with those subclasses that do handle targets . concode_field_sep ArrayList<AnimatorListene... | void function ( Object arg0 ) { } |
35,631 | gets 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 setBeans concode_elem_sep void setTemplateRef concode_elem_sep JspxPages getJspxPages concode_elem_sep void setJspxPages concode_elem_sep ResourceTyp... | Beans function ( ) { return beans ; } |
35,632 | this method returns the new linkedhashmap sorted with values for passed comparater . if null values exist they will be put in the last of the returned linkedhashmap . if there are duplicate values they will come together at the values ordering order but ordering between same multiple values is ramdom . passed map will ... | LinkedHashMap function ( Map arg0 , Comparator arg1 ) { return sortMapByValue ( arg0 , arg1 , null ) ; } |
35,633 | tests if some key maps into the specified value in this hashtable . this operation is more expensive than the containskey method . note that this method is identical in functionality to containsvalue , which is part of the map interface in the collections framework . concode_field_sep Entry table[] concode_elem_sep Ent... | boolean function ( Object arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } Entry loc0 [ ] = table ; for ( int loc1 = loc0 . length ; loc1 -- > 0 ; ) { for ( Entry loc2 = loc0 [ loc1 ] ; loc2 != null ; loc2 = loc2 . next ) { if ( loc2 . arg0 . equals ( arg0 ) ) { return true ; } } } return false ; } |
35,634 | register a poselistener on this skeletonpose . concode_field_sep Transform[] _globalTransforms concode_elem_sep Transform[] _localTransforms concode_elem_sep List<PoseListener> _poseListeners concode_elem_sep Skeleton _skeleton concode_elem_sep Matrix4[] _matrixPalette concode_field_sep void removePoseListener concode_... | void function ( final PoseListener arg0 ) { _poseListeners . add ( arg0 ) ; } |
35,635 | set the system identifier for this locator . concode_field_sep String systemId concode_elem_sep int columnNumber concode_elem_sep int lineNumber concode_elem_sep String publicId concode_field_sep int getLineNumber concode_elem_sep String getSystemId concode_elem_sep void setColumnNumber concode_elem_sep int getColumnNu... | void function ( String arg0 ) { this . systemId = arg0 ; } |
35,636 | immediately closes the socket connection if it 's currently held . use this to interrupt an in-flight request from any thread . it 's the caller 's responsibility to close the request body and response body streams ; otherwise resources may be leaked . this method is safe to be called concurrently , but provides limite... | void function ( ) { canceled = true ; StreamAllocation loc0 = this . streamAllocation ; if ( loc0 != null ) loc0 . cancel ( ) ; } |
35,637 | exception handler for duplicatereferenceexceptions concode_field_sep PlaceHolder placeHolder concode_field_sep void handleNotFoundException | void function ( DuplicateReferenceException arg0 ) { throw new SampleException ( new DuplicateReferenceError ( arg0 . getReference ( ) ) , HttpStatus . BAD_REQUEST ) ; } |
35,638 | returns the name of this k b folder . concode_field_sep KBFolder _kbFolder concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep long getParentKBFolderId concode_elem_sep v... | java . lang . String function ( ) { return _kbFolder . getName ( ) ; } |
35,639 | returns the next key marker that should be used in the next request to get the next page of results . this value is only valid if #istruncated indicates this listing is truncated . concode_field_sep boolean isTruncated concode_elem_sep String bucketName concode_elem_sep String nextKeyMarker concode_elem_sep List<String... | String function ( ) { return nextKeyMarker ; } |
35,640 | returns next pseudorandom longitude , kinda close to minlongitude/maxlongitude note : minlongitude/maxlongitude are merely guidelines . the returned value is sometimes outside of that range ! this is to facilitate edge testing . concode_field_sep PlaceHolder placeHolder concode_field_sep Rectangle nextBoxNear concode_e... | double function ( double arg0 , double arg1 ) { GeoUtils . checkLongitude ( arg0 ) ; GeoUtils . checkLongitude ( arg1 ) ; return normalizeLongitude ( randomRangeMaybeSlightlyOutside ( arg0 , arg1 ) ) ; } |
35,641 | documentation pending concode_field_sep String course_id concode_elem_sep String templateOrderBy concode_elem_sep Collection templateNames concode_elem_sep Collection templateIds concode_elem_sep String agent_id concode_elem_sep Collection templateList concode_elem_sep long serialVersionUID concode_elem_sep BeanSort bs... | void function ( List arg0 ) { this . sortTemplateList = arg0 ; } |
35,642 | returns a copy of the optional data field . optional data starts at offset 2 in the cr structure . concode_field_sep LogService logger concode_elem_sep byte[] opt concode_elem_sep int connType concode_elem_sep int length concode_field_sep int getConnectionType concode_elem_sep int getStructLength concode_elem_sep byte[... | byte [ ] function ( ) { return ( byte [ ] ) opt . clone ( ) ; } |
35,643 | get the process log for a given id . concode_field_sep Session session concode_elem_sep JbpmSession jbpmSession concode_field_sep Map findLogsByProcessInstance concode_elem_sep void collectTokenLogs concode_elem_sep List findLogsByToken concode_elem_sep ProcessLog loadProcessLog concode_elem_sep void handle concode_ele... | ProcessLog function ( long arg0 ) { ProcessLog loc0 = null ; try { loc0 = ( ProcessLog ) session . get ( ProcessLog . class , new Long ( arg0 ) ) ; } catch ( HibernateException loc1 ) { handle ( loc1 ) ; throw new JbpmPersistenceException ( "srini_string" + arg0 + "srini_string" , loc1 ) ; } return loc0 ; } |
35,644 | gets the value of the creditedby property . concode_field_sep String bucketName concode_elem_sep String roaming concode_elem_sep BigDecimal dedicatedAccountBefore concode_elem_sep String bucketBalanceBefore concode_elem_sep BigDecimal dedicatedAccountAfter concode_elem_sep String callDirection concode_elem_sep String c... | String function ( ) { return creditedBy ; } |
35,645 | return the state of the motor safety enabled flag return if the motor safety is currently enabled for this devicce . concode_field_sep double m_stopTime concode_elem_sep double m_expiration concode_elem_sep MotorSafetyHelper m_headHelper concode_elem_sep MotorSafetyHelper m_nextHelper concode_elem_sep boolean m_enabled... | boolean function ( ) { return m_enabled ; } |
35,646 | sets the value of the id property . concode_field_sep Double hours concode_elem_sep Double amount concode_elem_sep RecordRef location concode_elem_sep Long id concode_elem_sep RecordRef payrollItem concode_elem_sep RecordRef department concode_elem_sep RecordRef clazz concode_elem_sep CustomFieldList customFieldList co... | void function ( Long arg0 ) { this . id = arg0 ; } |
35,647 | parses the next token from this string . clients sit in a loop calling next to parse successive tokens until an eof token is returned . concode_field_sep String string concode_elem_sep String MIME concode_elem_sep int COMMENT concode_elem_sep int type concode_elem_sep int currentPos concode_elem_sep int peekPos concode... | Token function ( ) { Token loc0 ; currentPos = nextPos ; loc0 = getNext ( ) ; nextPos = peekPos = currentPos ; return loc0 ; } |
35,648 | gets the selected mineral name . concode_field_sep String selectedFruit concode_elem_sep String selectedColor concode_elem_sep String selectedMineral concode_elem_sep String selectedPanel concode_field_sep void setSelectedFruit concode_elem_sep String getSelectedFruit concode_elem_sep void setSelectedMineral concode_el... | String function ( ) { return selectedMineral ; } |
35,649 | the getter function for properties variable . concode_field_sep ConfigManager configManager concode_elem_sep Properties properties concode_field_sep String getPropertyValue concode_elem_sep void setPropertyValue concode_elem_sep ConfigManager getInstance | Properties function ( ) { return properties ; } |
35,650 | returns true if field spout_object is set has been assigned a value and false otherwise concode_field_sep String _fieldName concode_elem_sep ComponentCommon common concode_elem_sep short _thriftId concode_elem_sep Map<_Fields,org.apache.thrift.meta_data.FieldMetaData> metaDataMap concode_elem_sep Map<String,_Fields> by... | boolean function ( ) { return this . spout_object != null ; } |
35,651 | log a fine message . concode_field_sep LogImpl impl concode_elem_sep String CATEGORY concode_field_sep boolean isLoggable concode_elem_sep boolean isLoggingSupported concode_elem_sep void setDefaultLevel concode_elem_sep Iterator levelIterator concode_elem_sep void log concode_elem_sep Level getDefaultLevel concode_ele... | void function ( String arg0 , String arg1 ) { impl . fine ( arg0 , arg1 ) ; } |
35,652 | get sorted array of serial ports in the system located on searchpath , matched pattern concode_field_sep String PORTNAMES_PATH concode_elem_sep Comparator<String> PORTNAMES_COMPARATOR concode_elem_sep SerialNativeInterface serialInterface concode_elem_sep Pattern PORTNAMES_REGEXP concode_field_sep String[] getWindowsPo... | String [ ] function ( String arg0 , Pattern arg1 ) { return getPortNames ( arg0 , arg1 , PORTNAMES_COMPARATOR ) ; } |
35,653 | non destructive join of two rectangles . concode_field_sep int top concode_elem_sep int left concode_elem_sep int bottom concode_elem_sep int right concode_field_sep long area concode_elem_sep boolean contains concode_elem_sep int getRight concode_elem_sep int getBottom concode_elem_sep boolean intersects concode_elem_... | Rectangle function ( Rectangle arg0 , Rectangle arg1 ) { Rectangle loc0 = new Rectangle ( arg0 ) ; loc0 . join ( arg1 ) ; return loc0 ; } |
35,654 | returns the upper bound of the y-interval . concode_field_sep double yHigh concode_elem_sep long serialVersionUID concode_elem_sep double yLow concode_elem_sep double xHigh concode_elem_sep double y concode_elem_sep double xLow concode_field_sep double getY concode_elem_sep double getXLow concode_elem_sep double getYLo... | double function ( ) { return this . yHigh ; } |
35,655 | utility that check that an object is serializable . concode_field_sep CacheImpl forcedCacheImpl concode_elem_sep CacheImpl cacheImpl concode_field_sep void add concode_elem_sep void add concode_elem_sep void init concode_elem_sep void set concode_elem_sep void set concode_elem_sep long incr concode_elem_sep long incr c... | void function ( Object arg0 ) { if ( arg0 != null && ! ( arg0 instanceof Serializable ) ) { throw new CacheException ( "srini_string" + arg0 . getClass ( ) . getName ( ) , new NotSerializableException ( arg0 . getClass ( ) . getName ( ) ) ) ; } } |
35,656 | get the block concode_field_sep String[] storageIDs concode_elem_sep String[] datanodeUuids concode_elem_sep BlockWithLocations[] blocks concode_elem_sep Block block concode_elem_sep StorageType[] storageTypes concode_field_sep StringBuilder appendString concode_elem_sep String[] getStorageIDs concode_elem_sep String t... | Block function ( ) { return block ; } |
35,657 | access method concode_field_sep InetAddress myip concode_elem_sep Float theSum concode_elem_sep ArrayList<String> keyWords concode_elem_sep String theEvent concode_elem_sep boolean IAmGauge concode_elem_sep String theDate concode_elem_sep boolean IAmCounter concode_elem_sep Float theGauge concode_elem_sep String timeNa... | boolean function ( ) { return IAmCounter ; } |
35,658 | this is a jsf setter method for ui concode_field_sep List<RealmItem> realmItems concode_elem_sep Boolean showPermissionLink concode_elem_sep UIData permissionTable concode_elem_sep boolean ENABLE_PERMISSION_FEATURE_FLAG concode_elem_sep SakaiFacade sakaiFacade concode_elem_sep Log logger concode_elem_sep Boolean allowe... | void function ( UIData arg0 ) { this . permissionTable = arg0 ; } |
35,659 | add updatable iterators to be released in case of incomplete execution concode_field_sep HashMappedList tableUpdateList concode_elem_sep HsqlArrayList stack concode_elem_sep LongDeque savepointTimestamps concode_elem_sep Session session concode_elem_sep Object[] routineArguments concode_elem_sep HashSet constraintPath ... | void function ( IndexRowIterator arg0 ) { if ( updatedIterators == null ) { updatedIterators = new HsqlArrayList ( ) ; } updatedIterators . add ( arg0 ) ; } |
35,660 | adds ifd data . if ifd data of the same type already exists , it will be replaced by the new data . concode_field_sep byte[] USER_COMMENT_JIS concode_elem_sep byte[] USER_COMMENT_ASCII concode_elem_sep byte[] mThumbnail concode_elem_sep ByteOrder mByteOrder concode_elem_sep ArrayList<byte[]> mStripBytes concode_elem_se... | void function ( IfdData arg0 ) { mIfdDatas [ arg0 . getId ( ) ] = arg0 ; } |
35,661 | reads and returns the next character . 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_sep void resync concode_elem_sep int[]... | char function ( ) { scanner . useDelimiter ( EMPTY_PATTERN ) ; String loc0 = scanner . next ( ) ; assert ( loc0 . length ( ) == 1 ) : "srini_string" + "srini_string" ; scanner . useDelimiter ( WHITESPACE_PATTERN ) ; return loc0 . charAt ( 0 ) ; } |
35,662 | sets the value of the name property . concode_field_sep int totalOccurrences concode_elem_sep String lastName concode_elem_sep BigDecimal amount concode_elem_sep Integer customerShippingProfileId concode_elem_sep String accountNumber concode_elem_sep XMLGregorianCalendar createTimeStampUTC concode_elem_sep String first... | void function ( String arg0 ) { this . name = arg0 ; } |
35,663 | add a span covering the half open interval including start up to but not including end . concode_field_sep int kMaxAddsSinceSort concode_elem_sep int mAddsSinceSort concode_elem_sep List mSpans concode_elem_sep float mEnd concode_elem_sep float mStart concode_elem_sep SpanIntersection instance concode_field_sep int com... | void function ( float arg0 , float arg1 ) { if ( mSpans != null ) { mSpans . add ( new Span ( arg0 , arg1 ) ) ; if ( ++ mAddsSinceSort >= kMaxAddsSinceSort ) { sortAndCollapse ( ) ; } } } |
35,664 | this class is only used internally so this method should never be called . concode_field_sep SAXImpl _saxImpl concode_elem_sep ContentHandler _sax concode_elem_sep String XMLNS_PREFIX concode_elem_sep String EMPTYSTRING concode_elem_sep LexicalHandler _lex concode_elem_sep Hashtable _nsPrefixes concode_elem_sep Node _d... | boolean function ( String arg0 ) { return false ; } |
35,665 | create visualization for chart . concode_field_sep PlaceHolder placeHolder concode_field_sep BoxAndWhiskerRenderer createRenderer concode_elem_sep JFreeChart createBoxPlot concode_elem_sep JFreeChart createBoxPlot concode_elem_sep void writeChartToPDF concode_elem_sep BoxAndWhiskerCategoryDataset formatDataset | JPanel function ( final JFreeChart arg0 ) { final Dimension loc0 = new Dimension ( 500 , 500 ) ; ApplicationFrame loc1 = new ApplicationFrame ( "srini_string" ) ; loc1 . setSize ( loc0 ) ; final ChartPanel loc2 = new ChartPanel ( arg0 ) ; loc1 . setContentPane ( loc2 ) ; return loc2 ; } |
35,666 | allocates a new direct bytebuffer with the specified number of elements . the returned buffer will have its byte order set to the host platform 's native byte order . concode_field_sep int SIZEOF_BYTE concode_elem_sep int SIZEOF_SHORT concode_elem_sep int SIZEOF_INT concode_elem_sep int SIZEOF_FLOAT concode_elem_sep in... | ByteBuffer function ( int arg0 ) { ByteBuffer loc0 = ByteBuffer . allocateDirect ( arg0 ) ; loc0 . order ( ByteOrder . nativeOrder ( ) ) ; return loc0 ; } |
35,667 | it returns the number of frequent patterns found by the last execution of the algorithm . concode_field_sep int frequentPatterns concode_elem_sep PatternCreator patternCreator concode_elem_sep Saver saver concode_elem_sep double minSupportAbsolute concode_field_sep void dfs_pruning concode_elem_sep void setFrequentPatt... | int function ( ) { return frequentPatterns ; } |
35,668 | get the number of elements in the list ! concode_field_sep int LIST_BEGIN concode_elem_sep boolean SLACK_MODE concode_elem_sep ListElement<T> listBegin concode_elem_sep boolean DEFAULT_MODE concode_elem_sep boolean STRICT_MODE concode_elem_sep boolean strictMode concode_elem_sep int MAX_SIZE concode_elem_sep int elemen... | int function ( ) { return this . elementCount ; } |
35,669 | add a field with the specified value without any validation . only appropriate for headers from the remote peer . concode_field_sep int responseCode concode_elem_sep String statusLine concode_elem_sep int httpMinorVersion concode_elem_sep String requestLine concode_elem_sep List<String> namesAndValues concode_elem_sep ... | void function ( String arg0 , String arg1 ) { namesAndValues . add ( arg0 ) ; namesAndValues . add ( arg1 . trim ( ) ) ; } |
35,670 | create namespace in a blocking manner . keeps trying until clusterschema.hbase _ master_cluster_schema_operation_timeout_key expires.note , by-passes notifying coprocessors and name checks . use for system namespaces only . concode_field_sep String KEY_MAX_TABLES concode_elem_sep int DEFAULT_NS_INIT_TIMEOUT concode_ele... | void function ( final NamespaceDescriptor arg0 ) { ClusterSchema loc0 = this . masterServices . getClusterSchema ( ) ; long loc1 = loc0 . createNamespace ( arg0 , HConstants . NO_NONCE , HConstants . NO_NONCE ) ; block ( this . masterServices , loc1 ) ; } |
35,671 | zeros accumulated running time and restarts this object . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeToMessage concode_elem_se... | void function ( ) { total = 0 ; start ( ) ; } |
35,672 | sets the value of the sharedsetid property . concode_field_sep Integer memberCount concode_elem_sep Integer referenceCount concode_elem_sep String name concode_elem_sep Long sharedSetId concode_elem_sep SharedSetType type concode_elem_sep SharedSetStatus status concode_field_sep void setName concode_elem_sep Integer ge... | void function ( Long arg0 ) { this . sharedSetId = arg0 ; } |
35,673 | the attachment state of the volume . constraints : allowed values : attaching , attached , detaching , detached concode_field_sep String instanceId concode_elem_sep String volumeId concode_elem_sep String state concode_elem_sep Boolean deleteOnTermination concode_elem_sep String device concode_elem_sep java.util.Date a... | void function ( VolumeAttachmentState arg0 ) { this . state = arg0 . toString ( ) ; } |
35,674 | gets the value of the pstn 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... | ExtensionOnlyType function ( ) { return pstn ; } |
35,675 | returns the label of this refactoring 's command . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep TransactionalEditingDomain getEditingDomain concode_elem_sep Resource getResource concode_elem_sep boolean internalDoUndo concode_elem_sep List<?> getAffectedFiles conc... | String function ( ) { return "srini_string" ; } |
35,676 | must be called one time per frame before any particle effect drawing operation will occur . concode_field_sep Array<ParticleBatch<?>> batches concode_elem_sep Array<ParticleEffect> effects concode_elem_sep ParticleSystem instance concode_field_sep void add concode_elem_sep void add concode_elem_sep void removeAll conco... | void function ( ) { for ( ParticleBatch < ? > loc0 : batches ) loc0 . begin ( ) ; } |
35,677 | gets the data value for this ctconohcpe29rs . concode_field_sep pe.com.grupobbva.ohc.pe29.CtBodyRs data concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep pe.com.grupobbva.xsd.ps9.CtHeaderRs header concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concod... | pe . com . grupobbva . ohc . pe29 . CtBodyRs function ( ) { return data ; } |
35,678 | add an argument to the argument list for the error message . concode_field_sep String FUNC_PARAM_CARDINALITY concode_elem_sep String VAR_TYPE_MISMATCH concode_elem_sep Object[] args concode_elem_sep String FUNC_EMPTY_SEQ_DISALLOWED concode_elem_sep String NODE_COMP_TYPE_MISMATCH concode_elem_sep String FUNC_NOT_FOUND c... | void function ( Object arg0 ) { addArgs ( new Object [ ] { arg0 } ) ; } |
35,679 | return an alias typecode . concode_field_sep PlaceHolder placeHolder concode_field_sep String extract concode_elem_sep String read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep void write | TypeCode function ( ) { ORB loc0 = OrbRestricted . Singleton ; return loc0 . create_alias_tc ( id ( ) , "srini_string" , loc0 . create_string_tc ( 0 ) ) ; } |
35,680 | returns an array of bytes representing the value of the sql rowid designated by this java.sql.rowid object . concode_field_sep byte[] id concode_elem_sep int hash concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep Object id | byte [ ] function ( ) { return id . clone ( ) ; } |
35,681 | returns a java object representing the default value of the data type . concode_field_sep int defaultValue concode_elem_sep int SIZE concode_elem_sep int MAX_VALUE concode_elem_sep int MIN_VALUE concode_elem_sep long serialVersionUID concode_field_sep int toInt concode_elem_sep int toInt concode_elem_sep int getByteLen... | Object function ( ) { return new Integer ( defaultValue ) ; } |
35,682 | this method was generated by mybatis generator . this method sets the value of the database column portal_permission_to_role . permission_code concode_field_sep String roleCode concode_elem_sep long serialVersionUID concode_elem_sep String permissionCode concode_field_sep void setRoleCode concode_elem_sep String getRol... | void function ( String arg0 ) { this . permissionCode = arg0 == null ? null : arg0 . trim ( ) ; } |
35,683 | checks whether memory cache key image uri for current imageaware is actual concode_field_sep String imageUri concode_elem_sep String memoryCacheKey concode_elem_sep ImageLoaderEngine engine concode_elem_sep String LOG_TASK_CANCELLED_IMAGEAWARE_REUSED concode_elem_sep Bitmap bitmap concode_elem_sep ImageAware imageAware... | boolean function ( ) { String loc0 = engine . getLoadingUriForView ( imageAware ) ; return ! memoryCacheKey . equals ( loc0 ) ; } |
35,684 | return the field name failure happened in . concode_field_sep String code concode_elem_sep String field concode_elem_sep String message concode_field_sep String getMessage concode_elem_sep String toString concode_elem_sep String getCode | String function ( ) { return field ; } |
35,685 | creates a new thread with proper name . concode_field_sep String prefix concode_elem_sep long threadCount concode_field_sep placeholderType placeHolder | Thread function ( Runnable arg0 ) { String loc0 = prefix + "srini_string" + threadCount ++ ; return new Thread ( arg0 , loc0 ) ; } |
35,686 | to define a proxy host when instantiating the sqs client concode_field_sep String bucketName concode_elem_sep String fileName concode_elem_sep String serverSideEncryption concode_elem_sep String secretKey concode_elem_sep String prefix concode_elem_sep long partSize concode_elem_sep String proxyHost concode_elem_sep In... | String function ( ) { return proxyHost ; } |
35,687 | return the configured charset for part headers . concode_field_sep Charset charset concode_elem_sep DataBufferFactory bufferFactory concode_elem_sep List<HttpMessageWriter<?>> partWriters concode_elem_sep AtomicBoolean committed concode_elem_sep Charset DEFAULT_CHARSET concode_elem_sep HttpHeaders headers concode_elem_... | Charset function ( ) { return this . charset ; } |
35,688 | this method resets the outgoing events . concode_field_sep long condition concode_elem_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean boolVar concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep SCInterface getSCInterf... | void function ( ) { } |
35,689 | read from the inputstream into the given text . concode_field_sep int bufferLength concode_elem_sep byte[] recordDelimiterBytes concode_elem_sep int DEFAULT_BUFFER_SIZE concode_elem_sep InputStream in concode_elem_sep byte CR concode_elem_sep byte LF concode_elem_sep byte[] buffer concode_elem_sep int bufferSize concod... | int function ( Text arg0 ) { return readLine ( arg0 , Integer . MAX_VALUE , Integer . MAX_VALUE ) ; } |
35,690 | sets whether we remove elements related to assertj from assertion error stack trace . concode_field_sep boolean removeAssertJRelatedElementsFromStackTrace concode_elem_sep String LINE_SEPARATOR concode_elem_sep boolean printThreadDump concode_elem_sep Failures INSTANCE concode_field_sep AssertionError expectedThrowable... | void function ( boolean arg0 ) { this . removeAssertJRelatedElementsFromStackTrace = arg0 ; } |
35,691 | returns the most general data type for two given data types . concode_field_sep PlaceHolder placeHolder concode_field_sep org.apache.spark.rdd.RDD<org.apache.spark.sql.catalyst.expressions.Row> jsonStringToRow concode_elem_sep org.apache.spark.rdd.RDD<scala.collection.Map<java.lang.String,java.lang.Object>> parseJson c... | org . apache . spark . sql . catalyst . types . DataType function ( org . apache . spark . sql . catalyst . types . DataType arg0 , org . apache . spark . sql . catalyst . types . DataType arg1 ) { throw new RuntimeException ( ) ; } |
35,692 | returns a new token object , by default . however , if you want , you can create and return subclass objects based on the value of ofkind . simply add the cases to the switch for all those special cases . for example , if you have a subclass of token called idtoken that you want to create if ofkind is id , simlpy add s... | Token function ( int arg0 ) { switch ( arg0 ) { default : return new Token ( ) ; } } |
35,693 | gets a list of all measureelement , s sorted by beat , and within beat sorted by clef , key , directions , instrument change . concode_field_sep BeatEList<Direction> directions concode_elem_sep BeatEList<Key> privateKeys concode_elem_sep List<Voice> voices concode_elem_sep Staff parent concode_elem_sep BeatEList<Clef> ... | BeatEList < MeasureElement > function ( ) { BeatEList < MeasureElement > loc0 = beatEList ( ) ; loc0 . addAll ( clefs ) ; loc0 . addAll ( privateKeys ) ; loc0 . addAll ( directions ) ; loc0 . addAll ( instrumentChanges ) ; return loc0 ; } |
35,694 | return normalized rssi according to current system calibration concode_field_sep long lastSeen concode_elem_sep RSSI2DistFunctionInterface distanceFunction concode_elem_sep double humidity concode_elem_sep String description concode_elem_sep int lastMyCounter concode_elem_sep double temperature concode_elem_sep long fi... | double function ( double arg0 , int arg1 ) { return arg0 + this . getRssiNormalizingConstant ( ) ; } |
35,695 | init method comment . concode_field_sep JVMClientIL clientIL concode_field_sep void stop concode_elem_sep void start concode_elem_sep org.jboss.mq.il.ClientIL getClientIL | void function ( org . jboss . mq . Connection arg0 , java . util . Properties arg1 ) { clientIL = new JVMClientIL ( arg0 ) ; } |
35,696 | when a file fails uploading , before even processing the contents concode_field_sep String fileName concode_elem_sep long totalSize concode_elem_sep File file concode_elem_sep long size concode_elem_sep ArrayList<FileInfo> fileInfos concode_elem_sep boolean viaCallback concode_elem_sep String contentType concode_elem_s... | void function ( FileEntryStatus arg0 ) { this . status = arg0 ; } |
35,697 | returns an enumeration of all the attribute 's values if the attribute is nominal , null otherwise . concode_field_sep String ARFF_ATTRIBUTE concode_elem_sep String ARFF_ATTRIBUTE_INTEGER concode_elem_sep SimpleDateFormat m_DateFormat concode_elem_sep String ARFF_ATTRIBUTE_RELATIONAL concode_elem_sep int STRING_COMPRES... | Enumeration function ( ) { if ( this . isNominal ( ) ) { return Collections . enumeration ( this . attributeValues ) ; } return null ; } |
35,698 | set the message that is logged when a job execution is vetoed by a trigger listener . concode_field_sep String jobToBeFiredMessage concode_elem_sep String jobSuccessMessage concode_elem_sep String jobFailedMessage concode_elem_sep String name concode_elem_sep String jobWasVetoedMessage concode_elem_sep Logger log conco... | void function ( final String arg0 ) { this . jobWasVetoedMessage = arg0 ; } |
35,699 | add a atmosphereresourceeventlistener which gets invoked whenresponses are resuming , when the remote client closes the connection or when the a broadcaster #broadcast operations occurs . concode_field_sep AtmosphereResource r concode_elem_sep AtomicBoolean isDestroyed concode_elem_sep Logger logger concode_elem_sep Ob... | Meteor function ( AtmosphereResourceEventListener arg0 ) { if ( ! destroyed ( ) ) { r . addEventListener ( arg0 ) ; } return this ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.