idx int64 0 25k | question stringlengths 72 5.69k | target stringlengths 21 481 |
|---|---|---|
16,200 | getters and setters for all the data members of the class concode_field_sep int[][] sBoxes concode_elem_sep long cd concode_elem_sep long data concode_elem_sep long left concode_elem_sep long right concode_elem_sep long key concode_field_sep long generateKn concode_elem_sep long getKey concode_elem_sep void setLeft con... | long function ( ) { return left ; } |
16,201 | sets the bids concode_field_sep BazaarAccount seller concode_elem_sep Long itemId concode_elem_sep String itemName concode_elem_sep Date createdDate concode_elem_sep Date bidEndDate concode_elem_sep BigDecimal initialPrice concode_elem_sep List<Bid> bids concode_elem_sep String description concode_elem_sep Date bidStar... | void function ( List < Bid > arg0 ) { this . bids = arg0 ; } |
16,202 | return the string which stands for the type specified by input argument concode_field_sep int INT concode_elem_sep int TIMESTAMP concode_elem_sep int BLOB concode_elem_sep int DOUBLE concode_elem_sep int DATE concode_elem_sep int STRING concode_elem_sep HashMap typeIntStringPair concode_elem_sep int BIGDECIMAL concode_... | String function ( int arg0 ) { Integer loc0 = new Integer ( arg0 ) ; if ( typeIntStringPair . containsKey ( loc0 ) ) return typeIntStringPair . get ( loc0 ) . toString ( ) ; throw new OdaException ( ) ; } |
16,203 | returns the number of opened file descriptors associated with the current process , or -1 if not supported . concode_field_sep OperatingSystemMXBean osMxBean concode_elem_sep ProcessProbe INSTANCE concode_elem_sep Method getProcessCpuLoad concode_elem_sep Method getProcessCpuTime concode_elem_sep Method getCommittedVir... | long function ( ) { if ( getOpenFileDescriptorCountField == null ) { return - 1 ; } try { return ( Long ) getOpenFileDescriptorCountField . invoke ( osMxBean ) ; } catch ( Throwable loc0 ) { return - 1 ; } } |
16,204 | associate a new unique value with a specified key . under the covers , the method employs optimistic concurrency : if no set is associated with a given key , we create a new set ; if another thread comes in , creates , and associates a set with the same key in the mean-time , we simply add the value to the already crea... | void function ( K arg0 , V arg1 ) { Set < V > loc0 = container . get ( arg0 ) ; if ( loc0 != null ) { loc0 . add ( arg1 ) ; } else { loc0 = valueSetFactory . get ( ) ; loc0 . add ( arg1 ) ; Set < V > loc1 = container . putIfAbsent ( arg0 , loc0 ) ; if ( loc1 != null ) { loc1 . add ( arg1 ) ; } } } |
16,205 | starts dispatching messages to the given handler . the handler does not need to be thread-safe . concode_field_sep Lock lock concode_elem_sep Condition condition concode_elem_sep int maxQueueSize concode_elem_sep int dispatchers concode_elem_sep Executor executor concode_elem_sep int MAX_QUEUE_SIZE concode_elem_sep Sta... | void function ( final Dispatch < ? super T > arg0 ) { onDispatchThreadStart ( ) ; executor . execute ( new Runnable ( ) { public void run ( ) { try { dispatchMessages ( arg0 ) ; } finally { onDispatchThreadExit ( ) ; } } } ) ; } |
16,206 | retrieves last counter number from queue -1 on empty queue concode_field_sep boolean active concode_elem_sep BlockingQueue<RSSIResponseRecord> inputQueue concode_elem_sep int mobile_nodeid concode_field_sep boolean add concode_elem_sep void setMobile_nodeid concode_elem_sep void setActive concode_elem_sep boolean canIn... | int function ( ) { if ( inputQueue . isEmpty ( ) ) return - 1 ; RSSIResponseRecord loc0 = inputQueue . peek ( ) ; return loc0 . getCounter ( ) ; } |
16,207 | sample_has_redundancy takes one of the following four values : 0 : it is unknown whether there is redundant coding in this sample ; 1 : there is redundant coding in this sample ; 2 : there is no redundant coding in this sample ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep int samplePad... | int function ( ) { return sampleHasRedundancy ; } |
16,208 | set boolean that indicates if the user has permissions to download this material . concode_field_sep String zoomLevel concode_elem_sep String resourceId concode_elem_sep String KEY_LON concode_elem_sep String KEY_BBOX concode_elem_sep String KEY_ID concode_elem_sep int TRUNCATE_DESCRIPTION_LENGTH concode_elem_sep Strin... | void function ( boolean arg0 ) { this . downloadAllowed = arg0 ; } |
16,209 | reverts previously used camera to pre shake position concode_field_sep float maxMagnitude concode_elem_sep float magnitudeTaperScale concode_elem_sep Vector2 target concode_elem_sep float freq concode_elem_sep Vector2 start concode_elem_sep Vector3 out concode_elem_sep float duration concode_elem_sep ShakeStrategy simp... | void function ( ) { if ( camera == null ) throw new AssertionError ( "srini_string" ) ; camera . position . set ( camPos ) ; camera . update ( ) ; camera = null ; } |
16,210 | create an instance of chip concode_field_sep QName _Description_QNAME concode_elem_sep QName _Year_QNAME concode_elem_sep QName _Manufacturer_QNAME concode_field_sep Slot createSlot concode_elem_sep Port createPort concode_elem_sep JAXBElement<String> createYear concode_elem_sep Extension createExtension concode_elem_s... | Chip function ( ) { return new Chip ( ) ; } |
16,211 | returns the display name by the original name . concode_field_sep String prefix concode_elem_sep String suffix concode_elem_sep String[] nameArray concode_elem_sep String[] displayNameArray concode_field_sep void initDisplayNameArray concode_elem_sep int getNameIndex concode_elem_sep NameSet join concode_elem_sep Strin... | String function ( String arg0 ) { for ( int loc0 = 0 ; loc0 < nameArray . length ; loc0 ++ ) { if ( arg0 != null && arg0 . equals ( nameArray [ loc0 ] ) ) { return displayNameArray [ loc0 ] ; } } return null ; } |
16,212 | create an instance of orm concode_field_sep QName _Orm_QNAME concode_field_sep Update createUpdate concode_elem_sep Insert createInsert concode_elem_sep Select createSelect concode_elem_sep Delete createDelete | Orm function ( ) { return new Orm ( ) ; } |
16,213 | called to give the fragment a chance to update it 's child fragments in response to other changes within the wizard or task model . concode_field_sep TaskWizardPage page concode_elem_sep TaskModel taskModel concode_elem_sep List<WizardFragment> listImpl concode_elem_sep boolean isComplete concode_field_sep IWizardPage ... | void function ( ) { listImpl = null ; } |
16,214 | adds the specified annotation . any previous value associated with the given annotation key will be overwritten . concode_field_sep Map<String,String> map concode_elem_sep String REMOVED concode_elem_sep Map<String,String> builder concode_field_sep boolean isRemoved concode_elem_sep DefaultAnnotations build concode_ele... | Builder function ( String arg0 , String arg1 ) { builder . put ( arg0 , arg1 ) ; return this ; } |
16,215 | calls casexxx for each class of the model until one returns a non null result ; it yields that result . concode_field_sep CascadenotallPackage modelPackage concode_field_sep T caseLibrary concode_elem_sep T caseBook concode_elem_sep T caseWriter concode_elem_sep T defaultCase | T function ( EObject arg0 ) { return doSwitch ( arg0 . eClass ( ) , arg0 ) ; } |
16,216 | retrieves a string representation of this object . concode_field_sep boolean isCaseSensitive concode_elem_sep boolean isSigned concode_elem_sep int precision concode_elem_sep String columnClassName concode_elem_sep int scale concode_elem_sep boolean isDefinitelyWritable concode_elem_sep String schemaName concode_elem_s... | String function ( ) { try { return toStringImpl ( ) ; } catch ( Exception loc0 ) { return super . toString ( ) + "srini_string" + loc0 + "srini_string" ; } } |
16,217 | returns the parent element type of this element type . concode_field_sep int theFlags concode_elem_sep int theModel concode_elem_sep String theName concode_elem_sep int theMemberOf concode_elem_sep AttributesImpl theAtts concode_elem_sep ElementType theParent concode_elem_sep Schema theSchema concode_elem_sep String th... | ElementType function ( ) { return theParent ; } |
16,218 | saves parameters for startactivityforresult . concode_field_sep Activity activity concode_elem_sep CordovaPlugin permissionResultCallback concode_elem_sep int resultCode concode_elem_sep int activityResultRequestCode concode_elem_sep Intent intent concode_elem_sep Bundle savedPluginState concode_elem_sep String TAG con... | void function ( Bundle arg0 ) { if ( activityResultCallback != null ) { String loc0 = activityResultCallback . getServiceName ( ) ; arg0 . putString ( "srini_string" , loc0 ) ; } if ( pluginManager != null ) { arg0 . putBundle ( "srini_string" , pluginManager . onSaveInstanceState ( ) ) ; } } |
16,219 | sets the value of the issuer property . concode_field_sep BigInteger number concode_elem_sep XMLGregorianCalendar issueTime concode_elem_sep long serialVersionUID concode_elem_sep String uri concode_elem_sep String issuer concode_field_sep XMLGregorianCalendar getIssueTime concode_elem_sep void setIssueTime concode_ele... | void function ( String arg0 ) { this . issuer = arg0 ; } |
16,220 | stream of all stations concode_field_sep Logger LOG concode_elem_sep Map<String,List<TrainLocation>> stations concode_elem_sep Map<LocationKey,TrainLocation> map concode_elem_sep DataSource dataSource concode_elem_sep List<String> stationIndex concode_field_sep String getTiplocByStanox concode_elem_sep JsonObjectBuilde... | Stream < TrainLocation > function ( ) { return map . entrySet ( ) . stream ( ) . filter ( e -> e . getKey ( ) instanceof CRS ) . map ( Map . Entry :: getValue ) . filter ( TrainLocation :: isStation ) . sorted ( TrainLocation . COMPARATOR ) ; } |
16,221 | a high used pattern is the one used for recognizing of no such file pattern concode_field_sep PatternUtil _p concode_elem_sep HashMap<String,Pattern> patterns concode_field_sep Pattern getPattern concode_elem_sep Pattern getPattern | Pattern function ( ) { return Pattern . compile ( "srini_string" , Pattern . CASE_INSENSITIVE ) ; } |
16,222 | see com.sleepycat.db.eventhandler #handlerepclientevent eventhandler.handlerepclientevent for details of thiscallback . concode_field_sep PlaceHolder placeHolder concode_field_sep void handleRepStartupDoneEvent concode_elem_sep void handleRepPermFailedEvent concode_elem_sep void handleWriteFailedEvent concode_elem_sep ... | void function ( ) { } |
16,223 | given both ` from ' and ` to ' airports , find the matching flights . concode_field_sep Map<String,Flight> flightsIndexedByFligthCode concode_elem_sep Map<String,Airport> airports concode_elem_sep Map<String,AirLine> airLines concode_elem_sep Map<String,Set<Flight>> flightsIndexedByFromToAirportIATACodes concode_field_... | Set < Flight > function ( Airport arg0 , Airport arg1 ) { Set < Flight > loc0 = flightsIndexedByFromToAirportIATACodes . get ( arg0 . getIATACode ( ) + arg1 . getIATACode ( ) ) ; if ( loc0 == null ) loc0 = new HashSet < Flight > ( ) ; return loc0 ; } |
16,224 | get a logfile from the given spring environment . concode_field_sep String path concode_elem_sep String file concode_elem_sep String PATH_PROPERTY concode_elem_sep String FILE_PROPERTY concode_field_sep void applyTo concode_elem_sep void applyToSystemProperties concode_elem_sep String toString concode_elem_sep void put | LogFile function ( PropertyResolver arg0 ) { String loc0 = arg0 . getProperty ( FILE_PROPERTY ) ; String loc1 = arg0 . getProperty ( PATH_PROPERTY ) ; if ( StringUtils . hasLength ( loc0 ) || StringUtils . hasLength ( loc1 ) ) { return new LogFile ( loc0 , loc1 ) ; } return null ; } |
16,225 | the name of the cluster parameter group . concode_field_sep String parameterGroupName concode_elem_sep String parameterGroupStatus concode_field_sep void setParameterGroupStatus concode_elem_sep int hashCode concode_elem_sep String getParameterGroupStatus concode_elem_sep boolean equals concode_elem_sep ResetClusterPar... | String function ( ) { return parameterGroupName ; } |
16,226 | get the routingtable referenced by this result concode_field_sep boolean retryFailed concode_elem_sep boolean debugDecision concode_elem_sep RoutingNodes routingNodes concode_elem_sep MetaData metaData concode_elem_sep long currentNanoTime concode_elem_sep DiscoveryNodes nodes concode_elem_sep Map<ShardId,Set<String>> ... | RoutingTable function ( ) { return routingTable ; } |
16,227 | parse json text into java object from the input source . concode_field_sep String NULL concode_field_sep String toJSONString concode_elem_sep void writeJSONString concode_elem_sep Object parse concode_elem_sep Object parse concode_elem_sep String escape concode_elem_sep void escape | Object function ( Reader arg0 ) { JSONParser loc0 = new JSONParser ( ) ; return loc0 . parse ( arg0 ) ; } |
16,228 | associating a vertex to an existing mapping . concode_field_sep Map<String,VertexMapping> mappings concode_field_sep void dedicate concode_elem_sep VertexMapping getMapping concode_elem_sep Object clone concode_elem_sep String toString concode_elem_sep void associate concode_elem_sep void remove | void function ( final String arg0 , final VertexMapping arg1 ) { this . mappings . put ( arg0 , arg1 ) ; arg1 . addVertexID ( arg0 ) ; } |
16,229 | finds the entry with the given key . concode_field_sep Entry next concode_elem_sep int count concode_elem_sep int INITIAL_CAPACITY concode_elem_sep int value concode_elem_sep Entry[] table concode_elem_sep int hash concode_elem_sep Object key concode_field_sep int dec concode_elem_sep int size concode_elem_sep int get ... | Entry function ( Object arg0 ) { return null ; } |
16,230 | execute a request to the api . concode_field_sep String TAG concode_elem_sep int NetworkConnectionTimeout_ms concode_field_sep String addParamsToUrl concode_elem_sep HttpUriRequest createHttpRequest concode_elem_sep HttpEntity createFileOnlyMultipartEntity | ApiResponse function ( ApiRequest arg0 , String arg1 , ProgressListener arg2 , int arg3 ) { return execute ( arg0 , arg1 , CommonConfigurationUtils . getOAuthConsumer ( ) , arg2 , arg3 ) ; } |
16,231 | sets the value of the value property . concode_field_sep String name concode_elem_sep String value concode_field_sep void setName concode_elem_sep String getValue concode_elem_sep String getName | void function ( String arg0 ) { this . value = arg0 ; } |
16,232 | prints a message at info priority . 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 mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void println... | void function ( String arg0 , String arg1 , Throwable arg2 ) { println ( INFO , arg0 , arg1 , arg2 ) ; } |
16,233 | gets the value of the resumptiontoken property . concode_field_sep ResumptionTokenType resumptionToken concode_elem_sep List<HeaderType> header concode_elem_sep long serialVersionUID concode_field_sep void setResumptionToken concode_elem_sep List<HeaderType> getHeader | ResumptionTokenType function ( ) { return resumptionToken ; } |
16,234 | return false by default . concode_field_sep PlaceHolder placeHolder concode_field_sep Connection getNativeConnectionFromStatement concode_elem_sep Connection getNativeConnection concode_elem_sep boolean isNativeConnectionNecessaryForNativeStatements concode_elem_sep boolean isNativeConnectionNecessaryForNativePreparedS... | boolean function ( ) { return false ; } |
16,235 | a state name with just white spaces is not valid . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphJavaValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statec... | void function ( ) { prepareStateTest ( ) ; state . setName ( "srini_string" ) ; assertFalse ( validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ) ; assertError ( diagnostics , ISSUE_STATE_WITHOUT_NAME ) ; } |
16,236 | this method perform a click on out of order button concode_field_sep WebElement codeTextbox concode_elem_sep List<WebElement> locationList concode_elem_sep WebElement outOfOrderOption concode_elem_sep WebElement locationListButton concode_elem_sep WebElement displayLocationsButton concode_elem_sep WebElement cancelButt... | OutOfOrderPage function ( ) { ( new WebDriverWait ( BrowserManager . getDriver ( ) , 30 ) ) . until ( ExpectedConditions . visibilityOf ( outOfOrder ) ) ; outOfOrder . click ( ) ; LogManager . info ( "srini_string" ) ; return new OutOfOrderPage ( ) ; } |
16,237 | sets the listener that is used to inform the client when the user selects a new date and time . this must be called before #show . concode_field_sep boolean mIs24HourTime concode_elem_sep int HOLO_DARK concode_elem_sep Date minDate concode_elem_sep Date mMaxDate concode_elem_sep int mIndicatorColor concode_elem_sep Fra... | void function ( SlideDateTimeListener arg0 ) { mListener = arg0 ; } |
16,238 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep String snapshotId concode_field_sep void setSnapshotId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String getSnapshotId concode_elem_sep DeleteSnapshotResult clone concode_elem_sep De... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getSnapshotId ( ) != null ) loc0 . append ( "srini_string" + getSnapshotId ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
16,239 | are we connected to flightgear 's console concode_field_sep InetSocketAddress address concode_elem_sep ConsoleConnectionHandler consoleConnectionHandler concode_elem_sep Channel channel concode_elem_sep Logger LOGGER concode_elem_sep EventLoopGroup group concode_field_sep void disconnect concode_elem_sep void addConsol... | boolean function ( ) { if ( channel == null ) { return false ; } else { return channel . isActive ( ) ; } } |
16,240 | 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 boolean staticFlag concode_elem_sep int bufcolumn[] concode_el... | void function ( java . io . Reader arg0 ) { ReInit ( arg0 , 1 , 1 , 4096 ) ; } |
16,241 | a unique identifier for a sqlinjectionmatchset . you use sqlinjectionmatchsetid to get information about a sqlinjectionmatchset see getsqlinjectionmatchset , update a sqlinjectionmatchset see updatesqlinjectionmatchset , insert a sqlinjectionmatchset into a rule or delete one from a rule see updaterule , and delete a s... | SqlInjectionMatchSet function ( String arg0 ) { setSqlInjectionMatchSetId ( arg0 ) ; return this ; } |
16,242 | by default , call #ischecked operationcontext concode_field_sep PlaceHolder placeHolder concode_field_sep boolean enabled concode_elem_sep boolean enabled concode_elem_sep Map<String,String> createHistory | boolean function ( List < VertexRef > arg0 , OperationContext arg1 ) { return isChecked ( arg1 . getGraphContainer ( ) ) ; } |
16,243 | return a query that matches no document . concode_field_sep Pattern spaceAroundLessThanPattern concode_elem_sep Pattern lessThanPattern concode_elem_sep Pattern spacePattern concode_field_sep Filter newNestedFilter concode_elem_sep Query not concode_elem_sep BooleanQuery filtered concode_elem_sep void applyMinimumShoul... | Query function ( ) { return new BooleanQuery ( ) ; } |
16,244 | refresh the list of sinks . concode_field_sep Connection conn concode_elem_sep float DEFAULT_REPLICATION_SOURCE_RATIO concode_elem_sep int DEFAULT_BAD_SINK_THRESHOLD concode_elem_sep ServerName serverName concode_elem_sep Log LOG concode_elem_sep int badSinkThreshold concode_elem_sep List<ServerName> sinks concode_elem... | void function ( ) { List < ServerName > loc0 = endpoint . getRegionServers ( ) ; Collections . shuffle ( loc0 , random ) ; int loc1 = ( int ) Math . ceil ( loc0 . size ( ) * ratio ) ; sinks = loc0 . subList ( 0 , loc1 ) ; lastUpdateToPeers = System . currentTimeMillis ( ) ; badReportCounts . clear ( ) ; } |
16,245 | not-null value ; ensure this value is available before it is saved to the database . concode_field_sep String orderId concode_elem_sep float latitude concode_elem_sep String detailId concode_elem_sep java.util.Date editTime concode_elem_sep String userName concode_elem_sep String operType concode_elem_sep String dispat... | void function ( String arg0 ) { this . userName = arg0 ; } |
16,246 | create an instance of sbbname concode_field_sep PlaceHolder placeHolder concode_field_sep EnvEntryName createEnvEntryName concode_elem_sep SbbUsageParametersInterfaceName createSbbUsageParametersInterfaceName concode_elem_sep SbbClasses createSbbClasses concode_elem_sep EjbRef createEjbRef concode_elem_sep ResourceAdap... | SbbName function ( ) { return new SbbName ( ) ; } |
16,247 | used to communicate a progress update between a plugin tool and the main whitebox user interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amI... | void function ( String arg0 , int arg1 ) { if ( myHost != null && ( ( arg1 != previousProgress ) || ( ! arg0 . equals ( previousProgressLabel ) ) ) ) { myHost . updateProgress ( arg0 , arg1 ) ; } previousProgress = arg1 ; previousProgressLabel = arg0 ; } |
16,248 | sets the maximum size of the internal queue that supports the getresponse . . method . packets are removed from the head of the queue once this limit is reached . the default is 100 concode_field_sep ResponseFilter responseQueueFilter concode_elem_sep int maxQueueSize concode_elem_sep int sendSynchronousTimeout concode... | XBeeConfiguration function ( int arg0 ) { if ( arg0 <= 0 ) { throw new IllegalArgumentException ( "srini_string" ) ; } this . maxQueueSize = arg0 ; return this ; } |
16,249 | a case-insensitive `` like '' , similar to postgres ilike operator concode_field_sep PlaceHolder placeHolder concode_field_sep Criterion sizeGe concode_elem_sep NaturalIdentifier naturalId concode_elem_sep SimpleExpression lt concode_elem_sep PropertyExpression leProperty concode_elem_sep Criterion not concode_elem_sep... | Criterion function ( String arg0 , Object arg1 ) { return new LikeExpression ( arg0 , arg1 . toString ( ) ) ; } |
16,250 | returns the location where the sunrise/sunset is calculated for . concode_field_sep SolarEventCalculator calculator concode_elem_sep boolean DBG concode_elem_sep MyLocation location concode_field_sep String getNauticalSunsetForDate concode_elem_sep Calendar getAstronomicalSunsetCalendarForDate concode_elem_sep Calendar... | MyLocation function ( ) { return location ; } |
16,251 | get an availablevariables that returns the value of a configuration #getstring string configurationproperty . concode_field_sep PlaceHolder placeHolder concode_field_sep AvailableVariables environmentVariables concode_elem_sep AvailableVariables and concode_elem_sep String variableForName concode_elem_sep AvailableVari... | AvailableVariables function ( Configuration arg0 ) { return arg0 :: getString ; } |
16,252 | delete specified file concode_field_sep String path concode_elem_sep int FA_HIDDEN concode_elem_sep Pattern absolute concode_elem_sep int FA_DIRECTORY concode_elem_sep int FA_READONLY concode_field_sep void copyFile concode_elem_sep ClarionString getShortPath concode_elem_sep boolean isFile concode_elem_sep void getDir... | void function ( String arg0 ) { FileFactoryRepository . getInstance ( ) . delete ( arg0 ) ; } |
16,253 | allows changing the application directory . default is `` src/main/application '' . concode_field_sep FileResolver fileResolver concode_elem_sep String libDirName concode_elem_sep Instantiator instantiator concode_elem_sep DeploymentDescriptor deploymentDescriptor concode_elem_sep String appDirName concode_field_sep vo... | void function ( String arg0 ) { this . setAppDirName ( arg0 ) ; } |
16,254 | attempts to close the given object . all ioexceptions are caught and silently ignored . concode_field_sep PlaceHolder placeHolder concode_field_sep void closeWithLog | void function ( @ Nullable Closeable arg0 ) { if ( arg0 != null ) { try { arg0 . close ( ) ; } catch ( IOException loc0 ) { } } } |
16,255 | convert a byte array to a string of hexadecimal digits and return it . concode_field_sep String TOKEN_KEY concode_elem_sep TokenProcessor instance concode_elem_sep long previous concode_elem_sep String TRANSACTION_TOKEN_KEY concode_field_sep void saveToken concode_elem_sep String generateToken concode_elem_sep TokenPro... | String function ( byte arg0 [ ] ) { StringBuffer loc0 = new StringBuffer ( arg0 . length * 2 ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 . append ( Character . forDigit ( ( arg0 [ loc1 ] & 0xf0 ) >> 4 , 16 ) ) ; loc0 . append ( Character . forDigit ( arg0 [ loc1 ] & 0x0f , 16 ) ) ; } return loc0 . ... |
16,256 | sets pos and returns old value concode_field_sep int defaultCapacity concode_elem_sep int[] map concode_elem_sep int capacity concode_field_sep void doubleCapacity concode_elem_sep boolean isSet concode_elem_sep int get concode_elem_sep void reset concode_elem_sep int unset concode_elem_sep int unset | int function ( int arg0 ) { while ( arg0 >= capacity ) { doubleCapacity ( ) ; } int loc0 = arg0 >> 5 ; int loc1 = 0x80000000 >>> ( arg0 & 0x1F ) ; int loc2 = map [ loc0 ] ; int loc3 = ( loc2 & loc1 ) == 0 ? 0 : 1 ; map [ loc0 ] = ( loc2 | loc1 ) ; return loc3 ; } |
16,257 | get the key of the rule . concode_field_sep String m_key concode_elem_sep boolean m_orderMatters concode_elem_sep String m_inputLabel concode_elem_sep String m_inputInstruction concode_elem_sep boolean m_acceptsAll concode_elem_sep String[] m_types concode_elem_sep int m_max concode_field_sep String getInputLabel conco... | String function ( ) { return m_key ; } |
16,258 | called after a shard 's org.elasticsearch.index.shard.indexshardstate changes.the order of concurrent events is preserved . the execution must be lightweight . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterIndexCreated concode_elem_sep void beforeIndexShardClosed concode_elem_sep void beforeInde... | void function ( IndexShard arg0 , @ Nullable IndexShardState arg1 , IndexShardState arg2 , @ Nullable String arg3 ) { } |
16,259 | returns the file name of the given library , parameterized from the property file . concode_field_sep IModel inModel concode_elem_sep IModel outModel concode_elem_sep Properties properties concode_field_sep String getMetamodelUri concode_elem_sep Object doStateToEconomy_M2M concode_elem_sep boolean isEclipseRunning con... | InputStream function ( String arg0 ) { return getFileURL ( properties . getProperty ( "srini_string" + arg0 ) ) . openStream ( ) ; } |
16,260 | given a map that maps to doubles , adds a new key/value pair or increases the counter concode_field_sep int indent concode_field_sep boolean containsOneOf concode_elem_sep void waitMS concode_elem_sep int compare concode_elem_sep boolean smaller concode_elem_sep int getOrZero concode_elem_sep Object println concode_ele... | void function ( Map < K , Double > arg0 , K arg1 , double arg2 ) { Double loc0 = arg0 . get ( arg1 ) ; if ( loc0 == null ) { arg0 . put ( arg1 , arg2 ) ; return ; } arg0 . put ( arg1 , loc0 + arg2 ) ; } |
16,261 | tests the implementation of initialize . concode_field_sep int callCount concode_elem_sep Integer RESULT concode_field_sep Integer call concode_elem_sep void testInitExecutorNullCallable concode_elem_sep void testInitNullCallable concode_elem_sep void testInitExecutor | void function ( ) { final TestCallable loc0 = new TestCallable ( ) ; final CallableBackgroundInitializer < Integer > loc1 = new CallableBackgroundInitializer < Integer > ( loc0 ) ; assertEquals ( "srini_string" , RESULT , loc1 . initialize ( ) ) ; assertEquals ( "srini_string" , 1 , loc0 . callCount ) ; } |
16,262 | returns true if searchedtextlowercase is in value concode_field_sep boolean caseSensitive concode_elem_sep String textToSearch concode_field_sep boolean search | boolean function ( String arg0 , String arg1 ) { if ( ! StringUtils . isEmpty ( arg0 ) ) { return arg0 . toLowerCase ( ) . indexOf ( arg1 ) >= 0 ; } return false ; } |
16,263 | test of odoberrozcitanu method , of class databazovypouzivateldao . concode_field_sep JdbcTemplate jdbcTemplate concode_elem_sep PouzivatelDao pouzivatelDao concode_field_sep void testPridalPouzivatel concode_elem_sep void testPridajOblubenu concode_elem_sep void testNacitajPouzivatela concode_elem_sep void testZaregis... | void function ( ) { Pouzivatel loc0 = pouzivatelDao . prihlasPouzivatela ( "srini_string" , "srini_string" ) ; Pouzivatel loc1 = pouzivatelDao . prihlasPouzivatela ( "srini_string" , "srini_string" ) ; Kniha loc2 = pouzivatelDao . pridalPouzivatel ( loc1 ) . get ( 3 ) ; pouzivatelDao . odoberOblubenu ( loc0 , loc2 ) ; ... |
16,264 | print message when tests are complete . concode_field_sep SubsetSolution sol concode_elem_sep int NUM_IDS concode_elem_sep Random RG concode_field_sep void testEqualsAndHashCode concode_elem_sep void testGetDeletedID concode_elem_sep void setUpClass concode_elem_sep void testUndo concode_elem_sep void testGetAddedIDs c... | void function ( ) { System . out . println ( "srini_string" ) ; } |
16,265 | set the value of the flatness property . concode_field_sep double nonStrokingAlphaConstant concode_elem_sep boolean isClippingPathDirty concode_elem_sep boolean alphaSource concode_elem_sep double smoothness concode_elem_sep PDColor nonStrokingColor concode_elem_sep PDSoftMask softMask concode_elem_sep RenderingIntent ... | void function ( double arg0 ) { flatness = arg0 ; } |
16,266 | verifies bug fix for spr-11626 . concode_field_sep MockHttpServletRequest servletRequest concode_field_sep void ensureMocksAreReinjectedBetweenTests_1 concode_elem_sep void assertInjectedServletRequestEqualsRequestInRequestContextHolder | void function ( ) { assertInjectedServletRequestEqualsRequestInRequestContextHolder ( ) ; } |
16,267 | returns the current maximum queue size for background revalidations . concode_field_sep int DEFAULT_ASYNCHRONOUS_WORKERS_MAX concode_elem_sep float heuristicCoefficient concode_elem_sep long heuristicDefaultLifetime concode_elem_sep float DEFAULT_HEURISTIC_COEFFICIENT concode_elem_sep int asynchronousWorkersMax concode... | int function ( ) { return revalidationQueueSize ; } |
16,268 | gets the pluginspecs value for this wstransformer . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep org.talend.mdm.webservice.WSTransformerPluginSpec[] pluginSpecs concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang.String des... | org . talend . mdm . webservice . WSTransformerPluginSpec [ ] function ( ) { return pluginSpecs ; } |
16,269 | called by portletservlet after the cross context dispatch but before the portlet invocation concode_field_sep HttpServletResponse containerResponse concode_elem_sep HttpServletResponse servletResponse concode_elem_sep PortletContainer portletContainer concode_elem_sep IPortletWindow portletWindow concode_elem_sep HttpS... | void function ( HttpServletRequest arg0 , HttpServletResponse arg1 ) { Assert . notNull ( arg0 , "srini_string" ) ; Assert . notNull ( arg1 , "srini_string" ) ; this . servletRequest = arg0 ; this . servletResponse = arg1 ; } |
16,270 | returns the app id of this app . concode_field_sep App _app concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setRequired concode_elem_sep boolean isDownloaded concode_elem_sep boolean isEscapedModel ... | long function ( ) { return _app . getAppId ( ) ; } |
16,271 | returns whether the given sphere is in the frustum . concode_field_sep Vector3[] clipSpacePlanePoints concode_elem_sep Plane[] planes concode_elem_sep float[] clipSpacePlanePointsArray concode_elem_sep float[] planePointsArray concode_elem_sep Vector3[] planePoints concode_field_sep boolean pointInFrustum concode_elem_... | boolean function ( float arg0 , float arg1 , float arg2 , float arg3 ) { for ( int loc0 = 0 ; loc0 < 6 ; loc0 ++ ) if ( ( planes [ loc0 ] . normal . arg0 * arg0 + planes [ loc0 ] . normal . arg1 * arg1 + planes [ loc0 ] . normal . arg2 * arg2 ) < ( - arg3 - planes [ loc0 ] . d ) ) return false ; return true ; } |
16,272 | returns the browser tracker with the primary key . concode_field_sep BrowserTrackerLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep com.liferay.portal.kernel.model.Browse... | com . liferay . portal . kernel . model . BrowserTracker function ( long arg0 ) { return getService ( ) . getBrowserTracker ( arg0 ) ; } |
16,273 | retrieves the name of the operation being invoked . according to omg idl 's rules , these names must be unique among all operations supported by this object 's `` most-derived '' interface . note that the operation names for getting and setting attributes are _ get _ < attribute_name > and _ set _ < attribute_name > , ... | String function ( ) { return operation ( ) ; } |
16,274 | dispatches any pending onactivityresult callbacks . concode_field_sep String TAG concode_elem_sep PluginManager pluginManager concode_elem_sep Activity activity concode_elem_sep CordovaPlugin activityResultCallback concode_elem_sep String initCallbackService concode_elem_sep ActivityResultHolder savedResult concode_ele... | void function ( PluginManager arg0 ) { this . pluginManager = arg0 ; if ( savedResult != null ) { onActivityResult ( savedResult . requestCode , savedResult . resultCode , savedResult . intent ) ; } } |
16,275 | returns a source of type t , where the supplied values are guaranteed to be produced at least once . if a property is falsified by one of the supplied values then shrunk values will be selected from those specifically supplied only . concode_field_sep Shrink<T> shrink concode_elem_sep Generator<T> prngToValue concode_e... | Source < T > function ( @ SuppressWarnings ( "srini_string" ) T ... arg0 ) { return Compositions . combineWithValues ( this , arg0 ) ; } |
16,276 | gets the value of the ban property . concode_field_sep String documentId concode_elem_sep long serialVersionUID concode_elem_sep EIPReasonCodeEnum reasonCode concode_elem_sep String transactionId concode_elem_sep String ban concode_field_sep String getDocumentId concode_elem_sep String getTransactionId concode_elem_sep... | String function ( ) { return ban ; } |
16,277 | return the saved column number 1-based . concode_field_sep String systemId concode_elem_sep int columnNumber concode_elem_sep int lineNumber concode_elem_sep String publicId concode_field_sep int getLineNumber concode_elem_sep String getSystemId concode_elem_sep void setColumnNumber concode_elem_sep void setSystemId co... | int function ( ) { return columnNumber ; } |
16,278 | unregister handler by the key concode_field_sep String myScriptPath concode_elem_sep Random RANDOM concode_elem_sep THashMap<Integer,Handler> handlers concode_elem_sep boolean myInitialized concode_elem_sep File myScript concode_field_sep void initComponent concode_elem_sep Vector<String> replyToChallenge concode_elem_... | void function ( int arg0 ) { if ( handlers . remove ( arg0 ) == null ) { throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; } } |
16,279 | sample_is_depended_on takes one of the following four values : 0 : the dependency of other samples on this sample is unknown ; 1 : other samples may depend on this one not disposable ; 2 : no other sample depends on this one disposable ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep int ... | void function ( int arg0 ) { this . sampleIsDependedOn = arg0 ; } |
16,280 | generate a text string containing the implementation type of this cache and its statistics . the string returned by this method contains all information required for compliance with the contract for #logstatistics . concode_field_sep AtomicInteger missCount concode_elem_sep Map<MergedContextConfiguration,Set<MergedCont... | String function ( ) { return new ToStringCreator ( this ) . append ( "srini_string" , size ( ) ) . append ( "srini_string" , getParentContextCount ( ) ) . append ( "srini_string" , getHitCount ( ) ) . append ( "srini_string" , getMissCount ( ) ) . toString ( ) ; } |
16,281 | sets the next time at which the crontrigger will fire . this method should not be invoked by client code . concode_field_sep String[] calendarNames concode_elem_sep Date previousFireTime concode_elem_sep Calendars calendars concode_elem_sep CronExpression cronEx concode_elem_sep TimeZone timeZone concode_elem_sep Date ... | void function ( Date arg0 ) { this . nextFireTime = arg0 ; } |
16,282 | sets the address for this student . concode_field_sep int studentId concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep String address concode_field_sep void setLastName concode_elem_sep int getStudentId concode_elem_sep void setFirstName concode_elem_sep String clear concode_elem_sep St... | void function ( String arg0 ) { this . address = arg0 ; } |
16,283 | a document that matches the search request . concode_field_sep String cursor concode_elem_sep com.amazonaws.internal.SdkInternalList<Hit> hit concode_elem_sep Long found concode_elem_sep Long start concode_field_sep Hits withStart concode_elem_sep String getCursor concode_elem_sep Long getFound concode_elem_sep Long ge... | void function ( java . util . Collection < Hit > arg0 ) { if ( arg0 == null ) { this . hit = null ; return ; } this . hit = new com . amazonaws . internal . SdkInternalList < Hit > ( arg0 ) ; } |
16,284 | called when the processing starts , it clears the headers concode_field_sep String[] headers concode_field_sep void processEnded concode_elem_sep String[] getHeaders concode_elem_sep void rowProcessed | void function ( ParsingContext arg0 ) { headers = null ; } |
16,285 | gets the limit . concode_field_sep String groupBy concode_elem_sep String orderBy concode_elem_sep String whereClause concode_elem_sep String having concode_elem_sep int limit concode_elem_sep ArrayList<String> whereArgs concode_elem_sep int offset concode_field_sep void setWhereClause concode_elem_sep String getHaving... | int function ( ) { return limit ; } |
16,286 | sets the value of the payrate property . concode_field_sep Boolean defaultEarning concode_elem_sep Boolean inactive concode_elem_sep String payRate concode_elem_sep Double defaultHours concode_elem_sep RecordRef payrollItem concode_elem_sep XMLGregorianCalendar effectiveDate concode_elem_sep Boolean primaryEarning conc... | void function ( String arg0 ) { this . payRate = arg0 ; } |
16,287 | pre-processing method . concode_field_sep Logger LOGGER concode_elem_sep RegexAutomatedValidation regexAutomatedValidation concode_elem_sep BatchInstanceService batchInstanceService concode_field_sep void regexValidation concode_elem_sep void postProcess | void function ( final BatchInstanceID arg0 , String arg1 ) { Assert . notNull ( arg0 ) ; final String loc0 = arg0 . getID ( ) ; BackUpFileService . backUpBatch ( loc0 , batchInstanceService . getSystemFolderForBatchInstanceId ( loc0 ) ) ; } |
16,288 | get the string representation concode_field_sep UID uid concode_elem_sep long serialVersionUID concode_elem_sep ActivationSystem system concode_field_sep ActivationSystem getSystem concode_elem_sep int hashCode concode_elem_sep boolean equals | String function ( ) { return uid . toString ( ) ; } |
16,289 | returns the group id of this k b folder . concode_field_sep KBFolder _kbFolder concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_s... | long function ( ) { return _kbFolder . getGroupId ( ) ; } |
16,290 | determines whether a bye request has already been processed in a specific dialog and thus allows determining whether the dialog in question should be terminated when the last associated subscription is terminated . concode_field_sep List<Object> subscriptions concode_elem_sep boolean byeIsProcessed concode_field_sep in... | boolean function ( Dialog arg0 ) { synchronized ( arg0 ) { DialogApplicationData loc0 = ( DialogApplicationData ) SipApplicationData . getApplicationData ( arg0 , SipApplicationData . KEY_SUBSCRIPTIONS ) ; return ( loc0 == null ) ? false : loc0 . isByeProcessed ( ) ; } } |
16,291 | matches : / items / _ id / concode_field_sep String _ID concode_elem_sep String THUMB_URL concode_elem_sep String ASPECT_RATIO concode_elem_sep String CONTENT_ITEM_TYPE concode_elem_sep String PHOTO_URL concode_elem_sep String CONTENT_TYPE concode_elem_sep String SERVER_ID concode_elem_sep String AUTHOR concode_elem_se... | Uri function ( long arg0 ) { return BASE_URI . buildUpon ( ) . appendPath ( "srini_string" ) . appendPath ( Long . toString ( arg0 ) ) . build ( ) ; } |
16,292 | updates the definition in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep DefinitionLocalService _service concode_field_sep com.liferay.ams.model.Definition getDefinition concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.... | com . liferay . ams . model . Definition function ( com . liferay . ams . model . Definition arg0 ) { return getService ( ) . updateDefinition ( arg0 ) ; } |
16,293 | finds all component with the given id . component id 's are formed from the concatination of parent component ids . this search will find all componet in the component tree with the specified id as it is possible to have the same id used more then once in the component tree concode_field_sep Logger log concode_elem_sep... | void function ( UIComponent arg0 , String arg1 , List < UIComponent > arg2 ) { if ( arg1 . equals ( arg0 . getId ( ) ) ) { arg2 . add ( arg0 ) ; } Iterator < UIComponent > loc0 = arg0 . getFacetsAndChildren ( ) ; while ( loc0 . hasNext ( ) ) { findAllComponents ( loc0 . next ( ) , arg1 , arg2 ) ; } } |
16,294 | returns the duration in minutes . concode_field_sep Calendar start concode_elem_sep Calendar end concode_field_sep Calendar getStart concode_elem_sep String toString concode_elem_sep Calendar getEnd | long function ( ) { if ( start == null || end == null ) { return - 1 ; } if ( start . after ( end ) ) { return 0 ; } long loc0 = end . getTimeInMillis ( ) - start . getTimeInMillis ( ) ; return loc0 / 60000 ; } |
16,295 | create a logical expression instance . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | LogicalExpression function ( LogicalOperator arg0 ) { switch ( arg0 . getType ( ) ) { case AND : case OR : return new LogicalExpression ( arg0 ) ; case NOT : return new NotLogicalExpression ( arg0 ) ; default : throw new RuntimeException ( "srini_string" + arg0 ) ; } } |
16,296 | sets the name value for this label . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang.String labelType concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Long id concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_s... | void function ( java . lang . String arg0 ) { this . name = arg0 ; } |
16,297 | returns a double value > = x such that if you multiply that value by an int , and then divide it by that int again , you get precisely the same value back concode_field_sep int MIN_ENCODED_VALUE concode_elem_sep double RADIANS_PER_METER concode_elem_sep double DECODE concode_elem_sep int BITS concode_elem_sep double MA... | double function ( double arg0 ) { long loc0 = Double . doubleToLongBits ( arg0 ) ; loc0 += Integer . MAX_VALUE ; loc0 &= ~ ( ( long ) Integer . MAX_VALUE ) ; double loc1 = Double . longBitsToDouble ( loc0 ) ; assert loc1 > arg0 ; return loc1 ; } |
16,298 | creates map for storing identifier data . ordinal parameter guarantees uniqueness of primary key . composite primary key can not contain embeddable properties since they might be nullable . concode_field_sep Constructor<? extends T> proxyConstructor concode_elem_sep CommonCollectionMapperData commonCollectionMapperData... | Map < String , Object > function ( int arg0 ) { final Map < String , Object > loc0 = new HashMap < String , Object > ( ) ; if ( ordinalInId ) { loc0 . put ( commonCollectionMapperData . getVerEntCfg ( ) . getEmbeddableSetOrdinalPropertyName ( ) , arg0 ) ; } return loc0 ; } |
16,299 | initialise the rsa engine . concode_field_sep boolean forEncryption concode_elem_sep RSAKeyParameters key concode_field_sep int getInputBlockSize concode_elem_sep BigInteger convertInput concode_elem_sep BigInteger processBlock concode_elem_sep byte[] convertOutput concode_elem_sep int getOutputBlockSize | void function ( boolean arg0 , CipherParameters arg1 ) { if ( arg1 instanceof ParametersWithRandom ) { ParametersWithRandom loc0 = ( ParametersWithRandom ) arg1 ; key = ( RSAKeyParameters ) loc0 . getParameters ( ) ; } else { key = ( RSAKeyParameters ) arg1 ; } this . forEncryption = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.