idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
9,000
utility method for generating random double values in the range specified by the low and high attributes . used during the storeiventory initialization . concode_field_sep Random random concode_elem_sep RandomNumberGenerator randomNumberGenerator concode_field_sep int getRandomInteger concode_elem_sep void main concode...
double function ( double arg0 , double arg1 ) { double loc0 = random . nextDouble ( ) ; double loc1 = loc0 * ( arg1 - arg0 ) ; return loc1 + arg0 ; }
9,001
project concode_field_sep Map<String,DAO<?,Integer>> hm concode_field_sep Response deletePerson concode_elem_sep Response persistEmployer concode_elem_sep Response persistUser concode_elem_sep Response deleteEmployer concode_elem_sep List<Model> getAll concode_elem_sep Response updateEmployer concode_elem_sep Response ...
Response function ( @ PathParam ( "srini_string" ) int arg0 ) { ( ( DAO ) hm . get ( "srini_string" ) ) . delete ( ( ( DAO ) hm . get ( "srini_string" ) ) . getById ( arg0 ) ) ; return Response . status ( Status . OK ) . entity ( "srini_string" ) . build ( ) ; }
9,002
constructs a default query results . concode_field_sep PlaceHolder placeHolder concode_field_sep JSONObject defaultResult
JSONObject function ( ) { final JSONObject loc0 = new JSONObject ( ) ; final JSONObject loc1 = new JSONObject ( ) ; loc0 . put ( Pagination . PAGINATION , loc1 ) ; loc1 . put ( Pagination . PAGINATION_PAGE_COUNT , 0 ) ; final JSONArray loc2 = new JSONArray ( ) ; loc0 . put ( Keys . RESULTS , loc2 ) ; return loc0 ; }
9,003
return the model map . never returns null . to be called by application code for modifying the model . concode_field_sep Object view concode_elem_sep ModelMap model concode_elem_sep boolean cleared concode_field_sep boolean wasCleared concode_elem_sep void setViewName concode_elem_sep Map<String,Object> getModelInterna...
Map < String , Object > function ( ) { return getModelMap ( ) ; }
9,004
computes the incircle test using distance from the circumcentre . uses standard double-precision arithmetic . in general this does n't appear to be any more robust than the standard calculation . however , there is at least one case where the test point is far enough from the circumcircle that this test gives the corre...
boolean function ( Coordinate arg0 , Coordinate arg1 , Coordinate arg2 , Coordinate arg3 ) { Coordinate loc0 = Triangle . circumcentre ( arg0 , arg1 , arg2 ) ; double loc1 = arg0 . distance ( loc0 ) ; double loc2 = arg3 . distance ( loc0 ) - loc1 ; return loc2 <= 0 ; }
9,005
returns a new secure hash using the specified hash function salted with the sha1prng random number generator . concode_field_sep SecureRandom random concode_elem_sep String secureRandomAlgorithm concode_field_sep byte[] _nextSecureHash concode_elem_sep String hashToHexString concode_elem_sep byte[] seed
String function ( final String arg0 ) { return nextSecureHash ( arg0 , seed ( ) ) ; }
9,006
increase indent while printing concode_field_sep String decreaseIndentationString concode_elem_sep String baseName concode_elem_sep String indentation concode_elem_sep String commentChar concode_elem_sep Map<String,String> toolParams concode_elem_sep StringBuffer outputString concode_elem_sep String toolParamsString co...
void function ( ) { indentation += indentationAmount ; }
9,007
establish a server with a binding port concode_field_sep NioClientSocketChannelFactory clientChannelFactory concode_elem_sep ScheduledExecutorService clientScheduleService concode_elem_sep Map storm_conf concode_elem_sep Logger LOG concode_elem_sep int MAX_CLIENT_SCHEDULER_THREAD_POOL_SIZE concode_elem_sep Vector<IConn...
IConnection function ( String arg0 , int arg1 ) { IConnection loc0 = new Server ( storm_conf , arg1 ) ; connections . add ( loc0 ) ; return loc0 ; }
9,008
returns sql string for this config . concode_field_sep Predicate implementation concode_elem_sep String className concode_elem_sep PredicateConfigReadOnly readOnly concode_elem_sep String sql concode_field_sep Predicate getImplementation concode_elem_sep int hashCode concode_elem_sep PredicateConfig setImplementation c...
String function ( ) { return sql ; }
9,009
removing element from queue concode_field_sep Node head concode_elem_sep Node next concode_elem_sep Double value concode_field_sep boolean add concode_elem_sep Double getValue concode_elem_sep void setValue concode_elem_sep void setNext concode_elem_sep String toString concode_elem_sep String toString concode_elem_sep ...
Double function ( ) { if ( head != null ) { Double loc0 = head . value ; head = head . next ; return loc0 ; } else return null ; }
9,010
gets the flag that indicates whether we start on scheduler startup . concode_field_sep String DEFAULT_DATE_FORMAT concode_elem_sep int MILLISECONDS_PER_SECOND concode_elem_sep String dateFormat concode_elem_sep String description concode_elem_sep int MINUTES_PER_HOUR concode_elem_sep int DAYS_PER_WEEK concode_elem_sep ...
Boolean function ( ) { return this . startOnStartup ; }
9,011
returns the list of enrollments with the given current milestone name . concode_field_sep EnrollmentDataService enrollmentDataService concode_field_sep List<Enrollment> findByStatus concode_elem_sep List<Enrollment> findByMetadataProperty concode_elem_sep List<Enrollment> findByExternalId concode_elem_sep List<Enrollme...
List < Enrollment > function ( String arg0 ) { return enrollmentDataService . findByMilestoneName ( arg0 ) ; }
9,012
sets the applicationbuild property . concode_field_sep String exceptionType concode_elem_sep String process concode_elem_sep String parentProcess concode_elem_sep String applicationIdentifier concode_elem_sep String applicationBuild concode_elem_sep String applicationPath concode_elem_sep int parentProcessId concode_el...
void function ( String arg0 ) { this . applicationBuild = arg0 ; }
9,013
returns the parent protocol provider . concode_field_sep String adHocChatRoomName concode_elem_sep AdHocChatRoomProviderWrapper parentProvider concode_elem_sep String adHocChatRoomID concode_elem_sep AdHocChatRoom adHocChatRoom concode_field_sep String getAdHocChatRoomID concode_elem_sep AdHocChatRoom getAdHocChatRoom ...
AdHocChatRoomProviderWrapper function ( ) { return this . parentProvider ; }
9,014
returns the osgi service identifier . concode_field_sep PollsChoiceService _pollsChoiceService concode_field_sep void setWrappedService concode_elem_sep PollsChoiceService getWrappedService
java . lang . String function ( ) { return _pollsChoiceService . getOSGiServiceIdentifier ( ) ; }
9,015
returns the radio interface if any . concode_field_sep Log myLog concode_elem_sep PolledAfterActiveTicks[] polledAfterActive concode_elem_sep Clock myClock concode_elem_sep Button myButton concode_elem_sep LED myLED concode_elem_sep ArrayList<MoteInterface> moteInterfaces concode_elem_sep IPAddress myIPAddress concode_...
Radio function ( ) { if ( myRadio == null ) { myRadio = getInterfaceOfType ( Radio . class ) ; } return myRadio ; }
9,016
sets the value of the percent property . concode_field_sep RebateType rebateType concode_elem_sep Money amount concode_elem_sep String description concode_elem_sep BigDecimal percent concode_field_sep BigDecimal getPercent concode_elem_sep void setDescription concode_elem_sep void setAmount concode_elem_sep void setReb...
void function ( BigDecimal arg0 ) { this . percent = arg0 ; }
9,017
gets text . concode_field_sep String createdDate concode_elem_sep Object data concode_elem_sep String text concode_field_sep void setCreatedDate concode_elem_sep void setData concode_elem_sep String getCreatedDate concode_elem_sep Object getData concode_elem_sep void setText
String function ( ) { return text ; }
9,018
sets the value of the name property . concode_field_sep Object parent concode_elem_sep String ref concode_elem_sep String name concode_elem_sep String sheet concode_elem_sep String id concode_field_sep Object getParent concode_elem_sep void setRef concode_elem_sep String getName concode_elem_sep String getRef concode_e...
void function ( String arg0 ) { this . name = arg0 ; }
9,019
gets the value of the headerstatus property . concode_field_sep String documentApprover concode_elem_sep TypeCtWFlowType workflowType concode_elem_sep TypeCtWFlowHdrStatus headerStatus concode_field_sep void setHeaderStatus concode_elem_sep void setWorkflowType concode_elem_sep TypeCtWFlowType getWorkflowType concode_e...
TypeCtWFlowHdrStatus function ( ) { return headerStatus ; }
9,020
sets the content language response header override concode_field_sep String expires concode_elem_sep String cacheControl concode_elem_sep String RESPONSE_HEADER_CONTENT_ENCODING concode_elem_sep String RESPONSE_HEADER_CONTENT_DISPOSITION concode_elem_sep String[] PARAMETER_ORDER concode_elem_sep String RESPONSE_HEADER_...
ResponseHeaderOverrides function ( String arg0 ) { setContentLanguage ( arg0 ) ; return this ; }
9,021
sets a comment for this transformation . this property can be set either while the model is being constructed , or via a property passed in through a templatemethodmodel . concode_field_sep boolean m_bQuotes concode_elem_sep boolean m_bAmpersands concode_elem_sep String m_aComment concode_elem_sep boolean m_bTags conco...
void function ( String arg0 ) { m_aComment = arg0 ; }
9,022
returns the box at the specified index , or null on error . concode_field_sep long mNativePixa concode_elem_sep int mHeight concode_elem_sep int mWidth concode_elem_sep int mIndex concode_elem_sep boolean mRecycled concode_field_sep Pix next concode_elem_sep Rect getBoxRect concode_elem_sep int nativeGetPix concode_ele...
Box function ( int arg0 ) { long loc0 = nativeGetBox ( mNativePixa , arg0 ) ; if ( loc0 == 0 ) { return null ; } return new Box ( loc0 ) ; }
9,023
return a role for the given string value concode_field_sep ClientRole ROLE_CLIENT concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep String description concode_field_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep int compareTo concode_...
ClientRole function ( String arg0 ) { return new ClientRole ( arg0 ) ; }
9,024
get the id of the node which contains both its hostname and port . concode_field_sep RMNode rmNode concode_elem_sep String nodeName concode_elem_sep RMContainer reservedContainer concode_elem_sep Set<String> labels concode_elem_sep Resource usedResource concode_elem_sep Map<ContainerId,RMContainer> launchedContainers c...
NodeId function ( ) { return this . rmNode . getNodeID ( ) ; }
9,025
returns a function which performs a map lookup with a default value . the function created by this method returns defaultvalue for all inputs that do not belong to the map 's keyset . see also #formap map , which throws an exception in this case . concode_field_sep long serialVersionUID concode_elem_sep Predicate<T> pr...
Function < K , V > function ( Map < K , ? extends V > arg0 , @ Nullable V arg1 ) { return new ForMapWithDefault < K , V > ( arg0 , arg1 ) ; }
9,026
this is called to get a custom gradle executable file . if you do n't run gradle.bat or gradle shell script to run gradle , use this to specify what you do run . note : we 're going to pass it the arguments that we would pass to gradle so if you do n't like that , see altercommandlinearguments . normally , this should ...
File function ( ) { return gradleInterfaceWrapper . getCustomGradleExecutable ( ) ; }
9,027
sets the techniques a factoid answer was extracted with . concode_field_sep String sentence concode_elem_sep boolean correct concode_elem_sep String docID concode_elem_sep Query query concode_elem_sep float score concode_elem_sep ArrayList<String> coveredNuggets concode_elem_sep long serialVersionUID concode_elem_sep S...
void function ( String [ ] arg0 ) { extractionTechniques = arg0 ; }
9,028
returns padding using the specified delimiter repeated to a given length . stringutils.padding 0 , ` e ' = '' '' stringutils.padding 3 , ` e ' = `` eee '' stringutils.padding -2 , ` e ' = indexoutofboundsexception note : this method does n't not support padding with unicode supplementary characters as they require a pa...
String function ( int arg0 , char arg1 ) { if ( arg0 < 0 ) { throw new IndexOutOfBoundsException ( "srini_string" + arg0 ) ; } final char [ ] loc0 = new char [ arg0 ] ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { loc0 [ loc1 ] = arg1 ; } return new String ( loc0 ) ; }
9,029
sets whether this foo is field2 . concode_field_sep Foo _foo concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel...
void function ( boolean arg0 ) { _foo . setField2 ( arg0 ) ; }
9,030
creates an injector for the given set of modules , in a given development stage . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
Injector function ( Stage arg0 , Module ... arg1 ) { return createInjector ( arg0 , Arrays . asList ( arg1 ) ) ; }
9,031
called when the result of the #execute clusterstate have been processedproperly by all listeners . concode_field_sep PlaceHolder placeHolder concode_field_sep void onFailure concode_elem_sep void onNoLongerMaster concode_elem_sep ClusterState execute concode_elem_sep boolean runOnlyOnMaster concode_elem_sep TimeValue t...
void function ( String arg0 , ClusterState arg1 , ClusterState arg2 ) { }
9,032
gets the value of the projectid property . concode_field_sep Integer projectCodeTypeObjectId concode_elem_sep Date lastUpdateDate concode_elem_sep Boolean isBaseline concode_elem_sep String projectCodeTypeName concode_elem_sep Integer projectObjectId concode_elem_sep Boolean isTemplate concode_elem_sep String projectCo...
String function ( ) { return projectId ; }
9,033
sets up the processors for the test using all constructor combinations . concode_field_sep CellProcessor processorChain2 concode_elem_sep Map<Object,Object> VALUE_MAP concode_elem_sep CellProcessor processor2 concode_elem_sep CellProcessor processorChain concode_elem_sep CellProcessor processor concode_elem_sep String ...
void function ( ) { processor = new HashMapper ( VALUE_MAP ) ; processor2 = new HashMapper ( VALUE_MAP , DEFAULT_VALUE ) ; processorChain = new HashMapper ( VALUE_MAP , new IdentityTransform ( ) ) ; processorChain2 = new HashMapper ( VALUE_MAP , DEFAULT_VALUE , new IdentityTransform ( ) ) ; }
9,034
get the akismet api key . concode_field_sep boolean ENABLED_DEFAULT_VALUE concode_elem_sep Logger LOGGER concode_elem_sep LinkRewriterService linkRewriter concode_elem_sep OsgiConfigurationService osgiService concode_elem_sep String COMPONENT_PID concode_elem_sep String AKISMET_COMMENT_TYPE concode_elem_sep HttpService...
String function ( ) { return osgiService . getStringProperty ( COMPONENT_PID , AKISMET_API_KEY , null ) ; }
9,035
gets predecessor matrix concode_field_sep int numVertices concode_elem_sep float[][] Dk_minus_one concode_elem_sep float[][] Dk concode_elem_sep int[][] Pk concode_elem_sep int[][] Pk_minus_one concode_field_sep float[][] allPairsShortestPaths concode_elem_sep void initialize
int [ ] [ ] function ( ) { return Pk ; }
9,036
unmarshall the specified xml data into a sword entry . concode_field_sep SWORDEntry entry concode_elem_sep Logger log concode_elem_sep String location concode_elem_sep int httpResponse concode_field_sep SWORDErrorDocument getErrorDocument concode_elem_sep String getLocation concode_elem_sep String marshall concode_elem...
void function ( String arg0 ) { unmarshall ( arg0 , null ) ; }
9,037
adds a connection event listener to the managedconnection instance . concode_field_sep Logger log concode_elem_sep MultipleManagedConnectionFactory2 mcf concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep Object connection concode_elem_sep PrintWriter logwriter concode_field_sep void associateConn...
void function ( ConnectionEventListener arg0 ) { log . trace ( "srini_string" ) ; if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } listeners . add ( arg0 ) ; }
9,038
f0 - > `` if '' f1 - > '' '' f2 - > expression f3 - > '' '' f4 - > statement f5 - > `` else '' f6 - > statement concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
R function ( IfStatement arg0 ) { R loc0 = null ; arg0 . f0 . accept ( this ) ; arg0 . f1 . accept ( this ) ; arg0 . f2 . accept ( this ) ; arg0 . f3 . accept ( this ) ; arg0 . f4 . accept ( this ) ; arg0 . f5 . accept ( this ) ; arg0 . f6 . accept ( this ) ; return loc0 ; }
9,039
sets the type of this extensibility element . concode_field_sep QName elementType concode_elem_sep Boolean required concode_field_sep QName getElementType concode_elem_sep void setRequired concode_elem_sep Boolean getRequired
void function ( QName arg0 ) { elementType = arg0 ; }
9,040
you need to configure only the view resolver because it is the only component of the spring mvc infrastructure that is relevant for the test cases found from this test class . concode_field_sep String SECOND_TASK_TITLE concode_elem_sep Long FIRST_TASK_ID concode_elem_sep Long SECOND_TASK_ID concode_elem_sep String SEAR...
void function ( ) { service = stub ( TaskSearchService . class ) ; mockMvc = MockMvcBuilders . standaloneSetup ( new TaskSearchController ( service ) ) . setMessageConverters ( objectMapperHttpMessageConverter ( ) ) . build ( ) ; }
9,041
gets the end point of the transition , a float between 0.0 and 1.0 . defaults to 1.0 . concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep...
float function ( ) { return to ; }
9,042
returns the xpath version this selector is supposed to use . this is typically provided by the defaults section of the policy containing this selector . concode_field_sep boolean mustBePresent concode_elem_sep String contextPath concode_elem_sep String xpathVersion concode_elem_sep URI type concode_elem_sep Node policy...
String function ( ) { return xpathVersion ; }
9,043
returns the formatted string of the elapsed time . 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 con...
String function ( long arg0 ) { return NumberFormat . getInstance ( ) . format ( ( double ) arg0 / 1000 ) ; }
9,044
update . concode_field_sep Graphics myPen concode_elem_sep Vec2 myPos2 concode_elem_sep BufferedImage myImage concode_elem_sep Vec2 myPos1 concode_elem_sep Vec2 myDefaultPos2 concode_elem_sep GamePanel myGamePanel concode_elem_sep Vec2 myDefaultPos1 concode_field_sep Vec2 getScaledPos1 concode_elem_sep Vec2 getScaledPo...
void function ( ) { }
9,045
sets the whiteboxpluginhost to which the plugin tool is tied . this is the class that the plugin will send all feedback messages , progress updates , and return objects . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgress...
void function ( WhiteboxPluginHost arg0 ) { myHost = arg0 ; }
9,046
gets the content of this mapfield as a read-only list . concode_field_sep StorageMode mode concode_elem_sep MutatabilityAwareMap<K,V> mapData concode_elem_sep boolean isMutable concode_elem_sep List<Message> listData concode_elem_sep Converter<K,V> converter concode_elem_sep MapEntry<K,V> defaultEntry concode_field_sep...
List < Message > function ( ) { if ( mode == StorageMode . MAP ) { synchronized ( this ) { if ( mode == StorageMode . MAP ) { listData = convertMapToList ( mapData ) ; mode = StorageMode . BOTH ; } } } return Collections . unmodifiableList ( listData ) ; }
9,047
free a tag for reusing concode_field_sep ConcurrentHashMap<String,Queue<Tag>> map concode_elem_sep ConfigWeb config concode_field_sep Tag loadTag concode_elem_sep Tag use concode_elem_sep Queue<Tag> getQueue concode_elem_sep void reset
void function ( Tag arg0 ) { arg0 . release ( ) ; Queue < Tag > loc0 = getQueue ( arg0 . getClass ( ) . getName ( ) ) ; loc0 . add ( arg0 ) ; }
9,048
the file after it has been compressed concode_field_sep String gpsDateStamp concode_elem_sep String gpsLatitudeRef concode_elem_sep String gpsLongitude concode_elem_sep String gpsLatitude concode_elem_sep String whiteBalance concode_elem_sep String orientation concode_elem_sep String model concode_elem_sep String focal...
void function ( String arg0 ) { this . outFile = new ExifInterface ( arg0 ) ; }
9,049
number of scanners opened . concode_field_sep long num_scanners_opened concode_elem_sep long num_nsre_rpcs concode_elem_sep long num_multi_rpcs concode_elem_sep long num_row_locks concode_elem_sep long num_scans concode_elem_sep long meta_lookups_wo_permit concode_elem_sep long num_flushes concode_elem_sep long num_get...
long function ( ) { return num_scanners_opened ; }
9,050
returns total volume in this candle . concode_field_sep int MAX_SEQUENCE concode_elem_sep int eventFlags concode_elem_sep long count concode_elem_sep double vwap concode_elem_sep long index concode_elem_sep double open concode_elem_sep long askVolume concode_elem_sep long volume concode_elem_sep CandleSymbol eventSymbo...
long function ( ) { return volume ; }
9,051
returns a converter specified by the type . concode_field_sep Map<ConverterType,Converter<?>> converters concode_field_sep void addConverter
Converter < ? > function ( ConverterType arg0 ) { return converters . get ( arg0 ) ; }
9,052
set the . woo file encoding concode_field_sep int htmlBodyType concode_elem_sep String adaptorName concode_elem_sep String gid concode_elem_sep boolean createBodyTag concode_elem_sep String Key concode_elem_sep String wooEncoding concode_elem_sep String mavenVersion concode_elem_sep String artifactId concode_elem_sep S...
void function ( String arg0 ) { this . wooEncoding = arg0 ; }
9,053
gets arraylist of currently active timezonewrapper objects . this list is populated by selectbooleancheckbox components in ui . concode_field_sep boolean dialogRendered concode_elem_sep DateFormat selectedFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep DateFormat serverFormat concode_elem_sep int...
ArrayList function ( ) { return checkedTimeZoneList ; }
9,054
get and getandremove on empty leaf should return null . concode_field_sep ArrayBasedStorageLeaf<DefaultData> arrayBasedStorageLeaf concode_elem_sep int LEAF_ID concode_field_sep void sameElementIndexedTwice concode_elem_sep void init concode_elem_sep void minIdQuery concode_elem_sep void includeExcludeIdQuery concode_e...
void function ( ) { DefaultData loc0 = mock ( DefaultData . class ) ; when ( loc0 . getId ( ) ) . thenReturn ( 10L ) ; assertThat ( arrayBasedStorageLeaf . get ( loc0 ) , is ( nullValue ( ) ) ) ; assertThat ( arrayBasedStorageLeaf . getAndRemove ( loc0 ) , is ( nullValue ( ) ) ) ; }
9,055
clears this object , recycling the underlying node if owned . this object should not be used after this method is called . concode_field_sep boolean mOwned concode_elem_sep AccessibilityNodeInfoCompat mNode concode_field_sep AccessibilityNodeInfoRef obtain concode_elem_sep boolean parent concode_elem_sep boolean previo...
void function ( ) { clear ( ) ; }
9,056
set the value of the javafx.scene.effect.colorinput #getwidth width property for the instance constructed by this builder . concode_field_sep int __set concode_elem_sep double width concode_elem_sep double x concode_elem_sep javafx.scene.paint.Paint paint concode_elem_sep double y concode_elem_sep double height concode...
B function ( double arg0 ) { this . width = arg0 ; __set |= 1 << 2 ; return ( B ) this ; }
9,057
returns boolean #tostring , or null if value is null . concode_field_sep PlaceHolder placeHolder concode_field_sep Class<?> getType concode_elem_sep Boolean parse
String function ( Object arg0 ) { if ( arg0 == null ) return null ; return arg0 . toString ( ) ; }
9,058
get server by id concode_field_sep Atomic instance concode_elem_sep HashMap<Integer,Server> servers concode_elem_sep boolean serversLoaded concode_field_sep void loadServers concode_elem_sep Atomic getInstance concode_elem_sep void removeServerById concode_elem_sep void setServers concode_elem_sep ArrayList<Server> get...
Server function ( int arg0 ) { return servers . get ( arg0 ) ; }
9,059
loads the abilities . concode_field_sep Map<Integer,Ability> abilities concode_elem_sep Map<Integer,Ability> MAPPING concode_field_sep void init concode_elem_sep Map<Integer,Ability> getMapping concode_elem_sep Ability getAbility concode_elem_sep Ability getAbility concode_elem_sep boolean register
void function ( ) { for ( int loc0 : MAPPING . keySet ( ) ) { abilities . put ( loc0 , MAPPING . get ( loc0 ) . newInstance ( ) ) ; } }
9,060
sets the nam of this ke hoach kiem dem nuoc . concode_field_sep KeHoachKiemDemNuoc _keHoachKiemDemNuoc concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.util.Date getNgayXuatBan concode_elem_sep boole...
void function ( int arg0 ) { _keHoachKiemDemNuoc . setNam ( arg0 ) ; }
9,061
sets the value of the namespaceuri property . concode_field_sep Object parent concode_elem_sep String name concode_elem_sep String namespaceUri concode_elem_sep String url concode_field_sep void setName concode_elem_sep String getUrl concode_elem_sep Object getParent concode_elem_sep String getName concode_elem_sep voi...
void function ( String arg0 ) { this . namespaceUri = arg0 ; }
9,062
gets the value of the title property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep EXGeographicDescriptionType exGeographicDescription concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep Str...
String function ( ) { return title ; }
9,063
reads in a given maze file , performs various validation and constructs a representation of the maze concode_field_sep PlaceHolder placeHolder concode_field_sep void validateMaze concode_elem_sep Maze constructMaze concode_elem_sep List<String> readMazeFile
Maze function ( String arg0 ) { List < String > loc0 = readMazeFile ( arg0 ) ; validateMaze ( loc0 ) ; return constructMaze ( loc0 ) ; }
9,064
stores the given reason phrase , by status code . helper method to initialize the static lookup table . concode_field_sep EnglishReasonPhraseCatalog INSTANCE concode_elem_sep String[][] REASON_PHRASES concode_field_sep String getReason
void function ( int arg0 , String arg1 ) { final int loc0 = arg0 / 100 ; final int loc1 = arg0 - 100 * loc0 ; REASON_PHRASES [ loc0 ] [ loc1 ] = arg1 ; }
9,065
get the set of available transports in a map concode_field_sep Map<String,TransportService> transportStore concode_elem_sep Log log concode_elem_sep TransportStore INSTANCE concode_field_sep void addTransport concode_elem_sep TransportService getTransport concode_elem_sep void removeTransport concode_elem_sep Transport...
Map < String , TransportService > function ( ) { return Collections . unmodifiableMap ( transportStore ) ; }
9,066
returns a copy of the given path with the extension omitted . concode_field_sep Logger LOG concode_elem_sep String DEFAULT_CHARSET concode_field_sep boolean isImageFile concode_elem_sep String basename concode_elem_sep String getPackageName concode_elem_sep String dirname concode_elem_sep boolean isTextFile concode_ele...
String function ( String arg0 ) { int loc0 = arg0 . lastIndexOf ( '/' ) ; int loc1 = arg0 . lastIndexOf ( '.' ) ; return ( loc1 > loc0 ) ? arg0 . substring ( 0 , loc1 ) : arg0 ; }
9,067
resets the iterator to point to the start of the page . concode_field_sep int mNativePageIterator concode_field_sep boolean next concode_elem_sep void nativeBegin concode_elem_sep boolean nativeNext
void function ( ) { nativeBegin ( mNativePageIterator ) ; }
9,068
returns a skylark provider and try to cast it into the specified type concode_field_sep ImmutableMap<String,Object> skylarkProviders concode_field_sep SkylarkProviders merge concode_elem_sep ImmutableCollection<String> getKeys
TYPE function ( String arg0 , Class < TYPE > arg1 ) { Object loc0 = skylarkProviders . get ( arg0 ) ; if ( loc0 == null ) { return null ; } SkylarkType . checkType ( loc0 , arg1 , arg0 ) ; return arg1 . cast ( loc0 ) ; }
9,069
set the strategy to use for processing binding errors , that is , required field errors and propertyaccessexception s. default is null , that is , using the default strategy of the data binder . concode_field_sep boolean autoGrowNestedPaths concode_elem_sep BindingErrorProcessor bindingErrorProcessor concode_elem_sep M...
void function ( BindingErrorProcessor arg0 ) { this . bindingErrorProcessor = arg0 ; }
9,070
mute the radio volume concode_field_sep String REQUEST_GET_MODE concode_elem_sep FrontierSiliconRadioConnection conn concode_elem_sep String REQUEST_SET_MUTE concode_elem_sep String REQUEST_GET_VOLUME concode_elem_sep String REQUEST_GET_PLAY_INFO_TEXT concode_elem_sep String REQUEST_GET_MUTE concode_elem_sep String REQ...
void function ( boolean arg0 ) { final String loc0 = "srini_string" + ( arg0 ? "srini_string" : "srini_string" ) ; conn . doRequest ( REQUEST_SET_MUTE , loc0 ) ; }
9,071
returns the delegate provider , or null if it has not yet been initialized . the delegatewill be initialized when this element is processed , or otherwise used to create an injector . concode_field_sep Provider<T> delegate concode_elem_sep Dependency<T> dependency concode_elem_sep Object source concode_field_sep T acce...
Provider < T > function ( ) { return delegate ; }
9,072
getstringset concode_field_sep String COMMA concode_elem_sep Ringtone mRingtone concode_elem_sep String LF concode_elem_sep SharedPreferences mPreferences concode_elem_sep Context mContext concode_field_sep String getRingtoneTitle concode_elem_sep String getRingtoneTitle concode_elem_sep boolean playRingtone concode_el...
Set < String > function ( String arg0 , Set < String > arg1 ) { Set < String > loc0 = mPreferences . getStringSet ( arg0 , arg1 ) ; return loc0 ; }
9,073
get the number of acceptance pairs concode_field_sep int _size concode_elem_sep MyBitSet _U concode_elem_sep MyBitSet _L concode_field_sep MyBitSet getL concode_elem_sep void setU concode_elem_sep void clear concode_elem_sep RabinAcceptance.RabinColor getColor concode_elem_sep int compareTo concode_elem_sep MyBitSet ge...
int function ( ) { return _size ; }
9,074
sets the severity of change . concode_field_sep FunctionOptimisationProblem fda5_g_problem concode_elem_sep int n_t concode_elem_sep ContinuousFunction fda5_g concode_elem_sep int tau concode_elem_sep int K concode_elem_sep long serialVersionUID concode_elem_sep int M concode_elem_sep int tau_t concode_elem_sep int n c...
void function ( int arg0 ) { this . n_t = arg0 ; }
9,075
round the size of a rectangle with double values . concode_field_sep MapfishMapContext parent concode_elem_sep Dimension mapSize concode_elem_sep double requestorDpi concode_elem_sep double rotation concode_elem_sep MapBounds bounds concode_elem_sep boolean dpiSensitiveStyle concode_elem_sep double dpi concode_elem_sep...
Dimension function ( final Rectangle2D . Double arg0 ) { return new Dimension ( ( int ) Math . round ( arg0 . width ) , ( int ) Math . round ( arg0 . height ) ) ; }
9,076
sets the value of the emailaddress property . concode_field_sep String emailAddressTypeCd concode_elem_sep String emailAddress concode_elem_sep String partyKey concode_field_sep String getPartyKey concode_elem_sep String getEmailAddress concode_elem_sep String getEmailAddressTypeCd concode_elem_sep void setEmailAddress...
void function ( String arg0 ) { this . emailAddress = arg0 ; }
9,077
replaces the content of a tag . concode_field_sep String EXTRASPACE concode_elem_sep String XPACKET_PI_BEGIN concode_elem_sep Document domDocument concode_elem_sep String XPACKET_PI_END_W concode_field_sep boolean replaceDescriptionAttribute concode_elem_sep boolean add concode_elem_sep boolean setNodeText concode_elem...
boolean function ( String arg0 , String arg1 , String arg2 ) { NodeList loc0 = domDocument . getElementsByTagNameNS ( arg0 , arg1 ) ; Node loc1 ; if ( loc0 . getLength ( ) == 0 ) return false ; for ( int loc2 = 0 ; loc2 < loc0 . getLength ( ) ; loc2 ++ ) { loc1 = loc0 . item ( loc2 ) ; setNodeText ( domDocument , loc1 ...
9,078
the spring boot version to use or null if it should not be customized . 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 String packaging concode_elem_sep String language concode_e...
String function ( ) { return this . bootVersion ; }
9,079
builds content xcontentbuilder for a period using the records concode_field_sep AtomicBoolean processCompleted concode_elem_sep ESLogger logger concode_elem_sep double second concode_elem_sep String field_string_1 concode_elem_sep String field_string_2 concode_elem_sep String field_string_3 concode_elem_sep String fiel...
void function ( Map < String , ResponseRecord > arg0 , XContentBuilder arg1 , String arg2 ) { logger . debug ( "srini_string" ) ; }
9,080
returns the user i b s t where userliferayid = &#63; or returns null if it could not be found . uses the finder cache . concode_field_sep UserIBSTPersistence _persistence concode_field_sep int countAll concode_elem_sep void cacheResult concode_elem_sep void cacheResult concode_elem_sep com.newway.model.UserIBST findByU...
com . newway . model . UserIBST function ( long arg0 ) { return getPersistence ( ) . fetchByUserLiferay ( arg0 ) ; }
9,081
returns a set of the languages the configuredtarget generates output for . for use only by rules that directly depend on this library via a `` deps '' attribute . concode_field_sep ImmutableSet<LibraryLanguage> languages concode_elem_sep String displayName concode_elem_sep Label label concode_field_sep boolean depSuppo...
ImmutableSet < LibraryLanguage > function ( ) { return languages ; }
9,082
test of find method , of class participantservice . concode_field_sep PlaceHolder placeHolder concode_field_sep void setUpClass concode_elem_sep void testRemoveAll concode_elem_sep void testFindAll concode_elem_sep void tearDownClass concode_elem_sep void setUpMethod concode_elem_sep void tearDownMethod
void function ( ) { System . out . println ( "srini_string" ) ; Integer loc0 = null ; ParticipantService loc1 = null ; Participant loc2 = null ; Participant loc3 = loc1 . find ( loc0 ) ; assertEquals ( loc3 , loc2 ) ; fail ( "srini_string" ) ; }
9,083
a list of lambda function versions . note : this method appends the values to the existing list if any . use #setversions java.util.collection or #withversions java.util.collection if you want to override theexisting values . returns a reference to this object so that method calls can be chained together . concode_fiel...
ListVersionsByFunctionResult function ( FunctionConfiguration ... arg0 ) { if ( getVersions ( ) == null ) setVersions ( new java . util . ArrayList < FunctionConfiguration > ( arg0 . length ) ) ; for ( FunctionConfiguration loc0 : arg0 ) { getVersions ( ) . add ( loc0 ) ; } return this ; }
9,084
returns number from the tokenizer . note that we do n't recognize numbers in the tokenizer automatically because numbers might be in scientific notation , which is n't processed correctly by streamtokenizer concode_field_sep char lineSeparatorChar concode_elem_sep int NONE concode_elem_sep int currentLevel concode_elem...
double function ( StreamTokenizer arg0 ) { try { int loc0 = arg0 . nextToken ( ) ; } catch ( IOException loc1 ) { throw new ParsingErrorException ( loc1 . getMessage ( ) ) ; } checkType ( arg0 , WORD ) ; return ( ( Double . valueOf ( arg0 . sval ) ) . doubleValue ( ) ) ; }
9,085
sets the id value for this projectversiondata . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.util.Calendar date_order concode_elem_sep java.math.BigInteger project_id concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang...
void function ( java . math . BigInteger arg0 ) { this . id = arg0 ; }
9,086
creates / updates a new entry locally and notifies all nodes in network concode_field_sep PlaceHolder placeHolder concode_field_sep void deleteList concode_elem_sep void deleteList concode_elem_sep TodoList createList concode_elem_sep void createList concode_elem_sep void deleteEntry concode_elem_sep void deleteEntry c...
Entry function ( Entry arg0 ) { EntryDao . save ( arg0 ) ; updateUI ( ) ; Message loc0 = new Message ( ) ; loc0 . putMeta ( Global . UMESSAGE_KEY_METHOD , String . valueOf ( Global . METHOD_UPDATE_ENTRY ) ) ; loc0 . setData ( JsonFactory . toJson ( arg0 ) . getBytes ( ) ) ; ApplicationClass . send ( loc0 ) ; return arg...
9,087
true if the default value has changed . concode_field_sep int dataPrecision concode_elem_sep boolean nullHasChanged concode_elem_sep String charUsed concode_elem_sep String defaultValue concode_elem_sep boolean isNumberType concode_elem_sep String dataType concode_elem_sep int charColDeclLength concode_elem_sep String ...
boolean function ( ) { return defaultHasChanged ; }
9,088
create an instance of property concode_field_sep PlaceHolder placeHolder concode_field_sep LookupMethod createLookupMethod concode_elem_sep TypedCollectionType createTypedCollectionType concode_elem_sep List createList concode_elem_sep Prop createProp concode_elem_sep Key createKey concode_elem_sep Map createMap concod...
Property function ( ) { return new Property ( ) ; }
9,089
makes sure an argument is non-null . concode_field_sep long serialVersionUID concode_elem_sep String comments concode_elem_sep DirectPosition source concode_elem_sep double accuracy concode_elem_sep DirectPosition target concode_field_sep void setSource concode_elem_sep double distance concode_elem_sep double getAccura...
void function ( final String arg0 , final Object arg1 ) { if ( arg1 == null ) { throw new IllegalArgumentException ( Errors . format ( ErrorKeys . NULL_ARGUMENT_$1 , arg0 ) ) ; } }
9,090
sets the next newer history entry relative to this one . concode_field_sep List<Integer> endPath concode_elem_sep Entry nextEntry concode_elem_sep List<Integer> startPath concode_elem_sep Entry previousEntry concode_elem_sep String content concode_field_sep List<Integer> getStartPath concode_elem_sep Entry getNextEntry...
void function ( Entry arg0 ) { this . nextEntry = arg0 ; }
9,091
returns the tick id . concode_field_sep String exchangeId concode_elem_sep long tickId concode_elem_sep long timeStamp concode_elem_sep BigDecimal volume concode_elem_sep BigDecimal volume24 concode_elem_sep BigDecimal size concode_elem_sep BigDecimal price concode_field_sep BigDecimal getSize concode_elem_sep BigDecim...
long function ( ) { return tickId ; }
9,092
remove and return all failed mails . concode_field_sep SimpleReadWriteLock m_aRWLock concode_elem_sep IMutableStatisticsHandlerCounter s_aStatsCountAdd concode_elem_sep IMutableStatisticsHandlerCounter s_aStatsCountRemove concode_elem_sep ICommonsOrderedMap<String,FailedMailData> m_aMap concode_field_sep void add conco...
ICommonsList < FailedMailData > function ( ) { return m_aRWLock . writeLocked ( ( ) -> internalRemoveAll ( ) ) ; }
9,093
instructs the lognode to print the log data provided . other lognodes can be chained to the end of the lognode as desired . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNod...
void function ( int arg0 , String arg1 , String arg2 , Throwable arg3 ) { if ( mLogNode != null ) { mLogNode . println ( arg0 , arg1 , arg2 , arg3 ) ; } }
9,094
creates a databundle as specified in typicaldatabundle.json concode_field_sep PlaceHolder placeHolder concode_field_sep void printTestClassHeader concode_elem_sep String getPopulatedErrorMessage concode_elem_sep String getPopulatedErrorMessage concode_elem_sep void assertFalse concode_elem_sep void assertFalse concode_...
DataBundle function ( ) { return loadDataBundle ( "srini_string" ) ; }
9,095
gets the value of the target property . concode_field_sep Map<QName,String> otherAttributes concode_elem_sep String id concode_elem_sep URI target concode_field_sep void setTarget concode_elem_sep void setId concode_elem_sep String getId concode_elem_sep void addOtherAttribute concode_elem_sep Map<QName,String> getOthe...
URI function ( ) { return target ; }
9,096
sends a transfer initated event to all listeners concode_field_sep Wagon wagon concode_elem_sep Set<TransferListener> listeners concode_field_sep void fireTransferStarted concode_elem_sep void fireTransferProgress concode_elem_sep void fireTransferError concode_elem_sep void removeListener concode_elem_sep void fireTra...
void function ( Resource arg0 , int arg1 ) { TransferEvent loc0 = new TransferEvent ( wagon , arg0 , TransferEvent . TRANSFER_INITIATED , arg1 ) ; for ( TransferListener loc1 : listeners ) { loc1 . transferInitiated ( loc0 ) ; } }
9,097
a unit test for junit concode_field_sep BuildFileRule buildRule concode_field_sep void testFilterChain concode_elem_sep void testNoSourcefilefound concode_elem_sep void testLoadAFile concode_elem_sep void testEvalProps concode_elem_sep void testStripJavaComments concode_elem_sep void setUp concode_elem_sep void testNoS...
void function ( ) { buildRule . executeTarget ( "srini_string" ) ; assertNotNull ( "srini_string" , buildRule . getProject ( ) . getProperty ( "srini_string" ) ) ; }
9,098
put an object into the engine 's global bindings . this is the same as registering a ` var ' in the javascript . concode_field_sep String engine_type concode_elem_sep ScriptEngineManager manager concode_elem_sep List<String> loadedScripts concode_elem_sep ScriptEngine engine concode_elem_sep NonVitalLoadTask loadTask c...
void function ( String arg0 , Object arg1 ) { requireLoad ( ) ; checkSupported ( ) ; engine . put ( arg0 , arg1 ) ; }
9,099
gets the value of the abstract property . concode_field_sep List<String> semanticTypeIdentifier concode_elem_sep String name concode_elem_sep String featureTypeName concode_elem_sep List<Rule> rule concode_elem_sep String title concode_elem_sep String _abstract concode_field_sep void setName concode_elem_sep String get...
String function ( ) { return _abstract ; }