idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
34,300
a test for bug report 1170825 originally affected xyseriescollection , this test is just copied over . concode_field_sep DatasetChangeEvent lastEvent concode_field_sep void datasetChanged concode_elem_sep void testCloning concode_elem_sep void testSerialization concode_elem_sep void testHashcode concode_elem_sep void t...
void function ( ) { OHLCSeries loc0 = new OHLCSeries ( "srini_string" ) ; OHLCSeriesCollection loc1 = new OHLCSeriesCollection ( ) ; loc1 . addSeries ( loc0 ) ; try { loc1 . getSeries ( 1 ) ; } catch ( IllegalArgumentException loc2 ) { } catch ( IndexOutOfBoundsException loc2 ) { assertTrue ( false ) ; } }
34,301
checks if other node is the immediate parent of this one . concode_field_sep int PARENT concode_elem_sep int RECORD_SIZE concode_elem_sep PDOMLinkage fLinkage concode_elem_sep long record concode_elem_sep long cachedParentRecord concode_elem_sep int TYPE concode_field_sep long getBindingID concode_elem_sep byte getByte...
boolean function ( PDOMNode arg0 ) { try { return arg0 . fLinkage == fLinkage && arg0 . record == getParentNodeRec ( ) ; } catch ( CoreException loc0 ) { return false ; } }
34,302
add a command to this action that is executed before the delay concode_field_sep ArrayList<CommandOPEN> preDelayCommandList concode_elem_sep Integer[] sensorIdInhibitionList concode_elem_sep String description concode_elem_sep ArrayList<CommandOPEN> resetCommandList concode_elem_sep boolean commandWithDelay concode_ele...
int function ( ) { return preDelayCommandList . size ( ) ; }
34,303
returns the set of resources that are part of this traversal . note that this is the original set , and that any modification on the returned set will affectthis traversal . concode_field_sep Set<? extends IStorage> storages concode_elem_sep Diagnostic diagnostic concode_field_sep Diagnostic getDiagnostic concode_elem_...
Set < ? extends IStorage > function ( ) { return new LinkedHashSet < IStorage > ( storages ) ; }
34,304
fill an arraylist with all the id_directory values in the tree below and including this directory . concode_field_sep RepositoryDirectoryInterface parent concode_elem_sep String DIRECTORY_SEPARATOR concode_elem_sep List<RepositoryDirectoryInterface> children concode_elem_sep boolean visible concode_elem_sep List<Reposi...
void function ( List < ObjectId > arg0 ) { if ( getObjectId ( ) != null ) { arg0 . add ( getObjectId ( ) ) ; } for ( int loc0 = 0 ; loc0 < getNrSubdirectories ( ) ; loc0 ++ ) { getSubdirectory ( loc0 ) . getDirectoryIDs ( arg0 ) ; } }
34,305
returns the number of signals in the chain . concode_field_sep Vector<AudioSignal> signals concode_elem_sep float[] tmpL concode_elem_sep Vector<AudioSignal> signalsToRemove concode_elem_sep float[] tmpR concode_elem_sep HashSet<AudioSignal> enabled concode_field_sep void add concode_elem_sep boolean contains concode_e...
int function ( ) { return signals . size ( ) ; }
34,306
sets the value of the fieldname property . concode_field_sep String fieldBehavior concode_elem_sep String fieldName concode_elem_sep String displayFieldName concode_elem_sep Boolean canSelect concode_elem_sep List<EnumValuePair> enumValuePairs concode_elem_sep Boolean isZeroRowCompatible concode_elem_sep String xmlAttr...
void function ( String arg0 ) { this . fieldName = arg0 ; }
34,307
this is getter method for callcharge concode_field_sep String calledNo concode_elem_sep String sessionStartTime concode_elem_sep String callDuration concode_elem_sep String transactionId concode_elem_sep long serialVersionUID concode_elem_sep String originator concode_elem_sep String senderMsisdn concode_elem_sep Strin...
String function ( ) { return callCharge ; }
34,308
convenience method to set whether jobmanager should persist this job or not . concode_field_sep long delayMs concode_elem_sep boolean requiresNetwork concode_elem_sep String groupId concode_elem_sep boolean persistent concode_elem_sep int priority concode_elem_sep HashSet<String> tags concode_field_sep Params setDelayM...
Params function ( boolean arg0 ) { this . persistent = arg0 ; return this ; }
34,309
sets the security context of the call coming in concode_field_sep Object container concode_elem_sep Map<Class,Object> registry concode_elem_sep Object instance concode_elem_sep String componentId concode_elem_sep Boolean auth concode_elem_sep String instanceName concode_elem_sep String appName concode_elem_sep String m...
void function ( Object arg0 ) { this . oldSecurityContext = arg0 ; }
34,310
clear the cache , calling #entryremoved on each removed entry . concode_field_sep int evictionCount concode_elem_sep int putCount concode_elem_sep int hitCount concode_elem_sep int size concode_elem_sep int createCount concode_elem_sep int maxSize concode_elem_sep LinkedHashMap<K,V> map concode_elem_sep int missCount c...
void function ( ) { trimToSize ( - 1 ) ; }
34,311
this method gives us the name of the wallet icon used to identify the image in the wallet resources plug-in concode_field_sep String walletIcon concode_elem_sep WalletCategory walletCategory concode_elem_sep int iconResource concode_elem_sep WalletType walletType concode_elem_sep String walletName concode_elem_sep Stri...
String function ( ) { return walletIcon ; }
34,312
append byte to this buffer . concode_field_sep byte[] elems concode_elem_sep int length concode_field_sep void appendDouble concode_elem_sep void appendLong concode_elem_sep void appendChar concode_elem_sep void appendInt concode_elem_sep Name toName concode_elem_sep void reset concode_elem_sep void appendBytes concode...
void function ( int arg0 ) { elems = ArrayUtils . ensureCapacity ( elems , length ) ; elems [ length ++ ] = ( byte ) arg0 ; }
34,313
returns true if the connection is up concode_field_sep DTNHost fromNode concode_elem_sep DTNHost msgFromNode concode_elem_sep int bytesTransferred concode_elem_sep boolean isUp concode_elem_sep NetworkInterface fromInterface concode_elem_sep DTNHost toNode concode_elem_sep NetworkInterface toInterface concode_elem_sep ...
boolean function ( ) { return this . isUp ; }
34,314
write links . concode_field_sep IPXACTDesignVendorExtensionsWriter vendorExtensions concode_elem_sep URI uri concode_field_sep void writeVLNV concode_elem_sep void writeCompactVLNV concode_elem_sep void writeParameter concode_elem_sep void writeComponentInstance concode_elem_sep void writeHierarchyPorts concode_elem_se...
void function ( final Element arg0 , final Design arg1 , final Document arg2 ) { final EList < Link > loc0 = arg1 . getLinks ( ) ; final Element loc1 = arg2 . createElement ( "srini_string" ) ; arg0 . appendChild ( loc1 ) ; for ( final Link loc2 : loc0 ) { writeInterconnection ( loc1 , loc2 , arg2 ) ; } }
34,315
eviction strategy . available options are ` unordered ' , ` lru ' , ` lirs ' and ` none ' to disable eviction . concode_field_sep AttributeDefinition<EvictionType> TYPE concode_elem_sep Attribute<EvictionThreadPolicy> threadPolicy concode_elem_sep Attribute<Long> size concode_elem_sep Log log concode_elem_sep Attribute...
EvictionStrategy function ( ) { return strategy . get ( ) ; }
34,316
add the list of service urls . concode_field_sep JFrame parentFrame concode_elem_sep JPasswordField password concode_elem_sep Object[] options concode_elem_sep SWORDComboBox onBehalfOf concode_elem_sep JPanel controls concode_elem_sep SWORDComboBox location concode_elem_sep SWORDComboBox username concode_field_sep JPan...
void function ( String [ ] arg0 ) { location . insertItems ( arg0 ) ; }
34,317
callback for when an unrecognized option is parsed . concode_field_sep String DRIVER_JAVA_OPTIONS concode_elem_sep String DRIVER_LIBRARY_PATH concode_elem_sep String DRIVER_CORES concode_elem_sep String NUM_EXECUTORS concode_elem_sep String[][] opts concode_elem_sep String EXECUTOR_CORES concode_elem_sep String PY_FILE...
boolean function ( String arg0 ) { throw new UnsupportedOperationException ( ) ; }
34,318
returns a sequence pair score for all sequence pairs in the given list . concode_field_sep BasicSymmetricalDistanceMatrix distances concode_elem_sep GuideTreeNode<S,C> parent concode_elem_sep boolean isVisited concode_elem_sep double distance concode_elem_sep Profile<S,C> profile concode_elem_sep List<S> sequences conc...
double [ ] function ( ) { double [ ] loc0 = new double [ scorers . size ( ) ] ; int loc1 = 0 ; for ( PairwiseSequenceScorer < S , C > loc2 : scorers ) { loc0 [ loc1 ++ ] = loc2 . getScore ( ) ; } return loc0 ; }
34,319
the world position of the body . avoid creating bodies at the origin since this can lead to many overlapping shapes . concode_field_sep boolean allowSleep concode_elem_sep boolean bullet concode_elem_sep Vec2 position concode_elem_sep float angle concode_elem_sep Object userData concode_elem_sep float angularDamping co...
void function ( Vec2 arg0 ) { this . position = arg0 ; }
34,320
information about the ipset that you specified in the getipset request . for more information , see the following topics : ipset : contains ipsetdescriptors , ipsetid , and name ipsetdescriptors : contains an array of ipsetdescriptor objects . each ipsetdescriptor object contains type and value concode_field_sep IPSet ...
IPSet function ( ) { return this . iPSet ; }
34,321
tests if this udpslaveterminal is active . concode_field_sep int m_LocalPort concode_elem_sep PacketReceiver m_PacketReceiver concode_elem_sep Hashtable m_Requests concode_elem_sep InetAddress m_LocalAddress concode_elem_sep PacketSender m_PacketSender concode_elem_sep boolean m_Continue concode_elem_sep int m_Deactiva...
boolean function ( ) { return m_Active ; }
34,322
gets the parameters value for this execresulttype . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep int resultCode concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String resultMessage concode_elem_sep com.dogma.ws.Autogen...
com . dogma . ws . AutogenerateWSDL . resumendeactividad . gen . Parameter function ( ) { return parameters ; }
34,323
this method sets lifecycle current state checkpoints . concode_field_sep long duration concode_elem_sep CheckpointBean checkpoint concode_field_sep void setDuration concode_elem_sep long getDuration concode_elem_sep CheckpointBean getCheckpoint
void function ( CheckpointBean arg0 ) { this . checkpoint = arg0 ; }
34,324
alias to property string name , string defaultvalue concode_field_sep Logger logger concode_field_sep int intProperty concode_elem_sep boolean booleanProperty concode_elem_sep boolean booleanProperty concode_elem_sep void setProperty concode_elem_sep void setSystemProperty concode_elem_sep String property concode_elem_...
String function ( String arg0 , String arg1 ) { return property ( arg0 , arg1 ) ; }
34,325
get the edge condition for this op . concode_field_sep int edge concode_elem_sep int EDGE_ZERO_FILL concode_elem_sep int EDGE_NO_OP concode_elem_sep Kernel kernel concode_elem_sep RenderingHints hints concode_field_sep BufferedImage filter concode_elem_sep WritableRaster filter concode_elem_sep Point2D getPoint2D conco...
int function ( ) { return edge ; }
34,326
returns the shape object representing the node , or if there is none , generate a new shape . concode_field_sep int ANIMATEXINCREMENT concode_elem_sep NodeType type concode_elem_sep ArrayList<Edge> edgesFrom concode_elem_sep ArrayList<Edge> edgesTo concode_elem_sep int ANIMATEYINCREMENT concode_elem_sep Object match co...
Shape function ( ) { if ( shape == null ) { generateShape ( ) ; } return ( shape ) ; }
34,327
set the request code for the startactivityforresult call . the requestcode should be outside of the range of those reserved for the facebook sdk com.facebook.facebooksdk #isfacebookrequestcode int . concode_field_sep Fragment fragment concode_elem_sep Activity activity concode_elem_sep String TAG concode_elem_sep int r...
void function ( int arg0 ) { if ( FacebookSdk . isFacebookRequestCode ( arg0 ) ) { throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; } this . requestCode = arg0 ; }
34,328
generates xml based data from a complex testing bean . concode_field_sep Logger LOG concode_field_sep String generateSimpleText concode_elem_sep Person getSimpleTestBean concode_elem_sep Person generateSimpleXml concode_elem_sep TestBean getComplexTestBean concode_elem_sep String generateComplexText concode_elem_sep Te...
TestBean function ( ) { return getComplexTestBean ( ) ; }
34,329
add the attribute ` sxregistered ' to the model . the attribute can be used to detect if the icemobile sx app has been registered yet for the session . concode_field_sep PlaceHolder placeHolder concode_field_sep void viewSizeAttribute concode_elem_sep void ajaxAttribute
void function ( HttpServletRequest arg0 , Model arg1 ) { arg1 . addAttribute ( "srini_string" , ClientDescriptor . getInstance ( arg0 ) . isSXRegistered ( ) ) ; }
34,330
gets the sum of the counts of all entries . concode_field_sep Set<Entry> entries concode_elem_sep long count concode_elem_sep long sum concode_elem_sep String[] tupel concode_field_sep void removeEntry concode_elem_sep int compare concode_elem_sep void setSum concode_elem_sep void setEntries concode_elem_sep void setTu...
long function ( ) { return sum ; }
34,331
get the id value out of a reference by the key that preceeds it concode_field_sep String originalReference concode_elem_sep char SEPARATOR concode_elem_sep boolean empty concode_elem_sep char PERIOD concode_elem_sep String prefix concode_elem_sep String entityId concode_elem_sep long serialVersionUID concode_field_sep ...
String function ( String arg0 , String arg1 ) { String loc0 = null ; if ( arg0 != null ) { String [ ] loc1 = arg0 . split ( "srini_string" ) ; for ( int loc2 = 0 ; loc2 < loc1 . length ; loc2 ++ ) { if ( arg1 . equals ( loc1 [ loc2 ] ) ) { if ( loc1 . length > loc2 + 1 ) { loc0 = loc1 [ loc2 + 1 ] ; } } } } return loc0...
34,332
computes the number of bytes required to encode this message . this does not update the cached size . concode_field_sep int cachedSize concode_field_sep void writeTo concode_elem_sep MessageNano mergeFrom concode_elem_sep T mergeFrom concode_elem_sep T mergeFrom concode_elem_sep boolean messageNanoEquals concode_elem_s...
int function ( ) { return 0 ; }
34,333
determine if the given character set is present in the given password string . concode_field_sep int highEntropy concode_elem_sep int minEntropy concode_elem_sep int mediumEntropy concode_elem_sep int maxSequenceLength concode_elem_sep ServerConfigurationService serverConfigurationService concode_elem_sep String SAK_PR...
int function ( char [ ] arg0 , String arg1 ) { for ( int loc0 = 0 ; loc0 < arg1 . length ( ) ; loc0 ++ ) { if ( Arrays . binarySearch ( arg0 , arg1 . charAt ( loc0 ) ) >= 0 ) { return 1 ; } } return 0 ; }
34,334
sets the ending character number for the given column index . this value is one greater than the last character position for the column . concode_field_sep String[] names concode_elem_sep int[] cols concode_field_sep int getColumnLength concode_elem_sep void addColumn concode_elem_sep FixedWidthTextTableSchema load con...
int function ( int arg0 ) { return cols [ arg0 + 1 ] ; }
34,335
returns the objectmapper used by this serializer , allowing for configuration of the serialization settings . concode_field_sep ObjectMapper objectMapper concode_elem_sep ClassLoader classLoader concode_elem_sep ConverterFactory converterFactory concode_elem_sep RevisionResolver revisionResolver concode_field_sep Seria...
ObjectMapper function ( ) { return objectMapper ; }
34,336
prints the line passed as a non-string object . concode_field_sep OutputStream output concode_elem_sep String LINE_SEPARATOR concode_elem_sep StringBuilder buffer concode_elem_sep boolean disabled concode_field_sep void print concode_elem_sep void print concode_elem_sep void formatLine concode_elem_sep void printConcat...
void function ( Object arg0 ) { if ( ! isDisabled ( ) ) { printLine ( String . valueOf ( arg0 ) ) ; } }
34,337
select a use case . concode_field_sep Vector useCases concode_elem_sep PersistenceBroker broker concode_field_sep void main concode_elem_sep void run concode_elem_sep String readLine concode_elem_sep void displayUseCases
UseCase function ( ) { displayUseCases ( ) ; System . out . println ( "srini_string" ) ; String loc0 = readLine ( ) ; int loc1 = Integer . parseInt ( loc0 ) ; return ( UseCase ) useCases . get ( loc1 ) ; }
34,338
return the type of this class . useful for when dealing with proxies . concode_field_sep Set<TransactionItem> transactionItems concode_elem_sep String hashCode concode_elem_sep Offering offering concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep Set<Refund> refunds concode_elem_sep Accou...
Class < ? > function ( ) { return Purchase . class ; }
34,339
the generation stamp of the indexth block concode_field_sep int LONGS_PER_FINALIZED_BLOCK concode_elem_sep int LONGS_PER_UC_BLOCK concode_elem_sep long[] blockList concode_elem_sep ReplicaState currentReplicaState concode_elem_sep int HEADER_SIZE concode_elem_sep int currentBlockIndex concode_elem_sep Block block conco...
long function ( final int arg0 ) { return blockGenerationStamp ( arg0 ) ; }
34,340
creates and registers the details for linking a foreign call to a stub . concode_field_sep ForeignCallDescriptor LOAD_AND_CLEAR_EXCEPTION concode_elem_sep LocationIdentity[] NO_LOCATIONS concode_elem_sep ForeignCallDescriptor OSR_MIGRATION_END concode_elem_sep boolean REEXECUTABLE concode_elem_sep HotSpotGraalRuntimePr...
HotSpotForeignCallLinkage function ( ForeignCallDescriptor arg0 , boolean arg1 , Transition arg2 , LocationIdentity ... arg3 ) { return register ( HotSpotForeignCallLinkageImpl . create ( metaAccess , codeCache , this , arg0 , 0L , PRESERVES_REGISTERS , JavaCall , JavaCallee , arg2 , arg1 , arg3 ) ) ; }
34,341
sets the element i in the array object to value . concode_field_sep Method[] EMPTY_METHODS concode_elem_sep boolean isStatic concode_elem_sep Field[] allFields concode_elem_sep Set<Class> EMPTY_ASSIGNABLES concode_elem_sep boolean isAnnotation concode_elem_sep Field[] EMPTY_FIELDS concode_elem_sep Method[] allMethods c...
void function ( Object arg0 , int arg1 , Object arg2 ) { ReflectionCache . setArrayElement ( this , arg0 , arg1 , arg2 ) ; }
34,342
verbose log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void s...
void function ( String arg0 , String arg1 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 ) ; }
34,343
starts the logging clients . concode_field_sep String clientName concode_elem_sep ExecutorService service concode_elem_sep int serverPort concode_elem_sep InetSocketAddress remoteAddress concode_field_sep void sendLogRequests concode_elem_sep void stop concode_elem_sep void artificialDelayOf concode_elem_sep void main ...
void function ( ) { service . execute ( new TcpLoggingClient ( "srini_string" , 6666 ) ) ; service . execute ( new TcpLoggingClient ( "srini_string" , 6667 ) ) ; service . execute ( new UdpLoggingClient ( "srini_string" , 6668 ) ) ; service . execute ( new UdpLoggingClient ( "srini_string" , 6668 ) ) ; }
34,344
sets the value of the lastmodifieddatetime property . concode_field_sep List<Long> companionCreativeIds concode_elem_sep DateTime lastModifiedDateTime concode_elem_sep String name concode_elem_sep Long id concode_elem_sep Long masterCreativeId concode_field_sep void setName concode_elem_sep String getName concode_elem_...
void function ( DateTime arg0 ) { this . lastModifiedDateTime = arg0 ; }
34,345
getactiveobject . get a reference to a running instance of this class on the current machine using native code . uses native code see getactiveobject in ms doc and thus can only be used on ms windows concode_field_sep wbemdisp.ISWbemEventSourceProxy d_ISWbemEventSourceProxy concode_elem_sep String CLSID concode_field_s...
SWbemEventSource function ( ) { return new SWbemEventSource ( com . linar . jintegra . Dispatch . getActiveObject ( CLSID ) ) ; }
34,346
alert the ringbuffer consumers of a status change and stay in this status until cleared . concode_field_sep boolean alerted concode_elem_sep RingBufferProducer sequenceProducer concode_elem_sep Sequence cursorSequence concode_elem_sep WaitStrategy waitStrategy concode_field_sep long getCursor concode_elem_sep long getA...
void function ( ) { alerted = true ; waitStrategy . signalAllWhenBlocking ( ) ; }
34,347
sets the directory for dump file . concode_field_sep String dumpDir concode_elem_sep Set<String> profiledPackages concode_elem_sep boolean profilerEnabled concode_elem_sep Set<String> ignoredPackages concode_elem_sep boolean autoDumpEnabled concode_elem_sep String SEPARATOR concode_elem_sep Config config concode_elem_s...
void function ( String arg0 ) { dumpDir = arg0 ; }
34,348
returns the number of classes in the model . concode_field_sep HashMap classesMap concode_elem_sep MappingModel mappingModel concode_elem_sep ArrayList sources concode_elem_sep ArrayList classes concode_elem_sep Comments modelComments concode_elem_sep HashMap includeComments concode_field_sep void addClassDescription c...
int function ( ) { return this . classes . size ( ) ; }
34,349
gets the person id for this student . concode_field_sep String firstName concode_elem_sep String lastName concode_elem_sep String address concode_elem_sep int personId concode_elem_sep int personVoterId concode_field_sep void setLastName concode_elem_sep void setAddress concode_elem_sep void setFirstName concode_elem_s...
int function ( ) { return personId ; }
34,350
sets the value of the jspxpages property . concode_field_sep JspxPages jspxPages concode_elem_sep ResourceType templateRef concode_elem_sep Beans beans concode_field_sep void setBeans concode_elem_sep void setTemplateRef concode_elem_sep JspxPages getJspxPages concode_elem_sep ResourceType getTemplateRef concode_elem_s...
void function ( JspxPages arg0 ) { this . jspxPages = arg0 ; }
34,351
returns the content of the certificate . concode_field_sep String password concode_elem_sep String name concode_elem_sep InputStream content concode_field_sep void setName concode_elem_sep void setPassword concode_elem_sep void setContent concode_elem_sep String getPassword concode_elem_sep String getName concode_elem_...
InputStream function ( ) { return content ; }
34,352
reads from the reader until : end-of-file an i/o error occurs #stop is invoked concode_field_sep boolean stop concode_elem_sep BufferedReader reader concode_elem_sep Logger logger concode_field_sep void read concode_elem_sep void stop
void function ( ) { try { String loc0 ; while ( ( loc0 = reader . readLine ( ) ) != null ) { read ( loc0 ) ; if ( stop ) { break ; } } } catch ( IOException loc0 ) { logger . log ( Level . FINE , loc0 . getMessage ( ) , loc0 ) ; } }
34,353
gets the filename value for this wsworkflowdeploy . concode_field_sep java.lang.String filename concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.apache.axis.description.TypeDesc getTypeDesc concode...
java . lang . String function ( ) { return filename ; }
34,354
sets the defaultlazy . concode_field_sep String catalogName concode_elem_sep String defaultCascade concode_elem_sep String defaultAccess concode_elem_sep boolean autoImport concode_elem_sep String schemaName concode_elem_sep String defaultPackage concode_elem_sep boolean defaultLazy concode_field_sep boolean hasCatalog...
void function ( boolean arg0 ) { this . defaultLazy = arg0 ; }
34,355
get the terminator coordinator client singleton . concode_field_sep String closeAction concode_elem_sep MAPEndpoint secureTerminationParticipant concode_elem_sep TerminationCoordinatorClient CLIENT concode_elem_sep String cancelAction concode_elem_sep String completeAction concode_elem_sep MAPEndpoint terminationPartic...
TerminationCoordinatorClient function ( ) { return CLIENT ; }
34,356
gets the current value at position i . concode_field_sep int base concode_elem_sep long serialVersionUID concode_elem_sep int[] array concode_elem_sep int shift concode_elem_sep Unsafe unsafe concode_field_sep int getAndIncrement concode_elem_sep void set concode_elem_sep int incrementAndGet concode_elem_sep boolean we...
int function ( int arg0 ) { return getRaw ( checkedByteOffset ( arg0 ) ) ; }
34,357
gets the value of narrtable concode_field_sep String name concode_elem_sep String narrTable concode_elem_sep int elementsNumber concode_elem_sep String thematicIdx concode_elem_sep String valDescTableName concode_elem_sep String colDesc concode_elem_sep char type concode_elem_sep char keyType concode_field_sep char get...
String function ( ) { return this . narrTable ; }
34,358
adds the specified node as the currently last child of this node . if the node is already a child of another node , then it is removed from its current parent . concode_field_sep Matrix4 globalTransform concode_elem_sep Node parent concode_elem_sep Array<Node> children concode_elem_sep Quaternion rotation concode_elem_...
int function ( final T arg0 ) { return insertChild ( - 1 , arg0 ) ; }
34,359
return an iterator of all children of this node . if there are no children , an empty iterator is returned . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_el...
Iterator function ( ) { if ( children == null ) return ( Collections . EMPTY_LIST . iterator ( ) ) ; else return ( children . iterator ( ) ) ; }
34,360
create new deferredcache instance . concode_field_sep List<DeferredCache> fDeferredCacheList concode_elem_sep DeferredCache fLastDC concode_elem_sep IDeviceRenderer fDeviceRenderer concode_elem_sep Chart fChart concode_elem_sep DeferredCache fSingleDC concode_elem_sep DeferredCache fFirstDC concode_field_sep DeferredCa...
DeferredCache function ( ) { DeferredCache loc0 = new DeferredCache ( fDeviceRenderer , fChart ) ; fDeferredCacheList . add ( loc0 ) ; return loc0 ; }
34,361
an array of rulesummary objects . note : this method appends the values to the existing list if any . use #setrules java.util.collection or #withrules java.util.collection if you want to override theexisting values . concode_field_sep String nextMarker concode_elem_sep java.util.List<RuleSummary> rules concode_field_se...
ListRulesResult function ( RuleSummary ... arg0 ) { if ( this . rules == null ) { setRules ( new java . util . ArrayList < RuleSummary > ( arg0 . length ) ) ; } for ( RuleSummary loc0 : arg0 ) { this . rules . add ( loc0 ) ; } return this ; }
34,362
tells whether this set is currently holding any elements . concode_field_sep int _size concode_elem_sep int _free concode_elem_sep float DEFAULT_LOAD_FACTOR concode_elem_sep float _loadFactor concode_elem_sep long serialVersionUID concode_elem_sep int _maxSize concode_elem_sep boolean _autoCompactTemporaryDisable conco...
boolean function ( ) { return 0 == _size ; }
34,363
return a single result object from the given collection . returns null if 0 result objects found ; throws an exception if more than 1 element found . concode_field_sep PlaceHolder placeHolder concode_field_sep RuntimeException translateIfNecessary concode_elem_sep int intResult concode_elem_sep long longResult concode_...
T function ( Collection < T > arg0 ) { int loc0 = ( arg0 != null ? arg0 . loc0 ( ) : 0 ) ; if ( loc0 == 0 ) { return null ; } if ( arg0 . loc0 ( ) > 1 ) { throw new IncorrectResultSizeDataAccessException ( 1 , loc0 ) ; } return arg0 . iterator ( ) . next ( ) ; }
34,364
program entry point concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( String [ ] arg0 ) { AlchemistShop loc0 = new AlchemistShop ( ) ; loc0 . enumerate ( ) ; }
34,365
returns the number of rows that match the dynamic query . concode_field_sep JIRAChangeGroupLocalService _service concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep int getJIRAChangeGroupsCount concode_elem_sep com.liferay.portal.kernel.dao.orm.DynamicQu...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , com . liferay . portal . kernel . dao . orm . Projection arg1 ) { return getService ( ) . dynamicQueryCount ( arg0 , arg1 ) ; }
34,366
creates an instance pooling adapter factory . concode_field_sep PlaceHolder placeHolder concode_field_sep ComponentMonitor COMMONS_LOGGING concode_elem_sep Behavior JMX concode_elem_sep Behavior ASM_IMPL_HIDING concode_elem_sep ComponentMonitor SLF4J concode_elem_sep Behavior HOT_SWAPPING concode_elem_sep ComponentMoni...
Behavior function ( ) { return new Pooling ( ) ; }
34,367
transforms the segment by the specified matrix concode_field_sep Vector endPoint concode_elem_sep Vector startPoint concode_field_sep Vector getStartPoint concode_elem_sep Rectangle2D.Float getBoundingRectange concode_elem_sep Vector getEndPoint concode_elem_sep float getLength
LineSegment function ( Matrix arg0 ) { Vector loc0 = startPoint . cross ( arg0 ) ; Vector loc1 = endPoint . cross ( arg0 ) ; return new LineSegment ( loc0 , loc1 ) ; }
34,368
create a compressionoutputstream that will write to the given outputstream . concode_field_sep Configuration conf concode_field_sep Configuration getConf concode_elem_sep Decompressor createDecompressor concode_elem_sep Class<? extends Compressor> getCompressorType concode_elem_sep Compressor createCompressor concode_e...
CompressionOutputStream function ( OutputStream arg0 ) { return CompressionCodec . Util . createOutputStreamWithCodecPool ( this , conf , arg0 ) ; }
34,369
call this whenever you 're about to show this panel . we 'll do whatever initialization is necessary . concode_field_sep AlternateUIInteraction alternateUIInteraction concode_elem_sep SettingsNode settings concode_elem_sep MainGradlePanel gradlePanel concode_elem_sep JPanel mainPanel concode_elem_sep GradlePluginLord g...
void function ( ) { gradlePanel . aboutToShow ( ) ; }
34,370
lazily create a `` new '' externs root for undeclared variables . concode_field_sep String exportPropertyFunction concode_elem_sep String PROTOTYPE_PROPERTY concode_elem_sep boolean allowNonGlobalExports concode_elem_sep AbstractCompiler compiler concode_elem_sep String exportSymbolFunction concode_field_sep void addSt...
Node function ( ) { return compiler . getSynthesizedExternsInput ( ) . getAstRoot ( compiler ) ; }
34,371
counts number of empty slots concode_field_sep List<ContainerListener> listeners concode_elem_sep boolean firingEvents concode_elem_sep Type type concode_elem_sep Item[] items concode_elem_sep int capacity concode_field_sep Collection<ContainerListener> getListeners concode_elem_sep void removeAllListeners concode_elem...
int function ( ) { int loc0 = 0 ; for ( Item loc1 : items ) { if ( loc1 == null ) { loc0 ++ ; } } return loc0 ; }
34,372
get the inheritlocations flag that was declared via @testpropertysource . concode_field_sep Log logger concode_elem_sep String[] locations concode_elem_sep boolean inheritProperties concode_elem_sep boolean inheritLocations concode_elem_sep String[] properties concode_elem_sep Class<?> declaringClass concode_field_sep ...
boolean function ( ) { return inheritLocations ; }
34,373
return an rdd with the elements from this that are not in other . concode_field_sep PlaceHolder placeHolder concode_field_sep org.apache.spark.sql.SQLContext sqlContext concode_elem_sep org.apache.spark.sql.api.java.StructType schema concode_elem_sep org.apache.spark.sql.api.java.JavaSchemaRDD setName concode_elem_sep ...
org . apache . spark . sql . api . java . JavaSchemaRDD function ( org . apache . spark . sql . api . java . JavaSchemaRDD arg0 , org . apache . spark . Partitioner arg1 ) { throw new RuntimeException ( ) ; }
34,374
sets the businessobjectservice property . concode_field_sep CriteriaLookupService criteriaLookupService concode_elem_sep BusinessObjectService businessObjectService concode_field_sep AgendaTreeDefinition.Builder walkAgendaItemTree concode_elem_sep AgendaTreeDefinition getAgendaTree concode_elem_sep BusinessObjectServic...
void function ( final BusinessObjectService arg0 ) { this . businessObjectService = arg0 ; }
34,375
pad the stream to have a size divisible by 4 . concode_field_sep byte[] stringBytes concode_elem_sep byte[] intBytes concode_elem_sep char[] stringChars concode_elem_sep ByteArrayOutputStream stream concode_elem_sep byte[] longintBytes concode_field_sep void writeType concode_elem_sep void writeUnderHandler concode_ele...
void function ( ) { int loc0 = stream . size ( ) % 4 ; int loc1 = 4 - loc0 ; for ( int loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) stream . write ( 0 ) ; }
34,376
gets the specified attribute value from the item . sub classes may define here other value resolution algorithms . concode_field_sep Map<String,Map<Object,Object>> cacheKeyToCacheMap concode_elem_sep Map<QueryAttr,Expression> queryAttrToPathExpressionCache concode_elem_sep InMemSortOrder sortOrder concode_elem_sep Quer...
Object function ( Object arg0 , QueryAttr arg1 ) { Expression loc0 = queryAttrToPathExpressionCache . get ( arg1 ) ; if ( loc0 == null ) { loc0 = PathExpressionChain . parse ( arg1 . getPath ( ) ) ; queryAttrToPathExpressionCache . put ( arg1 , loc0 ) ; } Object loc1 = loc0 . getValue ( arg0 ) ; return loc1 ; }
34,377
returns the result of interpreting the object as an instance of ` diamond inheritance ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep Ecore2xtextPackage modelPackage concode_field_sep T caseConcrete1 concode_elem_sep T caseConcrete0 concode_elem_sep T doS...
T function ( DiamondInheritance arg0 ) { return null ; }
34,378
gets the html needed to insert a valid css link tag . concode_field_sep String tempStyle concode_elem_sep String imageDirPath concode_elem_sep ArrayList styleList concode_elem_sep String cssPath concode_elem_sep String XP concode_elem_sep String currentStyle concode_elem_sep String RIME concode_elem_sep String ROYALE c...
String function ( ) { return text ; }
34,379
when set any client thread blocking on get will immediately be unblocked and receive the exception . concode_field_sep R argument concode_elem_sep PublishSubject<T> responseSubject concode_elem_sep AtomicBoolean valueSet concode_field_sep void call concode_elem_sep void setExceptionIfResponseNotReceived concode_elem_se...
void function ( Exception arg0 ) { if ( ! isTerminated ( ) ) { responseSubject . onError ( arg0 ) ; } else { throw new IllegalStateException ( "srini_string" , arg0 ) ; } }
34,380
returns the type matcher which chooses which types the listener should be notified of . concode_field_sep TypeListener listener concode_elem_sep Object source concode_elem_sep Matcher<? super TypeLiteral<?>> typeMatcher concode_field_sep T acceptVisitor concode_elem_sep void applyTo concode_elem_sep Object getSource co...
Matcher < ? super TypeLiteral < ? >> function ( ) { return typeMatcher ; }
34,381
sets the delay before invoking the effect 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 String sequence concode_elem_sep float delay...
void function ( float arg0 ) { this . delay = arg0 ; ea . add ( "srini_string" , arg0 ) ; }
34,382
the length of the next message in the transmission stream . concode_field_sep long nextRecord concode_elem_sep long cursor concode_elem_sep int tailIntentCounterIndex concode_elem_sep AtomicLong lappedCount concode_elem_sep int recordOffset concode_elem_sep AtomicBuffer buffer concode_elem_sep int latestCounterIndex co...
int function ( ) { return buffer . getInt ( lengthOffset ( recordOffset ) ) - HEADER_LENGTH ; }
34,383
private helper method that computes the skirt of the piece . concode_field_sep Piece next concode_elem_sep String STICK_STR concode_elem_sep int STICK concode_elem_sep String L1_STR concode_elem_sep String SQUARE_STR concode_elem_sep TPoint[] body concode_elem_sep Piece[] pieces concode_elem_sep String PYRAMID_STR conc...
void function ( ) { skirt = new int [ width ] ; Arrays . fill ( skirt , height - 1 ) ; for ( TPoint loc0 : body ) { if ( skirt [ loc0 . x ] > loc0 . y ) skirt [ loc0 . x ] = loc0 . y ; } }
34,384
sets the documentnumber attribute value . concode_field_sep List<String> errorMessages concode_elem_sep String documentNumber concode_elem_sep long serialVersionUID concode_elem_sep String status concode_field_sep String getDocumentNumber concode_elem_sep void setErrorMessages concode_elem_sep List<String> getErrorMess...
void function ( String arg0 ) { this . documentNumber = arg0 ; }
34,385
constructs a string with all attributes in name = value format . concode_field_sep long serialVersionUID concode_elem_sep String stringField concode_elem_sep int intField concode_field_sep int getIntField concode_elem_sep void setIntField concode_elem_sep int hashCode concode_elem_sep void setStringField concode_elem_s...
String function ( ) { final String loc0 = "srini_string" ; StringBuilder loc1 = new StringBuilder ( ) ; loc1 . append ( "srini_string" ) . append ( "srini_string" ) . append ( stringField ) . append ( loc0 ) . append ( "srini_string" ) . append ( intField ) . append ( loc0 ) . append ( "srini_string" ) ; return loc1 . ...
34,386
sets whether this announcements delivery is email . concode_field_sep AnnouncementsDelivery _announcementsDelivery concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_ele...
void function ( boolean arg0 ) { _announcementsDelivery . setEmail ( arg0 ) ; }
34,387
adding a player to this game concode_field_sep Stack<Pokemon> pokemon concode_elem_sep Stack<Station> station concode_elem_sep Player HKUST concode_elem_sep Map map concode_field_sep Player getPlayer concode_elem_sep void addPlayer concode_elem_sep boolean go concode_elem_sep void main concode_elem_sep void initialize ...
void function ( int arg0 , int arg1 ) { map = new Map ( arg0 , arg1 ) ; }
34,388
adds the layout branch to the database . also notifies the appropriate model listeners . concode_field_sep LayoutBranchLocalService _layoutBranchLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableD...
com . liferay . portal . model . LayoutBranch function ( com . liferay . portal . model . LayoutBranch arg0 ) { return _layoutBranchLocalService . addLayoutBranch ( arg0 ) ; }
34,389
logout . concode_field_sep Logger logger concode_elem_sep ResourceBundleMessageSource messagesource concode_elem_sep UserService userservices concode_field_sep void setSessionLanguage concode_elem_sep ModelAndView simRegistration concode_elem_sep Boolean searchMobileNumber concode_elem_sep ModelAndView sessionWelcomePa...
ModelAndView function ( ) { logger . debug ( "srini_string" ) ; ModelAndView loc0 = new ModelAndView ( ) ; String loc1 = messagesource . getMessage ( "srini_string" , null , "srini_string" , null ) ; loc0 . addObject ( "srini_string" , loc1 ) ; loc0 . setViewName ( "srini_string" ) ; return loc0 ; }
34,390
generic way to add requests to batch . given url starts from the version , so in order to retrieve sobject specify just / sobjects/account/identifier which results in / services/data/v37 .0 / sobjects/account/identifier . note the leading slash . concode_field_sep String apiPrefix concode_elem_sep List<BatchRequest> ba...
SObjectBatch function ( final Method arg0 , final String arg1 ) { addGeneric ( arg0 , arg1 , null ) ; return this ; }
34,391
sets item id . concode_field_sep Integer itemId concode_elem_sep String collectionGroupDesignation concode_elem_sep String callNumber concode_elem_sep String useRestriction concode_elem_sep String customerCode concode_elem_sep String availability concode_elem_sep String chronologyAndEnum concode_elem_sep String barcode...
void function ( Integer arg0 ) { this . itemId = arg0 ; }
34,392
`` interface abc : operation myopp2 myparamopp param1 : integer , param2 : boolean : string in event event2 var myint : integer in event myintevent : integer concode_field_sep ILinker linker concode_elem_sep StextResourceFactory factory concode_elem_sep IParser parser concode_field_sep StextResource getResource concode...
Scope function ( ) { return createInterfaceScope ( "srini_string" ) ; }
34,393
gets the wsroutingrulepk value for this wsgetroutingrule . concode_field_sep org.talend.mdm.webservice.WSRoutingRulePK wsRoutingRulePK concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.apache.axis.d...
org . talend . mdm . webservice . WSRoutingRulePK function ( ) { return wsRoutingRulePK ; }
34,394
add a command line option for the application , which will be matched against the command-line args at run time . concode_field_sep Logger log concode_elem_sep String ONTOLOGIES_DIR concode_elem_sep Options options concode_elem_sep CommandLine commandLine concode_elem_sep String DATA_DIR concode_field_sep Base setArgs ...
void function ( String arg0 , String arg1 , boolean arg2 , String arg3 ) { if ( Base . options == null ) { Base . options = new Options ( ) ; } options . addOption ( arg0 , arg1 , arg2 , arg3 ) ; }
34,395
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 ; }
34,396
replies the number of children of type relation for a particular relation parent concode_field_sep CopyOnWriteArrayList<TreeModelListener> listeners concode_elem_sep Relation root concode_field_sep int getIndexOfChild concode_elem_sep void valueForPathChanged concode_elem_sep Object getChild concode_elem_sep void addTr...
int function ( Relation arg0 ) { if ( arg0 == null ) return 0 ; int loc0 = 0 ; for ( RelationMember loc1 : arg0 . getMembers ( ) ) { if ( loc1 . isRelation ( ) ) { loc0 ++ ; } } return loc0 ; }
34,397
get the objectalreadyactive repository id . concode_field_sep TypeCode typeCode concode_field_sep ObjectAlreadyActive extract concode_elem_sep ObjectAlreadyActive read concode_elem_sep void insert concode_elem_sep TypeCode type concode_elem_sep void write
String function ( ) { return "srini_string" ; }
34,398
checks whether the number is normalized . concode_field_sep byte[] NO_BYTES concode_elem_sep boolean normalized concode_elem_sep int sign concode_elem_sep byte[] digits concode_elem_sep int exponent concode_field_sep Decimal factory concode_elem_sep Decimal factory concode_elem_sep Decimal fail concode_elem_sep int com...
boolean function ( ) { return normalized ; }
34,399
wraps a byte array into a structured memorybuffer with given memorylayout . note that modifications to the buffer are applied to the backed array and vice versa . a structured memorybuffer can be used to simplify reading c struct data from the memory as it provides support for data aligning . the structure array elemen...
MemoryBuffer function ( MemoryLayout arg0 , byte [ ] arg1 , DataType [ ] arg2 ) { ByteBuffer loc0 = ByteBuffer . wrap ( arg1 ) ; loc0 . order ( arg0 . order ) ; return new MemoryBuffer ( arg0 , loc0 , arg2 ) ; }