idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
21,500
method to select a worker given it 's string representation concode_field_sep ImageGridBuffer imageBuffer concode_elem_sep boolean configured concode_elem_sep boolean showStatus concode_elem_sep CountDownLatch latch concode_elem_sep Iterator<Integer> sliceList concode_field_sep void setSliceList concode_elem_sep void w...
SliceWorker function ( String arg0 ) { SliceWorker loc0 = null ; SliceWorker [ ] loc1 = getAvailableSliceWorkers ( ) ; for ( SliceWorker loc2 : loc1 ) { if ( loc2 . toString ( ) . equals ( arg0 ) ) loc0 = loc2 ; } return loc0 ; }
21,501
returns a new builder for an immutable range map . concode_field_sep long serialVersionUID concode_elem_sep List<Map.Entry<Range<K>,V>> entries concode_elem_sep ImmutableRangeMap<Comparable<?>,Object> EMPTY concode_elem_sep ImmutableList<Range<K>> ranges concode_elem_sep ImmutableList<V> values concode_elem_sep Immutab...
Builder < K , V > function ( ) { return new Builder < K , V > ( ) ; }
21,502
returns the spring bean id for this bean . concode_field_sep LegacydbService _legacydbService concode_field_sep void setWrappedService concode_elem_sep java.lang.Object invokeMethod concode_elem_sep LegacydbService getWrappedService concode_elem_sep LegacydbService getWrappedLegacydbService concode_elem_sep void setWra...
java . lang . String function ( ) { return _legacydbService . getBeanIdentifier ( ) ; }
21,503
draws a line between the given coordinates using the currently set color . concode_field_sep Blending blending concode_elem_sep Gdx2DPixmap pixmap concode_elem_sep boolean disposed concode_elem_sep int color concode_field_sep int getGLFormat concode_elem_sep int toGlType concode_elem_sep void drawPixmap concode_elem_se...
void function ( int arg0 , int arg1 , int arg2 , int arg3 ) { pixmap . drawLine ( arg0 , arg1 , arg2 , arg3 , color ) ; }
21,504
returns a reader object that contains a partial clob value , starting with the character specified by pos , which is length characters in length . concode_field_sep ClobDataID clob concode_elem_sep boolean isClosed concode_elem_sep SessionInterface session concode_field_sep Writer setCharacterStream concode_elem_sep in...
Reader function ( long arg0 , long arg1 ) { return new ClobInputStream ( this , arg0 - 1 , arg1 , session . getStreamBlockSize ( ) ) ; }
21,505
pre : pass ! = null post : establece el pass . concode_field_sep String mail concode_elem_sep String pass concode_field_sep String toJson concode_elem_sep String getPass concode_elem_sep void setMail concode_elem_sep DatosLogin fromJson concode_elem_sep String getMail
void function ( String arg0 ) { this . pass = arg0 ; }
21,506
adds a collection of aspects to the review . concode_field_sep List<Aspect> aspects concode_elem_sep String author concode_elem_sep String authorUrl concode_elem_sep int rating concode_elem_sep String text concode_elem_sep long time concode_elem_sep String lang concode_elem_sep String type concode_field_sep String getL...
Review function ( Collection < Aspect > arg0 ) { this . aspects . addAll ( arg0 ) ; return this ; }
21,507
gets the value of the violatingtext property . concode_field_sep String policyName concode_elem_sep String violatingText concode_field_sep void setViolatingText concode_elem_sep void setPolicyName concode_elem_sep String getPolicyName
String function ( ) { return violatingText ; }
21,508
getters y setters concode_field_sep int codigo concode_elem_sep int error concode_elem_sep DbManager db concode_field_sep void setError concode_elem_sep void ejecutar
int function ( ) { return error ; }
21,509
this implementation returns true by default allowing other interceptorsto be given a chance to handle the timeout . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterCompletion concode_elem_sep void beforeConcurrentHandling concode_elem_sep void preProcess concode_elem_sep void postProcess
boolean function ( NativeWebRequest arg0 , DeferredResult < T > arg1 ) { return true ; }
21,510
returns the number of bytes that will be written to out in a callto #writeto , or -1 if that count is unknown . concode_field_sep RawHeaders headers concode_elem_sep String method concode_elem_sep RawHeaders headers concode_elem_sep String method concode_elem_sep Object tag concode_elem_sep Body body concode_elem_sep U...
long function ( ) { return - 1 ; }
21,511
filters for documents that contain all of the given keywords and projects the records on the url field . output format : 0 : url 1 : document_text concode_field_sep int RANKFILTER concode_elem_sep String visitsPath concode_elem_sep String[] KEYWORDS concode_elem_sep String ranksPath concode_elem_sep String documentsPat...
boolean function ( Tuple2 < String , String > arg0 ) { String loc0 = arg0 . f1 ; for ( String loc1 : KEYWORDS ) { if ( ! loc0 . contains ( loc1 ) ) { return false ; } } return true ; }
21,512
write a collection of genesequences to a file where if the gene is negative strand it will flip and complement the sequence concode_field_sep PlaceHolder placeHolder concode_field_sep void writeProteinSequence concode_elem_sep void writeProteinSequence concode_elem_sep void writeSequence concode_elem_sep void writeSequ...
void function ( OutputStream arg0 , Collection < GeneSequence > arg1 , boolean arg2 ) { FastaGeneWriter loc0 = new FastaGeneWriter ( arg0 , arg1 , new GenericFastaHeaderFormat < GeneSequence , NucleotideCompound > ( ) , arg2 ) ; loc0 . process ( ) ; }
21,513
get the list of exception handlers codeexceptiongen objects which are specified to handle exceptions for the instruction whose handle is given . note that the handlers in the returned list are in order of priority , as defined in the method 's exception handler table . concode_field_sep IdentityHashMap<InstructionHandl...
List < CodeExceptionGen > function ( InstructionHandle arg0 ) { return codeToHandlerMap . get ( arg0 ) ; }
21,514
converts b to hex string . concode_field_sep Logger logger concode_elem_sep char[] toHex concode_field_sep String calculateResponse concode_elem_sep String H concode_elem_sep String KD
String function ( byte arg0 [ ] ) { int loc0 = 0 ; char [ ] loc1 = new char [ arg0 . length * 2 ] ; for ( int loc2 = 0 ; loc2 < arg0 . length ; loc2 ++ ) { loc1 [ loc0 ++ ] = toHex [ ( arg0 [ loc2 ] >> 4 ) & 0x0F ] ; loc1 [ loc0 ++ ] = toHex [ arg0 [ loc2 ] & 0x0f ] ; } return new String ( loc1 ) ; }
21,515
get the realm associated with the usernametoken parameter concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
String function ( UsernameToken arg0 ) { if ( "srini_string" . equals ( arg0 . getName ( ) ) ) { return "srini_string" ; } return null ; }
21,516
extracts comment from a string of the form `` entity.property comment '' . concode_field_sep String PARTIAL concode_elem_sep String GROUPS_SRC concode_elem_sep HashMap<String,String> pagenames concode_elem_sep String YES concode_elem_sep MetaEntityList entityList concode_elem_sep String SUPPORT_SRC concode_elem_sep Has...
String function ( String arg0 ) { int loc0 = arg0 . indexOf ( "srini_string" ) ; if ( loc0 < 0 ) return "srini_string" ; return arg0 . substring ( loc0 + 1 ) . trim ( ) ; }
21,517
can be used to set the internal initialized member to false and then call initialize again to re-initialize the dal layer . concode_field_sep DalLayerInitializer instance concode_elem_sep Logger log concode_elem_sep boolean initialized concode_field_sep boolean isInitialized concode_elem_sep DalLayerInitializer getInst...
void function ( boolean arg0 ) { this . initialized = arg0 ; }
21,518
gets number of first item concode_field_sep int count concode_elem_sep int first concode_field_sep boolean contains concode_elem_sep int getLast concode_elem_sep int getCount
int function ( ) { return first ; }
21,519
implementation of pbkdf2 rfc2898 . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
byte [ ] function ( String arg0 , byte [ ] arg1 , byte [ ] arg2 , int arg3 , int arg4 ) { Mac loc0 = Mac . getInstance ( arg0 ) ; loc0 . init ( new SecretKeySpec ( arg1 , arg0 ) ) ; byte [ ] loc1 = new byte [ arg4 ] ; pbkdf2 ( loc0 , arg2 , arg3 , loc1 , arg4 ) ; return loc1 ; }
21,520
set buffer to management buffer . concode_field_sep ByteBuffer fragmentBuf concode_field_sep void init concode_elem_sep ByteBuffer getBuffer
void function ( ByteBuffer arg0 ) { this . fragmentBuf = ByteBuffer . allocate ( arg0 . limit ( ) - arg0 . position ( ) ) ; this . fragmentBuf . put ( arg0 ) ; }
21,521
gets the value of the ipaddress property . concode_field_sep String dnsAddress concode_elem_sep String ipAddress concode_field_sep void setIPAddress concode_elem_sep String getDNSAddress concode_elem_sep void setDNSAddress
String function ( ) { return ipAddress ; }
21,522
duplicated here to take ctclass instead of class concode_field_sep CoreMessageLogger log concode_field_sep CtMethod getterOrNull concode_elem_sep boolean hasAnnotation concode_elem_sep boolean hasAnnotation concode_elem_sep String inferFieldTypeName concode_elem_sep AccessType getAccessTypeOrNull concode_elem_sep Acces...
CtField function ( CtClass arg0 , String arg1 ) { if ( arg0 == null ) { return null ; } try { return arg0 . getField ( arg1 ) ; } catch ( NotFoundException loc1 ) { try { return findFieldOrNull ( arg0 . getSuperclass ( ) , arg1 ) ; } catch ( NotFoundException loc0 ) { return null ; } } }
21,523
removes a city form the this trip concode_field_sep ArrayList<String> cities concode_field_sep String toString concode_elem_sep void reverse concode_elem_sep void addCity
void function ( String arg0 ) { cities . remove ( arg0 ) ; }
21,524
sets the last name for this student . concode_field_sep int studentId concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep String address concode_elem_sep boolean uiToggle concode_elem_sep Set<Course> courses concode_field_sep void setCourses concode_elem_sep int getStudentId concode_elem...
void function ( String arg0 ) { this . lastName = arg0 ; }
21,525
is this a verbose deposit ? concode_field_sep String failedPackageDir concode_elem_sep boolean mediated concode_elem_sep int maxUploadSize concode_elem_sep Logger log concode_elem_sep boolean verbose concode_elem_sep String swordBundle concode_elem_sep ConfigurationService configurationService concode_elem_sep Bitstrea...
boolean function ( ) { return verbose ; }
21,526
get servlet context . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep Object getElValue concode_elem_sep Object getManagedBean concode_elem_sep String getJsfEl concode_elem_sep void resetManagedBean concode_elem_sep void...
ServletContext function ( ) { return ( ServletContext ) FacesContext . getCurrentInstance ( ) . getExternalContext ( ) . getContext ( ) ; }
21,527
rubrics concode_field_sep boolean feedbackShowStudentScore concode_elem_sep String keywords concode_elem_sep boolean feedbackShowGraderComment concode_elem_sep boolean collectSectionMetadata concode_elem_sep boolean displayNumberingContinuous concode_elem_sep boolean feedbackShowQuestion concode_elem_sep boolean feedba...
void function ( String arg0 ) { this . rubrics = arg0 ; }
21,528
send message : drag motion ended - card is no longer being dragged concode_field_sep Game game concode_elem_sep TableView gui concode_elem_sep Send send concode_elem_sep ClientController controller concode_field_sep Pair<ArrayList<Droppable>,ArrayList<Button>> getLayouts concode_elem_sep void popMessage concode_elem_se...
void function ( int arg0 ) { ServerConnection . getConnection ( ) . send ( new Message ( new EndDraggableMotionAction ( arg0 ) ) ) ; }
21,529
method to get registryservice . concode_field_sep String umOracleUser concode_elem_sep RealmService realmService concode_elem_sep RegistryService registryService concode_elem_sep String identityOracleUser concode_elem_sep TenantRegistryLoader tenantRegLoader concode_field_sep void setTenantRegLoader concode_elem_sep Te...
RegistryService function ( ) { return registryService ; }
21,530
reinitialise . concode_field_sep int bufpos concode_elem_sep boolean prevCharIsLF concode_elem_sep int bufsize concode_elem_sep int available concode_elem_sep int tabSize concode_elem_sep java.io.Reader inputStream concode_elem_sep int line concode_elem_sep int bufcolumn[] concode_elem_sep int bufline[] concode_elem_se...
void function ( java . io . InputStream arg0 ) { ReInit ( arg0 , 1 , 1 , 4096 ) ; }
21,531
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 ; }
21,532
return true if the given content-type header means form_encoded . concode_field_sep String OAUTH_SIGNATURE concode_elem_sep String OAUTH_TIMESTAMP concode_elem_sep String CONSUMER_KEY_UNKNOWN concode_elem_sep String OAUTH_CONSUMER_KEY concode_elem_sep String OAUTH_TOKEN concode_elem_sep String SIGNATURE_METHOD_REJECTED...
boolean function ( String arg0 ) { if ( arg0 == null ) { return false ; } int loc0 = arg0 . indexOf ( "srini_string" ) ; if ( loc0 >= 0 ) { arg0 = arg0 . substring ( 0 , loc0 ) ; } return FORM_ENCODED . equalsIgnoreCase ( arg0 . trim ( ) ) ; }
21,533
called when the polling concluded with an error . concode_field_sep PlaceHolder placeHolder concode_field_sep void fireBeforePolling concode_elem_sep ExtensionList<SCMPollListener> all concode_elem_sep void firePollingFailed concode_elem_sep void onBeforePolling concode_elem_sep void firePollingSuccess concode_elem_sep...
void function ( AbstractProject < ? , ? > arg0 , TaskListener arg1 , Throwable arg2 ) { }
21,534
helper method that sets the path to the image file into provided bundle concode_field_sep String REQUEST_CODE concode_elem_sep String IMAGE_PATHNAME concode_elem_sep Message mMessage concode_elem_sep String IMAGE_URL concode_elem_sep String DIRECTORY_PATHNAME concode_field_sep int getResultCode concode_elem_sep void se...
void function ( Bundle arg0 , String arg1 ) { arg0 . putString ( IMAGE_PATHNAME , arg1 ) ; }
21,535
writes a data-record to the file . note that data must have same number of elements as the header had . concode_field_sep int nbrCols concode_elem_sep int nbrRows concode_elem_sep String newline concode_elem_sep OutputStreamWriter writer concode_field_sep void writeHeader concode_elem_sep String toCsvValue concode_elem...
void function ( String [ ] arg0 ) { doWriteData ( arg0 ) ; }
21,536
sets the value of the type property . concode_field_sep List<ProcedureType> procedure concode_elem_sep String type concode_field_sep String getType concode_elem_sep List<ProcedureType> getProcedure
void function ( String arg0 ) { this . type = arg0 ; }
21,537
returns the unqualified this variable for the receiver , if the surrounding method is an instance method . concode_field_sep E node concode_elem_sep IEclipseVariableQuery tac concode_field_sep TypeVariable typeVariable concode_elem_sep Variable targetVariable concode_elem_sep List<Variable> variables concode_elem_sep T...
ThisVariable function ( ) { return tac . thisVariable ( ) ; }
21,538
todo concode_field_sep long st_objectsteals concode_elem_sep int st_hash_len concode_elem_sep int st_cur_maxid concode_elem_sep int st_maxobjects concode_elem_sep long st_maxlsteals concode_elem_sep int st_partitions concode_elem_sep long st_part_max_nowait concode_elem_sep long st_objs_wait concode_elem_sep int st_nlo...
long function ( ) { return st_objs_nowait ; }
21,539
returns the responsible person 's e-mail . concode_field_sep String responsiblePerson concode_elem_sep int expireTime concode_elem_sep long minimumTtl concode_elem_sep long serial concode_elem_sep int refreshTime concode_elem_sep String primaryNameServer concode_elem_sep int retryTime concode_field_sep int expireTime c...
String function ( ) { return responsiblePerson ; }
21,540
gets the value of the givenname 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 givenname property . for example , to add a new item , d...
List < I18NNonEmptyStringType > function ( ) { if ( givenName == null ) { givenName = new ArrayList < I18NNonEmptyStringType > ( ) ; } return this . givenName ; }
21,541
getter method for the subcatdetails concode_field_sep int subSubCatId concode_elem_sep int subCatId concode_elem_sep long serialVersionUID concode_elem_sep String caseType concode_elem_sep String description concode_elem_sep int callBackTemplateID concode_elem_sep List caseTypeDetails concode_elem_sep int educationalTe...
List function ( ) { return subCatDetails ; }
21,542
return the sql type of the parameter . concode_field_sep int sqlType concode_elem_sep String name concode_elem_sep String typeName concode_elem_sep Integer scale concode_field_sep List<SqlParameter> sqlTypesToAnonymousParameterList concode_elem_sep String getName concode_elem_sep boolean isInputValueProvided concode_el...
int function ( ) { return this . sqlType ; }
21,543
the status of the running task . only available if taskinfos were build with the detailed flag . concode_field_sep ConstructingObjectParser<TaskInfo,Void> PARSER concode_elem_sep TaskId parentTaskId concode_elem_sep String action concode_elem_sep String description concode_elem_sep long startTime concode_elem_sep Strin...
Task . Status function ( ) { return status ; }
21,544
called whenever the osgi framework starts our bundle concode_field_sep Logger logger concode_field_sep void stop
void function ( BundleContext arg0 ) { logger . debug ( "srini_string" ) ; }
21,545
creates an empty synchronousqueue with nonfair access policy . concode_field_sep PlaceHolder placeHolder concode_field_sep ConcurrentLinkedQueue<E> newConcurrentLinkedQueue concode_elem_sep ConcurrentLinkedQueue<E> newConcurrentLinkedQueue concode_elem_sep PriorityBlockingQueue<E> newPriorityBlockingQueue concode_elem_...
SynchronousQueue < E > function ( ) { return new SynchronousQueue < E > ( ) ; }
21,546
attempts to completely read the contents of a specified file . the file is closed whether or not the read was successful . concode_field_sep PlaceHolder placeHolder concode_field_sep void writeText concode_elem_sep void writeText concode_elem_sep void writeText concode_elem_sep Vector<String> readText concode_elem_sep ...
byte [ ] function ( String arg0 ) { return readFully ( SecurityUtil . newFileInputStream ( arg0 ) ) ; }
21,547
add an attribute to this node , replacing any existing attribute with the same name . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_elem_sep String findAttri...
void function ( String arg0 , String arg1 ) { if ( attributes == null ) attributes = new HashMap ( ) ; attributes . put ( arg0 , arg1 ) ; }
21,548
sets the value of the label property . concode_field_sep String image concode_elem_sep String code concode_elem_sep Boolean visible concode_elem_sep Langs langs concode_elem_sep String style concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep String label concode_elem_sep Integer position c...
void function ( String arg0 ) { this . label = arg0 ; }
21,549
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 , String arg1 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 ) ; }
21,550
set the number of rows concode_field_sep long serialVersionUID concode_elem_sep int vgap concode_elem_sep int rows concode_elem_sep int cols concode_elem_sep int hgap concode_field_sep Dimension preferredLayoutSize concode_elem_sep void setColumns concode_elem_sep void removeLayoutComponent concode_elem_sep int getHgap...
void function ( int arg0 ) { if ( arg0 < 0 ) throw new IllegalArgumentException ( "srini_string" ) ; if ( arg0 == 0 && cols == 0 ) throw new IllegalArgumentException ( "srini_string" ) ; this . rows = arg0 ; }
21,551
write to a log file with three concurrent threads and verifying all data is written . concode_field_sep String walProvider concode_elem_sep HBaseTestingUtility TEST_UTIL concode_elem_sep Configuration CONF concode_elem_sep Log LOG concode_elem_sep DistributedFileSystem FS concode_field_sep void testMoreRegionsThanBound...
void function ( ) { int loc0 = WALPerformanceEvaluation . innerMain ( new Configuration ( CONF ) , new String [ ] { "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" } ) ; assertEquals ( 0 , loc0 ) ; }
21,552
store multiple key : value pair . provided for parallelism with the getproperty method . enforces use of strings for property keys and values . concode_field_sep String[] initProps concode_elem_sep int INITIAL_SIZE concode_elem_sep Vector vals concode_elem_sep Vector keys concode_field_sep String getProperty concode_el...
void function ( String arg0 , String arg1 ) { if ( keys == null ) { convertInitPropsToVectors ( ) ; } keys . addElement ( arg0 ) ; vals . addElement ( arg1 ) ; return ; }
21,553
randomly shuffles the current deck once concode_field_sep ArrayList<Card> cards concode_elem_sep boolean hasJokers concode_elem_sep long serialVersionUID concode_field_sep Deck splitDeck concode_elem_sep void addCard concode_elem_sep Card removeCard concode_elem_sep void stackDeck concode_elem_sep String toString conco...
void function ( ) { Collections . shuffle ( cards ) ; }
21,554
wait for a condition to become satisfied . concode_field_sep Long PROVISION_TIMEOUT concode_elem_sep ExecutorService EXECUTOR concode_field_sep void instanceStarted concode_elem_sep void containersExist concode_elem_sep void containerAlive concode_elem_sep void provisioningSuccess concode_elem_sep Boolean profileAvaila...
boolean function ( Callable < Boolean > arg0 , Long arg1 ) { Future < Boolean > loc0 = EXECUTOR . submit ( arg0 ) ; return loc0 . get ( arg1 , TimeUnit . MILLISECONDS ) ; }
21,555
gets the view with a given react test id in the ui hierarchy . react test id is currently propagated into view content description . concode_field_sep NativeModuleRegistry.Builder mNativeModuleRegistryBuilder concode_elem_sep Context mContext concode_elem_sep JavaScriptModuleRegistry.Builder mJSModuleRegistryBuilder co...
View function ( View arg0 , String arg1 ) { return findChild ( arg0 , hasTagValue ( arg1 ) ) ; }
21,556
an action which sets the selected position of view . warning : the created observable keeps a strong reference to view . unsubscribe to free this reference . concode_field_sep PlaceHolder placeHolder concode_field_sep Observable<AdapterViewSelectionEvent> selectionEvents concode_elem_sep Observable<AdapterViewItemLongC...
Action1 < ? super Integer > function ( @ NonNull final AdapterView < T > arg0 ) { return new Action1 < Integer > ( ) { @ Override public void call ( Integer arg1 ) { arg0 . setSelection ( arg1 ) ; } } ; }
21,557
returns the source of this tileset . concode_field_sep int tileMargin concode_elem_sep TileCutter tileCutter concode_elem_sep int tilesPerRow concode_elem_sep int tileSpacing concode_elem_sep String externalSource concode_elem_sep Image tileSetImage concode_elem_sep Vector<Tile> tiles concode_elem_sep Rectangle tileDim...
String function ( ) { return externalSource ; }
21,558
returns the build number of this sync device . concode_field_sep SyncDevice _syncDevice concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setBuildNumber concode_elem_sep boolean isEscapedModel concode...
long function ( ) { return _syncDevice . getBuildNumber ( ) ; }
21,559
releases an output buffer back to the decoder . concode_field_sep E exception concode_elem_sep LinkedList<I> queuedInputBuffers concode_elem_sep boolean flushed concode_elem_sep I dequeuedInputBuffer concode_elem_sep int availableInputBufferCount concode_elem_sep int skippedOutputBufferCount concode_elem_sep Object loc...
void function ( O arg0 ) { synchronized ( lock ) { releaseOutputBufferInternal ( arg0 ) ; maybeNotifyDecodeLoop ( ) ; } }
21,560
gets the in_queue value for this site_title . concode_field_sep int in_queue concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String site_title concode_elem_sep int status concode_field_sep vo...
int function ( ) { return in_queue ; }
21,561
returns the ` child ' import list . concode_field_sep HashMap<Integer,HashSet<String>> parentImport concode_elem_sep HashSet<String> tabUpdate concode_elem_sep HashMap<Integer,HashSet<String>> childImport concode_field_sep void addAllTabs concode_elem_sep String getUpdates concode_elem_sep void addTabParent concode_ele...
HashMap < Integer , HashSet < String >> function ( ) { return childImport ; }
21,562
runs all commands scheduled to be executed immediately but does not tick time forward . concode_field_sep DeltaQueue<Runnable> deltaQueue concode_elem_sep long tickRemaining concode_elem_sep long now concode_elem_sep FakeClock clock concode_elem_sep boolean isTicking concode_field_sep void add concode_elem_sep void add...
void function ( ) { while ( ! isIdle ( ) ) { runNextPendingCommand ( ) ; } }
21,563
adds the new settings name if it does not nexist , or overwrites the old one . concode_field_sep String homedir concode_elem_sep String fileName concode_elem_sep String emptySettingName concode_elem_sep String[][] sJDBCTypes concode_elem_sep String[][] connTypes concode_elem_sep File recentSettings concode_field_sep vo...
void function ( Hashtable arg0 , ConnectionSetting arg1 ) { arg0 . put ( arg1 . getName ( ) , arg1 ) ; ConnectionDialogCommon . storeRecentConnectionSettings ( arg0 ) ; }
21,564
set the confirmation message concode_field_sep String name concode_elem_sep String translatedName concode_elem_sep ActionType type concode_elem_sep long serialVersionUID concode_elem_sep String confirmationMessage concode_field_sep void setName concode_elem_sep String getConfirmationMessage concode_elem_sep String getT...
void function ( String arg0 ) { this . confirmationMessage = arg0 ; }
21,565
getter for the editing domain of the resource used in this refactoring . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep Resource getResource concode_elem_sep List<?> getAffectedFiles concode_elem_sep String getCommandLabel concode_elem_sep T getContextObject concode...
TransactionalEditingDomain function ( ) { return TransactionUtil . getEditingDomain ( getResource ( ) ) ; }
21,566
gets the green value of this color . concode_field_sep Color GREEN concode_elem_sep int green concode_elem_sep Color LIGHT_GRAY concode_elem_sep Color RED concode_elem_sep Color BLACK concode_elem_sep int red concode_elem_sep Color WHITE concode_elem_sep int blue concode_elem_sep Color GRAY concode_elem_sep Color ORANG...
int function ( ) { return green ; }
21,567
write script markup and script code in one method call . concode_field_sep UIComponent component concode_elem_sep ResponseWriter writer concode_field_sep void writeScriptEnd concode_elem_sep void startScript concode_elem_sep void endScript concode_elem_sep void write concode_elem_sep void write concode_elem_sep void wr...
void function ( FacesContext arg0 , final UIComponent arg1 , String arg2 , String arg3 ) { ResponseWriter loc0 = arg0 . getResponseWriter ( ) ; writeScriptStart ( loc0 , arg1 , arg3 ) ; loc0 . write ( arg2 ) ; writeScriptEnd ( loc0 ) ; }
21,568
initializes with a custom log level specified in the config object loggers obtained after this initialization will have their logging level changed logging levels for existing loggers will only be updated if the logger with the same name is requested again from the logscenter . concode_field_sep int MAX_FILE_COUNT conc...
void function ( Config arg0 ) { currentLogLevel = arg0 . getLogLevel ( ) ; logger . info ( "srini_string" + currentLogLevel ) ; }
21,569
returns the connection this manager is communicating on . this method can not return null concode_field_sep Connection connection concode_elem_sep IOException disconnectedException concode_elem_sep Thread partnerThread concode_field_sep void disconnect concode_elem_sep void disconnect concode_elem_sep void setPartnerTh...
Connection function ( ) { return this . connection ; }
21,570
waits for any buffered audio samples to be played by the audio device . this method should only be called prior to closing the device . concode_field_sep Decoder decoder concode_elem_sep boolean open concode_field_sep void closeImpl concode_elem_sep void flushImpl concode_elem_sep void setOpen concode_elem_sep Decoder ...
void function ( ) { if ( isOpen ( ) ) { flushImpl ( ) ; } }
21,571
gets a type that was set by the command implementation concode_field_sep long serialVersionUID concode_elem_sep Map resultTypes concode_elem_sep Properties extraProperties concode_elem_sep long serialVersionUID concode_elem_sep Properties props concode_elem_sep String message concode_elem_sep String childrenType concod...
T function ( Class < T > arg0 ) { return ( T ) resultTypes . get ( arg0 ) ; }
21,572
called before the index shard gets closed . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterIndexCreated concode_elem_sep void beforeIndexDeleted concode_elem_sep void beforeIndexClosed concode_elem_sep void shardRoutingChanged concode_elem_sep void beforeIndexShardCreated concode_elem_sep void on...
void function ( ShardId arg0 , @ Nullable IndexShard arg1 , Settings arg2 ) { }
21,573
gets the value of the qbxmlcountry property . concode_field_sep int qbXMLMinorVers concode_elem_sep String qbXMLCountry concode_elem_sep String ticket concode_elem_sep int qbXMLMajorVers concode_elem_sep String strCompanyFileName concode_elem_sep String strHCPResponse concode_field_sep int getQbXMLMinorVers concode_ele...
String function ( ) { return qbXMLCountry ; }
21,574
performs a dynamic query on the database and returns the matching rows . concode_field_sep KaleoConditionLocalService _service concode_field_sep com.liferay.portal.workflow.kaleo.model.KaleoCondition fetchKaleoCondition concode_elem_sep com.liferay.portal.workflow.kaleo.model.KaleoCondition updateKaleoCondition concode...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . arg0 ( arg0 ) ; }
21,575
returns a range of all the class names . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end to com.liferay.portal.kernel.dao.orm.queryutil #all...
java . util . List < com . liferay . portal . model . ClassName > function ( int arg0 , int arg1 ) { return getService ( ) . getClassNames ( arg0 , arg1 ) ; }
21,576
applies action to a randomly picked routerstub that 's connected concode_field_sep Protocol owner concode_elem_sep Set<Target> reconnect_list concode_elem_sep String cluster_name concode_elem_sep String logical_name concode_elem_sep IpAddress router_addr concode_elem_sep RouterStub.StubReceiver receiver concode_elem_se...
void function ( Consumer < RouterStub > arg0 ) { while ( ! stubs . isEmpty ( ) ) { RouterStub loc0 = Util . pickRandomElement ( stubs ) ; if ( loc0 != null && loc0 . isConnected ( ) ) { arg0 . accept ( loc0 ) ; return ; } } }
21,577
returns the end of the range . concode_field_sep Calendar start concode_elem_sep Calendar end concode_field_sep Calendar getStart concode_elem_sep long getDuration concode_elem_sep String toString concode_elem_sep boolean matches
Calendar function ( ) { return end ; }
21,578
sets the value of the departurecity property . concode_field_sep String destinationCity concode_elem_sep String departureCity concode_elem_sep float price concode_elem_sep int availableSeats concode_elem_sep int flightID concode_elem_sep XMLGregorianCalendar departureDate concode_elem_sep String airline concode_elem_se...
void function ( String arg0 ) { this . departureCity = arg0 ; }
21,579
getchangelisteners concode_field_sep int extent concode_elem_sep EventListenerList listenerList concode_elem_sep int maximum concode_elem_sep ChangeEvent changeEvent concode_elem_sep int value concode_elem_sep int minimum concode_elem_sep boolean isAdjusting concode_field_sep EventListener[] getListeners concode_elem_s...
ChangeListener [ ] function ( ) { return null ; }
21,580
sets the station latitude . concode_field_sep Double latitude concode_elem_sep String name concode_elem_sep String id concode_elem_sep Double longitude concode_field_sep void setName concode_elem_sep String getName concode_elem_sep Double getLongitude concode_elem_sep Double getLatitude concode_elem_sep void setId conc...
void function ( Double arg0 ) { this . latitude = arg0 ; }
21,581
sets if a https connection is required . concode_field_sep String password concode_elem_sep int port concode_elem_sep String name concode_elem_sep String host concode_elem_sep boolean https concode_elem_sep String user concode_field_sep void setName concode_elem_sep void setHost concode_elem_sep void setPassword concod...
void function ( boolean arg0 ) { this . https = arg0 ; }
21,582
gets the name of this sidemenuitem . concode_field_sep String name concode_elem_sep int id concode_field_sep int getID
String function ( ) { return name ; }
21,583
gets the target url used to make a soap invocation for this operation concode_field_sep String style concode_elem_sep String inputMessageText concode_elem_sep String targetObjectURI concode_elem_sep String inputMessageName concode_elem_sep String targetMethodName concode_elem_sep String namespaceURI concode_elem_sep St...
String function ( ) { return targetURL ; }
21,584
returns true when the bridge must destroy object identity see protocol.txt due to limitations in the client for php4 for example . this option stays the same for all packets . concode_field_sep boolean valuesCache concode_elem_sep Charset encoding concode_elem_sep boolean base64Cache concode_elem_sep boolean base64Cach...
boolean function ( ) { if ( ! valuesCacheSet ) { final int loc0 = 3 & this . options ; valuesCacheSet = true ; return valuesCache = loc0 == 2 || loc0 == 1 ; } return valuesCache ; }
21,585
returns the starting offset of a line . concode_field_sep int[] offsets concode_field_sep int line concode_elem_sep int column
int function ( int arg0 ) { return offsets [ arg0 ] ; }
21,586
sets the fldfilter value for this transactionbodycustomfieldfilter . concode_field_sep java.lang.Boolean fldFilterChecked concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef fldFilter concode_elem_sep java.lang.Boolean fldFilterNotNull concode_elem_sep java.lang.String fldFilterVal concode_elem_sep...
void function ( com . netsuite . webservices . platform . core_2014_2 . RecordRef arg0 ) { this . fldFilter = arg0 ; }
21,587
reverses all bits in the array . concode_field_sep int size concode_elem_sep int[] bits concode_field_sep void set concode_elem_sep void setRange concode_elem_sep void toBytes concode_elem_sep void clear concode_elem_sep int getNextUnset concode_elem_sep boolean isRange concode_elem_sep int getSize concode_elem_sep voi...
void function ( ) { int [ ] loc0 = new int [ bits . length ] ; int loc1 = this . size ; for ( int loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) { if ( get ( loc1 - loc2 - 1 ) ) { loc0 [ loc2 >> 5 ] |= 1 << ( loc2 & 0x1F ) ; } } bits = loc0 ; }
21,588
test whether a character is whitespace concode_field_sep int PRESERVE concode_elem_sep int COLLAPSE concode_elem_sep int ALL concode_elem_sep int NONE concode_elem_sep int UNSPECIFIED concode_elem_sep boolean[] C0WHITE concode_elem_sep int IGNORABLE concode_elem_sep int REPLACE concode_field_sep CharSequence removeAllW...
boolean function ( final int arg0 ) { switch ( arg0 ) { case 9 : case 10 : case 13 : case 32 : return true ; default : return false ; } }
21,589
gets the time window for which detailed information about suggested meeting times should be returned . concode_field_sep int maximumSuggestionsPerDay concode_elem_sep int mergedFreeBusyInterval concode_elem_sep Date currentMeetingTime concode_elem_sep String globalObjectId concode_elem_sep FreeBusyViewType requestedFre...
TimeWindow function ( ) { return this . detailedSuggestionsWindow ; }
21,590
gets the errortype attribute of the execresults object concode_field_sep int myReturnCode concode_elem_sep String myInput concode_elem_sep String myErrors concode_elem_sep boolean myInterrupted concode_elem_sep int myTimeout concode_elem_sep int mySuccessCode concode_elem_sep String myCommand concode_elem_sep String my...
int function ( ) { return ( myErrorType ) ; }
21,591
retrieve a date formatter . concode_field_sep ThreadLocal<DateFormat> DATE_FORMAT concode_elem_sep ThreadLocal<ProjectFile> PARENT_FILE concode_elem_sep ThreadLocal<DateFormat> TIME_FORMAT concode_field_sep void setParentFile concode_elem_sep Date parseDateTime concode_elem_sep DateFormat getTimeFormat concode_elem_sep...
DateFormat function ( ) { DateFormat loc0 = DATE_FORMAT . get ( ) ; if ( loc0 == null ) { loc0 = new SimpleDateFormat ( "srini_string" ) ; loc0 . setLenient ( false ) ; } return ( loc0 ) ; }
21,592
provides a localized message to be displayed to the user in html format informing of the installation status . concode_field_sep Logger LOG concode_elem_sep boolean isInstalled concode_elem_sep boolean canOverwriteCurrentInstall concode_elem_sep Message installationMsg concode_field_sep int getPort concode_elem_sep boo...
Message function ( ) { return installationMsg ; }
21,593
sets the value of the name property . concode_field_sep String name concode_elem_sep long serialVersionUID concode_elem_sep String value concode_field_sep String getValue concode_elem_sep String getName concode_elem_sep void setValue
void function ( String arg0 ) { this . name = arg0 ; }
21,594
adds the sdo_num_res parameter with the specified value concode_field_sep String MIN_RESOLUTION concode_elem_sep String DISTANCE concode_elem_sep String MASK concode_elem_sep String SDO_NUM_RES concode_elem_sep String QUERYTYPE concode_elem_sep String SDO_BATCH_SIZE concode_elem_sep String MAX_RESOLUTION concode_elem_s...
void function ( Integer arg0 ) { if ( arg0 != null ) { params . put ( SDO_NUM_RES , arg0 ) ; } }
21,595
assert the model has errors . concode_field_sep PlaceHolder placeHolder concode_field_sep ResultMatcher attributeErrorCount concode_elem_sep ResultMatcher hasNoErrors concode_elem_sep int getErrorCount concode_elem_sep ResultMatcher attributeHasFieldErrors concode_elem_sep ModelAndView getModelAndView concode_elem_sep ...
ResultMatcher function ( ) { return new ResultMatcher ( ) { @ Override public void match ( MvcResult arg0 ) throws Exception { int loc0 = getErrorCount ( getModelAndView ( arg0 ) . getModelMap ( ) ) ; assertTrue ( "srini_string" , loc0 != 0 ) ; } } ; }
21,596
removes ` head ' from list and returns it . returns null if list is empty . concode_field_sep Node head concode_elem_sep Node prev concode_elem_sep int size concode_elem_sep Node next concode_field_sep void add concode_elem_sep void add concode_elem_sep Node getTail concode_elem_sep void touch concode_elem_sep Node get...
Node function ( ) { if ( head == null ) return null ; Node loc0 = head ; remove ( loc0 ) ; return loc0 ; }
21,597
get the owning document revision . concode_field_sep String name concode_elem_sep Revision revision concode_elem_sep Map<String,Object> metadata concode_elem_sep InputStream body concode_field_sep void setName concode_elem_sep AttachmentInternal internalAttachment concode_elem_sep Map<String,Object> getMetadata concode...
Revision function ( ) { return revision ; }
21,598
return new - old . - new value if old value is null - new value - old value if number - otherwise null concode_field_sep PO po concode_field_sep byte[] getPdfAttachment concode_elem_sep int compare concode_elem_sep void set_CustomColumn concode_elem_sep int getUpdatedBy concode_elem_sep boolean save concode_elem_sep bo...
Object function ( String arg0 ) { return po . get_ValueDifference ( arg0 ) ; }
21,599
gets the element value . concode_field_sep String image concode_elem_sep String IMAGE_ALERT concode_elem_sep boolean set concode_elem_sep String IMAGE_BLANK concode_elem_sep String value concode_elem_sep String IMAGE_PROGRESS concode_field_sep void setValue concode_elem_sep boolean getIsSet concode_elem_sep void reset ...
String function ( ) { return this . value ; }