idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
7,900
sets the value of the status property . concode_field_sep boolean status concode_field_sep boolean isStatus
void function ( boolean arg0 ) { this . status = arg0 ; }
7,901
testing orcblacksmith to produce a spear asserting that the weapon is an instance of orcweapon . concode_field_sep PlaceHolder placeHolder concode_field_sep void testElfBlacksmithWithShortSword concode_elem_sep void testElfBlacksmithWithSpear concode_elem_sep void verifyWeapon concode_elem_sep void testOrcBlacksmithWit...
void function ( ) { Blacksmith loc0 = new OrcBlacksmith ( ) ; Weapon loc1 = loc0 . manufactureWeapon ( WeaponType . SPEAR ) ; verifyWeapon ( loc1 , WeaponType . SPEAR , OrcWeapon . class ) ; }
7,902
turns on/off color the lod bitmap textures based on their distance from view . this feature is useful since it helps visualize the lod being used while viewing the scene . concode_field_sep int mTextureResource2 concode_elem_sep NativeRenderer mNativeRenderer concode_elem_sep boolean mUseHardwareMips concode_elem_sep O...
void function ( boolean arg0 ) { this . mColorTextureLods = arg0 ; }
7,903
a simple jre java runtime environment 1.1 test concode_field_sep String PROPERTY concode_elem_sep int DEFAULT_LINE_LENGTH concode_elem_sep Vector sources concode_field_sep DOMImplementation getDOMImplementation concode_elem_sep String getSystemProperty concode_elem_sep String getServiceValue concode_elem_sep DOMImpleme...
boolean function ( ) { try { Class loc0 = Class . forName ( "srini_string" ) ; return false ; } catch ( Exception loc0 ) { } return true ; }
7,904
gets the value of the query property . concode_field_sep String query concode_field_sep void setQuery
String function ( ) { return query ; }
7,905
always returns a runner , even if it is just one that prints an error instead of running tests . concode_field_sep Set<Class<?>> parents concode_field_sep Class<?> addParent concode_elem_sep void removeParent concode_elem_sep Runner runnerForClass concode_elem_sep List<Runner> runners concode_elem_sep List<Runner> runn...
Runner function ( Class < ? > arg0 ) { try { return runnerForClass ( arg0 ) ; } catch ( Throwable loc0 ) { return new ErrorReportingRunner ( arg0 , loc0 ) ; } }
7,906
this method resets the outgoing events . concode_field_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean f concode_elem_sep State[] historyVector concode_elem_sep long x concode_elem_sep long y concode_elem_sep int nextStateIndex concode_elem_sep long z concode_elem_sep State[] stateVe...
void function ( ) { }
7,907
gets the errorcode value for this statusreport . concode_field_sep java.lang.String mobile concode_elem_sep java.lang.String submitDate concode_elem_sep java.lang.String errorCode concode_elem_sep java.lang.String memo concode_elem_sep java.lang.String receiveDate concode_elem_sep int reportStatus concode_elem_sep long...
java . lang . String function ( ) { return errorCode ; }
7,908
formats value . returns empty string if value is null . returns nan if value is not a number . return a formatted string if value is an instance of number , if not returns the value as a string . concode_field_sep String NAN concode_elem_sep String FORMAT_DATETIME concode_elem_sep DateFormatSymbols dateFormatSymbols co...
String function ( Object arg0 ) { if ( arg0 == null ) { return EMPTY ; } if ( arg0 instanceof Number ) { try { return FORMAT_VALUE . format ( arg0 ) ; } catch ( IllegalArgumentException loc0 ) { return NAN ; } } else { return String . valueOf ( arg0 ) ; } }
7,909
write all data . concode_field_sep int pageCount concode_elem_sep boolean atEnd concode_elem_sep PageStreamData data concode_elem_sep PageStore store concode_elem_sep int minPageId concode_elem_sep boolean needFlush concode_elem_sep PageStreamTrunk trunk concode_elem_sep int logKey concode_elem_sep Trace trace concode_...
void function ( ) { if ( needFlush ) { storePage ( ) ; needFlush = false ; } }
7,910
getter method of runtimemanager instance . concode_field_sep DataHolder instance concode_elem_sep RuntimeManager runtimeManager concode_elem_sep Optional<ConfigResolver> optConfigResolver concode_elem_sep BundleContext bundleContext concode_field_sep void setOptConfigResolver concode_elem_sep void setBundleContext conc...
RuntimeManager function ( ) { return runtimeManager ; }
7,911
returns a quotalineitementity whose value is this - val . the unit in the result are the same as the unit in `` this '' . that is to say if `` this '' is in kb and `` val '' is in mb , the result is in kb . the unit for b and count represent the normalized value . this means that 1 kb is the same as 1024 b or count . n...
QuotaLineItemEntity function ( QuotaLineItemEntity arg0 ) { return operate ( OpCode . SUB , arg0 ) ; }
7,912
runs after test method . concode_field_sep int SLEEPTIME concode_elem_sep long MAXSLEEPTIME concode_elem_sep int port concode_elem_sep SshdServerMock server concode_elem_sep int LONGSLEEPTIME concode_elem_sep SshdServerMock.KeyPairFiles sshKey concode_elem_sep SshServer sshd concode_elem_sep JenkinsRule j concode_field...
void function ( ) { sshd . stop ( true ) ; sshd = null ; }
7,913
clears the storage , note that crypto data wo n't be deleted such as salt key etc. . use resetcrypto in order to clear crypto information concode_field_sep String KEY_NO_CRYPTO concode_elem_sep String TAG_CRYPTO concode_elem_sep boolean noEncryption concode_elem_sep Encryption encryption concode_elem_sep LogLevel logLe...
boolean function ( ) { return storage . clear ( ) ; }
7,914
returns the state machine reference of the event . concode_field_sep boolean periodic concode_elem_sep int index concode_elem_sep ITimedStatemachine statemachine concode_field_sep boolean isPeriodic concode_elem_sep int getIndex concode_elem_sep void setStatemachine
ITimedStatemachine function ( ) { return statemachine ; }
7,915
gets the value of the width property . concode_field_sep Layout layout concode_elem_sep String flavour concode_elem_sep String src concode_elem_sep String width concode_elem_sep Label label concode_elem_sep String autoplay concode_elem_sep String height concode_field_sep void setSrc concode_elem_sep Label getLabel conc...
String function ( ) { return width ; }
7,916
formats the specified count by adding commas . concode_field_sep String VALID_TIME_UNITS concode_elem_sep double BYTES_IN_MEGABYTE concode_elem_sep String NANOS concode_elem_sep double BYTES_IN_TERABYTE concode_elem_sep Pattern TIME_DURATION_PATTERN concode_elem_sep double BYTES_IN_KILOBYTE concode_elem_sep String UNIO...
String function ( final long arg0 ) { return NumberFormat . getIntegerInstance ( ) . format ( arg0 ) ; }
7,917
returns the number of rows matching the dynamic query . concode_field_sep EntryLocalService _entryLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_e...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _entryLocalService . dynamicQueryCount ( arg0 ) ; }
7,918
create an instance of listallprodutosmenorquemilreaisresponse concode_field_sep PlaceHolder placeHolder concode_field_sep ListAllProdutoRequest createListAllProdutoRequest concode_elem_sep ListAllProdutosMenorQueMilReaisRequest createListAllProdutosMenorQueMilReaisRequest concode_elem_sep SaveProdutoRequest createSaveP...
ListAllProdutosMenorQueMilReaisResponse function ( ) { return new ListAllProdutosMenorQueMilReaisResponse ( ) ; }
7,919
hashcode method override should be properly implemented for any extended class , otherwise it will be based on label hashcode concode_field_sep boolean special concode_elem_sep boolean isLabel concode_elem_sep INDArray historicalGradient concode_elem_sep AdaGrad adaGrad concode_elem_sep long serialVersionUID concode_el...
int function ( ) { if ( this . getLabel ( ) == null ) throw new IllegalStateException ( "srini_string" ) ; return this . getLabel ( ) . hashCode ( ) ; }
7,920
add an itemset to this sequence . concode_field_sep List<Itemset> itemsets concode_elem_sep int id concode_elem_sep Set<Integer> sequencesID concode_field_sep Set<Integer> getSequencesID concode_elem_sep int getItemOccurencesTotalCount concode_elem_sep String toStringShort concode_elem_sep int getId concode_elem_sep lo...
void function ( Itemset arg0 ) { itemsets . add ( arg0 ) ; }
7,921
returns a set of file selectors , which should be used to select the included files . concode_field_sep InputStreamTransformer streamTransformer concode_elem_sep String[] excludes concode_elem_sep boolean includingEmptyDirectories concode_elem_sep boolean usingDefaultExcludes concode_elem_sep String prefix concode_elem...
FileSelector [ ] function ( ) { return fileSelectors ; }
7,922
return the array index for a hash . concode_field_sep int[] hashTable concode_elem_sep boolean fixedSize concode_elem_sep int newNodePointer concode_elem_sep int elementCount concode_elem_sep int[] linkTable concode_elem_sep int reclaimedNodePointer concode_field_sep void resetTables concode_elem_sep void unlinkNode co...
int function ( int arg0 ) { if ( elementCount == 0 ) { return - 1 ; } int loc0 = ( arg0 & 0x7fffffff ) % hashTable . length ; return hashTable [ loc0 ] ; }
7,923
xsddateformat returns a simpledateformat in `` eee , d mmm yyyy hh : mm : ss ` gmt ` z '' form , with the timezone set to gmt . note that synchronisation issues mean that we ca n't have a single shared constant -- it has mutable state . concode_field_sep Pattern matchTimeZone concode_elem_sep String NS concode_elem_sep...
SimpleDateFormat function ( ) { return dateFormat ( true , false ) ; }
7,924
default read timeout in milliseconds . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connectionPool concode_elem_sep List<String> DEFAULT_TRANSPORTS concode_elem_sep RouteDatabase routeDatabase concode_elem_sep ProxySelector proxySel...
int function ( ) { return readTimeout ; }
7,925
if set , grayscale images with a bit depth less than 8 1 , 2 , or 4 will be output in 8 bit form . the output values will occupy the full 8-bit range . for example , gray values 0 , 1 , 2 , and 3 of a 2-bit image will be output as 0 , 85 , 170 , and 255 . the decoding of non-grayscale images and grayscale images with a...
void function ( boolean arg0 ) { this . output8BitGray = arg0 ; }
7,926
called when the system received an http authentication request . plugin can use the supplied httpauthhandler to process this auth challenge . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_fie...
boolean function ( CordovaWebView arg0 , ICordovaHttpAuthHandler arg1 , String arg2 , String arg3 ) { return false ; }
7,927
checks whether the header is empty or not . an empty header contains no parameters . concode_field_sep Record _params concode_field_sep ProductData.UTC getParamUTC concode_elem_sep Field getParam concode_elem_sep int getNumParams concode_elem_sep float getParamFloat concode_elem_sep float getParamFloat concode_elem_sep...
boolean function ( ) { return getNumParams ( ) == 0 ; }
7,928
remove a file system observer from this monitor . concode_field_sep boolean running concode_elem_sep ScheduledExecutorService executor concode_elem_sep Logger LOGGER concode_elem_sep ScheduledFuture<?> executionResult concode_elem_sep long interval concode_elem_sep List<PathAlterationObserver> observers concode_elem_se...
void function ( final PathAlterationObserver arg0 ) { if ( arg0 != null ) { while ( observers . remove ( arg0 ) ) { } } }
7,929
helper method to the list of cache directories , one for each distinct locale . concode_field_sep File[] EMPTY_FILE_ARRAY concode_elem_sep String TAG concode_elem_sep String COMMON_PREFERENCES_NAME concode_elem_sep SharedPreferences mDictPreferences concode_field_sep AssetFileAddress loadFallbackResource concode_elem_s...
File [ ] function ( final Context arg0 ) { return new File ( getWordListCacheDirectory ( arg0 ) ) . listFiles ( ) ; }
7,930
gets the address to which the socket is connected . concode_field_sep Socket socket concode_field_sep int getLocalPort concode_elem_sep int getPort concode_elem_sep OutputStream getOutputStream concode_elem_sep int getSoTimeout concode_elem_sep void setSoTimeout concode_elem_sep String toString concode_elem_sep void cl...
IpAddress function ( ) { return new IpAddress ( socket . getInetAddress ( ) ) ; }
7,931
set the graphic state transorm on all child sprites , this is used for xform object parsing and text selection . there is no need to do this outside of the context parser . concode_field_sep ArrayList<GlyphText> glyphTexts concode_elem_sep AffineTransform graphicStateTransform concode_elem_sep Rectangle2D.Float bounds ...
void function ( AffineTransform arg0 ) { this . graphicStateTransform = arg0 ; for ( GlyphText loc0 : glyphTexts ) { loc0 . normalizeToUserSpace ( this . graphicStateTransform ) ; } }
7,932
returns an unbound client socket . concode_field_sep PlaceHolder placeHolder concode_field_sep SocketFactory getDefault
Socket function ( ) { throw new UnsupportedOperationException ( ) ; }
7,933
gives all the connecting edges . concode_field_sep int ANIMATEYINCREMENT concode_elem_sep Object match concode_elem_sep String contour concode_elem_sep int ANIMATEXINCREMENT concode_elem_sep NodeType type concode_elem_sep Point centre concode_elem_sep boolean visited concode_elem_sep ArrayList<Edge> edgesFrom concode_e...
HashSet < Edge > function ( ) { HashSet < Edge > loc0 = new HashSet < Edge > ( getEdgesFrom ( ) ) ; loc0 . addAll ( getEdgesTo ( ) ) ; return ( loc0 ) ; }
7,934
create a poolconfig based on the current builder configuration . concode_field_sep int minIdle concode_elem_sep int maxIdle concode_elem_sep int maxIdle concode_elem_sep int maxTotal concode_elem_sep int minIdle concode_elem_sep int timeout concode_elem_sep int timeout concode_elem_sep int maxTotal concode_field_sep in...
PoolConfig function ( ) { return new PoolConfig ( this ) ; }
7,935
returns the text-encoded version of this data , if possible . if the string form constructor was used , this will just be the original text wrapped with the statusdata tag . if the list form constructor was used , it will be the encoded attribute data . if this was created using the getinstance method , then getencoded...
String function ( ) { if ( detailText == null ) throw new IllegalStateException ( "srini_string" ) ; return detailText ; }
7,936
delegates to injected itemprocessor instances according to theclassification by the classifier . concode_field_sep Classifier<? super I,ItemProcessor<?,? extends O>> classifier concode_field_sep void setClassifier concode_elem_sep O processItem
O function ( I arg0 ) { return processItem ( classifier . classify ( arg0 ) , arg0 ) ; }
7,937
verifies that an animated sprite is correctly cut from its base image . concode_field_sep Sprite sprite concode_elem_sep int spriteSize concode_elem_sep SpriteStore store concode_field_sep void spriteHeight concode_elem_sep void splitOutOfBounds concode_elem_sep void splitWidth concode_elem_sep void setUp concode_elem_...
void function ( ) { AnimatedSprite loc0 = store . createAnimatedSprite ( sprite , 4 , 0 , false ) ; assertEquals ( 64 , loc0 . getHeight ( ) ) ; }
7,938
get the event type concode_field_sep int[] clockSplits concode_elem_sep long finishTime concode_elem_sep int[] physMemKbytes concode_elem_sep Counters counters concode_elem_sep TaskType taskType concode_elem_sep String hostname concode_elem_sep long shuffleFinishTime concode_elem_sep int port concode_elem_sep int[][] a...
EventType function ( ) { return EventType . REDUCE_ATTEMPT_FINISHED ; }
7,939
returns the number of levels in the tree . concode_field_sep long serialVersionUID concode_elem_sep Root root concode_elem_sep double minExtent concode_field_sep Envelope ensureExtent concode_elem_sep int size concode_elem_sep void collectStats concode_elem_sep List query concode_elem_sep void query concode_elem_sep bo...
int function ( ) { if ( root != null ) return root . depth ( ) ; return 0 ; }
7,940
reports an error if neither the network nor the gps provider is available . concode_field_sep boolean mIsGpsEnabled concode_elem_sep String TAG concode_elem_sep long mNativeObject concode_elem_sep boolean mIsGpsProviderAvailable concode_elem_sep boolean mIsNetworkProviderAvailable concode_elem_sep LocationManager mLoca...
void function ( String arg0 ) { if ( mIsRunning && ! mIsNetworkProviderAvailable && ! mIsGpsProviderAvailable ) { nativeNewErrorAvailable ( mNativeObject , arg0 ) ; } }
7,941
return the split positions . concode_field_sep int dimension concode_elem_sep double[] splitPositions concode_field_sep int getIOCosts concode_elem_sep int getDimension
double [ ] function ( ) { return splitPositions ; }
7,942
encrypts #value and returns it in an encoded printable form . concode_field_sep Pattern ENCRYPTED_VALUE_PATTERN concode_elem_sep String MAGIC concode_elem_sep CryptoConfidentialKey KEY concode_elem_sep String PROVIDER concode_elem_sep String SECRET concode_elem_sep long serialVersionUID concode_elem_sep String value co...
String function ( ) { try { Cipher loc0 = KEY . encrypt ( ) ; return new String ( Base64 . encode ( loc0 . doFinal ( ( value + MAGIC ) . getBytes ( "srini_string" ) ) ) ) ; } catch ( GeneralSecurityException loc0 ) { throw new Error ( loc0 ) ; } catch ( UnsupportedEncodingException loc0 ) { throw new Error ( loc0 ) ; }...
7,943
use it to start a feed . concode_field_sep Marshaller marshaller concode_elem_sep Logger log concode_elem_sep String channel concode_elem_sep ITransportFactory transFac concode_elem_sep IEventListener<byte[]> rawListener concode_field_sep void eventFired concode_elem_sep void handle
void function ( ) { IReceiver loc0 = transFac . getReceiver ( channel ) ; loc0 . getRawEvent ( ) . addEventListener ( rawListener ) ; }
7,944
convert a resource specification to a resource . a resource may be specified by a shortname in a query string or a literal giving a shortname in a spec file as well as simply being a resource already . concode_field_sep PrefixMapping prefixes concode_elem_sep String rdf_XMLLiteral concode_elem_sep Context context conco...
Resource function ( RDFNode arg0 ) { if ( arg0 instanceof Resource ) { return ( Resource ) arg0 ; } else if ( arg0 instanceof Literal ) { return asResource ( ( ( Literal ) arg0 ) . getLexicalForm ( ) ) ; } throw new UnknownShortnameException ( arg0 ) ; }
7,945
returns actual zoom type for the specified zoom type . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
ZoomType function ( final ZoomType arg0 ) { if ( arg0 . equals ( ZoomType . random ) ) { final ZoomType [ ] loc0 = ZoomType . values ( ) ; return loc0 [ MathUtils . random ( loc0 . length - 1 ) + 1 ] ; } else { return arg0 ; } }
7,946
makes the seek bar thumb visible and allows the user to seek to different time points in the video . concode_field_sep VideoSurfaceLayer videoSurfaceLayer concode_elem_sep PlaybackControlLayer playbackControlLayer concode_elem_sep Activity activity concode_elem_sep SubtitleLayer subtitleLayer concode_elem_sep LayerMana...
void function ( ) { playbackControlLayer . enableSeeking ( ) ; }
7,947
main entry point for starting elasticsearch concode_field_sep PlaceHolder placeHolder concode_field_sep void close
void function ( String [ ] arg0 ) { try { Bootstrap . init ( arg0 ) ; } catch ( Throwable loc0 ) { throw new StartupError ( loc0 ) ; } }
7,948
sets the lognode data will be sent to . . concode_field_sep LogNode mNext concode_field_sep void println concode_elem_sep LogNode getNext
void function ( LogNode arg0 ) { mNext = arg0 ; }
7,949
gets the value of the w property . concode_field_sep Boolean extrusionOk concode_elem_sep Long w concode_elem_sep Long h concode_elem_sep STPathFillMode fill concode_elem_sep List<Object> closeOrMoveToOrLnTo concode_elem_sep Boolean stroke concode_field_sep void setW concode_elem_sep boolean isStroke concode_elem_sep l...
long function ( ) { if ( w == null ) { return 0L ; } else { return w ; } }
7,950
reads the setting from the options hash . if it is nil or undefined , returns the default value given . if not , ensures it is a rubyclass instance and shares the same allocator as the default value i.e. for the basic types which have their specific allocators , this ensures the passed value is a subclass of them . con...
RubyClass function ( String arg0 , RubyClass arg1 ) { IRubyObject loc0 = get ( arg0 ) ; if ( loc0 == null || loc0 . isNil ( ) ) return arg1 ; return ( RubyClass ) loc0 ; }
7,951
method to return the singleton instance of this class concode_field_sep int SLIDE_PRELOAD_COUNT concode_elem_sep String CHAT_LOG_EXTENSION concode_elem_sep Log log concode_elem_sep PresentationManager singleton concode_elem_sep Map presentationMap concode_field_sep Presentation createPresentation concode_elem_sep Prese...
PresentationManager function ( ) { if ( singleton == null ) { singleton = new PresentationManager ( ) ; } return ( singleton ) ; }
7,952
set index to value . in the u part of this acceptance signature . concode_field_sep int _size concode_elem_sep MyBitSet _U concode_elem_sep MyBitSet _L concode_field_sep MyBitSet getL concode_elem_sep void clear concode_elem_sep RabinAcceptance.RabinColor getColor concode_elem_sep int compareTo concode_elem_sep MyBitSe...
void function ( int arg0 , boolean arg1 ) { _U . set ( arg0 , arg1 ) ; }
7,953
create a new customzipoutputstream that handles duplicate entries in the way dictatedby mode . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
CustomZipOutputStream function ( Path arg0 , HandleDuplicates arg1 ) { return newOutputStream ( new BufferedOutputStream ( Files . newOutputStream ( arg0 ) ) , arg1 ) ; }
7,954
sets the value of the komentar property . concode_field_sep String nazev concode_elem_sep String komentar concode_elem_sep TKlicovaSlova klicovaSlova concode_field_sep void setNazev concode_elem_sep String getKomentar concode_elem_sep TKlicovaSlova getKlicovaSlova concode_elem_sep String getNazev concode_elem_sep void ...
void function ( String arg0 ) { this . komentar = arg0 ; }
7,955
closes the camera driver if still in use . concode_field_sep AutoFocusCallback autoFocusCallback concode_elem_sep int MAX_FRAME_HEIGHT concode_elem_sep String TAG concode_elem_sep CameraManager cameraManager concode_elem_sep boolean reverseImage concode_elem_sep CameraConfigurationManager configManager concode_elem_sep...
void function ( ) { if ( camera != null ) { camera . release ( ) ; camera = null ; framingRect = null ; framingRectInPreview = null ; } }
7,956
replace the contents of a list facade with the given languages . concode_field_sep DefaultListFacade<LanguageFacade> selectedList concode_elem_sep DefaultListFacade<LanguageFacade> originalSelectedList concode_elem_sep CharacterDisplay charDisplay concode_elem_sep DefaultListFacade<LanguageFacade> availableList concode...
void function ( List < ? extends Language > arg0 , DefaultListFacade < LanguageFacade > arg1 ) { Collections . sort ( arg0 ) ; arg1 . clearContents ( ) ; for ( Language loc0 : arg0 ) { arg1 . addElement ( loc0 ) ; } }
7,957
converts a byte value from string concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] toByteArray
byte function ( String arg0 , int arg1 ) { return ( byte ) Integer . parseInt ( arg0 , arg1 ) ; }
7,958
returns the confirmation code for the created account concode_field_sep String temporaryPassword concode_elem_sep String confirmationCode concode_elem_sep String notification concode_elem_sep int tenantId concode_elem_sep String notificationType concode_elem_sep String userId concode_elem_sep String tenantDomain concod...
String function ( ) { return confirmationCode ; }
7,959
verrouille une ressource pour l'ui courante concode_field_sep Map<Object,UI> locks concode_elem_sep ApplicationContext applicationContext concode_elem_sep UiController uiController concode_field_sep String getUserNameFromLock concode_elem_sep boolean getLockOrNotify concode_elem_sep List<Object> getUILocks concode_elem...
boolean function ( Object arg0 ) { Assert . notNull ( arg0 ) ; UI loc0 = locks . get ( arg0 ) ; if ( loc0 instanceof UI && loc0 != UI . getCurrent ( ) && uiController . isUIStillActive ( loc0 ) ) { return false ; } locks . put ( arg0 , UI . getCurrent ( ) ) ; uiController . notifyUIUpdated ( UI . getCurrent ( ) ) ; ret...
7,960
tests the insecuredefaultsservicebean #init method for the case wherethe servicebean has already been initialized 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 v...
void function ( ) { InsecureDefaultsServiceBean loc0 = createInsecureDefaultsServiceBean ( 0 ) ; loc0 . init ( ) ; loc0 . init ( ) ; assertThat ( isRegistered ( ) , is ( true ) ) ; }
7,961
returns a sub-path of this path up to length components . concode_field_sep String[] components concode_elem_sep int MAX_CATEGORY_PATH_LENGTH concode_elem_sep int length concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep void checkComponents concode_elem_sep...
FacetLabel function ( final int arg0 ) { if ( arg0 >= this . length || arg0 < 0 ) { return this ; } else { return new FacetLabel ( this , arg0 ) ; } }
7,962
defines this argumentresolver to only support method parameters annotated with the @icemobileresource annotation . concode_field_sep Log LOG concode_elem_sep StoreLocator storeLocator concode_field_sep Resource resolveArgument
boolean function ( MethodParameter arg0 ) { return arg0 . hasParameterAnnotation ( ICEmobileResource . class ) ; }
7,963
puts an array of bytes into this byte vector . the byte vector is automatically enlarged if necessary . concode_field_sep byte[] data concode_elem_sep int length concode_field_sep ByteVector put12 concode_elem_sep ByteVector encodeUTF8 concode_elem_sep ByteVector putByte concode_elem_sep ByteVector putInt concode_elem_...
ByteVector function ( final byte [ ] arg0 , final int arg1 , final int arg2 ) { if ( length + arg2 > data . length ) { enlarge ( arg2 ) ; } if ( arg0 != null ) { System . arraycopy ( arg0 , arg1 , data , length , arg2 ) ; } length += arg2 ; return this ; }
7,964
sets the transaction manager to manager underlying transaction with . if none is provided , an attempt is made to auto detect is from the application context . if a single transaction manager is found , it is used to manage transactions . of none or more than one is found , they are ignored . concode_field_sep Executor...
void function ( PlatformTransactionManager arg0 ) { this . transactionManager = arg0 ; }
7,965
the id of the new association . concode_field_sep String newAssociationId concode_field_sep String getNewAssociationId concode_elem_sep ReplaceRouteTableAssociationResult withNewAssociationId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ReplaceRouteTableAssociationResult clone concode_...
void function ( String arg0 ) { this . newAssociationId = arg0 ; }
7,966
returns the glarch . concode_field_sep List components concode_elem_sep One one concode_elem_sep List manyToMany concode_elem_sep Foo foo concode_elem_sep int count concode_elem_sep Collection bag concode_elem_sep Simple simple concode_elem_sep Many many concode_elem_sep Set composites concode_elem_sep Collection lazyB...
Glarch function ( ) { return glarch ; }
7,967
get the parent expression of the current expression in the expression tree concode_field_sep Stack<Expression> stack concode_elem_sep Configuration configuration concode_elem_sep Executable executable concode_elem_sep StaticContext staticContext concode_field_sep void resetStaticProperties concode_elem_sep Executable g...
Expression function ( ) { int loc0 = stack . size ( ) - 2 ; if ( loc0 > 0 ) { return stack . get ( loc0 ) ; } else { return null ; } }
7,968
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String headerName concode_elem_sep String headerValue concode_field_sep String getHeaderName concode_elem_sep AddHeaderAction withHeaderName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_se...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getHeaderName ( ) != null ) loc0 . append ( "srini_string" + getHeaderName ( ) + "srini_string" ) ; if ( getHeaderValue ( ) != null ) loc0 . append ( "srini_string" + getHeaderValue ( ) ) ; loc0 . append ( "srini_...
7,969
returns the session cookie given the admin credentials concode_field_sep Log log concode_field_sep URLConnection getURLConnection concode_elem_sep OMElement getWSDLElement concode_elem_sep void persistServer concode_elem_sep boolean isClientAxis2XMLExists concode_elem_sep int getReadTimeout concode_elem_sep CGServerBea...
String function ( String arg0 , String arg1 , String arg2 , String arg3 , String arg4 ) { AuthenticationClient loc0 = new AuthenticationClient ( ) ; return loc0 . getSessionCookie ( arg0 , arg1 , arg2 , arg4 , arg3 ) ; }
7,970
get whether this tag has a name . if true , it may be accessed via #gettagname . if false , #gettagname will return a string resembling `` unknown tag 0x1234 '' . concode_field_sep int _tagType concode_elem_sep Directory _directory concode_field_sep String getTagTypeHex concode_elem_sep int getTagType concode_elem_sep ...
boolean function ( ) { return _directory . hasTagName ( _tagType ) ; }
7,971
metodo encargado de leer y repintar la salida concode_field_sep OutputPanel op concode_elem_sep StringBuilder content concode_elem_sep OutMethod out concode_field_sep void setOutput
void function ( char arg0 ) { try { if ( out != null ) { out . write ( arg0 ) ; } } catch ( java . io . IOException loc0 ) { loc0 . printStackTrace ( ) ; } content . append ( arg0 ) ; op . setTextArea ( content ) ; }
7,972
sets the company id of this expando row . concode_field_sep ExpandoRow _expandoRow concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel con...
void function ( long arg0 ) { _expandoRow . setCompanyId ( arg0 ) ; }
7,973
two objects that are equal are required to return the same hashcode . concode_field_sep PlaceHolder placeHolder concode_field_sep void testDrawWithNullDeviationHorizontal concode_elem_sep void testCloning concode_elem_sep void testFindRangeBounds concode_elem_sep void testPublicCloneable concode_elem_sep void testDrawW...
void function ( ) { StatisticalBarRenderer loc0 = new StatisticalBarRenderer ( ) ; StatisticalBarRenderer loc1 = new StatisticalBarRenderer ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; }
7,974
cancel recovery thread . concode_field_sep String[] recoveryMethodNames concode_elem_sep int TIMEOUT concode_elem_sep SeleniumTestBase caller concode_elem_sep RecoveryThreadTask recovery concode_elem_sep long thresholdTimeout concode_elem_sep Timer timer concode_elem_sep String[] onerrorMethodNames concode_field_sep vo...
void function ( ) { recovery . cancel ( ) ; }
7,975
get the width . concode_field_sep int mHeight concode_elem_sep int mLatency concode_elem_sep int mWidth concode_elem_sep boolean mMotionTouch concode_elem_sep int mRefreshRate concode_elem_sep int mColors concode_elem_sep long mId concode_elem_sep boolean mTapTouch concode_field_sep int getRefreshRate concode_elem_sep ...
int function ( ) { return mWidth ; }
7,976
does a batch comparison of one object against a given set of objects and returns the one with the highest score . concode_field_sep SimilarityMetric<T> sm concode_elem_sep float threshold concode_field_sep T getFirstMatchOver concode_elem_sep T getBestMatchOver concode_elem_sep T getBestMatchOver
T function ( T arg0 , Collection < T > arg1 ) { return getBestMatchOver ( arg0 , arg1 , 0.0f ) ; }
7,977
page size concode_field_sep int marginLeft concode_elem_sep int marginRight concode_elem_sep Map<String,PDRectangle> PAGE_MAP concode_elem_sep PDRectangle pageSize concode_elem_sep int marginTop concode_elem_sep int marginBottom concode_elem_sep PdfOperation operation concode_elem_sep PDFont font concode_elem_sep TextP...
void function ( PDRectangle arg0 ) { this . pageSize = arg0 ; }
7,978
gets the value of the username property . concode_field_sep String username concode_field_sep void setUsername
String function ( ) { return username ; }
7,979
removes the client for the given connectionid . concode_field_sep ConcurrentMap<ConnectionID,Object> clients concode_elem_sep PartitionRequestClient partitionRequestClient concode_elem_sep PartitionRequestClientFactory clientFactory concode_elem_sep ConnectionID connectionId concode_elem_sep Throwable error concode_ele...
void function ( ConnectionID arg0 , PartitionRequestClient arg1 ) { clients . remove ( arg0 , arg1 ) ; }
7,980
the type of resource . the only supported value is auto-scaling-group . concode_field_sep String resourceId concode_elem_sep Boolean propagateAtLaunch concode_elem_sep String value concode_elem_sep String key concode_elem_sep String resourceType concode_field_sep String getKey concode_elem_sep TagDescription withResour...
void function ( String arg0 ) { this . resourceType = arg0 ; }
7,981
get all documents to be added in batch . concode_field_sep List<String> idsToDelete concode_elem_sep Map<String,SolrInputDocument> documentsToAdd concode_elem_sep List<String> deleteQueries concode_field_sep void add concode_elem_sep void deleteByQuery concode_elem_sep List<String> getDeleteQueries concode_elem_sep voi...
Map < String , SolrInputDocument > function ( ) { return documentsToAdd ; }
7,982
gets the dynamic time through the formatcurrenttime method in the timezonebean . concode_field_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep String getUseDaylightTime concode_elem_sep String getLocation concode_elem_...
String function ( ) { return TimeZoneBean . formatCurrentTime ( dateFormat ) ; }
7,983
a factory method to allow a provider to lazily create the message body for inbound messages from other sources concode_field_sep String messageId concode_elem_sep Exchange exchange concode_elem_sep Object body concode_field_sep Object getBody concode_elem_sep T getBody concode_elem_sep T getBody concode_elem_sep void s...
Object function ( ) { return null ; }
7,984
return the set of all option arguments present on the command line . concode_field_sep Map<String,List<String>> optionArgs concode_elem_sep List<String> nonOptionArgs concode_field_sep void addOptionArg concode_elem_sep List<String> getOptionValues concode_elem_sep void addNonOptionArg concode_elem_sep boolean contains...
Set < String > function ( ) { return Collections . unmodifiableSet ( this . optionArgs . keySet ( ) ) ; }
7,985
creates a new method . concode_field_sep String name concode_elem_sep Map DESCRIPTORS concode_elem_sep String desc concode_field_sep String getDescriptor concode_elem_sep Type[] getArgumentTypes concode_elem_sep String getName concode_elem_sep Type getReturnType concode_elem_sep int hashCode concode_elem_sep boolean eq...
Method function ( java . lang . reflect . Constructor arg0 ) { return new Method ( "srini_string" , Type . getConstructorDescriptor ( arg0 ) ) ; }
7,986
sets the value of the can property . concode_field_sep String tpl concode_elem_sep Boolean can concode_elem_sep String ptd concode_elem_sep String act concode_elem_sep String wta concode_elem_sep String wtd concode_elem_sep String planAct concode_elem_sep Short rdelay concode_elem_sep String pta concode_field_sep boole...
void function ( boolean arg0 ) { this . can = arg0 ; }
7,987
asserts that the given list of differences contains a referencechange describing the given element addition . this is only meant for containment changes . the differences list will be updated bythis call , removing the corresponding diff if it could be located . note that in order for this to work , we expect the eobje...
void function ( List < Diff > arg0 , String arg1 , DifferenceSource arg2 ) { final Predicate < ? super Diff > loc0 = and ( fromSide ( arg2 ) , added ( arg1 ) ) ; final Diff loc1 = removeFirst ( arg0 . iterator ( ) , loc0 ) ; assertNotNull ( loc1 ) ; }
7,988
gets the value of the financialinstitutioncontactandaddress property . concode_field_sep CodAddTransportationChargesDetail addTransportationChargesDetail concode_elem_sep CodCollectionType collectionType concode_elem_sep Party codRecipient concode_elem_sep String remitToName concode_elem_sep TrackingId returnTrackingId...
ContactAndAddress function ( ) { return financialInstitutionContactAndAddress ; }
7,989
load the url into the webview . concode_field_sep PluginManager pluginManager concode_elem_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep BroadcastReceiver receiver concode_elem_sep SystemWebView webView concode_elem_sep CordovaWebView parentWebView concode_elem_sep Cordov...
void function ( final String arg0 , boolean arg1 ) { webView . loadUrl ( arg0 ) ; }
7,990
sets the user id of this wiki node . concode_field_sep WikiNode _wikiNode concode_field_sep void setName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem...
void function ( long arg0 ) { _wikiNode . setUserId ( arg0 ) ; }
7,991
returns whether the range is actually a single port number . concode_field_sep int UNBOUND concode_elem_sep int upperBound concode_elem_sep int lowerBound concode_field_sep String encode concode_elem_sep boolean isUnbound concode_elem_sep boolean equals concode_elem_sep PortRange getInstance concode_elem_sep int getLow...
boolean function ( ) { return ( ( lowerBound == upperBound ) && ( lowerBound != UNBOUND ) ) ; }
7,992
returns a set of classes that have a converter registered . this is not the same as the list of supported classes - subclasses of classes in this set are also supported . concode_field_sep Converter<String,Object> stringObjectConverter concode_elem_sep Map<Class<?>,Converter<String,?>> converterMap concode_field_sep vo...
Set < Class < ? >> function ( ) { return Collections . unmodifiableSet ( converterMap . keySet ( ) ) ; }
7,993
unregisters a copystreamlistener . although this method is not synchronized , it is implemented in a thread safe manner . concode_field_sep ListenerList internalListeners concode_field_sep void bytesTransferred concode_elem_sep void bytesTransferred concode_elem_sep void addCopyStreamListener
void function ( CopyStreamListener arg0 ) { internalListeners . removeListener ( arg0 ) ; }
7,994
sets the value of the baseadruleslottype property . concode_field_sep String videoMidrollFrequency concode_elem_sep Long minVideoAdDuration concode_elem_sep MidrollFrequencyType videoMidrollFrequencyType concode_elem_sep String baseAdRuleSlotType concode_elem_sep Long maxPodDuration concode_elem_sep Long id concode_ele...
void function ( String arg0 ) { this . baseAdRuleSlotType = arg0 ; }
7,995
set start of ` page ' of results concode_field_sep List<Integer> hitIds concode_elem_sep int hitCount concode_elem_sep List<String> hitHandles concode_elem_sep long queryTime concode_elem_sep int start concode_elem_sep List<Integer> hitTypes concode_elem_sep int pageSize concode_elem_sep int etAl concode_elem_sep Strin...
void function ( int arg0 ) { start = arg0 ; }
7,996
the total number of warmer executed . concode_field_sep long current concode_elem_sep long total concode_elem_sep String CURRENT concode_elem_sep String TOTAL concode_elem_sep String WARMER concode_elem_sep String TOTAL_TIME concode_elem_sep String TOTAL_TIME_IN_MILLIS concode_elem_sep long totalTimeInMillis concode_fi...
long function ( ) { return this . total ; }
7,997
serialize the filename to be sent over udp connection concode_field_sep String fileName concode_elem_sep DatagramPacket requestPacket concode_elem_sep int cwnd concode_elem_sep ArrayList<Boolean> timeoutList concode_elem_sep int slowStart concode_elem_sep int start concode_elem_sep int index concode_elem_sep boolean[] ...
byte [ ] function ( String arg0 ) { ByteArrayOutputStream loc0 = new ByteArrayOutputStream ( ) ; ObjectOutputStream loc1 = new ObjectOutputStream ( loc0 ) ; loc1 . flush ( ) ; loc1 . writeObject ( arg0 ) ; loc1 . flush ( ) ; byte [ ] loc2 = loc0 . toByteArray ( ) ; return loc2 ; }
7,998
this method was generated by mybatis generator . this method sets the value of the database column sys_dic . enable _ concode_field_sep String code concode_elem_sep Boolean editable concode_elem_sep String remark concode_elem_sep Date updateTime concode_elem_sep long serialVersionUID concode_elem_sep Integer sortNo con...
void function ( Boolean arg0 ) { this . enable = arg0 ; }
7,999
test method for mylinkedlist.mylinkedlist #add int , java.lang.object . concode_field_sep String[] VALUES concode_elem_sep MyLinkedList<String> mll concode_field_sep void testIteratorHasNextMiddle concode_elem_sep void testRemoveIntIOBE2 concode_elem_sep void testSetMiddle concode_elem_sep void testContains concode_ele...
void function ( ) { for ( String loc0 : VALUES ) mll . add ( loc0 ) ; int loc1 = VALUES . length + 1 ; String loc2 = "srini_string" ; mll . add ( loc1 , loc2 ) ; fail ( "srini_string" ) ; }