idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
11,900 | put item in the queue concode_field_sep int itemId concode_elem_sep String name concode_elem_sep ItemQueue queue concode_field_sep placeholderType placeHolder | void function ( ) { Item loc0 = new Item ( name , itemId ++ ) ; queue . put ( loc0 ) ; Random loc1 = new Random ( ) ; Thread . sleep ( loc1 . nextInt ( 2000 ) ) ; } |
11,901 | an internal check for closed statements . concode_field_sep boolean isEscapeProcessing concode_elem_sep int queryTimeout concode_elem_sep Result errorResult concode_elem_sep int SUCCESS_NO_INFO concode_elem_sep Result batchResultOut concode_elem_sep int maxRows concode_elem_sep JDBCConnection connection concode_elem_se... | void function ( ) { if ( isClosed ) { throw Util . sqlException ( ErrorCode . X_07501 ) ; } if ( connection . isClosed ) { close ( ) ; throw Util . sqlException ( ErrorCode . X_08503 ) ; } if ( connectionIncarnation != connection . incarnation ) { throw Util . sqlException ( ErrorCode . X_08503 ) ; } } |
11,902 | sets the value of the title property . concode_field_sep String link concode_elem_sep String title concode_elem_sep String url concode_field_sep void setLink concode_elem_sep String getUrl concode_elem_sep String getLink concode_elem_sep String getTitle concode_elem_sep void setUrl | void function ( String arg0 ) { this . title = arg0 ; } |
11,903 | invoked when an action is performed . this will cause the specified event to also be performed . concode_field_sep VActionContext actionContext_ concode_elem_sep PropertyChangeSupport propertyChangeSupport_ concode_elem_sep Hashtable propertyDictionary_ concode_elem_sep String copyright concode_elem_sep boolean enabled... | void function ( ActionEvent arg0 ) { if ( ( action_ != null ) && ( actionContext_ != null ) && ( isEnabled ( ) == true ) ) { action_ . perform ( actionContext_ ) ; } } |
11,904 | casts the passed object into the servantactivator . concode_field_sep PlaceHolder placeHolder concode_field_sep ServantActivator extract concode_elem_sep ServantActivator read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write concode_elem_sep ServantActiv... | ServantActivator function ( org . omg . CORBA . Object arg0 ) { try { return ( ServantActivator ) arg0 ; } catch ( ClassCastException loc0 ) { BAD_PARAM loc1 = new BAD_PARAM ( ) ; loc1 . initCause ( loc0 ) ; throw loc1 ; } } |
11,905 | returns the calculate declaration of a model item . concode_field_sep String relevant concode_elem_sep String readonly concode_elem_sep String datatype concode_elem_sep Map<String,String> customMIPs concode_elem_sep String p3ptype concode_elem_sep String constraint concode_elem_sep String calculate concode_elem_sep Lis... | String function ( ) { return this . calculate ; } |
11,906 | sets the volume in percent concode_field_sep List<String> inputNames concode_elem_sep YamahaReceiverCommunication com concode_elem_sep String name concode_elem_sep boolean mute concode_elem_sep String id concode_elem_sep String surroundProgram concode_elem_sep float volume concode_elem_sep int netRadioChannel concode_e... | void function ( float arg0 ) { if ( arg0 < 0 ) { arg0 = 0 ; } if ( arg0 > 100 ) { arg0 = 100 ; } com . setVolume ( arg0 * YamahaReceiverCommunication . VOLUME_RANGE / 100.0f + YamahaReceiverCommunication . VOLUME_MIN ) ; this . volume = Math . round ( arg0 * 100 ) / 100 ; } |
11,907 | returns the value of an option . concode_field_sep ArrayList options concode_field_sep void setOption concode_elem_sep boolean isSet concode_elem_sep void validate | String function ( int arg0 ) { DhcpCliOption loc0 = new DhcpCliOption ( arg0 ) ; int loc1 = options . indexOf ( loc0 ) ; if ( loc1 != - 1 ) { return ( ( DhcpCliOption ) options . get ( loc1 ) ) . getValue ( ) ; } else { return null ; } } |
11,908 | takes a json string and creates an object from it . acceptable string file name . filename can = `` file.json '' or just `` file '' concode_field_sep Type type concode_field_sep String getJsonFileFromAssets concode_elem_sep Type getRawType concode_elem_sep Type[] getActualTypeArguments concode_elem_sep ArrayList parseJ... | Object function ( Context arg0 , String arg1 , Class arg2 ) { return new Gson ( ) . fromJson ( arg1 , arg2 ) ; } |
11,909 | extracts a jar resource as a blob . concode_field_sep Hashtable htSizes concode_elem_sep String jarFileName concode_elem_sep boolean debugOn concode_field_sep byte[] read concode_elem_sep String dumpZipEntry | byte [ ] function ( String arg0 ) { return read ( arg0 ) ; } |
11,910 | calls outputstream #write_string . concode_field_sep PlaceHolder placeHolder concode_field_sep String extract concode_elem_sep String read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type | void function ( OutputStream arg0 , String arg1 ) { arg0 . write_string ( arg1 ) ; } |
11,911 | compare two result sets for equivalence . equivalance means : each row in rs1 matchs the same index row in rs2 . rows match if they have the same variables with the same values , bnodes must map to a consistent other bnodes . rdf term comparisons of nodes . destructive - rs1 and rs2 are both read , possibly to exhausti... | boolean function ( ResultSet arg0 , ResultSet arg1 ) { if ( ! compareHeader ( arg0 , arg1 ) ) return false ; return equivalentByOrder ( convert ( arg0 ) , convert ( arg1 ) , new BNodeIso ( NodeUtils . sameTerm ) ) ; } |
11,912 | converts a string into a sha-256 hash . concode_field_sep String TAPJOY_UTIL concode_field_sep String getNodeTrimValue concode_elem_sep String convertToHex concode_elem_sep void deleteFileOrDirectory concode_elem_sep Document buildDocument | String function ( String arg0 ) { TapjoyLog . i ( TAPJOY_UTIL , "srini_string" + arg0 ) ; MessageDigest loc0 ; byte [ ] loc1 = new byte [ 40 ] ; loc0 = MessageDigest . getInstance ( "srini_string" ) ; loc0 . update ( arg0 . getBytes ( "srini_string" ) , 0 , arg0 . length ( ) ) ; loc1 = loc0 . digest ( ) ; return conver... |
11,913 | 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 ; } |
11,914 | returns the ifile associated with the resourcefile . concode_field_sep ResourceFolder mFolder concode_elem_sep IAbstractFile mFile concode_field_sep ResourceFolder getFolder concode_elem_sep ResourceValue getValue concode_elem_sep FolderConfiguration getConfiguration concode_elem_sep void load concode_elem_sep boolean ... | IAbstractFile function ( ) { return mFile ; } |
11,915 | create a new beandefinitionbuilder used to construct a rootbeandefinition . concode_field_sep int constructorArgIndex concode_elem_sep AbstractBeanDefinition beanDefinition concode_field_sep BeanDefinitionBuilder addConstructorArgValue concode_elem_sep BeanDefinitionBuilder setAutowireMode concode_elem_sep BeanDefiniti... | BeanDefinitionBuilder function ( Class < ? > arg0 ) { return rootBeanDefinition ( arg0 , null ) ; } |
11,916 | adds view to specified cache . creates a cache list if it is null . concode_field_sep AbstractWheel wheel concode_elem_sep String LOG_TAG concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep View getItem concode_... | List < View > function ( View arg0 , List < View > arg1 ) { if ( arg1 == null ) { arg1 = new LinkedList < View > ( ) ; } arg1 . add ( arg0 ) ; return arg1 ; } |
11,917 | gets the value of the yaxis property . concode_field_sep BigInteger barWidth concode_elem_sep BigDecimal scaling concode_elem_sep String color concode_elem_sep BigInteger datasourceIndex concode_elem_sep BigInteger offset concode_elem_sep String label concode_elem_sep Boolean fill concode_elem_sep String align concode_... | String function ( ) { return yaxis ; } |
11,918 | convenience method to get this element as a number . concode_field_sep PlaceHolder placeHolder concode_field_sep float getAsFloat concode_elem_sep BigInteger getAsBigInteger concode_elem_sep byte getAsByte concode_elem_sep JsonObject getAsJsonObject concode_elem_sep JsonNull getAsJsonNull concode_elem_sep BigDecimal ge... | Number function ( ) { throw new UnsupportedOperationException ( getClass ( ) . getSimpleName ( ) ) ; } |
11,919 | load the config from an existing cassandra.yaml file overriding the pre-existing values in this cassandrayamlbuilder . concode_field_sep String cassandraConfigUrl concode_elem_sep List<File> directoriesToCreate concode_elem_sep Pattern DIRECTORY_SUFFIX_PATTERN concode_elem_sep String triggersDir concode_elem_sep Yaml y... | CassandraYamlBuilder function ( File arg0 ) { try ( InputStream loc0 = new FileInputStream ( arg0 ) ) { return load ( loc0 ) ; } } |
11,920 | indicates that a contact has been updated after a search . concode_field_sep ContactQuery query concode_elem_sep byte[] resolvedImage concode_elem_sep String resolvedName concode_field_sep void queryStatusChanged concode_elem_sep byte[] getResolvedImage concode_elem_sep void stop concode_elem_sep boolean isRunning conc... | void function ( ContactChangedEvent arg0 ) { } |
11,921 | sets the dial string . concode_field_sep int m_profileID concode_elem_sep String m_apn concode_elem_sep int m_pppNumber concode_elem_sep boolean m_gpsEnabled concode_elem_sep int m_lcpEchoFailure concode_elem_sep int m_headerCompression concode_elem_sep String m_password concode_elem_sep int m_dataCompression concode_e... | void function ( String arg0 ) { this . m_dialString = arg0 ; } |
11,922 | is the number negative ? concode_field_sep ColumnSpec columnSpec concode_elem_sep boolean isNegative concode_elem_sep Long extractedVal concode_field_sep ColumnSpec getColumnSpec concode_elem_sep Long getExtractedValue concode_elem_sep String toString | boolean function ( ) { return isNegative ; } |
11,923 | this method is called when executing this sample application from the command line . concode_field_sep PlaceHolder placeHolder concode_field_sep void initDb concode_elem_sep void createScript | void function ( String ... arg0 ) { createScript ( ) ; new InitDatabaseFromJar ( ) . initDb ( ) ; } |
11,924 | returns the throwable that caused this message , or null if thismessage was not caused by a throwable . concode_field_sep long serialVersionUID concode_elem_sep List<Object> sources concode_elem_sep Throwable cause concode_elem_sep String message concode_field_sep T acceptVisitor concode_elem_sep void applyTo concode_e... | Throwable function ( ) { return cause ; } |
11,925 | doasynchttppost concode_field_sep int maxConnectionPerRoute concode_elem_sep CloseableHttpAsyncClient apacheAsyncClient concode_elem_sep int maxTotalConnection concode_elem_sep HttpAsyncClient client concode_field_sep CloseableHttpAsyncClient initCloseableHttpAsyncClient concode_elem_sep void doAsyncHttpPostWithReqAsyn... | void function ( String arg0 , byte [ ] arg1 , String arg2 , String arg3 , HttpClientCallback arg4 ) { if ( null == arg0 || "srini_string" . equals ( arg0 ) || null == arg4 || null == arg1 ) { return ; } AsyncReqProcWithHttpClientCallback loc0 = new AsyncReqProcWithHttpClientCallback ( arg4 ) ; doHttpOutboundAsyncIntern... |
11,926 | get the transpose of the matrix , i.e. a matrix where rows and columns are interchanged . concode_field_sep ArrayList<IntSet> row_list concode_field_sep int numberOfEntries concode_elem_sep HashMap<Integer,IntSet> nonEmptyRows concode_elem_sep void set concode_elem_sep void grow concode_elem_sep IntList getEntriesByCol... | IMatrix < Boolean > function ( ) { SparseBooleanMatrix loc0 = new SparseBooleanMatrix ( ) ; for ( int loc1 = 0 ; loc1 < row_list . size ( ) ; loc1 ++ ) { for ( int loc2 : this . get ( loc1 ) ) { loc0 . set ( loc2 , loc1 , true ) ; } } return loc0 ; } |
11,927 | returns the bundle context of this bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep void start | BundleContext function ( ) { return context ; } |
11,928 | calculate distance between two points . concode_field_sep double[][] matrix concode_field_sep double[] evaluate concode_elem_sep double[][] createMatrix | double function ( double arg0 , double arg1 , double arg2 , double arg3 ) { double loc0 = arg2 - arg0 ; double loc1 = arg3 - arg1 ; return Math . sqrt ( loc0 * loc0 + loc1 * loc1 ) ; } |
11,929 | generates the next identifier . concode_field_sep int next concode_field_sep placeholderType placeHolder | int function ( T arg0 ) { return next ++ ; } |
11,930 | sets the value of the id property . concode_field_sep int id concode_field_sep int getId | void function ( int arg0 ) { this . id = arg0 ; } |
11,931 | sets the dependencies of the module concode_field_sep List<Artifact> excludedArtifacts concode_elem_sep String id concode_elem_sep Properties properties concode_elem_sep List<Artifact> artifacts concode_elem_sep List<Dependency> dependencies concode_field_sep Module build concode_elem_sep ModuleBuilder excludedArtifact... | ModuleBuilder function ( List < Dependency > arg0 ) { this . dependencies = arg0 ; return this ; } |
11,932 | the top of the diamond concode_field_sep BasicBlock notTaken concode_elem_sep BasicBlock top concode_elem_sep BasicBlock bottom concode_elem_sep BasicBlock taken concode_field_sep Diamond threeElementDiamond concode_elem_sep BasicBlock getNotTaken concode_elem_sep BasicBlock getBottom concode_elem_sep String toString c... | BasicBlock function ( ) { return top ; } |
11,933 | disposes of the security handler instance . concode_field_sep Logger logger concode_elem_sep EncryptionDictionary encryptDictionary concode_elem_sep SecurityHandler securityHandler concode_elem_sep boolean foundJCE concode_field_sep byte[] getEncryptionKey concode_elem_sep boolean isAuthorized concode_elem_sep Encrypti... | void function ( ) { } |
11,934 | utility method for debugging . dumps info to console of txs having locks on resources . concode_field_sep Map<Object,RWLock> resourceLockMap concode_elem_sep int emptyLockCount concode_elem_sep List<LockInfo> result concode_elem_sep RagManager ragManager concode_field_sep void dumpAllLocks concode_elem_sep void getWrit... | void function ( Object arg0 ) { RWLock loc0 = null ; synchronized ( resourceLockMap ) { if ( ! resourceLockMap . containsKey ( arg0 ) ) { System . out . println ( "srini_string" + arg0 ) ; return ; } loc0 = resourceLockMap . get ( arg0 ) ; } loc0 . dumpStack ( ) ; } |
11,935 | get the full policy map concode_field_sep Map<String,NamespaceIsolationData> policies concode_field_sep BrokerAssignment getBrokerAssignment concode_elem_sep void assignBroker concode_elem_sep void deletePolicy concode_elem_sep boolean isSharedBroker concode_elem_sep boolean namespaceMatches concode_elem_sep void setPo... | Map < String , NamespaceIsolationData > function ( ) { return this . policies ; } |
11,936 | return the array of bytes containing the standard bson binary form of the supplied in-memory document . concode_field_sep String DATE_FORMAT concode_elem_sep byte SYMBOL concode_elem_sep byte REGEX concode_elem_sep byte ARRAY concode_elem_sep byte GENERAL concode_elem_sep byte MD5 concode_elem_sep byte BOOLEAN concode_... | byte [ ] function ( Object arg0 ) { return getBsonWriter ( ) . write ( arg0 ) ; } |
11,937 | returns a random long concode_field_sep java.util.Random rand concode_elem_sep long seed concode_field_sep int nextInt concode_elem_sep int nextInt concode_elem_sep boolean nextBoolean concode_elem_sep void setSeed | long function ( ) { return rand . nextLong ( ) ; } |
11,938 | sets the content . concode_field_sep String filename concode_elem_sep long serialVersionUID concode_elem_sep String content concode_field_sep String getFilename concode_elem_sep String getContent concode_elem_sep void setFilename | void function ( String arg0 ) { content = arg0 ; } |
11,939 | return the log 2 result for this long . concode_field_sep PlaceHolder placeHolder concode_field_sep int divideByAndCeilToInt concode_elem_sep int divideByAndRoundToInt concode_elem_sep boolean isPowerOfTwo concode_elem_sep long divideByAndRoundToLong concode_elem_sep String bytesToHex concode_elem_sep int nextPowerOfTw... | int function ( long arg0 ) { return 63 - Long . numberOfLeadingZeros ( arg0 ) ; } |
11,940 | gets the value of the owns property . concode_field_sep java.lang.Boolean owns concode_elem_sep List<JAXBElement<? extends AbstractSolidType>> abstractSolid concode_field_sep void setOwns concode_elem_sep List<JAXBElement<? extends AbstractSolidType>> getAbstractSolid | boolean function ( ) { if ( owns == null ) { return false ; } else { return owns ; } } |
11,941 | this method is invoked after the maps api is successfully loaded . concode_field_sep VerticalPanel verticalPanel concode_field_sep void nativeMakeMap concode_elem_sep void nativeMakeImagePieChart concode_elem_sep void pieChartLoaded concode_elem_sep void onModuleLoad | void function ( ) { verticalPanel . add ( new Label ( "srini_string" ) ) ; SimplePanel loc0 = new SimplePanel ( ) ; nativeMakeMap ( loc0 . getElement ( ) ) ; verticalPanel . add ( loc0 ) ; } |
11,942 | joiner with a character delimiter . concode_field_sep Joiner JOINER_ON_CHARACTER concode_elem_sep char DELIMITER_CHARACTER concode_elem_sep Iterable<String> components concode_elem_sep Joiner JOINER_ON_STRING concode_elem_sep String DELIMITER_STRING concode_elem_sep int componentLength concode_elem_sep int count concod... | int function ( int arg0 ) { int loc0 = 0 ; for ( int loc1 = 0 ; loc1 < arg0 ; loc1 ++ ) { loc0 ^= JOINER_ON_CHARACTER . join ( components ) . length ( ) ; } return loc0 ; } |
11,943 | remove an event from the queue . if this is the frontmost event , then the next event is scheduled . concode_field_sep PriorityQueue<BasicEvent> eventQueue concode_elem_sep boolean active concode_elem_sep int count concode_elem_sep List<SchedulerListener> listenerList concode_elem_sep Timer eventTimer concode_elem_sep ... | boolean function ( BasicEvent arg0 ) { debug ( "srini_string" + arg0 ) ; boolean loc0 = eventQueue . remove ( arg0 ) ; if ( arg0 . equals ( nextEvent ) ) { nextEvent = eventQueue . peek ( ) ; scheduleNext ( ) ; } return loc0 ; } |
11,944 | returns the peptide sequence . concode_field_sep String proteinAccession concode_elem_sep ArrayList<ModificationMatch> modificationMatches concode_elem_sep int index concode_elem_sep String peptideSequence concode_elem_sep ArrayList<VariantMatch> variantMatches concode_field_sep int getIndex concode_elem_sep HashMap<St... | String function ( ) { return peptideSequence ; } |
11,945 | utility to find an item of a desired type in the given list concode_field_sep Class<?> attributeType concode_elem_sep List<Annotation> annotations concode_elem_sep Random RANDOM concode_elem_sep Logger LOG concode_field_sep Object getValue concode_elem_sep Object decimalToReturnType concode_elem_sep Object timestampToR... | T function ( List < ? > arg0 , Class < T > arg1 ) { for ( Object loc0 : arg0 ) { if ( arg1 . isAssignableFrom ( loc0 . getClass ( ) ) ) { return ( T ) loc0 ; } } return null ; } |
11,946 | the status of the domains requested in the describeelasticsearchdomains request . concode_field_sep java.util.List<ElasticsearchDomainStatus> domainStatusList concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep java.util.List<ElasticsearchDomainStatus> getDomainStatusList concode_elem_sep De... | void function ( java . util . Collection < ElasticsearchDomainStatus > arg0 ) { if ( arg0 == null ) { this . domainStatusList = null ; return ; } this . domainStatusList = new java . util . ArrayList < ElasticsearchDomainStatus > ( arg0 ) ; } |
11,947 | this is a setter concode_field_sep String calendarEventId concode_elem_sep String calendarId concode_elem_sep String siteId concode_elem_sep List<SignupGroup> signupGroups concode_elem_sep Long id concode_elem_sep String title concode_elem_sep int version concode_field_sep boolean isSiteScope concode_elem_sep String ge... | void function ( String arg0 ) { this . title = arg0 ; } |
11,948 | returns whether the flag acc_synchronized is on inthe given flags . concode_field_sep int ACC_NATIVE concode_elem_sep int ACC_SUPER concode_elem_sep int ACC_STRICT concode_elem_sep int ACC_ANNOTATION concode_elem_sep int CONV_CLASS concode_elem_sep int ACC_ABSTRACT concode_elem_sep int CONV_FIELD concode_elem_sep int A... | boolean function ( int arg0 ) { return ( arg0 & ACC_SYNCHRONIZED ) != 0 ; } |
11,949 | sets the position of this buffer . if the mark is set and it is greater than the new position , then it is cleared . concode_field_sep int effectiveDirectAddress concode_elem_sep int UNSET_MARK concode_elem_sep int _elementSizeShift concode_elem_sep int limit concode_elem_sep int position concode_elem_sep int mark conc... | Buffer function ( int arg0 ) { if ( arg0 < 0 || arg0 > limit ) { throw new IllegalArgumentException ( ) ; } position = arg0 ; if ( ( mark != UNSET_MARK ) && ( mark > position ) ) { mark = UNSET_MARK ; } return this ; } |
11,950 | the topic name concode_field_sep Node leader concode_elem_sep int partition concode_elem_sep Node[] replicas concode_elem_sep String topic concode_elem_sep Node[] inSyncReplicas concode_field_sep Node leader concode_elem_sep int partition concode_elem_sep Node[] replicas concode_elem_sep String fmtNodeIds concode_elem_... | String function ( ) { return topic ; } |
11,951 | warning log message with printf formatting . 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 ... | void function ( String arg0 , String arg1 , Object ... arg2 ) { if ( LOG . WARN >= LOGLEVEL ) Log . w ( arg0 , String . format ( arg1 , arg2 ) ) ; } |
11,952 | tests that the prefixlist #prefixlist list constructor with an empty string constructsitems correctly . concode_field_sep PlaceHolder placeHolder concode_field_sep void prefixListTest2 concode_elem_sep void toStringTest concode_elem_sep void prefixListTest | void function ( ) { PrefixList loc0 = new PrefixList ( ImmutableList . of ( "srini_string" ) ) ; Assert . assertTrue ( loc0 . inList ( "srini_string" ) ) ; Assert . assertTrue ( loc0 . outList ( "srini_string" ) ) ; } |
11,953 | fix unassigned by creating/transition the unassigned zk node for this region to offline state with a special flag to tell the master that this is a forced operation by hbck . this assumes that info is in meta . concode_field_sep Log LOG concode_field_sep void closeRegionSilentlyAndWait concode_elem_sep HRegion createHD... | void function ( Admin arg0 , HRegionInfo arg1 ) { HRegionInfo loc0 = new HRegionInfo ( arg1 ) ; forceOfflineInZK ( arg0 , loc0 ) ; } |
11,954 | adds a string property to a map . adds quotes and does json string escaping , as described at json.org . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item conco... | JSONBuilder function ( String arg0 , String arg1 ) { return entry ( arg0 , arg1 , false ) ; } |
11,955 | asserts whether this is an error message or not . concode_field_sep String JDK_6_WARNING_PREFIX concode_elem_sep String JDK_6_NOTE_PREFIX concode_elem_sep int startcolumn concode_elem_sep int endline concode_elem_sep String file concode_elem_sep Kind kind concode_elem_sep int startline concode_elem_sep String message c... | boolean function ( ) { return kind == Kind . ERROR ; } |
11,956 | sets the value of the artifactlink property . concode_field_sep String repoId concode_elem_sep String extension concode_elem_sep String artifactLink concode_elem_sep String groupId concode_elem_sep String classifier concode_elem_sep String artifactId concode_elem_sep String packaging concode_elem_sep String contextId c... | void function ( String arg0 ) { this . artifactLink = arg0 ; } |
11,957 | gets the value of the name property . concode_field_sep Integer sequenceNumber concode_elem_sep Boolean isSecureCode concode_elem_sep Date lastUpdateDate concode_elem_sep Integer length concode_elem_sep String name concode_elem_sep String lastUpdateUser concode_elem_sep Double weight concode_elem_sep String createUser ... | String function ( ) { return name ; } |
11,958 | returns the company id of this sample l a r booking . concode_field_sep SampleLARBooking _sampleLARBooking concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscap... | long function ( ) { return _sampleLARBooking . getCompanyId ( ) ; } |
11,959 | the unique message identifier returned from the sendrawemail action . concode_field_sep String messageId concode_field_sep String getMessageId concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep SendRawEmailResult clone concode_elem_sep String toString concode_elem_sep void setMessageId | SendRawEmailResult function ( String arg0 ) { setMessageId ( arg0 ) ; return this ; } |
11,960 | gets the value of the responsestatus property . concode_field_sep List<ErrorDetail> errorDetail concode_elem_sep String contractReference concode_elem_sep String responseStatus concode_field_sep List<ErrorDetail> getErrorDetail concode_elem_sep void setContractReference concode_elem_sep String getContractReference conc... | String function ( ) { return responseStatus ; } |
11,961 | if #beginupdate has been called so that the currentupdate level is greater than zero , adds the specified edit to #compoundedit . otherwise , notify listeners of the edit by calling # _ postedit undoableedit . thread safety : it is safe to call this method from any thread without external synchronization . concode_fiel... | void function ( UndoableEdit arg0 ) { if ( compoundEdit != null ) compoundEdit . addEdit ( arg0 ) ; else _postEdit ( arg0 ) ; } |
11,962 | sets whether the effect should render new frames automatically which it does by default . if true , you can render frames manually by calling the render instance method of an effect . this is used by effect.parallel . concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concod... | void function ( boolean arg0 ) { this . sync = arg0 ; ea . add ( "srini_string" , arg0 ) ; } |
11,963 | returns the item at position idx . concode_field_sep boolean okToRemove concode_elem_sep int theSize concode_elem_sep AnyType[] theItems concode_elem_sep int DEFAULT_CAPACITY concode_elem_sep int current concode_field_sep boolean add concode_elem_sep void add concode_elem_sep AnyType next concode_elem_sep AnyType set c... | AnyType function ( int arg0 ) { if ( arg0 < 0 || arg0 >= size ( ) ) throw new ArrayIndexOutOfBoundsException ( "srini_string" + arg0 + "srini_string" + size ( ) ) ; return theItems [ arg0 ] ; } |
11,964 | process the annotations on a context . concode_field_sep PlaceHolder placeHolder concode_field_sep void loadApplicationFilterAnnotations concode_elem_sep void loadApplicationListenerAnnotations concode_elem_sep void addResource concode_elem_sep void loadClassAnnotation concode_elem_sep void loadApplicationServletAnnota... | void function ( Context arg0 ) { loadApplicationListenerAnnotations ( arg0 ) ; loadApplicationFilterAnnotations ( arg0 ) ; loadApplicationServletAnnotations ( arg0 ) ; } |
11,965 | initialize the platform browser process . this must be called from the main ui thread before accessing contentview in order to treat this as a browser process . concode_field_sep int MAX_RENDERERS_LIMIT concode_elem_sep int MAX_RENDERERS_SINGLE_PROCESS concode_elem_sep boolean sInitialized concode_elem_sep String TAG c... | boolean function ( Context arg0 , int arg1 ) { return genericChromiumProcessInit ( arg0 , arg1 , true ) ; } |
11,966 | gets if the data provider is permanently filtered concode_field_sep boolean isFiltered concode_elem_sep boolean newRequest concode_elem_sep String SYMBOL_OR concode_elem_sep ImogJunctionProxy searchCriterions concode_elem_sep RequestContext context concode_elem_sep ImogJunctionProxy filterCriteria concode_field_sep voi... | boolean function ( ) { return isFiltered ; } |
11,967 | returns the value of subject field of the structure . concode_field_sep Extensions extensions concode_elem_sep BigInteger serialNumber concode_elem_sep boolean[] issuerUniqueID concode_elem_sep ASN1Sequence ASN1 concode_elem_sep AlgorithmIdentifier signature concode_elem_sep Name subject concode_elem_sep SubjectPublicK... | Name function ( ) { return subject ; } |
11,968 | sets the header named name to value . if this request already has any headers with that name , they are all replaced . concode_field_sep Request request concode_elem_sep RawHeaders headers concode_elem_sep int code concode_elem_sep Reader reader concode_elem_sep RawHeaders headers concode_elem_sep Response redirectedBy... | Builder function ( String arg0 , String arg1 ) { headers . set ( arg0 , arg1 ) ; return this ; } |
11,969 | information about the user . concode_field_sep User user concode_field_sep int hashCode concode_elem_sep User getUser concode_elem_sep boolean equals concode_elem_sep CreateUserResult clone concode_elem_sep String toString concode_elem_sep void setUser | CreateUserResult function ( User arg0 ) { setUser ( arg0 ) ; return this ; } |
11,970 | returns map containing the given entries . concode_field_sep Map mMap concode_elem_sep boolean mUnderConstruction concode_field_sep Map<K,V> build concode_elem_sep HashMap<K,V> newHashMap concode_elem_sep Builder<K,V> builder concode_elem_sep Builder<K,V> put | Map < K , V > function ( K arg0 , V arg1 , K arg2 , V arg3 , K arg4 , V arg5 , K arg6 , V arg7 , K arg8 , V arg9 , K arg10 , V arg11 , K arg12 , V arg13 ) { Map loc0 = of ( ) ; loc0 . put ( arg0 , arg1 ) ; loc0 . put ( arg2 , arg3 ) ; loc0 . put ( arg4 , arg5 ) ; loc0 . put ( arg6 , arg7 ) ; loc0 . put ( arg8 , arg9 ) ... |
11,971 | returns what color is in this square . concode_field_sep int col concode_elem_sep int row concode_elem_sep Board board concode_field_sep int getCol concode_elem_sep boolean contains concode_elem_sep boolean isEmpty concode_elem_sep SquareList findToFlip concode_elem_sep void updateUI concode_elem_sep Square addDirectio... | Board . Color function ( ) { return board . getContentsOfSquare ( this ) ; } |
11,972 | sent when the link is exited . the default behaviour is to do nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep void expansionStateChanging | void function ( ExpansionEvent arg0 ) { } |
11,973 | sets the modified value for this modifieddocumentdescriptor . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String modified concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String UUID concode_elem_sep java.lan... | void function ( java . lang . String arg0 ) { this . modified = arg0 ; } |
11,974 | information about one or more customer gateways . concode_field_sep com.amazonaws.internal.SdkInternalList<CustomerGateway> customerGateways concode_field_sep int hashCode concode_elem_sep void setCustomerGateways concode_elem_sep boolean equals concode_elem_sep DescribeCustomerGatewaysResult clone concode_elem_sep Str... | DescribeCustomerGatewaysResult function ( java . util . Collection < CustomerGateway > arg0 ) { setCustomerGateways ( arg0 ) ; return this ; } |
11,975 | returns the name of the agency . concode_field_sep int AGENCY_ID concode_elem_sep String name concode_elem_sep int AGENCY_NAME concode_elem_sep String id concode_field_sep String getId concode_elem_sep GTFSAgency fromGTFS | String function ( ) { return name ; } |
11,976 | sets the value of the idx property . concode_field_sep String v concode_elem_sep long idx concode_field_sep String getV concode_elem_sep void setV concode_elem_sep long getIdx | void function ( long arg0 ) { this . idx = arg0 ; } |
11,977 | sets the value of the id property . concode_field_sep String code concode_elem_sep List<Question> question concode_elem_sep Description description concode_elem_sep Remark remark concode_elem_sep List<Section> section concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep Integer position conc... | void function ( long arg0 ) { this . id = arg0 ; } |
11,978 | adds or replaces a exiftag . concode_field_sep int mIfdId concode_elem_sep Map<Short,ExifTag> mExifTags concode_elem_sep int mOffsetToNextIfd concode_elem_sep int[] sIfds concode_field_sep void setOffsetToNextIfd concode_elem_sep int[] getIfds concode_elem_sep boolean checkCollision concode_elem_sep boolean equals conc... | ExifTag function ( ExifTag arg0 ) { arg0 . setIfd ( mIfdId ) ; return mExifTags . put ( arg0 . getTagId ( ) , arg0 ) ; } |
11,979 | gets the width of this tilemap number of tiles across . concode_field_sep Image[][] tiles concode_elem_sep LinkedList sprites concode_elem_sep Sprite player concode_field_sep void setTile concode_elem_sep void removeSprite concode_elem_sep Image getTile concode_elem_sep int getHeight concode_elem_sep Sprite getPlayer c... | int function ( ) { return tiles . length ; } |
11,980 | returns a mutable set of blocked task ids . concode_field_sep MechanicLog log concode_elem_sep ConcurrentMap<String,String> sourcesFailingInitialization concode_field_sep int getThreadSleepSeconds concode_elem_sep int cleanSleepSeconds concode_elem_sep void doNotShowPopup concode_elem_sep void removeListener concode_el... | Set < String > function ( ) { BlockedTaskIdsParser loc0 = new BlockedTaskIdsParser ( ) ; String loc1 = getString ( IMechanicPreferences . BLOCKED_PREF ) ; Set < String > loc2 = Sets . newHashSet ( ) ; loc2 . addAll ( loc0 . parse ( loc1 ) ) ; return loc2 ; } |
11,981 | gets the number of bytes in the signed leb128 encoding of the given value . concode_field_sep PlaceHolder placeHolder concode_field_sep int unsignedLeb128Size concode_elem_sep int readUnsignedLeb128 concode_elem_sep void writeUnsignedLeb128 concode_elem_sep int readSignedLeb128 concode_elem_sep void writeSignedLeb128 | int function ( int arg0 ) { int loc0 = arg0 >> 7 ; int loc1 = 0 ; boolean loc2 = true ; int loc3 = ( ( arg0 & Integer . MIN_VALUE ) == 0 ) ? 0 : - 1 ; while ( loc2 ) { loc2 = ( loc0 != loc3 ) || ( ( loc0 & 1 ) != ( ( arg0 >> 6 ) & 1 ) ) ; arg0 = loc0 ; loc0 >>= 7 ; loc1 ++ ; } return loc1 ; } |
11,982 | set the value for eventid . concode_field_sep String selectedId concode_elem_sep List<Tab> tabList concode_elem_sep String eventId concode_field_sep void setSelectedId concode_elem_sep void setTabList concode_elem_sep List<Tab> getTabList concode_elem_sep String getSelectedId concode_elem_sep String getEventId | void function ( String arg0 ) { this . eventId = arg0 ; } |
11,983 | returns the result of interpreting the object as an instance of ` eobject ' . this implementation returns null ; returning a non-null result will terminate the switch , but this is the last case anyway . concode_field_sep Bz321770Package modelPackage concode_field_sep T doSwitch concode_elem_sep T doSwitch concode_elem... | T function ( EObject arg0 ) { return null ; } |
11,984 | bootstrap method for standard method calls concode_field_sep int THIS_CALL concode_elem_sep boolean LOG_ENABLED concode_elem_sep SwitchPoint switchPoint concode_elem_sep int GROOVY_OBJECT concode_elem_sep Logger LOG concode_elem_sep MethodHandle SELECT_METHOD concode_elem_sep int SAFE_NAVIGATION concode_elem_sep String... | CallSite function ( Lookup arg0 , String arg1 , MethodType arg2 ) { return realBootstrap ( arg0 , arg1 , CALL_TYPES . METHOD . ordinal ( ) , arg2 , false , false , false ) ; } |
11,985 | gets the single instance of translation . concode_field_sep ApplicationContext context concode_elem_sep Translation translation concode_field_sep String getTranslation concode_elem_sep String getTranslation concode_elem_sep String getTranslation | Translation function ( ) { return translation ; } |
11,986 | gets the local name part of the xml name that this name object represents . concode_field_sep QName qName concode_elem_sep String prefix concode_elem_sep String EMPTY_STRING concode_field_sep String getQualifiedName concode_elem_sep String getPrefix concode_elem_sep int hashCode concode_elem_sep boolean equals concode_... | String function ( ) { return qName . getLocalPart ( ) ; } |
11,987 | gets the value of the ext property . concode_field_sep STTrueFalse autoformat concode_elem_sep BigInteger dgmscaley concode_elem_sep STExt ext concode_elem_sep BigInteger dgmscalex concode_elem_sep Object parent concode_elem_sep BigInteger dgmfontsize concode_elem_sep String constrainbounds concode_elem_sep BigInteger ... | STExt function ( ) { return ext ; } |
11,988 | adds a child wire to this tag wire . concode_field_sep List children concode_elem_sep Attributes attributes concode_elem_sep Tag tag concode_field_sep List getChildren concode_elem_sep Attributes getAttributes concode_elem_sep void setTag concode_elem_sep void setAttributes concode_elem_sep Tag getTag concode_elem_sep ... | void function ( TagWire arg0 ) { children . add ( arg0 ) ; } |
11,989 | get the start time of this task . it is the start time of the first frame this task was run on . concode_field_sep boolean mResetStartTime concode_elem_sep boolean runAfter concode_elem_sep long mStartTime concode_field_sep boolean internalRun concode_elem_sep boolean run concode_elem_sep void resetStartTime | long function ( ) { return mStartTime ; } |
11,990 | walk the tree post-order , calling the function void visit safratree & tree , safratreenode node in the safratreevisitor on each node . concode_field_sep int MAX_NODES concode_elem_sep Vector<SafraTreeNode> _nodes concode_field_sep void generateAcceptance concode_elem_sep void generateAcceptance concode_elem_sep RabinS... | void function ( V arg0 ) { SafraTreeWalker < V > loc0 = new SafraTreeWalker < V > ( arg0 ) ; loc0 . walkTreePostOrder ( this ) ; } |
11,991 | when a response is generated , if there is more data to be listed , this parameter is present in the response and contains the value to use for the nexttoken parameter in a subsequent pagination request . if there is no more data to be listed , this parameter is set to ` null ' . concode_field_sep java.util.List<String... | ListFindingsResult function ( String arg0 ) { setNextToken ( arg0 ) ; return this ; } |
11,992 | sets the hud type concode_field_sep VariableManager variables concode_elem_sep SpriteBatch batch concode_elem_sep FlagManager flags concode_elem_sep Saveable save concode_elem_sep boolean debug concode_elem_sep UmbraScreen screen concode_elem_sep AreaBuilder areas concode_elem_sep Inventory inventory concode_elem_sep B... | void function ( HUD arg0 ) { Game . arg0 = arg0 ; } |
11,993 | queries an org for host systems , having the ` unlimited virtualization ' entitlement , and the guest count for each host . concode_field_sep VirtualizationEntitlementsManager INSTANCE concode_field_sep List findGuestsWithoutHostsByOrg concode_elem_sep List findGuestLimitedHostsByOrg concode_elem_sep List<ChannelFamily... | List function ( Org arg0 ) { return ServerFactory . findVirtPlatformHostsByOrg ( arg0 ) ; } |
11,994 | throws a generatorerror if the input list does n't have at least this many bytes left . concode_field_sep int charStart concode_elem_sep ByteList src concode_elem_sep int pos concode_elem_sep int srcEnd concode_elem_sep int quoteStart concode_elem_sep ThreadContext context concode_elem_sep ByteList out concode_field_se... | void function ( int arg0 ) { if ( pos + arg0 > srcEnd ) throw incompleteUtf8 ( ) ; } |
11,995 | get the locale object that is being used . concode_field_sep Locale m_locale concode_elem_sep String m_resourceBundleName concode_elem_sep ListResourceBundle m_resourceBundle concode_field_sep String createMessage concode_elem_sep ListResourceBundle getResourceBundle concode_elem_sep ListResourceBundle loadResourceBund... | Locale function ( ) { return m_locale ; } |
11,996 | sets the initial price concode_field_sep Seller 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 Date bidStartDate concode_elem_sep Set<Categor... | void function ( BigDecimal arg0 ) { this . initialPrice = arg0 ; } |
11,997 | the codec to use for encoding and decoding sockjs messages . by default jackson2sockjsmessagecodec is used requiring thejackson library to be present on the classpath . concode_field_sep Long heartbeatTime concode_elem_sep Boolean webSocketEnabled concode_elem_sep SockJsMessageCodec messageCodec concode_elem_sep Boolea... | SockJsServiceRegistration function ( SockJsMessageCodec arg0 ) { this . messageCodec = arg0 ; return this ; } |
11,998 | retrieve all the schemas for a particular resource concode_field_sep PlaceHolder placeHolder concode_field_sep Response listSchemasAsXML concode_elem_sep Response listSchemas | Response function ( @ Context UriInfo arg0 , @ QueryParam ( "srini_string" ) String arg1 ) { return listSchemas ( arg0 , arg1 ) ; } |
11,999 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep String value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String getValue concode_elem_sep Tag withValue concode_elem_sep int hashCode concode_elem_sep void setValue concode_elem_sep boo... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getKey ( ) != null ) loc0 . append ( "srini_string" + getKey ( ) + "srini_string" ) ; if ( getValue ( ) != null ) loc0 . append ( "srini_string" + getValue ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.