idx int64 0 25k | question stringlengths 72 5.69k | target stringlengths 21 481 |
|---|---|---|
12,800 | get arrayenum concode_field_sep JustSymbolEnum justSymbol concode_elem_sep List<ArrayEnumEnum> arrayEnum concode_elem_sep String value concode_field_sep EnumArrays arrayEnum concode_elem_sep String toIndentedString concode_elem_sep JustSymbolEnum getJustSymbol concode_elem_sep EnumArrays justSymbol concode_elem_sep voi... | List < ArrayEnumEnum > function ( ) { return arrayEnum ; } |
12,801 | animation engine should call this method for every animation frame passing animation progress value as a parameter . animation progress should be within the range 0 . .1 the exception here would be a spring animation engine which may slightly exceed start and end progress values . this method will return false if the a... | boolean function ( float arg0 ) { Assertions . assertCondition ( ! mIsFinished , "srini_string" ) ; if ( ! mCancelled ) { mPropertyUpdater . onUpdate ( Assertions . assertNotNull ( mAnimatedView ) , arg0 ) ; } return ! mCancelled ; } |
12,802 | returns the size in bits of the random exponent private value . concode_field_sep int primeSize concode_elem_sep int exponentSize concode_field_sep int getPrimeSize | int function ( ) { return this . exponentSize ; } |
12,803 | sets the value of the align property . concode_field_sep Layout layout concode_elem_sep String mapping concode_elem_sep String styling concode_elem_sep String flavour concode_elem_sep Boolean bindClickToWidget concode_elem_sep Label label concode_elem_sep String align concode_elem_sep String params concode_elem_sep Str... | void function ( String arg0 ) { this . align = arg0 ; } |
12,804 | set object width in box2d units . save for all objects . concode_field_sep float boundary concode_elem_sep float ceiling concode_elem_sep float spawnX concode_elem_sep float scale concode_elem_sep int NUMBER_OF_GAPS concode_elem_sep String distType concode_elem_sep Object distribution concode_elem_sep float speed conco... | GameObjectMaker function ( float arg0 ) { this . width = arg0 ; return this ; } |
12,805 | if the amount of returned information is significantly large , an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list . concode_field_sep java.util.List<PipelineSummary> pipelines concode_elem_sep String nextToken concode_field_sep void setNe... | ListPipelinesResult function ( String arg0 ) { setNextToken ( arg0 ) ; return this ; } |
12,806 | returns the name of the class to launch . concode_field_sep String fClassToLaunch concode_elem_sep String[] fVMArgs concode_elem_sep Map fVMSpecificAttributesMap concode_elem_sep boolean fResume concode_elem_sep String[] fClassPath concode_elem_sep String fWorkingDirectory concode_elem_sep String[] fBootClassPath conco... | String function ( ) { return fClassToLaunch ; } |
12,807 | returns the intrinsic width , in pixels , of this ninepatch . this is equivalent to querying the width of the underlying bitmap returned by #getbitmap . concode_field_sep long mNativeChunk concode_elem_sep Paint mPaint concode_elem_sep String mSrcName concode_elem_sep Bitmap mBitmap concode_field_sep void nativeFinaliz... | int function ( ) { return mBitmap . getWidth ( ) ; } |
12,808 | warning log message with printf formatting . 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 ... | void function ( String arg0 , String arg1 , Object ... arg2 ) { if ( LOG . WARN >= LOGLEVEL ) Log . w ( arg0 , String . format ( arg1 , arg2 ) ) ; } |
12,809 | which generates the p and g values from the given parameters , returning the dsaparameters object . note : can take a while ... concode_field_sep boolean use186_3 concode_elem_sep SecureRandom random concode_elem_sep int usageIndex concode_elem_sep Digest digest concode_elem_sep int certainty concode_elem_sep BigIntege... | DSAParameters function ( ) { return ( use186_3 ) ? generateParameters_FIPS186_3 ( ) : generateParameters_FIPS186_2 ( ) ; } |
12,810 | call this to convert the projects . concode_field_sep ProjectTaskLister taskLister concode_elem_sep List<ProjectView> rootLevelResultingProjects concode_field_sep void addSubProjects concode_elem_sep void addRootLevelProject concode_elem_sep void addTasks | List < ProjectView > function ( Project arg0 ) { rootLevelResultingProjects . clear ( ) ; addRootLevelProject ( arg0 ) ; return rootLevelResultingProjects ; } |
12,811 | merge the specified velocity template with the given model and write the result to the given writer . concode_field_sep PlaceHolder placeHolder concode_field_sep String mergeTemplateIntoString concode_elem_sep String mergeTemplateIntoString | void function ( VelocityEngine arg0 , String arg1 , String arg2 , Map < String , Object > arg3 , Writer arg4 ) { VelocityContext loc0 = new VelocityContext ( arg3 ) ; arg0 . mergeTemplate ( arg1 , arg2 , loc0 , arg4 ) ; } |
12,812 | sets the quantityper value for this workordercompletioncomponent . concode_field_sep com.netsuite.webservices.platform.core_2014_2.RecordRef item concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Double quantity concode_elem_sep com.netsuite.webservices.platform.common_2014_2.Inv... | void function ( java . lang . Double arg0 ) { this . quantityPer = arg0 ; } |
12,813 | checks if there 's any matching route . concode_field_sep Map<Path,T> routes concode_elem_sep Map<T,Set<Path>> reverseRoutes concode_elem_sep InternalLogger log concode_field_sep Map<Path,T> routes concode_elem_sep void removePath concode_elem_sep String path concode_elem_sep RouteResult<T> route concode_elem_sep Route... | boolean function ( String [ ] arg0 ) { Map < String , String > loc0 = new HashMap < String , String > ( ) ; for ( Path loc1 : routes . keySet ( ) ) { if ( loc1 . match ( arg0 , loc0 ) ) { return true ; } loc0 . clear ( ) ; } return false ; } |
12,814 | inserts a binder value into an intent as an extra.uses bundlecompat #putbinder , but does n't throw exceptions . concode_field_sep String TAG concode_elem_sep int MAX_INTENT_SIZE_THRESHOLD concode_field_sep int safeGetInt concode_elem_sep long safeGetLongExtra concode_elem_sep Bundle safeGetBundle concode_elem_sep bool... | void function ( Intent arg0 , String arg1 , IBinder arg2 ) { if ( arg0 == null ) return ; Bundle loc0 = new Bundle ( ) ; try { BundleCompat . putBinder ( loc0 , arg1 , arg2 ) ; } catch ( Throwable loc1 ) { Log . e ( TAG , "srini_string" + loc0 ) ; } arg0 . putExtras ( loc0 ) ; } |
12,815 | split the array into extrafields and populate them with the given data , throwing an exception if the data can not be parsed . concode_field_sep int SKIP_KEY concode_elem_sep int READ_KEY concode_elem_sep int WORD concode_elem_sep UnparseableExtraField READ concode_elem_sep UnparseableExtraField THROW concode_elem_sep ... | ZipExtraField [ ] function ( byte [ ] arg0 , boolean arg1 ) { return parse ( arg0 , arg1 , UnparseableExtraField . THROW ) ; } |
12,816 | a helper method to build a keyvaluesource implementation based on the specified iset . the key returned by this keyvaluesource implementation is always the name of the set itself , whereas the value are the entries of the set , one by one . this implementation behaves like a multimap with a single key but multiple valu... | KeyValueSource < String , V > function ( ISet < V > arg0 ) { return new SetKeyValueSource < V > ( arg0 . getName ( ) ) ; } |
12,817 | set the item at the top of this stack concode_field_sep int m_allocatedSize concode_elem_sep boolean m_values[] concode_elem_sep int m_index concode_field_sep boolean pop concode_elem_sep boolean peekOrTrue concode_elem_sep void grow concode_elem_sep int size concode_elem_sep boolean peekOrFalse concode_elem_sep void c... | void function ( boolean arg0 ) { m_values [ m_index ] = arg0 ; } |
12,818 | instead of replacing escape sequences in a string , this method returns a mapping of an attribute name to the value based on the escape sequence found in the argument string . concode_field_sep String TAG_REGEX concode_elem_sep Pattern tagPattern concode_field_sep String escapeString concode_elem_sep String escapeStrin... | Map < String , String > function ( String arg0 , Map < String , String > arg1 ) { return getEscapeMapping ( arg0 , arg1 , false , 0 , 0 ) ; } |
12,819 | asserts that the current response did n't use the network . concode_field_sep Request request concode_elem_sep WebSocket webSocket concode_elem_sep Response response concode_elem_sep IOException failure concode_elem_sep String body concode_field_sep RecordedResponse assertNoCacheResponse concode_elem_sep RecordedRespon... | RecordedResponse function ( ) { assertNull ( response . networkResponse ( ) ) ; return this ; } |
12,820 | string representation concode_field_sep long serialVersionUID concode_elem_sep String XML_ATTRIBUTE_NAME concode_elem_sep String XML_ATTRIBUTE_KEY concode_elem_sep String m_columnName concode_elem_sep boolean m_isPKey concode_elem_sep boolean m_isPageBreak concode_elem_sep String m_formatPattern concode_elem_sep String... | String function ( ) { StringBuffer loc0 = new StringBuffer ( m_columnName ) . append ( "srini_string" ) . append ( m_value ) ; if ( m_isPKey ) loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
12,821 | repackage the source file so that it can be run using ' @literal java - jar ' . concode_field_sep byte[] ZIP_FILE_HEADER concode_elem_sep String mainClass concode_elem_sep String START_CLASS_ATTRIBUTE concode_elem_sep String BOOT_VERSION_ATTRIBUTE concode_elem_sep File source concode_elem_sep String MAIN_CLASS_ATTRIBUT... | void function ( Libraries arg0 ) { repackage ( this . source , arg0 ) ; } |
12,822 | gets the current best comparator to sort this column . concode_field_sep int COLUMN_SECONDARY_SORTED concode_elem_sep int COLUMN_SECONDARY_SORTED_ALTERNATE concode_elem_sep int COLUMN_SECONDARY_SORTED_ALTERNATE_REVERSE concode_elem_sep boolean reverse concode_elem_sep int COLUMN_PRIMARY_SORTED_ALTERNATE concode_elem_se... | Comparator function ( ) { if ( comparatorIndex == - 1 ) return null ; Comparator loc0 = comparators . get ( getComparatorIndex ( ) ) ; if ( isReverse ( ) ) loc0 = GlazedLists . reverseComparator ( loc0 ) ; return loc0 ; } |
12,823 | creates an empty item book . concode_field_sep String version concode_elem_sep MainApp mainApp concode_field_sep void setMainApp concode_elem_sep void handleSave concode_elem_sep void handleAbout concode_elem_sep void handleOpen concode_elem_sep void handleSaveAs concode_elem_sep void handleExit | void function ( ) { mainApp . getItemData ( ) . clear ( ) ; mainApp . setItemFilePath ( null ) ; MainApp . setTableChanged ( true ) ; } |
12,824 | f0 - > `` hallocate '' f1 - > simpleexp concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | R function ( HAllocate arg0 ) { R loc0 = null ; arg0 . f0 . accept ( this ) ; arg0 . f1 . accept ( this ) ; return loc0 ; } |
12,825 | sets the primary key of this document library file rank . concode_field_sep DLFileRank _dlFileRank concode_field_sep void setFileRankId concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAt... | void function ( long arg0 ) { _dlFileRank . setPrimaryKey ( arg0 ) ; } |
12,826 | removes all key-value mappings from this sparseintarray . concode_field_sep int[] mKeys concode_elem_sep int mSize concode_elem_sep long[] mValues concode_field_sep void growKeyAndValueArrays concode_elem_sep int keyAt concode_elem_sep long valueAt concode_elem_sep int indexOfValue concode_elem_sep int binarySearch con... | void function ( ) { mSize = 0 ; } |
12,827 | gets the timezoneid value for this datetime . concode_field_sep com.google.api.ads.dfp.axis.v201408.Date date concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer hour concode_elem_sep java.lang.String timeZoneID concode_elem_sep java.lang.Object __equalsCalc concode_elem_se... | java . lang . String function ( ) { return timeZoneID ; } |
12,828 | registers the daemon implementation with the tanuki wrapper concode_field_sep int LOG_INFO concode_elem_sep int LOG_STATUS concode_elem_sep int LOG_DEBUG concode_elem_sep int LOG_FATAL concode_elem_sep int LOG_ERROR concode_elem_sep int SUCCESS concode_field_sep int startupWithOptions concode_elem_sep int stop concode_... | void function ( String [ ] arg0 ) { WrapperManager . start ( this , arg0 ) ; } |
12,829 | 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 ; } |
12,830 | calls the run method of the given action with as initial access control context only the protection domain of the calling class . calls to checkpermission in the run method ignore all earlier protection domains of classes in the call chain . note that the protection domains of classes called by the code in the run meth... | Object function ( PrivilegedAction arg0 ) { return arg0 . run ( ) ; } |
12,831 | checks that this class implements publiccloneable . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testSerialization concode_elem_sep void testHashCode concode_elem_sep void testEquals | void function ( ) { Stroke loc0 = new BasicStroke ( 2.0f ) ; XYLineAnnotation loc1 = new XYLineAnnotation ( 10.0 , 20.0 , 100.0 , 200.0 , loc0 , Color . blue ) ; assertTrue ( loc1 instanceof PublicCloneable ) ; } |
12,832 | write trace information if trace is enabled . concode_field_sep boolean trace concode_elem_sep HashMap<String,Object> objects concode_elem_sep String[] IMPORTED_PACKAGES concode_field_sep void runLine concode_elem_sep Class<?> getClass concode_elem_sep Object getObject concode_elem_sep void main concode_elem_sep void r... | void function ( String arg0 ) { if ( trace ) { System . out . println ( arg0 ) ; } } |
12,833 | set the style to use to format date values . if not specified , dateformat 's default style will be used . concode_field_sep String stylePattern concode_elem_sep ISO iso concode_elem_sep String pattern concode_elem_sep TimeZone timeZone concode_elem_sep Map<ISO,String> ISO_PATTERNS concode_elem_sep boolean lenient conc... | void function ( int arg0 ) { this . style = arg0 ; } |
12,834 | true if a refresh is needed from the original data source . concode_field_sep long serverDate concode_elem_sep byte[] data concode_elem_sep Map<String,String> responseHeaders concode_elem_sep String etag concode_elem_sep long lastModified concode_elem_sep long softTtl concode_elem_sep long ttl concode_field_sep Entry g... | boolean function ( ) { return this . softTtl < System . currentTimeMillis ( ) ; } |
12,835 | the description of the cache security group . returns a reference to this object so that method calls can be chained together . concode_field_sep String description concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<EC2SecurityGroup> eC2SecurityGroups concode_elem_sep String ownerId concode_elem_sep Stri... | CacheSecurityGroup function ( String arg0 ) { this . description = arg0 ; return this ; } |
12,836 | return value for system property name parsed as int or defaultvalue if the property does not exist or a security manager denies access to it concode_field_sep Logger logger concode_field_sep boolean booleanProperty concode_elem_sep boolean booleanProperty concode_elem_sep void setProperty concode_elem_sep void setSyste... | int function ( String arg0 , int arg1 ) { String loc0 = property ( arg0 ) ; if ( loc0 != null ) { try { return Integer . parseInt ( loc0 ) ; } catch ( NumberFormatException loc1 ) { logger . log ( Level . FINE , "srini_string" , loc1 ) ; } } return arg1 ; } |
12,837 | make sure that the `` spring.git.properties '' legacy key is used by default . concode_field_sep Build build concode_elem_sep Git git concode_elem_sep Resource location concode_elem_sep Resource location concode_field_sep Build getBuild concode_elem_sep Resource getLocation concode_elem_sep Resource getLocation concode... | void function ( @ Value ( "srini_string" ) Resource arg0 ) { getGit ( ) . setLocation ( arg0 ) ; } |
12,838 | insert into the priority queue . duplicates are allowed . concode_field_sep int DEFAULT_CAPACITY concode_elem_sep ComparableJ2me[] array concode_elem_sep int n concode_elem_sep int currentSize concode_field_sep void percolateDown concode_elem_sep void buildHeap concode_elem_sep void doubleArray concode_elem_sep int siz... | PriorityQueue . Position function ( ComparableJ2me arg0 ) { if ( currentSize + 1 == array . length ) doubleArray ( ) ; int loc0 = ++ currentSize ; array [ 0 ] = arg0 ; for ( ; arg0 . compareTo ( array [ loc0 / 2 ] ) < 0 ; loc0 /= 2 ) array [ loc0 ] = array [ loc0 / 2 ] ; array [ loc0 ] = arg0 ; return null ; } |
12,839 | returns the root of the object hierarchy . concode_field_sep FXMLLoader loader concode_elem_sep ApplicationContext context concode_field_sep void setCharset concode_elem_sep URL getLocation concode_elem_sep FXMLLoader createFXMLLoader concode_elem_sep ClassLoader getClassLoader concode_elem_sep void setRoot concode_ele... | T function ( ) { return loader . getRoot ( ) ; } |
12,840 | returns the number of values that have been evicted . concode_field_sep int evictionCount concode_elem_sep int putCount concode_elem_sep int hitCount concode_elem_sep int size concode_elem_sep int createCount concode_elem_sep int maxSize concode_elem_sep LinkedHashMap<K,V> map concode_elem_sep int missCount concode_fie... | int function ( ) { return evictionCount ; } |
12,841 | add attribute to element which already has an attribute of that name . concode_field_sep String STORED_DOC2 concode_elem_sep Collection testCollection concode_elem_sep ExistXmldbEmbeddedServer existEmbeddedServer concode_elem_sep String STORED_DOC1 concode_elem_sep String DOC_WITH_DTD concode_field_sep void appendStore... | void function ( ) { XQueryService loc0 = ( XQueryService ) testCollection . getService ( "srini_string" , "srini_string" ) ; String loc1 = "srini_string" + "srini_string" / db / test / stored1 . xml + "srini_string" ; loc0 . loc1 ( loc1 ) ; } |
12,842 | determines if the mime type of this entity is multipart / . since multipart-entities must have a boundary parameter in the content-type field this method returns false if no boundary exists . concode_field_sep Header header concode_elem_sep Entity parent concode_elem_sep Body body concode_field_sep void writeTo concode... | boolean function ( ) { ContentTypeField loc0 = ( ContentTypeField ) getHeader ( ) . getField ( Field . CONTENT_TYPE ) ; return loc0 != null && loc0 . getBoundary ( ) != null && getMimeType ( ) . startsWith ( ContentTypeField . TYPE_MULTIPART_PREFIX ) ; } |
12,843 | all local notifications ids . concode_field_sep Context context concode_field_sep Notification cancel concode_elem_sep void cancelAll concode_elem_sep List<Integer> getIdsByType concode_elem_sep List<Notification> getAll concode_elem_sep List<Notification> getByType concode_elem_sep NotificationManager getNotMgr concod... | List < Integer > function ( ) { Set < String > loc0 = getPrefs ( ) . getAll ( ) . keySet ( ) ; ArrayList < Integer > loc1 = new ArrayList < Integer > ( ) ; for ( String loc2 : loc0 ) { loc1 . add ( Integer . parseInt ( loc2 ) ) ; } return loc1 ; } |
12,844 | sets the value of the name property . concode_field_sep String lastName concode_elem_sep String firstName concode_elem_sep String emailAddress concode_elem_sep String phoneNumber concode_elem_sep String smsAddress concode_elem_sep boolean htmlEmail concode_elem_sep String name concode_elem_sep boolean active concode_el... | void function ( String arg0 ) { this . name = arg0 ; } |
12,845 | begins a named object . 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 JSONBuilder item concode_elem_sep S... | JSONBuilder function ( String arg0 ) { appendCommaAndKey ( arg0 ) ; params . append ( "srini_string" ) ; return this ; } |
12,846 | return if aop advised beans should be proxy target aware . concode_field_sep QualifierDefinition qualifier concode_elem_sep int MULTIPLIER concode_elem_sep String name concode_elem_sep boolean proxyTargetAware concode_elem_sep MockReset reset concode_field_sep String getName concode_elem_sep int hashCode concode_elem_s... | boolean function ( ) { return this . proxyTargetAware ; } |
12,847 | return an immutable list of the converters in the order that they will be registered . concode_field_sep List<HttpMessageConverter<?>> converters concode_elem_sep List<Class<?>> NON_REPLACING_CONVERTERS concode_field_sep Iterator<HttpMessageConverter<?>> iterator concode_elem_sep List<HttpMessageConverter<?>> postProce... | List < HttpMessageConverter < ? >> function ( ) { return this . converters ; } |
12,848 | constructs a longdomainbuilder object with an inclusive lower bound concode_field_sep long startInclusive concode_field_sep Source<Long> all concode_elem_sep Source<Long> upTo concode_elem_sep Source<Long> upToAndIncluding concode_elem_sep Source<Long> between | LongDomainBuilder function ( final long arg0 ) { return new LongDomainBuilder ( arg0 ) ; } |
12,849 | sets content . concode_field_sep Integer holdingsId concode_elem_sep String lastUpdatedBy concode_elem_sep Date lastUpdatedDate concode_elem_sep Date createdDate concode_elem_sep boolean isDeleted concode_elem_sep String createdBy concode_elem_sep List<BibliographicEntity> bibliographicEntities concode_elem_sep String ... | void function ( byte [ ] arg0 ) { this . content = arg0 ; } |
12,850 | visits a non standard attribute of the class . concode_field_sep ClassVisitor cv concode_elem_sep int api concode_field_sep FieldVisitor visitField concode_elem_sep AnnotationVisitor visitTypeAnnotation concode_elem_sep void visitInnerClass concode_elem_sep void visitEnd concode_elem_sep void visitOuterClass concode_el... | void function ( Attribute arg0 ) { if ( cv != null ) { cv . visitAttribute ( arg0 ) ; } } |
12,851 | here we can see a basic example where single just emit the item and onsuccess and onerror functions are defined . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSinglesAsync concode_elem_sep Single<List<String>> getObservables concode_elem_sep void flatMapObservable concode_elem_sep void testZipSi... | void function ( ) { Single . just ( "srini_string" ) . subscribe ( result -> System . out . println ( "srini_string" + result ) , ( error ) -> System . out . println ( "srini_string" + error . getMessage ( ) ) ) ; } |
12,852 | returns the transport appropriate for this connection . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode_elem_sep... | Object function ( HttpEngine arg0 ) { return ( spdyConnection != null ) ? new SpdyTransport ( arg0 , spdyConnection ) : new HttpTransport ( arg0 , out , in ) ; } |
12,853 | returns the component that should receive the focus when a window is made visible for the first time . concode_field_sep PlaceHolder placeHolder concode_field_sep Component getComponentBefore concode_elem_sep Component getFirstComponent concode_elem_sep Component getLastComponent concode_elem_sep Component getComponent... | Component function ( Window arg0 ) { return getDefaultComponent ( arg0 ) ; } |
12,854 | implements value #getprimitivetype . concode_field_sep Value computedValue concode_elem_sep Value cascadedValue concode_field_sep String getStringValue concode_elem_sep Value item concode_elem_sep Value getBottom concode_elem_sep Value getComputedValue concode_elem_sep Value getBlue concode_elem_sep Value getCascadedVa... | short function ( ) { return computedValue . getPrimitiveType ( ) ; } |
12,855 | print elapsed time and restart timer . concode_field_sep long startTime concode_elem_sep long MILLISECONDS_TO_SECONDS concode_elem_sep Redwood.RedwoodChannels log concode_elem_sep long MILLISECOND_DIVISOR concode_elem_sep long start concode_elem_sep NumberFormat nf concode_elem_sep long SECOND_DIVISOR concode_field_sep... | long function ( String arg0 , PrintStream arg1 ) { long loc0 = this . report ( arg0 , arg1 ) ; this . start ( ) ; return loc0 ; } |
12,856 | returns the result of interpreting the object as an instance of ` meta data type ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep DroolsPackage modelPackage concode_field_sep T caseOnExitScriptType concode_elem_sep T doSwitch concode_elem_sep T doSwitch co... | T function ( MetaDataType arg0 ) { return null ; } |
12,857 | utility method for setting the dialog message . concode_field_sep boolean wholeWord concode_elem_sep int totalHitCount concode_elem_sep SwingController controller concode_elem_sep SearchPanel searchPanel concode_elem_sep int lengthOfTask concode_elem_sep boolean caseSensitive concode_elem_sep String dialogMessage conco... | void function ( ) { Object [ ] loc0 = { String . valueOf ( ( current + 1 ) ) , ( current + 1 ) , totalHitCount } ; dialogMessage = searchCompletionMessageForm . format ( loc0 ) ; } |
12,858 | gets the data of this datagram packet . concode_field_sep InetAddress address concode_elem_sep byte[] data concode_elem_sep int offset concode_elem_sep int length concode_elem_sep int userSuppliedLength concode_elem_sep int port concode_field_sep void setLength concode_elem_sep int getPort concode_elem_sep void setAddr... | byte [ ] function ( ) { return data ; } |
12,859 | dispatch lifecycle joinpoint . concode_field_sep Logger log concode_field_sep void configure concode_elem_sep void configure concode_elem_sep Object instantiateBean concode_elem_sep Joinpoint createJoinpoint | void function ( BeanInfo arg0 , Object arg1 , LifecycleConfig arg2 , String arg3 ) { if ( arg2 != null && arg2 . isIgnored ( ) ) return ; Joinpoint loc0 = createJoinpoint ( arg0 , arg1 , arg2 , arg3 ) ; if ( loc0 != null ) loc0 . dispatch ( ) ; } |
12,860 | returns the value map . concode_field_sep String commandName_ concode_elem_sep String copyright concode_elem_sep String parameterName_ concode_elem_sep long serialVersionUID concode_elem_sep ValueMap valueMap_ concode_field_sep String getParameterName concode_elem_sep String getCommandName | ValueMap function ( ) { return valueMap_ ; } |
12,861 | accessor for the template formula . called when a shared formula has , for some reason , specified an inappropriate range and it is necessary to retrieve the template from a previously available shared formula concode_field_sep BaseSharedFormulaRecord templateFormula concode_elem_sep ExternalSheet externalSheet concode... | BaseSharedFormulaRecord function ( ) { return templateFormula ; } |
12,862 | adds the org labor to the database . also notifies the appropriate model listeners . concode_field_sep OrgLaborLocalService _service concode_field_sep com.liferay.portal.kernel.model.OrgLabor getOrgLabor concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.Action... | com . liferay . portal . kernel . model . OrgLabor function ( com . liferay . portal . kernel . model . OrgLabor arg0 ) { return getService ( ) . addOrgLabor ( arg0 ) ; } |
12,863 | presolved means a build local component i.e. mojo to pre-compute the transient dependencies and thus we can assume this set is fully and correctly resolved concode_field_sep Set<ArtifactSpec> buildArtifacts concode_elem_sep Set<ArtifactSpec> transientDependencies concode_elem_sep Set<ArtifactSpec> explicitDependencies ... | boolean function ( ) { return getTransientDependencies ( ) . size ( ) > 0 ; } |
12,864 | sets the parent . concode_field_sep XMLEventReader parent concode_field_sep Object next concode_elem_sep XMLEvent nextTag concode_elem_sep XMLEventReader getParent concode_elem_sep String getElementText concode_elem_sep Object getProperty concode_elem_sep XMLEvent nextEvent concode_elem_sep boolean hasNext concode_elem... | void function ( XMLEventReader arg0 ) { parent = arg0 ; } |
12,865 | setta il titolo del libro . concode_field_sep String titolo concode_elem_sep File file concode_elem_sep int anno concode_elem_sep long serialVersionUID concode_elem_sep int pagine concode_elem_sep String autore concode_field_sep void setFile concode_elem_sep void setAnno concode_elem_sep int getAnno concode_elem_sep St... | void function ( String arg0 ) { this . titolo = arg0 ; } |
12,866 | sets the value of the providerrole property . concode_field_sep String repoType concode_elem_sep String effectiveLocalStorageUrl concode_elem_sep String contentResourceURI concode_elem_sep String providerRole concode_elem_sep String provider concode_elem_sep String name concode_elem_sep String format concode_elem_sep S... | void function ( String arg0 ) { this . providerRole = arg0 ; } |
12,867 | sets the value of the source property . concode_field_sep List<JAXBElement<?>> recordContentSourceOrRecordCreationDateOrRecordChangeDate concode_elem_sep String source concode_elem_sep String lang concode_elem_sep String value concode_elem_sep String script concode_elem_sep String transliteration concode_elem_sep Strin... | void function ( String arg0 ) { this . source = arg0 ; } |
12,868 | write 16-bit integer data to the stream from the array . concode_field_sep int inputFormat concode_elem_sep long nativeStream concode_elem_sep int outputFormat concode_field_sep boolean readFloats concode_elem_sep boolean read concode_elem_sep boolean read concode_elem_sep boolean isStopped concode_elem_sep void getInf... | boolean function ( short [ ] arg0 , int arg1 ) { if ( outputFormat != PortAudio . FORMAT_INT_16 ) { throw new RuntimeException ( "srini_string" ) ; } return writeShorts ( arg0 , arg1 ) ; } |
12,869 | method to redirect the browser to the specified url via the externalcontext redirect method concode_field_sep Logger log concode_elem_sep Properties buildProperties concode_field_sep String getRequestParameter concode_elem_sep UIComponent findComponent concode_elem_sep ServletContext getServletContext concode_elem_sep ... | void function ( String arg0 ) { try { FacesContext loc0 = FacesContext . getCurrentInstance ( ) ; if ( ( loc0 != null ) && ( loc0 . getExternalContext ( ) != null ) ) { loc0 . getExternalContext ( ) . redirect ( arg0 ) ; } } catch ( Exception loc0 ) { loc0 . printStackTrace ( ) ; } } |
12,870 | returns a list of blocks that have timed out their reconstruction requests . returns null if no blocks have timed out . concode_field_sep Map<BlockInfo,PendingBlockInfo> pendingReconstructions concode_elem_sep long timeout concode_elem_sep long timeStamp concode_elem_sep Daemon timerThread concode_elem_sep boolean fsRu... | BlockInfo [ ] function ( ) { synchronized ( timedOutItems ) { if ( timedOutItems . size ( ) <= 0 ) { return null ; } BlockInfo [ ] loc0 = timedOutItems . toArray ( new BlockInfo [ timedOutItems . size ( ) ] ) ; timedOutItems . clear ( ) ; return loc0 ; } } |
12,871 | setstatisticsreportdao concode_field_sep ResourceDao m_resourceDao concode_elem_sep StatisticsReportDao m_statisticsReportDao concode_field_sep StatisticsReportDao getStatisticsReportDao concode_elem_sep void setResourceDao concode_elem_sep ResourceDao getResourceDao concode_elem_sep void afterPropertiesSet concode_ele... | void function ( StatisticsReportDao arg0 ) { m_statisticsReportDao = arg0 ; } |
12,872 | lets the bridge tell the user agent that the following ex tension is supported by the bridge . concode_field_sep Set extensions concode_elem_sep BridgeContext ctx concode_elem_sep Set FEATURES concode_field_sep float getStandardLighterFontWeight concode_elem_sep String getLanguages concode_elem_sep EventDispatcher getE... | void function ( BridgeExtension arg0 ) { Iterator loc0 = arg0 . getImplementedExtensions ( ) ; while ( loc0 . hasNext ( ) ) extensions . add ( loc0 . next ( ) ) ; } |
12,873 | returns the byte range for the specified range index . the index must be between 0 and getnumranges . concode_field_sep Parser<Range> PARSER concode_elem_sep ArrayList<Pair> ranges concode_elem_sep boolean valid concode_elem_sep String units concode_elem_sep int start concode_elem_sep int end concode_field_sep boolean ... | Pair function ( int arg0 ) { return ranges . get ( arg0 ) ; } |
12,874 | compare tiles . if the number is the same , return true . else return false . concode_field_sep float effect_hue concode_elem_sep String path concode_elem_sep boolean effects_enabled concode_elem_sep float effect_zoom concode_elem_sep int zoomHeight concode_elem_sep float effect_bScale concode_elem_sep float effect_rSc... | boolean function ( Tile arg0 ) { if ( arg0 == null ) { return false ; } if ( this . number == arg0 . number ) { return true ; } else { return false ; } } |
12,875 | set the environment mode . concode_field_sep Delegate delegate concode_field_sep Module applicationModule concode_elem_sep Self disable concode_elem_sep Self bindings concode_elem_sep Self bindings concode_elem_sep Self bindings concode_elem_sep Self bindings concode_elem_sep Self configure concode_elem_sep Self config... | Self function ( Mode arg0 ) { return newBuilder ( delegate . in ( play . api . Mode . apply ( arg0 . ordinal ( ) ) ) ) ; } |
12,876 | indicate that the current token has been successfully processed . concode_field_sep int lastGoodPosition concode_elem_sep String expression concode_elem_sep List<Token> tokenStream concode_elem_sep int position concode_field_sep Token next concode_elem_sep String getExpression concode_elem_sep boolean lookAhead concode... | void function ( ) { lastGoodPosition = position ; } |
12,877 | methoden : klausuren-anzahl / schulaufgaben berechnen concode_field_sep LocalDate datum concode_elem_sep int tempnotensumme concode_elem_sep int tempungenuegend concode_elem_sep int[][] punkte concode_elem_sep int anzahl concode_elem_sep int temppunktesumme concode_elem_sep double notenschnitt concode_elem_sep Semester... | int function ( ) { anzahl = 0 ; for ( int loc0 = 0 ; loc0 <= 15 ; loc0 ++ ) { anzahl += punkte [ loc0 ] [ 1 ] ; } return ( anzahl ) ; } |
12,878 | creates a query object . concode_field_sep ArrayList<byte[]> cache concode_elem_sep BufferedInputStream in concode_elem_sep int pos concode_elem_sep Socket socket concode_elem_sep String id concode_elem_sep Charset UTF8 concode_elem_sep OutputStream out concode_elem_sep String info concode_field_sep void add concode_el... | Query function ( final String arg0 ) { return new Query ( arg0 ) ; } |
12,879 | the default config file name without the extension concode_field_sep ScrapperConfigFactory configFactory concode_elem_sep CapturerApp instance concode_elem_sep ScrapperConfigFactory searchConfigFactory concode_elem_sep LoggerManager loggerManager concode_elem_sep boolean initialized concode_elem_sep boolean remote conc... | String function ( ) { return this . getProperty ( AppProperties . DEFAULT_CONFIG_NAME ) . trim ( ) ; } |
12,880 | returns the thread that receives debug commands . concode_field_sep Memory simulatedProcessMemory concode_elem_sep TreeSet<IAddress> moduleAddresses concode_elem_sep TargetInformation targetInformation concode_elem_sep Map<IAddress,MemoryModule> moduleByAddress concode_elem_sep MemoryMap memoryMap concode_elem_sep Hash... | TargetProcessThread function ( ) { return debuggeeActiveThread ; } |
12,881 | get the html id of the element t 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 concode_... | String function ( ) { return id ; } |
12,882 | code taken from simpleseedprovider concode_field_sep HostnameVerifier trustAllHosts concode_elem_sep List<Address> addresses concode_elem_sep String ip concode_elem_sep TrustManager[] trustAll concode_elem_sep Logger logger concode_elem_sep List<InetAddress> defaultSeeds concode_elem_sep List<Subset> subsets concode_fi... | Config function ( ) { String loc0 = System . getProperty ( "srini_string" ) ; ConfigurationLoader loc1 = loc0 == null ? new YamlConfigurationLoader ( ) : FBUtilities . < ConfigurationLoader > construct ( loc0 , "srini_string" ) ; return loc1 . loadConfig ( ) ; } |
12,883 | create a `` noop '' compression - i.e. uncompressed concode_field_sep CompressionCodec imageCodec concode_field_sep FSImageCompression readCompressionHeader concode_elem_sep FSImageCompression createCompression concode_elem_sep FSImageCompression createCompression concode_elem_sep CompressionCodec getImageCodec concode... | FSImageCompression function ( ) { return new FSImageCompression ( ) ; } |
12,884 | get the sql statement with the execution plan . concode_field_sep String sqlStatement concode_elem_sep Session session concode_elem_sep boolean create concode_elem_sep int currentRowNumber concode_elem_sep int rowScanCount concode_elem_sep long modificationMetaId concode_elem_sep ArrayList<Parameter> parameters concode... | String function ( ) { return null ; } |
12,885 | documentation pending concode_field_sep boolean string concode_elem_sep boolean ipAddress concode_elem_sep boolean numeric concode_elem_sep String property concode_elem_sep boolean date concode_elem_sep Collection collection concode_field_sep Object[] arraySort concode_elem_sep void toIPAddressSort concode_elem_sep Col... | Collection function ( ) { Object [ ] loc0 = arraySort ( ) ; collection . clear ( ) ; for ( int loc1 = loc0 . length - 1 ; loc1 >= 0 ; loc1 -- ) { collection . add ( loc0 [ loc1 ] ) ; } return collection ; } |
12,886 | get the value of osgiconfigurationarea . concode_field_sep URL carbonOSGiFramework concode_elem_sep URL eclipseP2DataArea concode_elem_sep String carbonHome concode_elem_sep List<CarbonServerListener> carbonServerListeners concode_elem_sep Map<String,String> properties concode_elem_sep Logger logger concode_elem_sep UR... | URL function ( ) { return osgiConfigurationArea ; } |
12,887 | sets the modified date of this ddm structure layout . concode_field_sep DDMStructureLayout _ddmStructureLayout concode_field_sep java.lang.String getDefinition concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_... | void function ( Date arg0 ) { _ddmStructureLayout . setModifiedDate ( arg0 ) ; } |
12,888 | error 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 set... | void function ( String arg0 , String arg1 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . e ( arg0 , arg1 ) ; } |
12,889 | unregisters a property scribe . concode_field_sep Map<Class<? extends VCardProperty>,VCardPropertyScribe<? extends VCardProperty>> extendedByClass concode_elem_sep Map<QName,VCardPropertyScribe<? extends VCardProperty>> extendedByQName concode_elem_sep Map<Class<? extends VCardProperty>,VCardPropertyScribe<? extends VC... | void function ( VCardPropertyScribe < ? extends VCardProperty > arg0 ) { extendedByName . remove ( arg0 . getPropertyName ( ) . toUpperCase ( ) ) ; extendedByClass . remove ( arg0 . getPropertyClass ( ) ) ; extendedByQName . remove ( arg0 . getQName ( ) ) ; } |
12,890 | subscribe listener to events . concode_field_sep Bag<EventListener> listeners concode_elem_sep boolean sortDirty concode_field_sep void process concode_elem_sep void dispatch concode_elem_sep T dispatch concode_elem_sep boolean canHandle concode_elem_sep ImmutableBag<EventListener> getRelevantListeners | void function ( EventListener arg0 ) { if ( ! listeners . contains ( arg0 ) ) { listeners . add ( arg0 ) ; sortDirty = true ; } } |
12,891 | create an instance of profilespecversion concode_field_sep PlaceHolder placeHolder concode_field_sep ResourceAdaptorClass createResourceAdaptorClass concode_elem_sep ResourceAdaptorUsageParametersInterfaceName createResourceAdaptorUsageParametersInterfaceName concode_elem_sep ResourceAdaptorClassName createResourceAdap... | ProfileSpecVersion function ( ) { return new ProfileSpecVersion ( ) ; } |
12,892 | serializes snapshot failure information into json concode_field_sep String reason concode_elem_sep ShardId shardId concode_elem_sep String nodeId concode_elem_sep RestStatus status concode_field_sep String reason concode_elem_sep void writeTo concode_elem_sep void readFrom concode_elem_sep SnapshotShardFailure readSnap... | void function ( SnapshotShardFailure arg0 , XContentBuilder arg1 , ToXContent . Params arg2 ) { arg1 . startObject ( ) ; arg0 . toXContent ( arg1 , arg2 ) ; arg1 . endObject ( ) ; } |
12,893 | method accept , only accept feedbackmessages that are not in the list of error levels to filter . concode_field_sep int[] filteredErrorLevels concode_field_sep placeholderType placeHolder | boolean function ( FeedbackMessage arg0 ) { for ( int loc0 : filteredErrorLevels ) { if ( arg0 . getLevel ( ) == loc0 ) { return false ; } } return true ; } |
12,894 | write an audit entry at warn and trace and standard logs @warn concode_field_sep Log log concode_elem_sep int traceState concode_elem_sep String description concode_elem_sep String shortDescription concode_elem_sep int mediatorPosition concode_elem_sep Log trace concode_elem_sep AspectConfiguration aspectConfiguration ... | void function ( String arg0 , MessageContext arg1 ) { log . warn ( arg0 ) ; if ( arg1 . getServiceLog ( ) != null ) { arg1 . getServiceLog ( ) . warn ( arg0 ) ; } if ( shouldTrace ( arg1 . getTracingState ( ) ) ) { trace . warn ( arg0 ) ; } } |
12,895 | returns all of the keys in the set that start with prefix . concode_field_sep Value val concode_elem_sep char c concode_elem_sep Node<Value> left concode_elem_sep Node<Value> root concode_elem_sep Node<Value> mid concode_elem_sep Node<Value> right concode_elem_sep int N concode_field_sep boolean contains concode_elem_s... | Iterable < String > function ( String arg0 ) { Queue < String > loc0 = new Queue < String > ( ) ; Node < Value > loc1 = get ( root , arg0 , 0 ) ; if ( loc1 == null ) return loc0 ; if ( loc1 . val != null ) loc0 . enqueue ( arg0 ) ; collect ( loc1 . mid , new StringBuilder ( arg0 ) , loc0 ) ; return loc0 ; } |
12,896 | gets the value of the descriptions property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the descriptions property . for example , to add a new it... | List < Description > function ( ) { if ( descriptions == null ) { descriptions = new ArrayList < Description > ( ) ; } return this . descriptions ; } |
12,897 | return a finder instance . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | IEntityNameFinder function ( ) { return ReferenceChannelNameFinder . singleton ( ) ; } |
12,898 | call to wrap the outer action of a java application . this method is passed a fully composed action , allowing a last final global interceptor to be added to the action if required . concode_field_sep PlaceHolder placeHolder concode_field_sep HandlerForRequest handlerForRequest concode_elem_sep Action createAction conc... | Action function ( Action arg0 ) { return arg0 ; } |
12,899 | creates iio image instance given image and geotiff metadata . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean writeImage concode_elem_sep boolean writeImage concode_elem_sep String toXMLString concode_elem_sep IIOMetadata createIIOMetadata concode_elem_sep ImageWriter getImageWriter concode_elem_sep... | IIOImage function ( ImageWriter arg0 , RenderedImage arg1 , GeoTIFFMetadata arg2 ) { final ImageTypeSpecifier loc0 = ImageTypeSpecifier . createFromRenderedImage ( arg1 ) ; return new IIOImage ( arg1 , null , createIIOMetadata ( arg0 , loc0 , arg2 ) ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.