code stringlengths 20 663 | nl stringlengths 68 7.19k |
|---|---|
void function ( String arg0 , String arg1 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 ) ; } | verbose log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void s... |
void function ( String arg0 ) { this . style = arg0 ; } | set the two characters to use to format date values , in joda-time style . the first character is used for the date style ; the second is for the time style . supported characters are : 's ' = small 'm ' = medium ` l' = long ` f ' = full ' - ' = omitted concode_field_sep ISO iso concode_elem_sep String pattern concode_... |
boolean function ( final Expression arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } return expressionList . remove ( arg0 ) ; } | removes an expression from the collection . concode_field_sep ArrayList<Expression> expressionList concode_field_sep void add concode_elem_sep void add concode_elem_sep int findExpressionByName concode_elem_sep Expression getExpression concode_elem_sep boolean contains concode_elem_sep Expression set concode_elem_sep i... |
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , com . liferay . portal . kernel . dao . orm . Projection arg1 ) { return _portalPreferencesLocalService . dynamicQueryCount ( arg0 , arg1 ) ; } | returns the number of rows matching the dynamic query . concode_field_sep PortalPreferencesLocalService _portalPreferencesLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionab... |
int function ( int arg0 ) { return getAttribute ( arg0 ) . value ; } | returns integer attribute value . this integer interpreted according to attribute type . concode_field_sep int TEXT concode_elem_sep int END_DOCUMENT concode_elem_sep int m_tagSourceLine concode_elem_sep int m_tagName concode_elem_sep IOException m_nextException concode_elem_sep int[] m_resourceIDs concode_elem_sep Tag... |
String function ( @ NotNull PsiElement arg0 ) { final InjectedLanguageManager loc0 = InjectedLanguageManager . getInstance ( arg0 . getProject ( ) ) ; if ( loc0 . isInjectedFragment ( arg0 . getContainingFile ( ) ) ) { return loc0 . getUnescapedText ( arg0 ) ; } else { return arg0 . getText ( ) ; } } | returns text of the given psi element . unlike obvious psielement #gettext this method unescapes text of the element if latterbelongs to injected code fragment using injectedlanguagemanager #getunescapedtext psielement . concode_field_sep PlaceHolder placeHolder concode_field_sep String stripQuotes concode_elem_sep boo... |
Builder function ( String arg0 ) { return new Builder ( arg0 ) ; } | creates a builder with the given zookeeper connection string . concode_field_sep Watcher connectionWatcher concode_elem_sep String connectStr concode_elem_sep Multimap<String,byte[]> auths concode_elem_sep int timeout concode_field_sep Builder addAuthInfo concode_elem_sep Builder setSessionTimeout concode_elem_sep ZKCl... |
int function ( String arg0 ) { return blockCreators . get ( arg0 ) . getWidth ( ) ; } | gets the block width . concode_field_sep Map<String,BlocksCreator> blockCreators concode_elem_sep Map<String,Integer> spacerWidths concode_field_sep Block getBlock concode_elem_sep void setBlockCreators concode_elem_sep Map<String,String> getEmptyParametersMap concode_elem_sep int getSpaceWidth concode_elem_sep boolean... |
RemoteInvocationResult function ( ObjectInputStream arg0 ) { Object loc0 = arg0 . readObject ( ) ; if ( ! ( loc0 instanceof RemoteInvocationResult ) ) { throw new RemoteException ( "srini_string" + RemoteInvocationResult . class . getName ( ) + "srini_string" + loc0 ) ; } return ( RemoteInvocationResult ) loc0 ; } | perform the actual reading of an invocation object from the given objectinputstream . the default implementation simply calls readobject . can be overridden for deserialization of a custom wrapper object rather than the plain invocation , for example an encryption-aware holder . concode_field_sep boolean acceptGzipEnco... |
void function ( ) { ThreadUtils . runOnUiThread ( new Runnable ( ) { @ Override public void run ( ) { sStateListeners . addObserver ( new StateListener ( ) { @ Override public void onActivityStateChange ( int arg0 ) { nativeOnActivityStateChange ( arg0 ) ; } } ) ; } } ) ; } | registers the single thread-safe native activity status listener . this handles the case where the caller is not on the main thread . note that this is used by a leaky singleton object from the native side , hence lifecycle management is greatly simplified . concode_field_sep int STARTED concode_elem_sep int CREATED co... |
long function ( ) { return _scProductVersion . getPrimaryKey ( ) ; } | returns the primary key of this s c product version . concode_field_sep SCProductVersion _scProductVersion concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean ... |
Dosage function ( Long arg0 ) { for ( Dosage loc0 : dosages ) { if ( loc0 . getId ( ) . equals ( arg0 ) ) { return loc0 ; } } return null ; } | retrieves the dosage with given id belonging to this regimen . concode_field_sep Set<Dosage> dosages concode_elem_sep String externalId concode_elem_sep Long id concode_elem_sep DailyScheduleDetails scheduleDetails concode_field_sep void setDosages concode_elem_sep DailyScheduleDetails getScheduleDetails concode_elem_s... |
void function ( ) { Assert . notNull ( j2eeMappableRoles , "srini_string" ) ; Assert . notNull ( j2eeUserRoles2GrantedAuthoritiesMapper , "srini_string" ) ; } | check that all required properties have been set . concode_field_sep Log logger concode_elem_sep Set<String> j2eeMappableRoles concode_elem_sep Attributes2GrantedAuthoritiesMapper j2eeUserRoles2GrantedAuthoritiesMapper concode_field_sep void setUserRoles2GrantedAuthoritiesMapper concode_elem_sep PreAuthenticatedGranted... |
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; } | called whenever the osgi framework starts our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep BundleContext getContext |
Multiset function ( Multiset arg0 ) { for ( Object loc0 : arg0 . keySet ( ) ) { if ( ! m_map . containsKey ( loc0 ) ) { m_map . put ( loc0 , arg0 . get ( loc0 ) ) ; } else { int loc1 = m_map . get ( loc0 ) + arg0 . get ( loc0 ) ; m_map . put ( loc0 , loc1 ) ; } } return this ; } | performs the union of two multisets concode_field_sep Map<Object,Integer> m_map concode_field_sep Object getAnyElement concode_elem_sep boolean add concode_elem_sep boolean containsAll concode_elem_sep void clear concode_elem_sep boolean isEmpty concode_elem_sep boolean remove concode_elem_sep boolean contains concode_... |
void function ( byte [ ] arg0 ) { this . efCardAccess = arg0 ; } | sets the content of the file ef.cardaccess . concode_field_sep String ID_PICC concode_elem_sep byte retryCounter concode_elem_sep AuthDataMap authMap concode_elem_sep String EF_CARD_ACCESS concode_elem_sep byte[] previousCAR concode_elem_sep byte[] idpicc concode_elem_sep byte[] efCardAccess concode_elem_sep String PRE... |
int function ( ) { return reconnectTimeWait ; } | waiting time before attempts reconnection in milliseconds concode_field_sep boolean noRandomizeServers concode_elem_sep String replySubject concode_elem_sep String maxMessages concode_elem_sep int reconnectTimeWait concode_elem_sep boolean ssl concode_elem_sep boolean verbose concode_elem_sep String servers concode_ele... |
Text function ( ) { return text ; } | returns the text control . concode_field_sep boolean dirty concode_elem_sep boolean ignoreModify concode_elem_sep IFormTextEntryListener listener concode_elem_sep String description concode_elem_sep Control label concode_elem_sep Text text concode_elem_sep int TOOLTIP_WIDTH_LIMIT concode_elem_sep String value concode_e... |
String function ( String arg0 ) { UploadOptions loc0 = UploadOptions . Builder . withDefaults ( ) . googleStorageBucketName ( Config . GCS_BUCKETNAME ) . maxUploadSizeBytes ( Const . SystemParams . MAX_FILE_LIMIT_FOR_BLOBSTOREAPI ) ; return BlobstoreServiceFactory . getBlobstoreService ( ) . createUploadUrl ( arg0 , lo... | creates and invokes a url for uploading a large blob to google cloud storage . upon completion of the upload , a callback is made to the specified callbackurl . refer to blobstoreservice #createuploadurl . concode_field_sep Logger log concode_elem_sep int MAX_READING_LENGTH concode_field_sep void deleteFile concode_ele... |
void function ( boolean arg0 , String arg1 ) { if ( arg0 ) { throw new CheckException ( arg1 ) ; } } | throws a checkexception if the value is true , the message is used for creating the exception . concode_field_sep PlaceHolder placeHolder concode_field_sep void isNotNull concode_elem_sep void fail concode_elem_sep void isTrue concode_elem_sep void isNotSameObject concode_elem_sep void isNull concode_elem_sep void isIn... |
Response < T > function ( ) { return response ; } | the response received from executing an http request . only present when #iserror isfalse , null otherwise . concode_field_sep Response<T> response concode_elem_sep Throwable error concode_field_sep boolean isError concode_elem_sep Result<T> error concode_elem_sep Throwable error |
Boolean function ( ) { return deep ; } | gets the value of the deep property . concode_field_sep List<Long> roids concode_elem_sep Boolean deep concode_elem_sep List<Long> oids concode_elem_sep Boolean sync concode_elem_sep Long serializerOid concode_field_sep Long getSerializerOid concode_elem_sep void setDeep concode_elem_sep void setSerializerOid concode_e... |
int function ( ) { return getFirst ( ) + getCount ( ) - 1 ; } | gets number of last item concode_field_sep int count concode_elem_sep int first concode_field_sep boolean contains concode_elem_sep int getFirst concode_elem_sep int getCount |
void function ( Boolean arg0 ) { this . isSpecial = arg0 ; } | sets the value of the isspecial property . concode_field_sep String vipClass concode_elem_sep String planType concode_elem_sep Boolean epsIndicator concode_elem_sep Boolean isRJ11 concode_elem_sep Boolean expiredDataPassStatus concode_elem_sep Boolean isTakeControlInd concode_elem_sep long serialVersionUID concode_elem... |
void function ( int arg0 ) { if ( arg0 < PROFILE_COUNT ) { mProfiles [ arg0 ] . start ( SystemClock . uptimeMillis ( ) ) ; } } | starts recording execution time for a specific profile type . concode_field_sep int PROFILE_FRAME concode_elem_sep ProfileRecorder sSingleton concode_elem_sep long mMinTime concode_elem_sep ProfileRecord[] mProfiles concode_elem_sep int PROFILE_SIM concode_elem_sep int mFrameCount concode_elem_sep long mTotalTime conco... |
boolean function ( ) { return ERXProperties . booleanForKey ( "srini_string" ) ; } | is mail turned on concode_field_sep ERCMailDelivery _sharedInstance concode_elem_sep Logger log concode_field_sep ERCMailMessage composeEmail concode_elem_sep ERCMailDelivery sharedInstance concode_elem_sep ERCMailMessage composeComponentEmail concode_elem_sep ERCMailMessage composeComponentEmail concode_elem_sep ERCMa... |
LongValue function ( ) { return pop ( ) . longValue ( ) ; } | pops the top longvalue from the stack . concode_field_sep TopValue TOP_VALUE concode_elem_sep Value[] values concode_elem_sep int actualMaxSize concode_elem_sep int currentSize concode_field_sep DoubleValue dpop concode_elem_sep Value getBottom concode_elem_sep Value pop concode_elem_sep void setTop concode_elem_sep in... |
Builder function ( LibraryToLink arg0 ) { librariesBuilder . add ( arg0 ) ; return this ; } | adds a library artifact . concode_field_sep ImmutableList.Builder<String> localLinkoptsBuilder concode_elem_sep ExtraLinkTimeLibraries extraLinkTimeLibraries concode_elem_sep boolean built concode_elem_sep NestedSet<LibraryToLink> libraries concode_elem_sep NestedSetBuilder<LibraryToLink> librariesBuilder concode_elem_... |
void function ( OutputStream arg0 , String arg1 ) { encode ( arg0 , arg1 , new Indenter ( 0 ) ) ; } | encodes this attributevalue into its xml representation and writes this encoding to the given outputstream with no indentation . this will always produce the version used in a policy rather than that used in a request , so this is equivalent to calling encodewithtags true and then stuffing that into a stream . concode_... |
int function ( ) { return mMaxPacketSize ; } | returns the endpoint 's maximum packet size . concode_field_sep int mAddress concode_elem_sep int mAttributes concode_elem_sep Parcelable.Creator<UsbEndpoint> CREATOR concode_elem_sep int mMaxPacketSize concode_elem_sep int mInterval concode_field_sep int getInterval concode_elem_sep int getAttributes concode_elem_sep ... |
Short function ( byte [ ] arg0 , TFieldIdEnum arg1 , TFieldIdEnum ... arg2 ) { return ( Short ) partialDeserializeField ( TType . I16 , arg0 , arg1 , arg2 ) ; } | deserialize only an i16 field addressed by recursively using field id from a byte record . concode_field_sep TProtocol protocol_ concode_elem_sep TMemoryInputTransport trans_ concode_field_sep Long partialDeserializeI64 concode_elem_sep Byte partialDeserializeByte concode_elem_sep Integer partialDeserializeI32 concode_... |
void function ( int arg0 ) { LOGLEVEL = arg0 ; Log . i ( "srini_string" , "srini_string" + arg0 ) ; } | set the current log level . 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 function ( String arg0 ) { this . dateTimeString = arg0 ; } | sets date time string . concode_field_sep String date concode_elem_sep String dateTimeString concode_elem_sep String toEmailAddress concode_elem_sep String requestId concode_elem_sep boolean isRecordsAvailable concode_elem_sep String transmissionType concode_elem_sep List<String> institutionCodes concode_elem_sep Strin... |
String function ( ) { return request ; } | gets the value of the request property . concode_field_sep String request concode_field_sep void setRequest |
void function ( String arg0 ) { this . subtype = arg0 ; } | set the font subtype concode_field_sep String subtype concode_elem_sep PDFCMap unicodeMap concode_elem_sep PDFFontDescriptor descriptor concode_elem_sep PDFFontEncoding encoding concode_elem_sep String baseFont concode_elem_sep Map<Character,PDFGlyph> charCache concode_field_sep PDFFontDescriptor getDescriptor concode_... |
void function ( String arg0 ) { this . y = arg0 ; } | sets the value of the y property . concode_field_sep BigDecimal colspan concode_elem_sep BigDecimal colspanS concode_elem_sep BigDecimal rowspan concode_elem_sep String x concode_elem_sep String width concode_elem_sep String y concode_elem_sep String z concode_elem_sep BigDecimal colspanM concode_field_sep void setX co... |
AbstractFeatureModule function ( JsonObject arg0 ) { try { return instanciateFromJson ( arg0 , AbstractFeatureModule . class , FEATURE_MODULE_PACKAGE ) ; } catch ( IllegalArgumentException | InstantiationException | ClassNotFoundException loc0 ) { LOGGER . error ( LogHelper . getStackTrace ( loc0 ) ) ; } return null ; ... | creates a new instance of an exporter as specified by the provided json . concode_field_sep String FEATURE_MODULE_PACKAGE concode_elem_sep String EXPORTER_PACKAGE concode_elem_sep Logger LOGGER concode_field_sep Extractor newExporter concode_elem_sep Class<?>[] getClassArray concode_elem_sep T instanciate concode_elem_... |
FtpDirEntry function ( Date arg0 ) { this . created = arg0 ; return this ; } | sets the creation time for that file . intended mostly to be used from inside a java.net.ftpdirparser implementation . concode_field_sep String user concode_elem_sep Type type concode_elem_sep boolean[][] permissions concode_elem_sep String name concode_elem_sep java.util.Date lastModified concode_elem_sep String group... |
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } | return type metadata object concode_field_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.google.api.ads.dfp.axis.v201408.AdSenseSettings value concode_field_sep com.google.api.ads.dfp.axis.v201408.AdSenseSetti... |
void function ( String arg0 ) { this . securityDescriptorAttr = arg0 ; } | sets the value of the securitydescriptorattr property . concode_field_sep Object parent concode_elem_sep List<String> securityDescriptor concode_elem_sep byte[] password concode_elem_sep Long spinCount concode_elem_sep String securityDescriptorAttr concode_elem_sep byte[] saltValue concode_elem_sep String name concode_... |
boolean function ( T arg0 , T arg1 ) { Node loc0 = find ( arg0 ) ; Node loc1 = find ( arg1 ) ; return ! ( loc0 == null || loc1 == null ) && loc0 . equals ( loc1 ) ; } | returns true if the the two sites are in the same component . concode_field_sep Node parent concode_elem_sep Map<T,Node> nodes concode_elem_sep byte rank concode_elem_sep Collection<Node> children concode_elem_sep Set<Node> roots concode_elem_sep T element concode_field_sep Node getParent concode_elem_sep Set<T> getRoo... |
int function ( String arg0 ) { throw new RuntimeException ( "srini_string" ) ; } | return address reference for specified protoype no way this could ever work . lets see if any code ever tries to call it and see what we can do from there concode_field_sep PlaceHolder placeHolder concode_field_sep Object getPrototype concode_elem_sep Object resolveAddress concode_elem_sep int tie concode_elem_sep int ... |
void function ( ) { System . out . println ( "srini_string" ) ; SPListItem loc0 = null ; List loc1 = null ; SPAttachmentCollection loc2 = loc0 . getAttachments ( ) ; assertNotNull ( loc2 ) ; fail ( "srini_string" ) ; } | test of getattachments method , of class splistitem . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetOwshiddenversion concode_elem_sep void testLoadFromXml concode_elem_sep void setUpClass concode_elem_sep void testGetWebAbsluteUrl concode_elem_sep void testAddAttachment_String_byteArr concode_... |
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; Class [ ] loc1 = method . getParameterTypes ( ) ; for ( int loc2 = 0 ; loc2 < loc1 . length ; loc2 ++ ) { loc0 . append ( rmic . name ( loc1 [ loc2 ] ) ) ; loc0 . append ( "srini_string" + loc2 ) ; if ( loc2 < loc1 . length - 1 ) loc0 . append ( "srini_... | get the method parameter declaration . concode_field_sep SourceRmicCompiler rmic concode_elem_sep Method method concode_field_sep String getArgumentNames concode_elem_sep String generateStubMethod concode_elem_sep String convertStubName concode_elem_sep String getMethodHashCode concode_elem_sep String getThrows concode... |
void function ( PrintStream arg0 , int arg1 ) { for ( int loc0 = 0 ; loc0 < arg1 ; loc0 ++ ) { arg0 . print ( "srini_string" ) ; } } | generate the indentation concode_field_sep OntModel m_model concode_elem_sep Map<AnonId,String> m_anonIDs concode_elem_sep int m_anonCount concode_field_sep void showHierarchy concode_elem_sep void renderRestriction concode_elem_sep void renderURI concode_elem_sep void showClass concode_elem_sep void renderClassDescrip... |
MethodOutcome function ( Boolean arg0 ) { myCreated = arg0 ; return this ; } | if not null , indicates whether the resource was created as opposed to being updated . this is generally not needed , since the server can assume based on the method being called whether the result was a creation or an update . however , it can be useful if you are implementing an update method that does a create if th... |
long function ( ) { throw new UnsupportedOperationException ( ) ; } | unsupported . concode_field_sep BufferedReader reader concode_elem_sep String segment concode_elem_sep String DASH_COMMENT concode_elem_sep String SLASH_COMMENT concode_elem_sep String SEMI concode_field_sep Object next concode_elem_sep void closeReader concode_elem_sep void setValue concode_elem_sep boolean hasNext co... |
void function ( ) { suppressAutoUpdate = false ; } | resumes auto-update undo suppressautoupdate . concode_field_sep int windowSizeMs concode_elem_sep Thread uploadBandwidthUpdater concode_elem_sep long bytesTransferred concode_elem_sep Log LOG concode_elem_sep Date endDate concode_elem_sep boolean suppressAutoUpdate concode_elem_sep int DEFAULT_WINDOW_SIZE_MS concode_el... |
void function ( long arg0 ) { taskMemoryManager . releaseExecutionMemory ( arg0 , this ) ; used -= arg0 ; } | release n bytes of memory . concode_field_sep MemoryMode mode concode_elem_sep TaskMemoryManager taskMemoryManager concode_elem_sep long pageSize concode_elem_sep long used concode_field_sep long getUsed concode_elem_sep void spill concode_elem_sep long spill concode_elem_sep LongArray allocateArray concode_elem_sep Me... |
char function ( final char arg0 ) { if ( ! Character . isLetter ( arg0 ) ) { return 0 ; } return this . soundexMapping [ Character . toUpperCase ( arg0 ) - 'A' ] ; } | returns the mapping code for a given character . the mapping codes are maintained in an internal char array named soundexmapping , and the default values of these mappings are us english . concode_field_sep String US_ENGLISH_MAPPING_STRING concode_elem_sep char[] soundexMapping concode_elem_sep RefinedSoundex US_ENGLIS... |
int function ( Text arg0 , int arg1 , int arg2 ) { if ( this . recordDelimiterBytes != null ) { return readCustomLine ( arg0 , arg1 , arg2 ) ; } else { return readDefaultLine ( arg0 , arg1 , arg2 ) ; } } | read one line 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 bufferSi... |
boolean function ( String arg0 ) { Path loc0 = getKeyDir ( arg0 ) ; boolean loc1 = false ; try { _fs = loc0 . getFileSystem ( _hadoopConf ) ; loc1 = _fs . exists ( loc0 ) ; } catch ( IOException loc2 ) { LOG . warn ( "srini_string" + arg0 ) ; } return loc1 ; } | check if the key exists in the blob store . concode_field_sep String BLOBSTORE_DATA concode_elem_sep TimerTask _cleanup concode_elem_sep int BUCKETS concode_elem_sep Path _fullPath concode_elem_sep FileSystem _fs concode_elem_sep FsPermission BLOBSTORE_DIR_PERMISSION concode_elem_sep long FULL_CLEANUP_FREQ concode_elem... |
boolean function ( ) { return type . equals ( "srini_string" ) ; } | returns the primary . concode_field_sep boolean binary concode_elem_sep String type concode_field_sep boolean isValueReferenceList concode_elem_sep boolean isAlias concode_elem_sep String getType concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean isBinary concode_elem_sep boolean isS... |
TestSuiteLoader function ( ) { if ( useReloadingTestSuiteLoader ( ) ) return new ReloadingTestSuiteLoader ( ) ; return new StandardTestSuiteLoader ( ) ; } | returns the loader to be used . concode_field_sep boolean fgFilterStack concode_elem_sep String SUITE_METHODNAME concode_elem_sep int fgMaxMessageLength concode_elem_sep boolean fLoading concode_elem_sep Properties fPreferences concode_field_sep void addError concode_elem_sep boolean showStackRaw concode_elem_sep void ... |
void function ( ) { store . removeName ( id ) ; } | removes the name of this instance . in pdstore every instance can be given a name . if the instance does not have a name , nothing happens . concode_field_sep GUID roleTypeId concode_elem_sep GUID typeId concode_elem_sep GUID roleWordId concode_elem_sep PDStore store concode_elem_sep GUID id concode_field_sep void setN... |
void function ( Handler arg0 , int arg1 ) { if ( camera != null && previewing ) { previewCallback . setHandler ( arg0 , arg1 ) ; if ( useOneShotPreviewCallback ) { camera . setOneShotPreviewCallback ( previewCallback ) ; } else { camera . setPreviewCallback ( previewCallback ) ; } } } | a single preview frame will be returned to the handler supplied . the data will arrive as byte in the message.obj field , with width and height encoded as message.arg1 and message.arg2 , respectively . concode_field_sep AutoFocusCallback autoFocusCallback concode_elem_sep int MAX_FRAME_HEIGHT concode_elem_sep String TA... |
String function ( ) { return "srini_string" ; } | returns a description for this handler . concode_field_sep String[] SVG_FILE_EXTENSIONS concode_elem_sep String[] SVG_MIME_TYPES concode_field_sep String[] getHandledMimeTypes concode_elem_sep void handle concode_elem_sep String[] getHandledExtensions concode_elem_sep boolean accept concode_elem_sep boolean accept conc... |
int function ( ) { while ( true ) { int loc0 = status . get ( ) ; if ( ( loc0 & STATUS_CLOSED_MASK ) != 0 ) { throw new ClosedChannelException ( ) ; } if ( status . compareAndSet ( loc0 , loc0 | STATUS_CLOSED_MASK ) ) { return loc0 & ( ~ STATUS_CLOSED_MASK ) ; } } } | mark the status as closed . once the status is closed , it can not be reopened . concode_field_sep AtomicInteger status concode_elem_sep int STATUS_CLOSED_MASK concode_field_sep void reference concode_elem_sep int getReferenceCount concode_elem_sep boolean isOpen concode_elem_sep void unreferenceCheckClosed concode_ele... |
Object function ( DocumentRoot arg0 ) { return null ; } | returns the result of interpretting the object as an instance of ` document root ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep EmittersPoolPackage modelPackage concode_field_sep Object doSwitch concode_elem_sep Object doSwitch concode_elem_sep Object do... |
boolean function ( ) { return multiThreaded ; } | should the verticle s be deployed as a multi-threaded worker verticle ? ignored if #isworker is not true . concode_field_sep int DEFAULT_INSTANCES concode_elem_sep boolean DEFAULT_HA concode_elem_sep int instances concode_elem_sep List<String> extraClasspath concode_elem_sep boolean DEFAULT_MULTI_THREADED concode_elem_... |
String function ( String arg0 ) { } | return the top match for given prefix , or null if there is no matching term . concode_field_sep PlaceHolder placeHolder concode_field_sep Iterable<String> topMatches concode_elem_sep Iterable<String> spellCheck concode_elem_sep double weightOf concode_elem_sep void main |
String function ( String arg0 ) { if ( arg0 . startsWith ( "srini_string" ) ) { arg0 = arg0 . substring ( 7 ) ; } return arg0 ; } | removes the `` file : / / '' prefix from the given uri string , if applicable . if the given uri string does n't have a `` file : / / '' prefix , it is returned unchanged . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String getMimeType concode_elem_sep String getRealPath concode_ele... |
String function ( ) { return this . ID ; } | get id value concode_field_sep int LOCAL_CACHE_SIZE concode_elem_sep TableData data concode_elem_sep List<List<TempMetadataID>> keys concode_elem_sep long lastDataModification concode_elem_sep Class<?> type concode_elem_sep boolean accessed concode_elem_sep long cacheHintUpdated concode_elem_sep int modCount concode_el... |
void function ( String arg0 ) { myPublisher = arg0 ; } | sets the value of the `` publisher '' that will be placed in the generated conformance statement . as this is a mandatory element , the value should not be null although this is not enforced . the value defaults to `` not provided '' but may be set to null , which will cause this element to be omitted . concode_field_s... |
void function ( int arg0 ) { this . numWords = arg0 ; } | sets the number of words of the index . concode_field_sep ArrayList firstWordsInBlocks concode_elem_sep ArrayList firstFilesInBlocks concode_elem_sep boolean firstWordAdded concode_elem_sep int numFiles concode_elem_sep IndexedFile indexedFile concode_elem_sep int blockNum concode_elem_sep int numWords concode_elem_sep... |
void function ( ) { for ( String loc0 : VALUES ) mll . add ( loc0 ) ; int loc1 = - 1 ; String loc2 = "srini_string" ; mll . add ( loc1 , loc2 ) ; fail ( "srini_string" ) ; } | 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 ( ServletContextEvent arg0 ) { this . app = null ; } | delete the app concode_field_sep AzkabanWebServer app concode_elem_sep String AZKABAN_SERVLET_CONTEXT_KEY concode_field_sep void contextInitialized |
org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; } | get custom serializer concode_field_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize concode_elem_sep com.google.api.ads.dfp.axis.v2... |
void function ( boolean arg0 ) { this . renderLastName = arg0 ; } | sets the last name column rendered state . concode_field_sep boolean renderFirstName concode_elem_sep boolean multipleSelection concode_elem_sep boolean renderLastName concode_elem_sep boolean renderPhone concode_elem_sep Person[] personsList concode_elem_sep List selectedRows concode_elem_sep String scrollableHeight c... |
void function ( LDAPTenantManager arg0 ) { if ( tenantManagers == null ) { tenantManagers = new HashMap < Integer , LDAPTenantManager > ( ) ; } tenantManagers . put ( arg0 . hashCode ( ) , arg0 ) ; } | main purpose of this method is to make a dependency to ldap server component . then ldap server bundle will get started before user core . in addition this method can be used to register all tenant managers . concode_field_sep Map<Integer,UserStoreManagerListener> userStoreManagerListeners concode_elem_sep Map<Integer,... |
void function ( String arg0 ) { impl . setPassword ( arg0 ) ; } | sets the password to use to connect to the asterisk server . this is the password specified in asterisk 's manager.conf file . concode_field_sep ManagerConnectionImpl impl concode_field_sep void setSocketTimeout concode_elem_sep int getLocalPort concode_elem_sep void setHostname concode_elem_sep void setSsl concode_ele... |
Builder function ( ) { this . showHeader = true ; return this ; } | whether to show column headers in table output . this is the default . concode_field_sep int wrapWidth concode_elem_sep int wrapWidth concode_elem_sep LinkedList<Column> columns concode_elem_sep int numRows concode_elem_sep boolean showHeader concode_elem_sep Column columns[] concode_elem_sep Justification justificatio... |
boolean function ( ) { return getInstance ( ) . inContainer ; } | gets flag if we are executing inside a servlet container concode_field_sep long MaxUnusedTime concode_elem_sep HelperSinglton theHelperSingleton concode_elem_sep boolean inContainer concode_elem_sep DBConnectionPool theOne concode_elem_sep IdentityHashMap<Connection,Date> openConnections concode_elem_sep String dbHost ... |
void function ( EC2InstanceType arg0 ) { this . instanceType = arg0 . toString ( ) ; } | type of ec2 instances used in the fleet . ec2 instance types define the cpu , memory , storage , and networking capacity of the fleetaposs hosts . amazon gamelift supports the ec2 instance types listed below . see amazon ec2 instance types for detailed descriptions of each . concode_field_sep EC2InstanceCounts instance... |
void function ( String arg0 ) { this . id = arg0 ; } | this sets the id concode_field_sep List<String> requiredFields concode_elem_sep List<String> subTypes concode_elem_sep String id concode_elem_sep Map<String,Property> properties concode_elem_sep List<String> optionalFields concode_elem_sep String discriminator concode_field_sep List<String> getSubTypes concode_elem_sep... |
void function ( final ShaderProgram arg0 ) { unbind ( arg0 , null ) ; } | unbinds this vertexbufferobject . concode_field_sep int usage concode_elem_sep boolean isBound concode_elem_sep VertexAttributes attributes concode_elem_sep int bufferHandle concode_elem_sep FloatBuffer buffer concode_elem_sep ByteBuffer byteBuffer concode_elem_sep boolean ownsBuffer concode_elem_sep boolean isDirty co... |
String function ( ) { return this . label ; } | the voice label , used for gui 's or vui 's concode_field_sep String label concode_elem_sep Locale locale concode_field_sep String getUID concode_elem_sep Locale getLocale |
void function ( Body arg0 ) { pm . displayStatus ( arg0 ) ; } | select body concode_field_sep UnitWorks uw concode_elem_sep TurnManager tm concode_elem_sep MapWorks mw concode_elem_sep StageMap map concode_elem_sep PanelManager pm concode_field_sep void cancel concode_elem_sep void setSelectPlace concode_elem_sep boolean isNextPoint concode_elem_sep void gotoWalk concode_elem_sep v... |
String function ( ) { return TestSuiteEnvironment . getHttpAddress ( ) ; } | returns the address for undertow to bind to . concode_field_sep Class<?>[] DEPENDENCIES concode_elem_sep String DEFAULT_RESPONSE concode_elem_sep HttpHandler DEFAULT_HANDLER concode_field_sep int getPort concode_elem_sep void activate concode_elem_sep ServiceName getServiceName concode_elem_sep void handleRequest conco... |
String function ( ) { return region ; } | a service may expose endpoints in different regions . regional endpoints allow clients to provision resources in a manner that provides high availability . note some services are not region-specific . these services supply a single non-regional endpoint and do not provide access to internal urls . concode_field_sep boo... |
Session function ( int arg0 ) { return ( Session ) sessionMap . get ( arg0 ) ; } | retrieves the session with the specified session identifier or null if no such session is registered with this sessionmanager . concode_field_sep int sessionIdCount concode_elem_sep IntKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void removeSession concode_elem_sep Session newSession conc... |
void function ( float arg0 ) { jniSetRadius ( addr , arg0 ) ; } | sets the radius of this shape concode_field_sep long addr concode_field_sep void jniSetRadius concode_elem_sep void jniDispose concode_elem_sep Type getType concode_elem_sep float jniGetRadius concode_elem_sep void dispose concode_elem_sep float getRadius |
void function ( String arg0 ) { this . targetingSiteName = arg0 ; } | sets the value of the targetingsitename property . concode_field_sep String targetingDescription concode_elem_sep String siteTargetingInfoType concode_elem_sep String targetingSiteName concode_elem_sep String targetingAdLocation concode_field_sep void setTargetingAdLocation concode_elem_sep String getTargetingAdLocatio... |
void function ( String arg0 ) { this . username = arg0 ; } | sets the value of the username property . concode_field_sep String resetUrl concode_elem_sep String username concode_field_sep void setResetUrl concode_elem_sep String getResetUrl concode_elem_sep String getUsername |
int function ( ) { if ( server . httpPort ( ) . isDefined ( ) ) { return Int . unbox ( server . httpPort ( ) . get ( ) ) ; } else { throw new IllegalStateException ( "srini_string" ) ; new Server . Builder ( ) . http ( num > "srini_string" ) ; } } | get the http port the server is running on . throws illegalstateexception if it is not running on the http protocol concode_field_sep play.core.server.Server server concode_elem_sep Server.Config _config concode_elem_sep Map<Protocol,Integer> _ports concode_elem_sep Mode _mode concode_field_sep Optional<Integer> maybeH... |
void function ( java . util . Date arg0 ) { this . notAfter = arg0 ; } | the latest scheduled end time for the event . concode_field_sep java.util.Date notAfter concode_elem_sep String code concode_elem_sep String description concode_elem_sep java.util.Date notBefore concode_field_sep InstanceStatusEvent withNotBefore concode_elem_sep void setCode concode_elem_sep void setCode concode_elem_... |
String function ( ) { return this . format ; } | the project format to use . ignored if a type is set . can be used alongside the #getbuild build to identify the type to use . concode_field_sep String bootVersion concode_elem_sep String javaVersion concode_elem_sep String groupId concode_elem_sep String format concode_elem_sep String description concode_elem_sep Stri... |
java . util . List < T > function ( scala . collection . Seq < T > arg0 ) { return scala . collection . JavaConverters . seqAsJavaListConverter ( arg0 ) . asJava ( ) ; } | converts a scala list to java . concode_field_sep PlaceHolder placeHolder concode_field_sep T[] asArray concode_elem_sep scala.collection.Seq<T> emptySeq concode_elem_sep RuntimeException noMatch concode_elem_sep scala.reflect.ClassTag<C> classTag concode_elem_sep T orElse concode_elem_sep scala.collection.immutable.Ma... |
void function ( ShardId arg0 , Settings arg1 ) { } | called before the index shard gets deleted from disk note : this method is only executed on the first attempt of deleting the shard . retries are will not invoke this method . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterIndexCreated concode_elem_sep void beforeIndexShardClosed concode_elem_sep... |
boolean function ( State arg0 ) { switch ( arg0 ) { case main_region_A : return stateVector [ 0 ] == State . main_region_A ; case main_region_B : return stateVector [ 0 ] == State . main_region_B ; case main_region_C : return stateVector [ 0 ] == State . main_region_C ; default : return false ; } } | returns true if the given state is currently active otherwise false . concode_field_sep boolean c concode_elem_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean f concode_elem_sep boolean g concode_elem_sep boolean h concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVec... |
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . dynamicQueryCount ( arg0 ) ; } | returns the number of rows matching the dynamic query . concode_field_sep SVNRevisionLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.socialcoding.model.SVNRevision getFirstSVNRevision concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery... |
int function ( int arg0 , long arg1 , int arg2 ) { int loc0 = getBitsPerValue ( arg0 ) ; int loc1 = 0 ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 |= ( arg1 >> ( arg2 + ( arg0 - 1 ) * loc2 ) ) & ( 1L << loc2 ) ; } return loc1 ; } | gets one of the original multi-dimensional values from a scalar value . concode_field_sep MultiDimension INSTANCE concode_field_sep int compare concode_elem_sep int getMaxValue concode_elem_sep void combineEntries concode_elem_sep int findMiddle concode_elem_sep void addMortonRanges concode_elem_sep long[][] getMortonR... |
void function ( ) { } | create the initial symbol table . this can be overridden to enter keywords , for example . the default implementation does nothing . concode_field_sep int state concode_elem_sep HashMap<Symbol,Symbol> symbolTable concode_elem_sep boolean scanning concode_elem_sep int gap concode_elem_sep int start concode_elem_sep int ... |
String function ( ) { return this . excelFileURL ; } | gets the excel file url . concode_field_sep String excelFileURL concode_elem_sep long DEFAULTMEMCPYSETUPTIME concode_elem_sep Timing defaultTiming concode_elem_sep float DEFAULTMEMCPYTIMEPERUNIT concode_elem_sep List<Timing> timings concode_elem_sep Map<String,MemCopySpeed> memcpySpeeds concode_field_sep Map<String,Mem... |
void function ( DataInputStream arg0 ) { properties = new Properties ( ) ; properties . decode ( arg0 ) ; int loc0 = arg0 . readInt ( ) ; if ( loc0 < 0 ) throw new IOException ( "srini_string" ) ; if ( Configuration . DEBUG ) log . fine ( "srini_string" + this ) ; payload = new byte [ loc0 ] ; arg0 . readFully ( payloa... | generic decoding method , which simply decodes the properties field and reads the payload field . concode_field_sep String[] TYPES concode_elem_sep byte[] payload concode_elem_sep Logger log concode_elem_sep int type concode_elem_sep Properties properties concode_field_sep void encode concode_elem_sep byte[] getPayload... |
void function ( ) { List < Person > loc0 = new ArrayList < > ( ) ; loc0 . add ( new Person ( "srini_string" , 34 , "srini_string" ) ) ; loc0 . add ( new Person ( "srini_string" , 35 , "srini_string" ) ) ; Observable . just ( loc0 ) . flatMap ( Observable :: from ) . subscribe ( this :: showResult , System . out :: prin... | we emmit all items from the observable source after apply a function , in this case create a new observable of person . emitted : person name = ` pablo ' , age = 34 , sex = ` male ' person name = ` paula ' , age = 35 , sex = ` female ' concode_field_sep int count concode_elem_sep String result concode_field_sep void te... |
String function ( ) { return sendTo ; } | getter method for the sende to concode_field_sep Integer templetId concode_elem_sep String agentId concode_elem_sep Integer customerType concode_elem_sep String sendTo concode_elem_sep Date endDate concode_elem_sep String templetType concode_elem_sep long serialVersionUID concode_elem_sep String circleID concode_elem_s... |
List < String > function ( File arg0 ) { try { List < String > loc0 = new ArrayList < String > ( ) ; BufferedReader loc1 = new BufferedReader ( new FileReader ( arg0 ) ) ; for ( String loc2 = null ; ( loc2 = loc1 . readLine ( ) ) != null ; ) loc0 . add ( loc2 ) ; loc1 . close ( ) ; return loc0 ; } catch ( IOException l... | loads each line of the file as a list of strings . concode_field_sep Map<String,String> HTML_CODES concode_elem_sep Map<String,String> LATIN1_CODES concode_field_sep Set<String> loadFileAsSet concode_elem_sep String unescapeHTML concode_elem_sep void unescapeHTML |
Integer function ( ) { return raProperty ; } | get property concode_field_sep long serialVersionUID concode_elem_sep Integer raProperty concode_elem_sep Map<ValidActivationSpec,ValidActivation> activations concode_field_sep void endpointActivation concode_elem_sep void stop concode_elem_sep int hashCode concode_elem_sep void endpointDeactivation concode_elem_sep bo... |
void function ( ) { Counter loc0 = new Counter ( ) ; loc0 . set ( 1123 ) ; assertEquals ( 1123 , loc0 . cnt ( ) ) ; } | test method for org.apache.niolex.commons.test.counter #cnt . concode_field_sep PlaceHolder placeHolder concode_field_sep void testInc |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.