idx
int64
0
25k
question
stringlengths
68
5.61k
target
stringlengths
21
500
1,300
create a shape representing a scalar value . concode_field_sep long[] shape concode_field_sep int numDimensions concode_elem_sep long size concode_elem_sep long[] asArray concode_elem_sep String toString concode_elem_sep Shape make concode_elem_sep Shape unknown
Shape function ( ) { return new Shape ( new long [ 0 ] ) ; }
1,301
compute the total number of nodes in the tree concode_field_sep Root root concode_elem_sep double minExtent concode_field_sep Interval ensureExtent concode_elem_sep Iterator iterator concode_elem_sep int depth concode_elem_sep int size concode_elem_sep void collectStats concode_elem_sep List query concode_elem_sep List...
int function ( ) { if ( root != null ) return root . nodeSize ( ) ; return 0 ; }
1,302
this method allows the caller to obtain a basic select for this table . concode_field_sep String iSequence concode_elem_sep Object[] iKeys concode_elem_sep String SOURCE concode_elem_sep String PROTEINID concode_elem_sep String CREATIONDATE concode_elem_sep String SEQUENCE concode_elem_sep long iProteinid concode_elem_...
String function ( ) { return "srini_string" ; }
1,303
checks the existance of a key . concode_field_sep String fileName concode_elem_sep Logger log concode_elem_sep FileInputStream inputStream concode_elem_sep Properties props concode_elem_sep FileOutputStream outputStream concode_field_sep String getProperty concode_elem_sep boolean containsKey concode_elem_sep void save...
boolean function ( String arg0 ) { return this . containsKey ( arg0 ) ; }
1,304
guarda el jugador de un encuentro concode_field_sep TournamentPlayer player concode_elem_sep int points concode_field_sep TournamentPlayer getPlayer concode_elem_sep int getPoints concode_elem_sep void setPoints
void function ( TournamentPlayer arg0 ) { this . player = arg0 ; }
1,305
check if the map contains a value with the given key . concode_field_sep TypedMap empty concode_elem_sep play.api.libs.typedmap.TypedMap underlying concode_field_sep Optional<A> getOptional concode_elem_sep A get concode_elem_sep TypedMap putAll concode_elem_sep TypedMap create concode_elem_sep String toString concode_...
boolean function ( TypedKey < ? > arg0 ) { return underlying . contains ( arg0 . underlying ( ) ) ; }
1,306
implementations override this method to support customized suspend/resume . concode_field_sep AtomicBoolean suspending concode_elem_sep AtomicBoolean shuttingdown concode_elem_sep AtomicBoolean started concode_elem_sep AtomicBoolean shutdown concode_elem_sep Logger LOG concode_elem_sep AtomicBoolean starting concode_el...
void function ( ) { }
1,307
sets the value of the basecurrency property . concode_field_sep RecordRef fromCurrency concode_elem_sep RecordRef baseCurrency concode_elem_sep XMLGregorianCalendar effectiveDate concode_field_sep void setFromCurrency concode_elem_sep RecordRef getFromCurrency concode_elem_sep void setEffectiveDate concode_elem_sep XML...
void function ( RecordRef arg0 ) { this . baseCurrency = arg0 ; }
1,308
whether the digest-response in the ` response ' parameter in correct . concode_field_sep String opaque concode_elem_sep String method concode_elem_sep String body concode_elem_sep String nonce concode_elem_sep String uri concode_elem_sep String qop concode_elem_sep String passwd concode_elem_sep String nc concode_elem_...
boolean function ( ) { if ( response == null ) return false ; else return response . equals ( getResponse ( ) ) ; }
1,309
clear batch if the batch mode where used . concode_field_sep Logger log concode_elem_sep ConnectionFactory connectionFactory concode_elem_sep boolean batchMode concode_elem_sep JdbcConnectionDescriptor jcd concode_elem_sep PBKey pbKey concode_elem_sep boolean isInLocalTransaction concode_elem_sep PersistenceBrokerImpl ...
void function ( ) { if ( batchCon != null ) { batchCon . clearBatch ( ) ; } }
1,310
sets the range from a pair of dates , inclusive on both ends concode_field_sep DateParam myLowerBound concode_elem_sep DateParam myUpperBound concode_field_sep void setUpperBound concode_elem_sep boolean haveUpperBound concode_elem_sep Date getLowerBoundAsInstant concode_elem_sep void validateAndThrowDataFormatExceptio...
void function ( Date arg0 , Date arg1 ) { myLowerBound = new DateParam ( QuantityCompararatorEnum . GREATERTHAN_OR_EQUALS , arg0 ) ; myUpperBound = new DateParam ( QuantityCompararatorEnum . LESSTHAN_OR_EQUALS , arg1 ) ; validateAndThrowDataFormatExceptionIfInvalid ( ) ; }
1,311
gets the broadcast data set registered under the given name . broadcast data sets are available on all parallel instances of a function . concode_field_sep IterationRuntimeContext runtimeContext concode_elem_sep long numberOfVertices concode_field_sep T getPreviousIterationAggregate concode_elem_sep void postSuperstep ...
Collection < T > function ( String arg0 ) { return this . runtimeContext . getBroadcastVariable ( arg0 ) ; }
1,312
the base directory , e.g. @literal $ user.home / . . / . . / build/target/jboss - . executes org.junit.assert #fail if the base directory is null . concode_field_sep String JBOSS_DIST_PROP_NAME concode_elem_sep Set<String> EXCLUDED_SCHEMA_FILES concode_elem_sep Pattern PATTERN concode_elem_sep LSResourceResolver DEFAUL...
File function ( ) { assertNotNull ( "srini_string" + JBOSS_DIST_PROP_NAME + "srini_string" , JBOSS_DIST_DIR ) ; assertTrue ( "srini_string" + JBOSS_DIST_PROP_NAME + "srini_string" + JBOSS_DIST_DIR . getAbsolutePath ( ) , JBOSS_DIST_DIR . exists ( ) ) ; return JBOSS_DIST_DIR ; }
1,313
returns a list of all owned product ids of a given type concode_field_sep Map<String,SkuDetails> mSkuMap concode_elem_sep Map<String,Purchase> mPurchaseMap concode_field_sep void erasePurchase concode_elem_sep void addSkuDetails concode_elem_sep Purchase getPurchase concode_elem_sep boolean hasDetails concode_elem_sep ...
List < String > function ( String arg0 ) { List < String > loc0 = new ArrayList < String > ( ) ; for ( Purchase loc1 : mPurchaseMap . values ( ) ) { if ( loc1 . getItemType ( ) . equals ( arg0 ) ) loc0 . add ( loc1 . getSku ( ) ) ; } return loc0 ; }
1,314
converts a func3 to a funcn to allow heterogeneous handling of functions with different arities . concode_field_sep PlaceHolder placeHolder concode_field_sep FuncN<Void> fromAction concode_elem_sep FuncN<Void> fromAction concode_elem_sep FuncN<Void> fromAction concode_elem_sep FuncN<Void> fromAction
FuncN < R > function ( final Func3 < ? super T0 , ? super T1 , ? super T2 , ? extends R > arg0 ) { return new FuncN < R > ( ) { @ SuppressWarnings ( "srini_string" ) @ Override public R call ( Object ... arg1 ) { if ( arg1 . length != 3 ) { throw new RuntimeException ( "srini_string" ) ; } return arg0 . call ( ( T0 ) a...
1,315
get firstname concode_field_sep String password concode_elem_sep String phone concode_elem_sep String lastName concode_elem_sep Integer userStatus concode_elem_sep String username concode_elem_sep Long id concode_elem_sep String firstName concode_elem_sep String email concode_field_sep String getPhone concode_elem_sep ...
String function ( ) { return firstName ; }
1,316
getter method for protect concode_field_sep String restrictCustType concode_elem_sep String emailId concode_elem_sep String restrict concode_elem_sep String criticalReason concode_elem_sep String type concode_elem_sep String expiryDate concode_elem_sep String customerType concode_elem_sep Integer customerId concode_ele...
String function ( ) { return protect ; }
1,317
get the base calendar . will be null , if not set . concode_field_sep String description concode_elem_sep TimeZone timeZone concode_elem_sep long serialVersionUID concode_elem_sep Calendar baseCalendar concode_field_sep java.util.Calendar getStartOfDayJavaCalendar concode_elem_sep java.util.Calendar getEndOfDayJavaCale...
Calendar function ( ) { return this . baseCalendar ; }
1,318
resets #nexttlsmode to the first option . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> proxySelectorProxies concode_elem_sep ConnectionPool pool concode_elem_sep Dns dns co...
void function ( ) { nextTlsMode = ( address . getSslSocketFactory ( ) != null ) ? TLS_MODE_MODERN : TLS_MODE_COMPATIBLE ; }
1,319
returns the cached inetaddress associated with ` hostname ' . returns null if nothing is known about ` hostname ' . returns a string suitable for use as an unknownhostexception detail message if ` hostname ' is known not to exist . concode_field_sep long expiryNanos concode_elem_sep long TTL_NANOS concode_elem_sep Basi...
Object function ( String arg0 ) { AddressCacheEntry loc0 = cache . get ( arg0 ) ; if ( loc0 != null && loc0 . expiryNanos >= System . nanoTime ( ) ) { return loc0 . value ; } return null ; }
1,320
create and setup the ejb client context backed by the remoting receiver concode_field_sep String MODULE_NAME concode_elem_sep String APP_NAME concode_elem_sep TransactionManager txManager concode_elem_sep TransactionSynchronizationRegistry txSyncRegistry concode_elem_sep Logger logger concode_field_sep void testClientT...
void function ( ) { final EJBClientTransactionContext loc0 = EJBClientTransactionContext . create ( txManager , txSyncRegistry ) ; EJBClientTransactionContext . setGlobalContext ( loc0 ) ; }
1,321
returns the destination port of this tcpmasterconnection . concode_field_sep int m_Timeout concode_elem_sep Socket m_Socket concode_elem_sep boolean m_Connected concode_elem_sep Logger logger concode_elem_sep ModbusTCPTransport m_ModbusTransport concode_field_sep void setSocket concode_elem_sep void setTimeout concode_...
int function ( ) { return m_Socket . getLocalPort ( ) ; }
1,322
sets the mensagem value for this ossturbonetverificamodulacaovelocidadeout . concode_field_sep com.gvt.www.ws.eai.oss.ossturbonet.OSSTurbonetOut mensagem concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep boolean velocidadeSuportada concode_elem_sep org.apache.axis.d...
void function ( com . gvt . www . ws . eai . oss . ossturbonet . OSSTurbonetOut arg0 ) { this . mensagem = arg0 ; }
1,323
sets the script required contexts of this kaleo condition . concode_field_sep KaleoCondition _kaleoCondition concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEsc...
void function ( java . lang . String arg0 ) { _kaleoCondition . setScriptRequiredContexts ( arg0 ) ; }
1,324
adds a group name to the genericitem . concode_field_sep List<String> groupNames concode_elem_sep Set<String> tags concode_elem_sep List<StateDescriptionProvider> stateDescriptionProviders concode_elem_sep Logger logger concode_elem_sep State state concode_elem_sep String name concode_elem_sep Set<StateChangeListener> ...
void function ( String arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } if ( ! groupNames . contains ( arg0 ) ) { groupNames . add ( arg0 ) ; } }
1,325
whether style is bold concode_field_sep Boolean overrideColor concode_elem_sep Boolean bold concode_elem_sep String name concode_elem_sep Boolean overrideBold concode_elem_sep Boolean overrideItalic concode_elem_sep Boolean italic concode_elem_sep Priority priority concode_elem_sep RGB color concode_elem_sep UpstreamSt...
Boolean function ( ) { if ( bold == null ) { return evaluator . isStyleBoldByDefault ( ) ; } return bold ; }
1,326
check the size before adding an entry . this method resizes the map if required . concode_field_sep long MAX_LOAD concode_elem_sep int len concode_elem_sep int size concode_elem_sep int level concode_elem_sep int maxDeleted concode_elem_sep int deletedCount concode_elem_sep int maxSize concode_elem_sep int minSize conc...
void function ( ) { if ( deletedCount > size ) { rehash ( level ) ; } if ( size + deletedCount >= maxSize ) { rehash ( level + 1 ) ; } }
1,327
the amazon sns topic that you want to notify when elastic transcoder encounters an error condition . constraints : pattern : ^ $ | ^ arn : aws : sns : . : \ w 12 : . + $ concode_field_sep String progressing concode_elem_sep String warning concode_elem_sep String completed concode_elem_sep String error concode_field_sep...
String function ( ) { return error ; }
1,328
when initializing hybridldaptenantmanager , the existing partitions for tenants are initialized . this method adds existing partition to each tenant . concode_field_sep Logger logger concode_elem_sep LDAPConfigurationBuilder ldapConfigurationBuilder concode_elem_sep PartitionManager ldapPartitionManager concode_field_s...
void function ( Tenant arg0 ) { try { ldapPartitionManager . initializeExistingPartition ( getPartitionInfo ( arg0 ) ) ; } catch ( Exception loc0 ) { throw new UserStoreException ( "srini_string" , loc0 ) ; } }
1,329
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep String name concode_elem_sep Long id concode_field_sep void setName concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Category name concode_elem_s...
String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
1,330
initializes the attributes of the given element . concode_field_sep DoublyIndexedTable values concode_elem_sep String[] keys concode_elem_sep int length concode_field_sep boolean resetAttribute concode_elem_sep void addAttribute
void function ( AbstractElement arg0 ) { for ( int loc0 = length - 1 ; loc0 >= 2 ; loc0 -= 3 ) { resetAttribute ( arg0 , keys [ loc0 - 2 ] , keys [ loc0 - 1 ] , keys [ loc0 ] ) ; } }
1,331
to get the no dictionary column data concode_field_sep byte[] dictionaryKey concode_elem_sep byte[][] noDictionaryKeys concode_elem_sep byte[] implicitColumnByteArray concode_elem_sep byte[][] complexTypesKeys concode_field_sep byte[] getImplicitColumnByteArray concode_elem_sep void setNoDictionaryKeys concode_elem_sep...
byte [ ] function ( int arg0 ) { return this . complexTypesKeys [ arg0 ] ; }
1,332
throws mutabilityexception if this instance isimmutable . concode_field_sep boolean mutable concode_field_sep void setImmutable concode_elem_sep boolean isMutable concode_elem_sep boolean isImmutable concode_elem_sep void throwIfMutable
void function ( ) { if ( ! mutable ) { throw new MutabilityException ( "srini_string" ) ; } }
1,333
set the current log level . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep ...
void function ( int arg0 ) { LOGLEVEL = arg0 ; Log . i ( "srini_string" , "srini_string" + arg0 ) ; }
1,334
delete the named file concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep FileUtil fileUtil concode_elem_sep FileDescriptor outDescriptor concode_elem_sep Random random concode_elem_sep boolean fsIsIgnoreCase concode_elem_sep FileAccessRes fileAccessRes concode_field_sep FileAccess getFileAccess conco...
boolean function ( String arg0 ) { return ( new File ( arg0 ) ) . delete ( ) ; }
1,335
returns a list of view elements of the given edit parts . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_elem_sep ArrayList<IGraphicalEditPart> getOrderedTreeChildren concode_elem_s...
List < View > function ( List < IGraphicalEditPart > arg0 ) { final List < View > loc0 = new ArrayList < View > ( ) ; for ( final IGraphicalEditPart loc1 : arg0 ) { loc0 . add ( loc1 . getNotationView ( ) ) ; } return loc0 ; }
1,336
sets list of rest tcp server addresses . concode_field_sep int tcpPort concode_elem_sep Map<String,Object> attrs concode_elem_sep Map<String,GridClientCacheMode> caches concode_elem_sep GridClientNodeImpl impl concode_elem_sep List<String> tcpAddrs concode_elem_sep boolean connectable concode_elem_sep boolean built con...
Builder function ( Collection < String > arg0 ) { impl . arg0 = U . sealList ( arg0 ) ; return this ; }
1,337
get mappers concode_field_sep RealmAuth auth concode_elem_sep UriInfo uriInfo concode_elem_sep KeycloakSession session concode_elem_sep ServicesLogger logger concode_elem_sep ProtocolMapperContainerModel client concode_elem_sep AdminEventBuilder adminEvent concode_field_sep List<ProtocolMapperRepresentation> getMappers...
List < ProtocolMapperRepresentation > function ( ) { auth . requireView ( ) ; List < ProtocolMapperRepresentation > loc0 = new LinkedList < ProtocolMapperRepresentation > ( ) ; for ( ProtocolMapperModel loc1 : client . getProtocolMappers ( ) ) { loc0 . add ( ModelToRepresentation . toRepresentation ( loc1 ) ) ; } retur...
1,338
returns the string `` id@address : port '' where id is the hex encoded id with leading zeros removed . concode_field_sep InetAddress address concode_elem_sep int port concode_elem_sep byte[] id concode_elem_sep int hash concode_field_sep String idencode concode_elem_sep int getPort concode_elem_sep int hashCode concode...
String function ( ) { return idencode ( id ) + "srini_string" + address + "srini_string" + port ; }
1,339
closes the pooledconnection and stops listening for events from it . concode_field_sep Set<PooledConnection> validatingSet concode_elem_sep ConnectionPoolDataSource _cpds concode_elem_sep Map<PooledConnection,PooledConnectionAndInfo> pcMap concode_elem_sep int _validationQueryTimeout concode_elem_sep ObjectPool<PooledC...
void function ( final PooledObject < PooledConnectionAndInfo > arg0 ) { doDestroyObject ( arg0 . getObject ( ) ) ; }
1,340
returns the name of the receiver . concode_field_sep String password concode_elem_sep int port concode_elem_sep String name concode_elem_sep String host concode_elem_sep boolean https concode_elem_sep String user concode_field_sep void setName concode_elem_sep void setHost concode_elem_sep void setPassword concode_elem...
String function ( ) { return name ; }
1,341
specifies the status of the ip range . status can be `` authorizing '' , `` authorized '' , `` revoking '' , and `` revoked '' . concode_field_sep String status concode_elem_sep String cIDRIP concode_field_sep IPRange withStatus concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep IPRange clon...
String function ( ) { return status ; }
1,342
returns the condition expression for this transition . concode_field_sep String conditionExpression concode_elem_sep ProcessNode from concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep ProcessNode to concode_field_sep void setFrom concode_elem_sep void setConditionExpression concode_elem...
String function ( ) { return conditionExpression ; }
1,343
returns an unmodifiable copy of the bean classes in this bda concode_field_sep ServiceRegistry serviceRegistry concode_elem_sep BeansXml beansXml concode_elem_sep Set<EjbDescriptor<?>> ejbDescriptors concode_elem_sep Module module concode_elem_sep boolean root concode_elem_sep Set<BeanDeploymentArchive> beanDeploymentA...
Collection < String > function ( ) { return Collections . unmodifiableSet ( new HashSet < String > ( beanClasses ) ) ; }
1,344
this method resets the incoming events time events included . concode_field_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void reactMain_region_A concode_elem_sep void init concode_elem_sep void exit concode_elem_sep void reactMain_region_B concode_elem_sep void exitAction concode_elem_s...
void function ( ) { }
1,345
sets the value of the lastname property . concode_field_sep String password concode_elem_sep String firstname concode_elem_sep WSDate createdDate concode_elem_sep String phone concode_elem_sep WSDate loginDate concode_elem_sep String project concode_elem_sep String email concode_elem_sep String username concode_elem_se...
void function ( String arg0 ) { this . lastname = arg0 ; }
1,346
sets boolean flag deciding if refutation table should be used . concode_field_sep boolean parentsMemorizingChildren concode_elem_sep double depthLimit concode_elem_sep String transpositionTableClassName concode_elem_sep String refutationTableClassName concode_elem_sep boolean transpositionTableOn concode_elem_sep boole...
void function ( boolean arg0 ) { this . refutationTableOn = arg0 ; }
1,347
explain the description for this method here . concode_field_sep PlaceHolder placeHolder concode_field_sep String getAuthType concode_elem_sep Principal getUserPrincipal concode_elem_sep WindowState getWindowState concode_elem_sep PortletMode getPortletMode concode_elem_sep Map<String,String[]> getPrivateParameterMap c...
String function ( ) { return null ; }
1,348
get the stopping distance . concode_field_sep double vehicleLength concode_elem_sep double arrivalTime concode_elem_sep double stopDist concode_elem_sep double length concode_elem_sep AdmissionControlZone acz concode_elem_sep int vin concode_elem_sep double arrivalVelocity concode_field_sep void cancel concode_elem_sep...
double function ( ) { return stopDist ; }
1,349
get the connection . this method and methods on the statement must be synchronized on this object . concode_field_sep int useCounter concode_elem_sep String password concode_elem_sep Connection conn concode_elem_sep String driver concode_elem_sep HashMap<TableLinkConnection,TableLinkConnection> map concode_elem_sep Str...
Connection function ( ) { return conn ; }
1,350
write the exception to the cdr output stream . concode_field_sep TypeCode typeCode concode_field_sep AdapterNonExistent extract concode_elem_sep AdapterNonExistent read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type
void function ( OutputStream arg0 , AdapterNonExistent arg1 ) { arg0 . write_string ( id ( ) ) ; }
1,351
sets the decryption property file . concode_field_sep HashMap action concode_field_sep void setDecryptionPropRefKey concode_elem_sep void setPasswordCallbackClass concode_elem_sep String getSignaturePropFile concode_elem_sep String getActionItems concode_elem_sep Parameter getProperty concode_elem_sep void setActionIte...
void function ( String arg0 ) { this . action . put ( WSHandlerConstants . DEC_PROP_FILE , arg0 ) ; }
1,352
sends a tri-state `` 1 '' bit ___ ___ waveform : | | _ | | _ concode_field_sep int pulseLength concode_elem_sep GpioPinDigitalOutput transmitterPin concode_elem_sep int repeatTransmit concode_field_sep void sendTriState concode_elem_sep void sendT0 concode_elem_sep void switchOff concode_elem_sep void switchOff concode...
void function ( ) { this . transmit ( 3 , 1 ) ; this . transmit ( 3 , 1 ) ; }
1,353
check if filewatcher has been terminated . a terminated filewatcher no longer listens for resource notification , and will ignore any last minuet notifications that sneak in . concode_field_sep String path concode_elem_sep Logger LOGGER concode_elem_sep long lastModified concode_elem_sep Object terminateLock concode_el...
boolean function ( ) { synchronized ( terminateLock ) { return terminate ; } }
1,354
indicates whether some other object is `` equal to '' this one . concode_field_sep Selector selector concode_elem_sep short nodeType concode_elem_sep SimpleSelector simpleSelector concode_field_sep SimpleSelector getSiblingSelector concode_elem_sep Selector getSelector concode_elem_sep short getNodeType concode_elem_se...
boolean function ( Object arg0 ) { if ( arg0 == null || ( arg0 . getClass ( ) != getClass ( ) ) ) { return false ; } AbstractSiblingSelector loc0 = ( AbstractSiblingSelector ) arg0 ; return loc0 . simpleSelector . equals ( simpleSelector ) ; }
1,355
returns the default certificate store type . this value can be set at run-time via the security property `` certstore.type '' ; if not specified than the default type will be `` ldap '' . concode_field_sep CertStoreSpi storeSpi concode_elem_sep Provider provider concode_elem_sep String CERT_STORE concode_elem_sep Strin...
String function ( ) { String loc0 = null ; loc0 = ( String ) java . security . AccessController . doPrivileged ( new PrivilegedAction ( ) { public Object run ( ) { return Security . getProperty ( "srini_string" ) ; } } ) ; if ( loc0 == null ) loc0 = "srini_string" ; return loc0 ; }
1,356
serialize the mbeanfeatureinfo . concode_field_sep long serialVersionUID concode_elem_sep String string concode_elem_sep String name concode_elem_sep String description concode_field_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep String...
void function ( ObjectOutputStream arg0 ) { arg0 . defaultWriteObject ( ) ; }
1,357
sets groups . concode_field_sep String realName concode_elem_sep Set<String> groups concode_elem_sep String userId concode_elem_sep String email concode_elem_sep String username concode_elem_sep DuoAccountStatus status concode_field_sep DuoUserAccount setRealName concode_elem_sep boolean isAccountStatusActive concode_e...
DuoUserAccount function ( final Set < String > arg0 ) { this . groups = arg0 ; return this ; }
1,358
setendkey . concode_field_sep byte[] startKey concode_elem_sep int blockletMetaSize concode_elem_sep String fileName concode_elem_sep long[] keyBlockIndexOffSets concode_elem_sep BitSet[] measureNullValueIndex concode_elem_sep int numberOfKeys concode_elem_sep int[] keyBlockIndexLength concode_elem_sep long[] measureOf...
void function ( byte [ ] arg0 ) { this . endKey = arg0 ; }
1,359
gets the includestats value for this jobselector . concode_field_sep java.lang.Boolean includeHistory concode_elem_sep java.lang.Boolean includeStats concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep jav...
java . lang . Boolean function ( ) { return includeStats ; }
1,360
setup test . concode_field_sep OsmDataLayer layer concode_field_sep Conflict<Node> createConflict concode_elem_sep void equalsContract concode_elem_sep void testExecuteKeepMineUndoCommand concode_elem_sep void testExecuteKeepTheirUndoCommand concode_elem_sep void testGetDescriptionIcon concode_elem_sep void tearDownAft...
void function ( ) { JOSMFixture . createUnitTestFixture ( ) . init ( true ) ; layer = new OsmDataLayer ( new DataSet ( ) , null , null ) ; Main . main . addLayer ( layer ) ; }
1,361
sets bit i. concode_field_sep int size concode_elem_sep int[] bits concode_field_sep void toBytes concode_elem_sep void clear concode_elem_sep void reverse concode_elem_sep boolean isRange concode_elem_sep int getSize concode_elem_sep void appendBit concode_elem_sep int getSizeInBytes concode_elem_sep void appendBits c...
void function ( int arg0 ) { bits [ arg0 >> 5 ] |= 1 << ( arg0 & 0x1F ) ; }
1,362
adds the tests from the given class to the suite concode_field_sep String fName concode_elem_sep Vector fTests concode_field_sep void setName concode_elem_sep int testCount concode_elem_sep String getName concode_elem_sep void addTestMethod concode_elem_sep void run concode_elem_sep boolean isTestMethod concode_elem_se...
void function ( Class arg0 ) { addTest ( new TestSuite ( arg0 ) ) ; }
1,363
get printable concode_field_sep Window m_element concode_field_sep int getNumberOfPages concode_elem_sep int print concode_elem_sep void printScreen concode_elem_sep PageFormat getPageFormat
Printable function ( int arg0 ) { return this ; }
1,364
sample_depends_on takes one of the following four values : 0 : the dependency of this sample is unknown ; 1 : this sample does depend on others not an i picture ; 2 : this sample does not depend on others i picture ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep int samplePaddingValue co...
void function ( int arg0 ) { this . sampleDependsOn = arg0 ; }
1,365
creates an oauthvalidator , and caches it in the servlet context attributes for reuse . concode_field_sep String AUTHENTICATE_HEADER concode_elem_sep String ATTR_OAUTH_VALIDATOR concode_elem_sep String ATTR_OAUTH_PROVIDER concode_elem_sep String AUTHORIZATION_HEADER concode_elem_sep String OAUTH_VERIFIER_PARAM concode_...
OAuthValidator function ( ServletContext arg0 , OAuthProvider arg1 ) { OAuthValidator loc0 = ( OAuthValidator ) arg0 . getAttribute ( ATTR_OAUTH_VALIDATOR ) ; if ( loc0 != null ) return loc0 ; loc0 = new OAuthValidator ( arg1 ) ; arg0 . setAttribute ( ATTR_OAUTH_VALIDATOR , loc0 ) ; return loc0 ; }
1,366
create an instance of searchresults concode_field_sep PlaceHolder placeHolder concode_field_sep SearchResults.Hits createSearchResultsHits concode_elem_sep SearchResults.Facets createSearchResultsFacets concode_elem_sep SearchResults.Hits.Hit createSearchResultsHitsHit concode_elem_sep SearchResults.Params.SelectedFace...
SearchResults function ( ) { return new SearchResults ( ) ; }
1,367
rotate d degrees around the x axis . concode_field_sep Mode mode concode_elem_sep float yOffset concode_elem_sep String description concode_elem_sep float xOffset concode_elem_sep String title concode_elem_sep float zOffset concode_field_sep void nextMode concode_elem_sep void setMode concode_elem_sep String descriptio...
void function ( final float arg0 ) { }
1,368
changes the address to the specified address . concode_field_sep String mAddress concode_elem_sep String mName concode_elem_sep String mComment concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String quoteNameIfNecessary concode_elem_sep boolean stringEquals concode_elem_sep int hashCode ...
void function ( String arg0 ) { mAddress = arg0 ; }
1,369
get the maximum concurrent requests . concode_field_sep HttpHandler next concode_elem_sep long MASK_CURRENT concode_elem_sep long MASK_MAX concode_elem_sep AtomicLongFieldUpdater<RequestLimit> stateUpdater concode_elem_sep HttpServerExchange exchange concode_elem_sep long state concode_elem_sep ExchangeCompletionListen...
int function ( ) { return ( int ) ( state >> 32L ) ; }
1,370
can be over-ridden by implementations to provide a custom access control enforcer that can provide an alternate implementation of the default permission checking logic . concode_field_sep PlaceHolder placeHolder concode_field_sep String[] getPathElements concode_elem_sep void checkPermission concode_elem_sep INodeAttri...
AccessControlEnforcer function ( AccessControlEnforcer arg0 ) { return arg0 ; }
1,371
returns true if the given process name is a `` long running '' process or service . concode_field_sep Set<String> EXCLUDED_CLASSES concode_elem_sep String PRELOADED_CLASS_FILE concode_elem_sep Set<String> SERVICES concode_field_sep boolean isPreloadable
boolean function ( String arg0 ) { return SERVICES . contains ( arg0 ) ; }
1,372
convience method to pad the passed message with the time then append it to the control log concode_field_sep LogBean singleton concode_elem_sep MessageLog messageLog concode_elem_sep ChatState state concode_elem_sep Log log concode_elem_sep String autoLoad concode_elem_sep ArrayList controlLog concode_elem_sep String L...
void function ( String arg0 ) { if ( controlLog . size ( ) > CONTROL_LOG_CAP ) { controlLog = clear ( controlLog ) ; appendControl ( "srini_string" + CONTROL_LOG_CAP + "srini_string" ) ; } controlLog . add ( ( new Time ( System . currentTimeMillis ( ) ) + "srini_string" + arg0 ) ) ; }
1,373
test that a valid expression to a system property reference which has no definition throws an ise concode_field_sep ExpressionResolver resolver concode_field_sep void testSystemPropertyRefDefault concode_elem_sep void testLocalDelegatedToSystemProperties concode_elem_sep void testCanonicalResolver concode_elem_sep void...
void function ( ) { String loc0 = "srini_string" ; String loc1 = resolver . resolve ( loc0 ) ; fail ( "srini_string" + loc1 ) ; }
1,374
sets the targetid field and replaces the target tag by a capturing group . concode_field_sep int targetID concode_elem_sep Pattern pattern concode_elem_sep String property concode_elem_sep int[] contextIDs concode_elem_sep int MAX_TARGET concode_elem_sep int MAX_CONTEXT concode_field_sep String getProperty concode_elem...
String function ( String arg0 ) { String loc0 = arg0 . split ( "srini_string" ) [ 0 ] ; targetID = loc0 . split ( "srini_string" , - 1 ) . length - loc0 . split ( "srini_string" , - 1 ) . length - loc0 . split ( "srini_string" ) . length + loc0 . split ( "srini_string" ) . length + 1 ; arg0 = arg0 . replace ( "srini_st...
1,375
set the sounds to be played when a pull event happens . you specify which sound plays for which events by calling this method multiple times for each event . if you 've already set a sound for a certain event , and add another sound for that event , only the new sound will be played . concode_field_sep MediaPlayer mCur...
void function ( State arg0 , int arg1 ) { mSoundMap . put ( arg0 , arg1 ) ; }
1,376
the association status . concode_field_sep java.util.Date dateValue concode_elem_sep String instanceId concode_elem_sep String name concode_elem_sep java.util.Map<String,java.util.List<String>> parameters concode_elem_sep AssociationStatus status concode_field_sep void setName concode_elem_sep AssociationDescription wi...
AssociationStatus function ( ) { return this . status ; }
1,377
an array describing the tags that are defined in this tag library . concode_field_sep String urn concode_elem_sep String tlibversion concode_elem_sep FunctionInfo[] functions concode_elem_sep String prefix concode_elem_sep String uri concode_elem_sep String shortname concode_elem_sep TagFileInfo[] tagFiles concode_elem...
TagInfo [ ] function ( ) { return tags ; }
1,378
returns snapshot rest status concode_field_sep String reason concode_elem_sep XContentBuilderString START_TIME concode_elem_sep XContentBuilderString REASON concode_elem_sep XContentBuilderString FAILURES concode_elem_sep int totalShards concode_elem_sep XContentBuilderString FAILED concode_elem_sep XContentBuilderStri...
RestStatus function ( ) { if ( state == SnapshotState . FAILED ) { return RestStatus . INTERNAL_SERVER_ERROR ; } if ( shardFailures . size ( ) == 0 ) { return RestStatus . OK ; } return RestStatus . status ( successfulShards , totalShards , shardFailures . toArray ( new ShardOperationFailedException [ shardFailures . s...
1,379
return size of the linked list . concode_field_sep Linkable head concode_elem_sep int size concode_elem_sep Linkable tail concode_field_sep void insertAtTail concode_elem_sep Linkable getTail concode_elem_sep Linkable getHead concode_elem_sep Linkable removeFromTail concode_elem_sep String toString concode_elem_sep voi...
int function ( ) { return this . size ; }
1,380
sets values from an attribute containing bname/value pairs to a corresponding fields of the supplied object . any mismatch is ignored , and no exception is raised concode_field_sep Logger logger concode_field_sep HashMap getAll concode_elem_sep void set concode_elem_sep Object get concode_elem_sep Field getField
void function ( final Object arg0 , final Attributes arg1 ) { for ( int loc0 = 0 ; loc0 < arg1 . getLength ( ) ; loc0 ++ ) ObjectGetSetter . set ( arg0 , arg1 . getQName ( loc0 ) , arg1 . getValue ( loc0 ) ) ; }
1,381
get the coin 's value . concode_field_sep String currency concode_elem_sep int value concode_field_sep String getCurrency concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep int compareTo
int function ( ) { return value ; }
1,382
returns the calimero library version as string representation . the returned version is formatted something similar to `` main.minor . milli - phase '' , for example `` 2.0.0-alpha '' . concode_field_sep ClassLoader cl concode_elem_sep String group concode_elem_sep String copyright concode_elem_sep String version conco...
String function ( ) { return version ; }
1,383
the generated key pair . concode_field_sep String certificatePem concode_elem_sep String certificateArn concode_elem_sep String certificateId concode_elem_sep KeyPair keyPair concode_field_sep void setCertificatePem concode_elem_sep void setCertificateArn concode_elem_sep String getCertificateId concode_elem_sep Create...
CreateKeysAndCertificateResult function ( KeyPair arg0 ) { setKeyPair ( arg0 ) ; return this ; }
1,384
causes the traverser to traverse all objects pointed to by root , recursively . concode_field_sep boolean yieldRoot concode_elem_sep boolean traverseParseObjects concode_field_sep ParseTraverser setYieldRoot concode_elem_sep ParseTraverser setTraverseParseObjects concode_elem_sep boolean visit concode_elem_sep void tra...
void function ( Object arg0 ) { IdentityHashMap < Object , Object > loc0 = new IdentityHashMap < Object , Object > ( ) ; traverseInternal ( arg0 , yieldRoot , loc0 ) ; }
1,385
insert mapping from website url to url of the feed . concode_field_sep String LOGTAG concode_elem_sep Uri urlAnnotationsTableWithProfile concode_field_sep boolean hasAcceptedOrDeclinedHomeScreenShortcut concode_elem_sep Cursor getWebsitesWithFeedUrl concode_elem_sep boolean hasResultsForSelection concode_elem_sep Curso...
void function ( ContentResolver arg0 , String arg1 , String arg2 ) { insertAnnotation ( arg0 , arg1 , Key . FEED , arg2 ) ; }
1,386
set encoder for the highlighting are styled and default . concode_field_sep int fragmentSize concode_elem_sep String[] preTags concode_elem_sep String[] postTags concode_elem_sep String name concode_elem_sep int numOfFragments concode_elem_sep String tagsSchema concode_elem_sep List<Field> fields concode_elem_sep int f...
HighlightBuilder function ( String arg0 ) { this . encoder = arg0 ; return this ; }
1,387
creates a named roundtrip with the given connectornode as left hand side diagram and returns the roundtripdto . concode_field_sep String MODEL_FOLDER concode_elem_sep String LHS_MODELER concode_elem_sep String TEST_RESOURCES_PATH concode_elem_sep String RHS_MODELER concode_elem_sep RoundtripService roundtripService con...
RoundtripDTO function ( ConnectorNode arg0 ) { RoundtripDTO loc0 = createTestRoundtrip ( ) ; loc0 . setLeftHandSide ( createTestBpmnDiagram ( arg0 , LHS_MODELER ) ) ; loc0 = roundtripService . updateDetails ( loc0 ) ; return loc0 ; }
1,388
gets the value of the overwrite property . concode_field_sep GuestFileAttributes fileAttributes concode_elem_sep GuestAuthentication auth concode_elem_sep long fileSize concode_elem_sep ManagedObjectReference vm concode_elem_sep String guestFilePath concode_elem_sep ManagedObjectReference _this concode_elem_sep boolean...
boolean function ( ) { return overwrite ; }
1,389
removes a iproblemchangedlistener . concode_field_sep HashSet<IResource> fChangedElements concode_elem_sep ListenerList fListeners concode_field_sep void checkInvalidate concode_elem_sep void resourceChanged concode_elem_sep void modelChanged concode_elem_sep void modelChanged concode_elem_sep boolean isErrorDelta conc...
void function ( IProblemChangedListener arg0 ) { fListeners . remove ( arg0 ) ; if ( fListeners . isEmpty ( ) ) { ResourcesPlugin . getWorkspace ( ) . removeResourceChangeListener ( this ) ; } }
1,390
specifies if the search term should be treated as whole word hits only . concode_field_sep boolean wholeWord concode_elem_sep ArrayList<String> terms concode_elem_sep boolean caseSensitive concode_elem_sep String term concode_field_sep boolean isCaseSensitive concode_elem_sep String getTerm concode_elem_sep boolean equ...
boolean function ( ) { return wholeWord ; }
1,391
sets the value of the name property . concode_field_sep ArrayOfPerson members concode_elem_sep String name concode_field_sep String getName concode_elem_sep void setMembers concode_elem_sep ArrayOfPerson getMembers
void function ( String arg0 ) { this . name = arg0 ; }
1,392
sets the chart editor factory . concode_field_sep ChartEditorFactory factory concode_field_sep ChartEditor getChartEditor concode_elem_sep ChartEditorFactory getChartEditorFactory
void function ( ChartEditorFactory arg0 ) { ParamChecks . nullNotPermitted ( arg0 , "srini_string" ) ; factory = arg0 ; }
1,393
confirm that cloning works . concode_field_sep PlaceHolder placeHolder concode_field_sep void testFindRangeBounds concode_elem_sep void testPublicCloneable concode_elem_sep void testSerialization concode_elem_sep void testDrawWithNullInfo concode_elem_sep void testEquals
void function ( ) { GroupedStackedBarRenderer loc0 = new GroupedStackedBarRenderer ( ) ; GroupedStackedBarRenderer loc1 = ( GroupedStackedBarRenderer ) loc0 . clone ( ) ; assertTrue ( loc0 != loc1 ) ; assertTrue ( loc0 . getClass ( ) == loc1 . getClass ( ) ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; }
1,394
stops the current timer . concode_field_sep long stop concode_elem_sep String name concode_elem_sep long start concode_elem_sep Stack<Timer> current concode_elem_sep List<Timer> timestamps concode_field_sep long getValue concode_elem_sep String getName concode_elem_sep void display concode_elem_sep void start concode_e...
void function ( ) { stop = System . currentTimeMillis ( ) ; }
1,395
get configured mailbox name . concode_field_sep String OPTION_MAIL_SERVICE_NAME concode_elem_sep String mailServiceName concode_elem_sep String mailbox concode_elem_sep String COMPONENT_CONFIGURATION_ID concode_elem_sep String OPTION_MAIL_DELETE_IMPORTED_MESSAGES concode_elem_sep boolean deleteImportedMessages concode_...
String function ( ) { return this . mailbox ; }
1,396
add a bean in the conversation scope store . concode_field_sep Stack<ConversationContext<?>> contextes concode_elem_sep String CONVERSATION_COUNTER_KEY concode_elem_sep int conversationContextIdCounter concode_elem_sep Logger log concode_elem_sep int popContextOnNextPauseCounter concode_elem_sep ConversationContext<?> ...
void function ( String arg0 , Object arg1 ) { beans . put ( arg0 , arg1 ) ; }
1,397
detects objects of different sizes in the input image . the detected objects are returned as a list of rectangles . the function is parallelized with the tbb library . note : python a face detection example using cascade classifiers can be found at opencv_source_code/samples/python2/facedetect.py concode_field_sep long...
void function ( Mat arg0 , MatOfRect arg1 ) { Mat loc0 = arg1 ; detectMultiScale_1 ( nativeObj , arg0 . nativeObj , loc0 . nativeObj ) ; return ; }
1,398
returns a hash code for this sortfield instance . if a fieldcomparatorsource was provided , it must properlyimplement hashcode unless a singleton is always used . concode_field_sep SortField FIELD_DOC concode_elem_sep SortField FIELD_SCORE concode_elem_sep Object missingValue concode_elem_sep Comparator<BytesRef> bytes...
int function ( ) { return Objects . hash ( field , type , reverse , comparatorSource , missingValue ) ; }
1,399
this method was generated by mybatis generator . this method returns the value of the database column t_cem_article . time concode_field_sep String imgUrl concode_elem_sep String author concode_elem_sep Integer num concode_elem_sep String name concode_elem_sep String index concode_elem_sep Integer id concode_elem_sep D...
Date function ( ) { return time ; }