idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
23,900
the processbuilder class is final so not easily mocked . we wrap the only interaction we have with it inthis package level method to permit unit testing . concode_field_sep Process process concode_elem_sep Log LOG concode_elem_sep ExecutorService executorService concode_elem_sep DrainChildSTDERRTask readSTDERRTask conc...
Process function ( ) { return this . processBuilder . start ( ) ; }
23,901
returns the total number of times that cache lookup methods attempted to load newvalues . this includes both successful load operations , as well as those that threw exceptions . this is defined as loadsuccesscount + loadexceptioncount . concode_field_sep long totalLoadTime concode_elem_sep long evictionCount concode_e...
long function ( ) { return loadSuccessCount + loadExceptionCount ; }
23,902
returns an iterator over the elements of this set . concode_field_sep DoubleObjectHashMap mMap concode_field_sep boolean add concode_elem_sep DoubleSet unionWith concode_elem_sep DoubleSet intersectionWith concode_elem_sep DoubleSet xorWith concode_elem_sep boolean containsAll concode_elem_sep boolean containsAll conco...
DoubleCollectionIterator function ( ) { return mMap . keyIterator ( ) ; }
23,903
gets the value of the finalmobileurls 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 finalmobileurls property . for example , to add a ...
List < String > function ( ) { if ( finalMobileUrls == null ) { finalMobileUrls = new ArrayList < String > ( ) ; } return this . finalMobileUrls ; }
23,904
test of setadpost_lastname method , of class adpost . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSetAdPost_street concode_elem_sep void testSetAdPost_country concode_elem_sep void testGetAdPost_province concode_elem_sep void testGetAdPost_street concode_elem_sep void testGetAdPost_ad_title con...
void function ( ) { System . out . println ( "srini_string" ) ; String loc0 = "srini_string" ; adPost loc1 = new adPost ( ) ; loc1 . setAdPost_lastName ( loc0 ) ; String loc2 = loc1 . getAdPost_lastName ( ) ; assertEquals ( loc2 , loc0 ) ; }
23,905
binds the managed service to this task . concode_field_sep Context context concode_elem_sep Class<S> serviceClass concode_elem_sep S service concode_elem_sep AppContext appContext concode_elem_sep ServiceConnection serviceConnection concode_field_sep void resume concode_elem_sep void cancel concode_elem_sep boolean isP...
void function ( ) { Intent loc0 = new Intent ( context , serviceClass ) ; context . bindService ( loc0 , serviceConnection , Context . BIND_AUTO_CREATE ) ; }
23,906
retrieve the state from the current thread 's local storage concode_field_sep FileInfo fileInfo concode_elem_sep boolean asyncLifecycle concode_elem_sep ThreadLocal holder concode_elem_sep UploadConfig uploadConfig concode_elem_sep String iframeContent concode_field_sep void setAsyncLifecycle concode_elem_sep void setI...
UploadStateHolder function ( ) { UploadStateHolder loc0 = ( UploadStateHolder ) holder . get ( ) ; holder . set ( null ) ; return loc0 ; }
23,907
get int32 minimum : 20.0 maximum : 200.0 concode_field_sep byte[] _byte concode_elem_sep String password concode_elem_sep BigDecimal number concode_elem_sep Float _float concode_elem_sep Integer integer concode_elem_sep Double _double concode_elem_sep String string concode_elem_sep DateTime dateTime concode_elem_sep by...
Integer function ( ) { return int32 ; }
23,908
mark this channel as having timed out . concode_field_sep TransportResponseHandler handler concode_elem_sep Logger logger concode_elem_sep String clientId concode_elem_sep boolean timedOut concode_elem_sep Channel channel concode_field_sep String getClientId concode_elem_sep boolean isActive concode_elem_sep TransportR...
void function ( ) { this . timedOut = true ; }
23,909
debug 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 setLogLevel concode_elem_sep void setLogLevel concode_elem_sep void e conco...
void function ( String arg0 , String arg1 ) { if ( LOG . DEBUG >= LOGLEVEL ) Log . d ( arg0 , arg1 ) ; }
23,910
executes a standalone application with a wrapper command . this method never returns . concode_field_sep String TAG concode_field_sep void execApplication concode_elem_sep void main
void function ( String arg0 , String arg1 , String arg2 , String [ ] arg3 ) { StringBuilder loc0 = new StringBuilder ( arg0 ) ; loc0 . append ( "srini_string" ) . append ( arg1 ) ; loc0 . append ( "srini_string" ) . append ( arg2 ) ; Zygote . appendQuotedShellArgs ( loc0 , arg3 ) ; Zygote . execShell ( loc0 . toString ...
23,911
return an iterator of the attribute names of this node . if there are no attributes , an empty iterator is returned . 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 c...
Iterator function ( ) { if ( attributes == null ) return ( Collections . EMPTY_LIST . iterator ( ) ) ; else return ( attributes . keySet ( ) . iterator ( ) ) ; }
23,912
notify the host application that a page has finished loading . this method is called only for main frame . when onpagefinished is called , the rendering picture may not be updated yet . to get the notification for the new picture , use webview.picturelistener #onnewpicture . concode_field_sep int ERROR_FAILED_SSL_HANDS...
void function ( WebView arg0 , String arg1 ) { }
23,913
set the propagation behavior . must be one of the propagation constants in the transactiondefinition interface . default is propagation_required . concode_field_sep Constants constants concode_elem_sep int timeout concode_elem_sep int isolationLevel concode_elem_sep String READ_ONLY_MARKER concode_elem_sep boolean read...
void function ( int arg0 ) { if ( ! constants . getValues ( PREFIX_PROPAGATION ) . contains ( arg0 ) ) { throw new IllegalArgumentException ( "srini_string" ) ; } this . propagationBehavior = arg0 ; }
23,914
get book number concode_field_sep int chapter concode_elem_sep int bookNumber concode_elem_sep String bibleVersion concode_elem_sep int verse concode_elem_sep String excerpt concode_elem_sep String bookName concode_elem_sep String bibleLocation concode_field_sep String getVersion concode_elem_sep String getLocation con...
int function ( ) { return bookNumber ; }
23,915
return type metadata object concode_field_sep java.lang.Long valueId concode_elem_sep java.lang.Boolean isInactive concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.netsuite.webservices.setup.customization_2014_2.LanguageValue[] valueLanguageValueList concode_el...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
23,916
get name concode_field_sep Integer name concode_elem_sep String property concode_elem_sep Integer _123Number concode_elem_sep Integer snakeCase concode_field_sep void setName concode_elem_sep String toIndentedString concode_elem_sep String getProperty concode_elem_sep Integer getSnakeCase concode_elem_sep int hashCode ...
Integer function ( ) { return name ; }
23,917
define el valor de la propiedad claveacceso . concode_field_sep String claveAcceso concode_elem_sep Comprobante.Mensajes mensajes concode_elem_sep List<Mensaje> mensaje concode_field_sep List<Mensaje> getMensaje concode_elem_sep void setMensajes concode_elem_sep String getClaveAcceso concode_elem_sep Comprobante.Mensaj...
void function ( String arg0 ) { this . claveAcceso = arg0 ; }
23,918
return the domain for cookies created by this generator , if any . concode_field_sep String cookieDomain concode_elem_sep boolean cookieHttpOnly concode_elem_sep String DEFAULT_COOKIE_PATH concode_elem_sep Log logger concode_elem_sep Integer cookieMaxAge concode_elem_sep String cookieName concode_elem_sep String cookie...
String function ( ) { return this . cookieDomain ; }
23,919
cli comment method `` setgetalways '' . work for documentation concode_field_sep List<IProcess2> openedProcessList concode_elem_sep boolean getAlways concode_elem_sep List<IRepositoryViewObject> processList concode_elem_sep boolean DEFAULT_VALUE concode_elem_sep MultiKeyMap openProcessMap concode_elem_sep boolean docRe...
void function ( boolean arg0 ) { this . getAlways = arg0 ; }
23,920
convert passed date to a gregoriancalendar concode_field_sep PlaceHolder placeHolder concode_field_sep ArrayList<TherapyRow> getTherapyRows concode_elem_sep boolean deleteAllTherapies concode_elem_sep int newTherapy
GregorianCalendar function ( Timestamp arg0 ) { if ( arg0 == null ) return null ; GregorianCalendar loc0 = new GregorianCalendar ( ) ; loc0 . setTime ( arg0 ) ; return loc0 ; }
23,921
sets the updatestudent student object . concode_field_sep String selectedCourse concode_elem_sep Course currentCourse concode_elem_sep List studentCourses concode_elem_sep List courseItems concode_elem_sep String selectedStudent concode_elem_sep Student newStudent concode_elem_sep List studentItems concode_elem_sep Stu...
void function ( Student arg0 ) { this . updateStudent = arg0 ; }
23,922
returns the current value for this configurable . concode_field_sep Object _value concode_elem_sep Logic LOGIC concode_field_sep void notifyChange concode_elem_sep String toString concode_elem_sep void configure
Object function ( ) { return _value ; }
23,923
obtains the proxy selector to use . concode_field_sep ProxySelector proxySelector concode_elem_sep SchemeRegistry schemeRegistry concode_field_sep void setProxySelector concode_elem_sep HttpRoute determineRoute concode_elem_sep String getHost concode_elem_sep HttpHost determineProxy concode_elem_sep Proxy chooseProxy
ProxySelector function ( ) { return this . proxySelector ; }
23,924
encodes the specified string using the base64 encoding . concode_field_sep byte[] BASE64_FOR_URL_ALPHABET_ARRAY concode_elem_sep byte[] BASE64_ALPHABET_ARRAY concode_elem_sep byte PAD concode_field_sep byte[] encodeForURL
String function ( String arg0 ) { if ( arg0 == null ) { return null ; } return new String ( encode ( arg0 . getBytes ( ) ) ) ; }
23,925
if you choose a pooled event queue type , the value of eventqueuepoolname will be used . this is ignored if the pool type is single concode_field_sep long serialVersionUID concode_elem_sep String cacheName concode_elem_sep String name concode_elem_sep ICacheEventQueue.QueueType eventQueueType concode_elem_sep String ev...
void function ( String arg0 ) { eventQueuePoolName = arg0 ; }
23,926
returns the bundle context of this bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep void start
BundleContext function ( ) { return context ; }
23,927
matches a uielement whose attribute is false or is not set . concode_field_sep MatchFinder ANY concode_field_sep MatchFinder withChild concode_elem_sep MatchFinder resourceId concode_elem_sep MatchFinder resourceId concode_elem_sep ChainFinder chain concode_elem_sep MatchFinder withParent concode_elem_sep MatchFinder w...
MatchFinder function ( Attribute arg0 ) { return new MatchFinder ( Predicates . attributeFalse ( arg0 ) ) ; }
23,928
returns this hightlighter 's reconciler . concode_field_sep StyledTextXtextAdapter styledTextXtextAdapter concode_elem_sep XtextSourceViewerConfiguration fConfiguration concode_elem_sep IPreferenceStore preferenceStore concode_elem_sep XtextSourceViewer fSourceViewer concode_elem_sep XtextPresentationReconciler fPresen...
XtextStyledTextHighlightingReconciler function ( ) { return fReconciler ; }
23,929
mark a test or block of tests as the only tests that should be run . if at least one test is marked as only then all tests not marked as only will not be run . only . it `` does something '' , - > / / ... ; concode_field_sep PlaceHolder placeHolder concode_field_sep void beforeEach concode_elem_sep void beforeEach conc...
TestBuilder function ( ) { return TestContainer . INSTANCE . only ( ) ; }
23,930
specifies whether vm shutdown should trigger forced shutdown of the transaction core . defaults to false . concode_field_sep Map<String,String> values concode_field_sep void setConsoleFileName concode_elem_sep void set concode_elem_sep void set concode_elem_sep void setOutputDir concode_elem_sep void setConsoleFileCoun...
void function ( boolean arg0 ) { set ( "srini_string" , arg0 ) ; }
23,931
reload the http-datacollection-config.xml file if it has been changed since we last read it . concode_field_sep boolean m_loadedFromFile concode_elem_sep long m_lastModified concode_elem_sep HttpCollectionConfigFactory m_instance concode_elem_sep HttpDatacollectionConfig m_config concode_elem_sep boolean initialized co...
void function ( ) { if ( m_loadedFromFile ) { File loc0 = ConfigFileConstants . getFile ( ConfigFileConstants . HTTP_COLLECTION_CONFIG_FILE_NAME ) ; if ( m_lastModified != loc0 . lastModified ( ) ) { this . reload ( ) ; } } }
23,932
cancel the printertask by calling the printerjob 's cancel method . concode_field_sep CancelablePrintJob cancelablePrintJob concode_elem_sep Logger logger concode_elem_sep PrintHelper printHelper concode_field_sep void run
void function ( ) { try { if ( cancelablePrintJob != null ) { cancelablePrintJob . cancel ( ) ; } } catch ( PrintException loc0 ) { logger . log ( Level . FINE , "srini_string" + loc0 . getMessage ( ) ) ; } }
23,933
should have a null constructor - might need to be public concode_field_sep Class<? extends SpectrumImpl> gSpectrumClass concode_elem_sep double[] dataMassArray concode_elem_sep double[] dataIntensityArray concode_elem_sep Double retentionTimeInMinutes concode_elem_sep List<SpectrumPrecursor> precursors concode_elem_sep...
void function ( final Class < ? extends SpectrumImpl > arg0 ) { gSpectrumClass = arg0 ; }
23,934
parse given json properties . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep long getRepeatInterval concode_elem_sep String getText concode_elem_se...
Options function ( JSONObject arg0 ) { this . options = arg0 ; parseInterval ( ) ; parseAssets ( ) ; return this ; }
23,935
set the container with which this logger has been associated . concode_field_sep PropertyChangeSupport support concode_elem_sep Logger log concode_elem_sep Container container concode_elem_sep int verbosity concode_field_sep String getInfo concode_elem_sep void setCategory concode_elem_sep Container getContainer concod...
void function ( Container arg0 ) { Container loc0 = this . container ; this . container = arg0 ; support . firePropertyChange ( "srini_string" , loc0 , this . container ) ; }
23,936
return expression concode_field_sep TokenSet BRANCH_KEYWORDS concode_field_sep void breakOrContinueParse concode_elem_sep void assertParse concode_elem_sep boolean parse concode_elem_sep void throwParse
void function ( PsiBuilder arg0 , GroovyParser arg1 ) { PsiBuilder . Marker loc0 = arg0 . mark ( ) ; ParserUtils . getToken ( arg0 , GroovyTokenTypes . kRETURN ) ; AssignmentExpression . parse ( arg0 , arg1 ) ; loc0 . done ( GroovyElementTypes . RETURN_STATEMENT ) ; }
23,937
sets the unique name of this protocol . the protocol name is the value required by the corresponding protocol plugin for guacd . concode_field_sep String name concode_elem_sep Collection<Form> forms concode_field_sep void setForms concode_elem_sep String getName concode_elem_sep Collection<Form> getForms
void function ( String arg0 ) { this . name = arg0 ; }
23,938
adds a found indication to the list . concode_field_sep List<FoundIndication> indications concode_elem_sep String name concode_elem_sep String description concode_elem_sep Logger logger concode_elem_sep String id concode_elem_sep List<String> categories concode_field_sep String getName concode_elem_sep String convertFo...
void function ( FoundIndication arg0 ) { indications . add ( arg0 ) ; }
23,939
gets flag indicating whether to use average cpu load vs. current . concode_field_sep boolean useAvg concode_elem_sep boolean useProcs concode_elem_sep double procCoefficient concode_field_sep double getProcessorCoefficient concode_elem_sep void setUseAverage concode_elem_sep void setUseProcessors concode_elem_sep void ...
boolean function ( ) { return useAvg ; }
23,940
stop a service . do nothing if the service is null or not in a state in which it can be/needs to be stopped . the service state is checked before the operation begins . this process is not thread safe . concode_field_sep Log LOG concode_field_sep void init concode_elem_sep Exception stopQuietly concode_elem_sep void st...
void function ( Service arg0 ) { if ( arg0 != null ) { Service . STATE loc0 = arg0 . getServiceState ( ) ; if ( loc0 == Service . STATE . STARTED ) { arg0 . stop ( ) ; } } }
23,941
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 ) ; }
23,942
creates a jserror at a given source location concode_field_sep int charno concode_elem_sep Node node concode_elem_sep CheckLevel level concode_elem_sep CheckLevel defaultLevel concode_elem_sep String description concode_elem_sep String sourceName concode_elem_sep DiagnosticType type concode_elem_sep int lineNumber conc...
JSError function ( String arg0 , int arg1 , int arg2 , CheckLevel arg3 , DiagnosticType arg4 , String ... arg5 ) { return new JSError ( arg0 , null , arg1 , arg2 , arg4 , arg3 , arg5 ) ; }
23,943
get the output distributions concode_field_sep Distribution[] outputDistributions concode_elem_sep StateDistribution[] transitionDistributions concode_elem_sep StateDistribution initialStateDistribution concode_field_sep void estimateIntialStateDistribution concode_elem_sep StateDistribution[] getTransitionDistribution...
Distribution [ ] function ( ) { return outputDistributions ; }
23,944
sets a new knowledge2 for the algorithm . not in use yet . concode_field_sep long serialVersionUID concode_elem_sep Graph maxGraph concode_elem_sep boolean showMaxPSelected concode_elem_sep Clusters clusters concode_elem_sep List<String> varNames concode_elem_sep boolean include3Clusters concode_elem_sep IKnowledge kno...
void function ( IKnowledge arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( "srini_string" ) ; } this . knowledge = arg0 . copy ( ) ; }
23,945
provides support for cloning . this only works if you specify the generate_clone method . concode_field_sep int cachedSize concode_field_sep void writeTo concode_elem_sep int computeSerializedSize concode_elem_sep MessageNano mergeFrom concode_elem_sep T mergeFrom concode_elem_sep T mergeFrom concode_elem_sep boolean m...
MessageNano function ( ) { return ( MessageNano ) super . clone ( ) ; }
23,946
queries whether i have been cancelled , by cancellation of my progress monitor . concode_field_sep int TOTAL_WORK concode_elem_sep IClipboardSupport clipboardSupport concode_elem_sep int WORK_UNIT concode_elem_sep IProgressMonitor monitor concode_field_sep void catchException concode_elem_sep IClipboardSupport getClipb...
boolean function ( ) { return getProgressMonitor ( ) . isCanceled ( ) ; }
23,947
test if point lies between two longitudes , deal with wrapping . concode_field_sep double lon concode_elem_sep double lat concode_field_sep void set concode_elem_sep void set concode_elem_sep void set concode_elem_sep double getLongitude concode_elem_sep double getLatitude concode_elem_sep double lonNormal concode_elem...
boolean function ( double arg0 , double arg1 , double arg2 ) { arg1 = lonNormal ( arg1 , arg0 ) ; arg2 = lonNormal ( arg2 , arg0 ) ; return ( arg0 >= arg1 ) && ( arg0 <= arg2 ) ; }
23,948
sets the list of ticks . concode_field_sep double cursor concode_elem_sep List ticks concode_elem_sep double max concode_field_sep void setMax concode_elem_sep double getCursor concode_elem_sep List getTicks concode_elem_sep void cursorRight concode_elem_sep double getMax concode_elem_sep void cursorDown concode_elem_s...
void function ( List arg0 ) { this . ticks = arg0 ; }
23,949
initial insertion code of the pdb sequence segment . concode_field_sep Structure parent concode_elem_sep int dbSeqEnd concode_elem_sep String idCode concode_elem_sep char idbnsEnd concode_elem_sep char insertBegin concode_elem_sep long serialVersionUID concode_elem_sep String dbIdCode concode_elem_sep int seqbegin conc...
void function ( char arg0 ) { this . insertBegin = arg0 ; }
23,950
implements pathhandler #curvetocubicsmoothabs float , float , float , float . concode_field_sep ExtendedGeneralPath path concode_elem_sep float currentX concode_elem_sep float yCenter concode_elem_sep int windingRule concode_elem_sep float currentY concode_elem_sep float xCenter concode_field_sep Shape createShape conc...
void function ( float arg0 , float arg1 , float arg2 , float arg3 ) { path . curveTo ( currentX * 2 - xCenter , currentY * 2 - yCenter , xCenter = arg0 , yCenter = arg1 , currentX = arg2 , currentY = arg3 ) ; }
23,951
get petid concode_field_sep Long id concode_elem_sep DateTime shipDate concode_elem_sep String value concode_elem_sep StatusEnum status concode_elem_sep Boolean complete concode_elem_sep Long petId concode_elem_sep Integer quantity concode_field_sep DateTime getShipDate concode_elem_sep String toIndentedString concode_...
Long function ( ) { return petId ; }
23,952
sets the value of the manualcreativerotationweight property . concode_field_sep Double manualCreativeRotationWeight concode_elem_sep Long creativeSetId concode_elem_sep StartDateTimeType startDateTimeType concode_elem_sep DateTime lastModifiedDateTime concode_elem_sep Long lineItemId concode_elem_sep String destination...
void function ( Double arg0 ) { this . manualCreativeRotationWeight = arg0 ; }
23,953
updates the parameter access concode_field_sep String paramType concode_elem_sep String paramAccess concode_elem_sep ModelReference modelRef concode_elem_sep AllowableValues allowableValues concode_elem_sep boolean allowMultiple concode_elem_sep String defaultValue concode_elem_sep String name concode_elem_sep String d...
ParameterBuilder function ( String arg0 ) { this . paramAccess = defaultIfAbsent ( arg0 , this . paramAccess ) ; return this ; }
23,954
returns this address 's explicitly-specified http proxy , or null to delegate to the http client 's proxy selector . concode_field_sep Proxy proxy concode_elem_sep List<String> transports concode_elem_sep int uriPort concode_elem_sep SSLSocketFactory sslSocketFactory concode_elem_sep HostnameVerifier hostnameVerifier c...
Proxy function ( ) { return proxy ; }
23,955
ensures that this object is in the running state . if this object is not running , then the call has the effect of setting the starttime attribute to the current value of system.currenttimemillis and setting the running attribute to true . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep l...
void function ( ) { startTime = System . currentTimeMillis ( ) ; running = true ; }
23,956
returns the value to which the specified key is mapped in this map . concode_field_sep Entry table[] concode_elem_sep Entry next concode_elem_sep float loadFactor concode_elem_sep int count concode_elem_sep int threshold concode_elem_sep Object value concode_elem_sep int hash concode_elem_sep int key concode_field_sep ...
Object function ( int arg0 ) { Entry loc0 [ ] = table ; int loc1 = arg0 ; int loc2 = ( loc1 & 0x7FFFFFFF ) % loc0 . length ; for ( Entry loc3 = loc0 [ loc2 ] ; loc3 != null ; loc3 = loc3 . next ) { if ( loc3 . loc1 == loc1 ) { return loc3 . value ; } } return null ; }
23,957
gets owning institution id . concode_field_sep String owningInstitutionItemId concode_elem_sep String lastUpdatedBy concode_elem_sep String cgdChangeLog concode_elem_sep Integer collectionGroupId concode_elem_sep List<BibliographicEntity> bibliographicEntities concode_elem_sep String callNumberType concode_elem_sep Str...
Integer function ( ) { return owningInstitutionId ; }
23,958
get the path for this binding . the path is the string of literal characters in the pattern up to the first parameter definition . concode_field_sep String path concode_elem_sep List<Object> components concode_elem_sep String suffix concode_elem_sep List<UrlBindingParameter> parameters concode_elem_sep Class<? extends ...
String function ( ) { return path ; }
23,959
logs a message at verbose level . concode_field_sep java.util.logging.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep void debug concode_elem_se...
void function ( Throwable arg0 , String arg1 ) { logger . log ( FINER , arg1 , arg0 ) ; }
23,960
retrieve the icon filename , if available ; i.e. , given the ua : `` mozilla/5 .0 windows ; u ; windows nt 6.1 ; pt-br ; rv :1.9.1.1 gecko/20090715 firefox/3 .5.1 '' it would return `` firefox.png '' concode_field_sep String UNKNOWN concode_elem_sep RobotEntry robotEntry concode_elem_sep DeviceEntry deviceEntry concode...
String function ( ) { if ( browserEntry != null ) { return browserEntry . getIco ( ) ; } if ( robotEntry != null ) { return robotEntry . getIco ( ) ; } return UNKNOWN ; }
23,961
get number of occupied map slots in the cluster . concode_field_sep int occupiedMapSlots concode_elem_sep int totalJobSubmissions concode_elem_sep int occupiedReduceSlots concode_elem_sep int numTrackers concode_elem_sep int totalMapSlots concode_elem_sep int reservedMapSlots concode_elem_sep int numBlacklistedTrackers...
int function ( ) { return occupiedMapSlots ; }
23,962
method to write a high utility itemset to the output file . concode_field_sep long endTimestamp concode_elem_sep double maxMemory concode_elem_sep long startTimestamp concode_elem_sep Map<Integer,Integer> mapItemToTWU concode_elem_sep int item concode_elem_sep int utility concode_elem_sep BufferedWriter writer concode_...
void function ( int [ ] arg0 , int arg1 , int arg2 ) { huiCount ++ ; StringBuffer loc0 = new StringBuffer ( ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 . append ( arg0 [ loc1 ] ) ; loc0 . append ( ' ' ) ; } loc0 . append ( arg1 ) ; loc0 . append ( ':' ) ; loc0 . append ( arg2 ) ; writer . write ( l...
23,963
gets the decrypt key used by the security handler when decrypting data . concode_field_sep Logger logger concode_elem_sep EncryptionDictionary encryptDictionary concode_elem_sep SecurityHandler securityHandler concode_elem_sep boolean foundJCE concode_field_sep byte[] getEncryptionKey concode_elem_sep boolean isAuthori...
byte [ ] function ( ) { return securityHandler . getDecryptionKey ( ) ; }
23,964
isrootvisible concode_field_sep NodeDimensions nodeDimensions concode_elem_sep TreeModel treeModel concode_elem_sep TreeSelectionModel treeSelectionModel concode_elem_sep boolean rootVisible concode_elem_sep int rowHeight concode_field_sep void invalidateSizes concode_elem_sep void treeNodesRemoved concode_elem_sep Enu...
boolean function ( ) { return rootVisible ; }
23,965
add a descriptor to the registry . concode_field_sep List themes concode_elem_sep List fonts concode_elem_sep Map dataMap concode_elem_sep Map categoryBindingMap concode_elem_sep List categories concode_elem_sep List colors concode_field_sep FontDefinition[] getFonts concode_elem_sep IThemeElementDefinition addOrReplac...
void function ( ColorDefinition arg0 ) { addOrReplaceDescriptor ( colors , arg0 ) ; }
23,966
adds a groovy.lang.closure to test whether the stack trace element should be added or not . the groovy.lang.closure will be given the class name as parameter . the return value decides if the element will be added or not . true - trace element will be added to the trace false - trace element will not be added to the tr...
void function ( Closure arg0 ) { tests . add ( arg0 ) ; }
23,967
create an instance of asn_update . order.orderlines.orderline.item concode_field_sep QName _OrdersOrderExtnHDRelatedEJKeysList_QNAME concode_field_sep ASN_Update.Order.OrderLines.OrderLine createOrdersOrderOrderLinesOrderLine concode_elem_sep ASN_Update.Order.OrderLines createOrdersOrderOrderLines concode_elem_sep ASN_...
ASN_Update . Order . OrderLines . OrderLine . Item function ( ) { return new ASN_Update . Order . OrderLines . OrderLine . Item ( ) ; }
23,968
gets the seed for randomization during cross-validation concode_field_sep int m_Seed concode_field_sep FastVector getTestPredictions concode_elem_sep Prediction getPrediction concode_elem_sep FastVector getCVPredictions concode_elem_sep void setSeed concode_elem_sep FastVector getTrainTestPredictions concode_elem_sep S...
int function ( ) { return m_Seed ; }
23,969
gets the user_id value for this projectattachmentdata . concode_field_sep java.util.Calendar date_submitted concode_elem_sep java.lang.String filename concode_elem_sep java.math.BigInteger size concode_elem_sep java.lang.String content_type concode_elem_sep java.math.BigInteger user_id concode_elem_sep java.lang.Object...
java . math . BigInteger function ( ) { return user_id ; }
23,970
handles a suspend request concode_field_sep RhinoDebuggerImpl debugger concode_elem_sep String VERSION_1_6 concode_field_sep void handleClearBreakpointRequest concode_elem_sep void handleEvaluateRequest concode_elem_sep void handleContinueRequest concode_elem_sep Long numberToLong concode_elem_sep String missingArgumen...
void function ( Request arg0 , Response arg1 ) { Map loc0 = arg0 . getArguments ( ) ; Long loc1 = numberToLong ( ( Number ) loc0 . get ( JSONConstants . THREAD_ID ) ) ; if ( loc1 == null ) { debugger . suspendAll ( ) ; return ; } debugger . suspend ( loc1 ) ; }
23,971
creates a decimaltype with default precision and scale , which are 10 and 0 . concode_field_sep DataType StringType concode_elem_sep DataType DateType concode_elem_sep DataType BooleanType concode_elem_sep DataType BinaryType concode_elem_sep DataType TimestampType concode_elem_sep DataType LongType concode_elem_sep Da...
DecimalType function ( ) { return DecimalType$ . MODULE$ . USER_DEFAULT ( ) ; }
23,972
setter for the type of the integrationpoint . concode_field_sep String configId concode_elem_sep String id concode_elem_sep String type concode_elem_sep int priority concode_elem_sep String parentId concode_elem_sep String content concode_field_sep void setConsoleConfigId concode_elem_sep void setContent concode_elem_s...
void function ( String arg0 ) { this . type = arg0 ; }
23,973
gets the value of the entityresult 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 entityresult property . for example , to add a new it...
List < EntityResult > function ( ) { if ( entityResult == null ) { entityResult = new ArrayList < EntityResult > ( ) ; } return this . entityResult ; }
23,974
returns asn .1 encoded form of this x. 509 othername value . concode_field_sep ASN1Sequence ASN1 concode_elem_sep String typeID concode_elem_sep byte[] encoding concode_elem_sep byte[] value concode_field_sep byte[] getValue concode_elem_sep void getValues concode_elem_sep Object getDecodedObject concode_elem_sep Strin...
byte [ ] function ( ) { if ( encoding == null ) { encoding = ASN1 . encode ( this ) ; } return encoding ; }
23,975
generate the whole frame header + payload copy into a single bytebuffer . note : this is slow , moves lots of memory around . only use this if you must such as in unit testing . concode_field_sep ByteBufferPool bufferPool concode_elem_sep boolean validating concode_elem_sep byte flagsInUse concode_elem_sep int MAX_HEAD...
void function ( Frame arg0 , ByteBuffer arg1 ) { arg1 . put ( generateHeaderBytes ( arg0 ) ) ; if ( arg0 . hasPayload ( ) ) { if ( readOnly ) { arg1 . put ( arg0 . getPayload ( ) . slice ( ) ) ; } else { arg1 . put ( arg0 . getPayload ( ) ) ; } } }
23,976
clean containertreecache for this webprojectid concode_field_sep CLogger log concode_elem_sep String[] cacheURLs concode_field_sep String convertJNPURLToCacheURL concode_elem_sep void cleanContainer concode_elem_sep void cleanContainer concode_elem_sep void cleanContainerElement concode_elem_sep void cleanContainerElem...
void function ( String arg0 ) { runURLRequest ( "srini_string" , arg0 ) ; }
23,977
ee .5.15 , part of testsuite migration as6 - > as7 jbas7556 concode_field_sep String TO_BE_MISSSING_CLASS_NAME concode_elem_sep Logger logger concode_elem_sep String TO_BE_FOUND_CLASS_NAME concode_elem_sep ClassLoadingEJB ejb concode_field_sep void testUsePhysicalCodeSource concode_elem_sep void testAddingOtherJarResou...
void function ( ) { String loc0 = ejb . query ( "srini_string" ) ; assertEquals ( "srini_string" , loc0 ) ; loc0 = ejb . getResourceModuleName ( ) ; assertEquals ( "srini_string" , loc0 ) ; }
23,978
add a descriptor to the registry . concode_field_sep List themes concode_elem_sep List fonts concode_elem_sep Map dataMap concode_elem_sep Map categoryBindingMap concode_elem_sep List categories concode_elem_sep List colors concode_field_sep FontDefinition[] getFonts concode_elem_sep IThemeElementDefinition addOrReplac...
void function ( IThemeDescriptor arg0 ) { if ( findTheme ( arg0 . getId ( ) ) != null ) { return ; } themes . add ( arg0 ) ; }
23,979
sets the total request uri . concode_field_sep String rawBaseUri concode_elem_sep String rawQueryPath concode_elem_sep String protocol concode_elem_sep HttpMethod method concode_elem_sep String rawODataPath concode_elem_sep String rawRequestUri concode_elem_sep String rawServiceResolutionUri concode_elem_sep HttpHeader...
void function ( final String arg0 ) { this . rawRequestUri = arg0 ; }
23,980
encodes a bcd value concode_field_sep Logger logger concode_field_sep byte[] encode concode_elem_sep byte decodeBCD concode_elem_sep short decodeUChar concode_elem_sep byte[] encodeWord concode_elem_sep short decodeDATA1b concode_elem_sep float decodeDATA2c concode_elem_sep float decodeDATA2b concode_elem_sep float dec...
byte function ( byte arg0 ) { return ( byte ) ( ( byte ) ( ( byte ) ( arg0 / 10 ) << 4 ) | arg0 % 10 ) ; }
23,981
insert the inconsistenttypecode into the given any . concode_field_sep PlaceHolder placeHolder concode_field_sep InconsistentTypeCode extract concode_elem_sep InconsistentTypeCode read concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
void function ( Any arg0 , InconsistentTypeCode arg1 ) { arg0 . insert_Streamable ( new EmptyExceptionHolder ( arg1 , type ( ) ) ) ; }
23,982
match the given text with the pattern concode_field_sep boolean fIgnoreWildCards concode_elem_sep int fLength concode_elem_sep String fPattern concode_elem_sep boolean fHasTrailingStar concode_elem_sep String fSegments[] concode_elem_sep int start concode_elem_sep int fBound concode_elem_sep int end concode_elem_sep bo...
boolean function ( String arg0 ) { return match ( arg0 , 0 , arg0 . length ( ) ) ; }
23,983
return parsed classpath , but with symlinks resolved to destination files for matching this is for matching the torealpath in the code where we have a proper plugin structure concode_field_sep PlaceHolder placeHolder concode_field_sep void ensureInitialized concode_elem_sep Map<String,Policy> getPluginPermissions conco...
URL [ ] function ( ) { URL loc0 [ ] = JarHell . parseClassPath ( ) ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { loc0 [ loc1 ] = PathUtils . get ( loc0 [ loc1 ] . toURI ( ) ) . toRealPath ( ) . toUri ( ) . toURL ( ) ; } return loc0 ; }
23,984
creates a resizable arraylist instance containing the givenelements . note : due to a bug in javac 1.5.0 _ 06 , we can not support the following : list list = lists.newarraylist sub1 , sub2 ; where sub1 and sub2 are references to subtypes of base , not of base itself . to get around this , you mustuse : list list = lis...
ArrayList < E > function ( E ... arg0 ) { int loc0 = ( arg0 . length * 110 ) / 100 + 5 ; ArrayList < E > loc1 = new ArrayList < > ( loc0 ) ; Collections . addAll ( loc1 , arg0 ) ; return loc1 ; }
23,985
helper method which creates the standard output stream . vm implementors may choose to construct these streams differently . this method can also return null if the stream is created somewhere else in the vm startup sequence . concode_field_sep PlaceHolder placeHolder concode_field_sep void setErr concode_elem_sep Inpu...
PrintStream function ( ) { return new PrintStream ( new BufferedOutputStream ( new FileOutputStream ( FileDescriptor . out ) ) , true ) ; }
23,986
atmos ssl validation concode_field_sep String fullTokenId concode_elem_sep String secretKey concode_elem_sep String remotePath concode_elem_sep String query concode_elem_sep String name concode_elem_sep String localPath concode_elem_sep String newRemotePath concode_elem_sep boolean enableSslValidation concode_elem_sep ...
void function ( boolean arg0 ) { this . enableSslValidation = arg0 ; }
23,987
the list of elements that can point to this family of style . concode_field_sep ITransformer<String,String> Q_NAME_TRANSF concode_elem_sep SetMap<String,String> refElements concode_elem_sep SetMap<String,String> multiRefElements concode_elem_sep String elemName concode_elem_sep Class<S> clazz concode_elem_sep XMLVersio...
Collection < String > function ( ) { return this . getRefElementsMap ( ) . allValues ( ) ; }
23,988
undeclares a variable , to be used when the compiler optimizes out a variable and removes it from the scope . concode_field_sep Scope parent concode_elem_sep int depth concode_elem_sep Map<String,Var> vars concode_elem_sep Var arguments concode_elem_sep Node rootNode concode_field_sep Scope getParent concode_elem_sep i...
void function ( Var arg0 ) { Preconditions . checkState ( arg0 . scope == this ) ; Preconditions . checkState ( vars . get ( arg0 . name ) == arg0 ) ; vars . remove ( arg0 . name ) ; }
23,989
clears the content mask . concode_field_sep String patterns concode_elem_sep Collection<Pattern> compiledPatterns concode_elem_sep String mask concode_field_sep String getMask concode_elem_sep boolean filter concode_elem_sep void setPatterns concode_elem_sep boolean process concode_elem_sep void setMask concode_elem_se...
void function ( ) { mask = null ; }
23,990
get the number of attributes that the metric uses concode_field_sep int m_numActualPosPairs concode_elem_sep int m_classIndex concode_elem_sep int m_numActualNegPairs concode_elem_sep int[] m_attrIdxs concode_elem_sep StringMetric[][] m_metrics concode_field_sep void trainInstanceMetric concode_elem_sep void setClassIn...
int function ( ) { return m_attrIdxs . length ; }
23,991
parse the bytes out of a string coming from the compile command line . the first token of the line happens to be the byte value we want concode_field_sep Logger log concode_elem_sep long romBytes concode_elem_sep String appcLocation concode_elem_sep long ramBytes concode_field_sep TestResult build concode_elem_sep long...
long function ( String arg0 ) { return Long . decode ( new StringTokenizer ( arg0 ) . nextToken ( ) ) . longValue ( ) ; }
23,992
add a signature to the message . concode_field_sep String consumerSecret concode_elem_sep Base64 BASE64 concode_elem_sep Map<String,Class> NAME_TO_CLASS concode_elem_sep String _ACCESSOR concode_elem_sep Map.Entry value concode_elem_sep String tokenSecret concode_elem_sep String key concode_field_sep String base64Encod...
void function ( OAuthMessage arg0 ) { arg0 . addParameter ( new OAuth . Parameter ( "srini_string" , getSignature ( arg0 ) ) ) ; }
23,993
converts the object to a textual string that describes the resource record . concode_field_sep String m_name concode_elem_sep long m_TTL concode_elem_sep long m_created concode_elem_sep int[] ipAddress concode_elem_sep int m_type concode_elem_sep int m_class concode_field_sep InetAddress getInetAddress concode_elem_sep...
String function ( ) { return getRRName ( ) + "srini_string" + addressToByteString ( ) ; }
23,994
get lines to position map . concode_field_sep String title concode_elem_sep boolean reloadActionEnabled concode_elem_sep File currentFile concode_elem_sep String text concode_elem_sep List<Integer> linesToPosition concode_elem_sep ParseTreeTableModel parseTreeTableModel concode_field_sep boolean shouldAcceptFile concod...
List < Integer > function ( ) { return ImmutableList . copyOf ( linesToPosition ) ; }
23,995
start the task , start searching the document for the pattern . concode_field_sep boolean wholeWord concode_elem_sep int totalHitCount concode_elem_sep SwingController controller concode_elem_sep SearchPanel searchPanel concode_elem_sep int lengthOfTask concode_elem_sep boolean caseSensitive concode_elem_sep String dia...
void function ( ) { final SwingWorker loc0 = new SwingWorker ( ) { public Object construct ( ) { current = 0 ; done = false ; canceled = false ; dialogMessage = null ; return new ActualTask ( ) ; } } ; loc0 . setThreadPriority ( Thread . NORM_PRIORITY ) ; loc0 . start ( ) ; }
23,996
returns a supplier that caches the instance supplied by the delegate and removes the cached value after the specified time has passed . subsequent calls to get return the cached value if the expiration time hasnot passed . after the expiration time , a new value is retrieved , cached , and returned . see : memoization ...
Supplier < T > function ( Supplier < T > arg0 , long arg1 , TimeUnit arg2 ) { return new ExpiringMemoizingSupplier < T > ( arg0 , arg1 , arg2 ) ; }
23,997
gets the level of the electron beam steering current . concode_field_sep ElectronBeam mElectronBeam concode_elem_sep Choreographer mChoreographer concode_elem_sep boolean mElectronBeamDrawPending concode_elem_sep Runnable mCleanListener concode_elem_sep boolean DEBUG concode_elem_sep int mActualBacklight concode_elem_s...
float function ( ) { return mElectronBeamLevel ; }
23,998
returns an implementation of relprotodatatype that copies a given type using the given type factory . concode_field_sep RelDataTypeField field concode_elem_sep String digest concode_elem_sep int count concode_elem_sep List<RelDataTypeField> fieldList concode_field_sep void computeDigest concode_elem_sep void getFieldRe...
RelProtoDataType function ( final RelDataType arg0 ) { assert arg0 != null ; return new RelProtoDataType ( ) { public RelDataType apply ( RelDataTypeFactory arg1 ) { return arg1 . copyType ( arg0 ) ; } } ; }
23,999
returns the nth header name , or null if there is no such header . this may be used to iterate through all header fields . concode_field_sep CBuffer value concode_elem_sep Enumeration<String> EMPTY concode_elem_sep CBuffer key concode_elem_sep CBuffer tmpKey concode_elem_sep BBuffer valueB concode_elem_sep List<Entry> ...
CBuffer function ( int arg0 ) { return arg0 < count ? entries . get ( arg0 ) . getName ( ) : null ; }