idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
22,000 | test constructor with all . concode_field_sep PlaceHolder placeHolder concode_field_sep void testConstructorWithBarcodeFormat concode_elem_sep void testGetParams concode_elem_sep void testOptimizeHints concode_elem_sep void testOptimizieHintsForDataMatrix concode_elem_sep void testRemoveFromHintMapDecodeHintType concod... | void function ( ) { BarcodeDataFormat loc0 = new BarcodeDataFormat ( 200 , 250 , BarcodeImageType . JPG , BarcodeFormat . AZTEC ) ; this . checkParams ( BarcodeImageType . JPG , 200 , 250 , BarcodeFormat . AZTEC , loc0 . getParams ( ) ) ; } |
22,001 | record an action that was not executed because it was in the disk cache . this is needed so that we can calculate correctly the dependencies tree if we have some cached actions in the middle of the critical path . concode_field_sep C maxCriticalPath concode_elem_sep Clock clock concode_elem_sep PriorityQueue<C> slowest... | void function ( CachedActionEvent arg0 ) { Action loc0 = arg0 . getAction ( ) ; C loc1 = tryAddComponent ( createComponent ( loc0 , arg0 . getNanoTimeStart ( ) ) ) ; finalizeActionStat ( arg0 . getNanoTimeStart ( ) , loc0 , loc1 ) ; } |
22,002 | 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 ) { Map loc0 = of ( ) ; loc0 . put ( arg0 , arg1 ) ; loc0 . put ( arg2 , arg3 ) ; loc0 . put ( arg4 , arg5 ) ; loc0 . put ( arg6 , arg7 ) ; loc0 . put ( arg8 , arg9 ) ; loc0 . put ( arg10... |
22,003 | after . concode_field_sep String indexing concode_elem_sep int end concode_elem_sep String value concode_elem_sep int begin concode_field_sep StringMaker next concode_elem_sep StringMaker before concode_elem_sep StringMaker before concode_elem_sep StringMaker before concode_elem_sep StringMaker lower concode_elem_sep S... | StringMaker function ( char arg0 ) { int loc0 = indexing . indexOf ( arg0 , begin ) ; if ( loc0 < 0 || loc0 > end ) { return this ; } begin = loc0 + 1 > end ? end : loc0 + 1 ; return this ; } |
22,004 | add list of resources of a particular resource type to cache concode_field_sep String AF_RESOURCE_CACHE concode_elem_sep String KEY_SEPARATOR concode_elem_sep String AF_RESOURCE_CACHE_MANAGER concode_field_sep String constructCacheKey concode_elem_sep List<Resource> getResourcesFromCache concode_elem_sep boolean isReso... | String function ( String arg0 , String arg1 , String arg2 , List < Resource > arg3 ) { String loc0 = constructCacheKey ( arg0 , arg2 , arg1 ) ; Cache < String , List < Resource >> loc1 = Caching . getCacheManager ( AF_RESOURCE_CACHE_MANAGER ) . getCache ( AF_RESOURCE_CACHE ) ; loc1 . put ( loc0 , arg3 ) ; return loc0 ;... |
22,005 | checks if a character could be part of a positive floating point value . concode_field_sep List<String> varList concode_elem_sep int bracketCounter concode_field_sep boolean substringAt concode_elem_sep Function parse | boolean function ( char arg0 ) { return ( Character . isDigit ( arg0 ) || arg0 == '.' ) ; } |
22,006 | returns comma-separated concatenated single string of the set ` users ' concode_field_sep int INITIAL_CAPACITY concode_elem_sep String WILDCARD_ACL_VALUE concode_elem_sep Collection<String> groups concode_elem_sep Groups groupsMapping concode_elem_sep Collection<String> users concode_elem_sep boolean allAllowed concode... | String function ( ) { return getString ( users ) ; } |
22,007 | gets the value of the pathtype property . concode_field_sep String path concode_elem_sep String id concode_elem_sep String pathType concode_field_sep void setPathType concode_elem_sep String getPath concode_elem_sep void setId concode_elem_sep void setPath concode_elem_sep String getId | String function ( ) { if ( pathType == null ) { return "srini_string" ; } else { return pathType ; } } |
22,008 | removes the specified target from the targets that this group will dispatch to . concode_field_sep Set<AlertDefinitionEntity> alertDefinitions concode_elem_sep String groupName concode_elem_sep Long groupId concode_elem_sep Set<AlertTargetEntity> alertTargets concode_elem_sep Long clusterId concode_elem_sep String serv... | void function ( AlertTargetEntity arg0 ) { if ( null != alertTargets ) { alertTargets . remove ( arg0 ) ; } arg0 . removeAlertGroup ( this ) ; } |
22,009 | sets the primary key of this foo . concode_field_sep Foo _foo concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedMode... | void function ( long arg0 ) { _foo . setPrimaryKey ( arg0 ) ; } |
22,010 | encode all uri components using their specific encoding rules , and returns the result as a new uricomponents instance . this method uses utf-8 to encode . concode_field_sep String fragment concode_elem_sep String scheme concode_elem_sep Map<String,?> uriVariables concode_elem_sep Object SKIP_VALUE concode_elem_sep Ite... | UriComponents function ( ) { try { return encode ( DEFAULT_ENCODING ) ; } catch ( UnsupportedEncodingException loc0 ) { throw new IllegalStateException ( loc0 ) ; } } |
22,011 | returns all the elements of this vector as an array concode_field_sep int m_CapacityIncrement concode_elem_sep long serialVersionUID concode_elem_sep int m_Size concode_elem_sep int m_SpecialElement concode_elem_sep int m_Counter concode_elem_sep FastVector m_Vector concode_elem_sep Object[] m_Objects concode_elem_sep ... | Object [ ] function ( ) { Object [ ] loc0 = new Object [ size ( ) ] ; System . arraycopy ( m_Objects , 0 , loc0 , 0 , size ( ) ) ; return loc0 ; } |
22,012 | the default poller bean . it is an analogue of component from spring integration xml configuration . required for endpoints where the inputchannel is a pollablechannel . in this case , it is necessary for the two cafe queues - hot and iced . here we use the pollers factory from the dsl project and use its method-chain ... | PollerMetadata function ( ) { return Pollers . fixedDelay ( 1000 ) . get ( ) ; } |
22,013 | gets configuration from arquillian descriptor and creates instance of it . concode_field_sep Map<String,String> configuration concode_field_sep Map<String,String> getConfiguration concode_elem_sep String getProperty concode_elem_sep void setProperty concode_elem_sep void validate | Configuration function ( Map < String , String > arg0 ) { Validate . notNull ( arg0 , "srini_string" ) ; this . configuration = arg0 ; return this ; } |
22,014 | creates a new instance of a search class given it 's class name and optional arguments to pass to it 's setoptions method . if the search method implements optionhandler and the options parameter is non-null , the search method will have it 's options set . concode_field_sep long serialVersionUID concode_field_sep int[... | ASSearch function ( String arg0 , String [ ] arg1 ) { return ( ASSearch ) Utils . forName ( ASSearch . class , arg0 , arg1 ) ; } |
22,015 | gets the name of the job . concode_field_sep String cronExpression concode_elem_sep Object jobData concode_elem_sep Class<? extends Job> jobClass concode_elem_sep String name concode_field_sep Object getJobData concode_elem_sep String getCronExpression concode_elem_sep Class<? extends Job> getJobClass concode_elem_sep ... | String function ( ) { return name ; } |
22,016 | main entry-point . concode_field_sep MiniMRClientCluster mr concode_elem_sep StartupOption dfsOpts concode_elem_sep int nnPort concode_elem_sep JobConf conf concode_elem_sep Log LOG concode_elem_sep String fs concode_elem_sep MiniDFSCluster dfs concode_elem_sep int jhsPort concode_elem_sep boolean noDFS concode_elem_se... | void function ( String [ ] arg0 ) { if ( ! parseArguments ( arg0 ) ) { return ; } start ( ) ; sleepForever ( ) ; } |
22,017 | gets the value of the return property . concode_field_sep JAXBElement<OpenstackBasicResp> _return concode_field_sep void setReturn | JAXBElement < OpenstackBasicResp > function ( ) { return _return ; } |
22,018 | infinite permits . concode_field_sep PlaceHolder placeHolder concode_field_sep Balancer createBalancer concode_elem_sep Balancer balancer concode_elem_sep Balancer createBalancerWithFairness | Balancer function ( ) { return balancer ( 0 , false ) ; } |
22,019 | implement the parcelable interface concode_field_sep Collection<WifiP2pDevice> mDevices concode_elem_sep Creator<WifiP2pDeviceList> CREATOR concode_field_sep Collection<WifiP2pDevice> getDeviceList concode_elem_sep boolean clear concode_elem_sep void update concode_elem_sep WifiP2pDeviceList[] newArray concode_elem_sep... | void function ( Parcel arg0 , int arg1 ) { arg0 . writeInt ( mDevices . size ( ) ) ; for ( WifiP2pDevice loc0 : mDevices ) { arg0 . writeParcelable ( loc0 , arg1 ) ; } } |
22,020 | returns an iterator over all keys . concode_field_sep Map<T,MutableLong> map concode_field_sep List<T> descendingKeys concode_elem_sep void add concode_elem_sep void set concode_elem_sep int hashCode concode_elem_sep long get concode_elem_sep boolean equals concode_elem_sep void reset concode_elem_sep String toString c... | Set < T > function ( ) { return map . keySet ( ) ; } |
22,021 | helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g... | void function ( String arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; } |
22,022 | a regular state must have a name . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart concode_field_s... | void function ( ) { prepareStateTest ( ) ; state . setName ( null ) ; assertFalse ( validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ) ; assertError ( diagnostics , ISSUE_STATE_WITHOUT_NAME ) ; } |
22,023 | this method logs you out from this gateway by sending an unavailable presence to directly to this gateway . concode_field_sep Roster roster concode_elem_sep Registration registerInfo concode_elem_sep Identity identity concode_elem_sep ServiceDiscoveryManager sdManager concode_elem_sep String entityJID concode_elem_sep ... | void function ( ) { Presence loc0 = new Presence ( Presence . Type . unavailable ) ; loc0 . setTo ( entityJID ) ; loc0 . setFrom ( connection . getUser ( ) ) ; connection . sendPacket ( loc0 ) ; } |
22,024 | the value providers that are applicable to this item . only one valueprovider is enabled for an item : the first in the list that issupported should be used . concode_field_sep Object defaultValue concode_elem_sep String name concode_elem_sep String description concode_elem_sep String id concode_elem_sep String shortDe... | List < ValueProvider > function ( ) { return this . hints . getValueProviders ( ) ; } |
22,025 | get a text from the resource bundles associated with this action . the resource bundles are searched , starting with the one associated with this particular action , and testing all its superclasses ' bundles . it will stop once a bundle is found that contains the given text . this gives a cascading style that allow gl... | String function ( String arg0 ) { return getText ( arg0 , arg0 , Collections . emptyList ( ) ) ; } |
22,026 | creates a metadata instance from json ast . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean[] getBooleanArray concode_elem_sep org.apache.spark.sql.catalyst.util.Metadata getMetadata concode_elem_sep org.json4s.JsonAST.JValue jsonValue concode_elem_sep double getDouble concode_elem_sep java.lang.Str... | org . apache . spark . sql . catalyst . util . Metadata function ( org . json4s . JsonAST . JObject arg0 ) { throw new RuntimeException ( ) ; } |
22,027 | return the file type . concode_field_sep FileObject fileObject concode_elem_sep boolean isBinary concode_field_sep FileObject getFileObject | boolean function ( ) { return isBinary ; } |
22,028 | sets the indirectcostrate attribute value . concode_field_sep String defaultAddressStateCode concode_elem_sep String adminContactAddressStateCode concode_elem_sep String accountName concode_elem_sep String defaultAddressZipCode concode_elem_sep long serialVersionUID concode_elem_sep String purposeText concode_elem_sep ... | void function ( String arg0 ) { this . indirectCostRate = arg0 ; } |
22,029 | sets the value of the logmessage property . concode_field_sep String dsID concode_elem_sep String logMessage concode_elem_sep String pid concode_elem_sep boolean versionable concode_field_sep void setVersionable concode_elem_sep void setDsID concode_elem_sep boolean isVersionable concode_elem_sep void setPid concode_el... | void function ( String arg0 ) { this . logMessage = arg0 ; } |
22,030 | turn batch mode on or off concode_field_sep boolean inBatch concode_elem_sep Object batch concode_elem_sep SqlMapClient sqlMapClient concode_elem_sep Map preparedStatements concode_elem_sep long nextId concode_elem_sep int requestStackDepth concode_elem_sep boolean commitRequired concode_elem_sep SqlMapTransactionManag... | void function ( boolean arg0 ) { this . inBatch = arg0 ; } |
22,031 | a unique id for the merge . concode_field_sep List<SegmentCommitInfo> mergedSegments concode_elem_sep String id concode_field_sep List<SegmentCommitInfo> getMergedSegments | String function ( ) { return id ; } |
22,032 | gets the price . concode_field_sep Seat seat concode_elem_sep Integer price concode_elem_sep long serialVersionUID concode_elem_sep Show show concode_elem_sep String description concode_elem_sep Integer id concode_elem_sep List<TicketIdentifier> ticketIdentifiers concode_field_sep Show getShow concode_elem_sep void set... | Integer function ( ) { return price ; } |
22,033 | 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 ) { Map loc0 = of ( ) ; loc0 . put ( arg0 , arg1 ) ; loc0 . put ( arg2 , arg3 ) ; loc0 . put ( arg4 , arg5 ) ; loc0 . put ( arg6 , arg7 ) ; loc0 . put ( arg8 , arg9 ) ; loc0 . put ( arg10... |
22,034 | sets whether this time zone has been checked , and so should be displayed in the bottom table ui . concode_field_sep boolean currentlyShowing concode_elem_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String abbreviation concode_elem_sep String mapCommandButto... | void function ( boolean arg0 ) { currentlyShowing = arg0 ; } |
22,035 | applies this spec to sslsocket . concode_field_sep ConnectionSpec COMPATIBLE_TLS concode_elem_sep boolean supportsTlsExtensions concode_elem_sep ConnectionSpec CLEARTEXT concode_elem_sep String[] tlsVersions concode_elem_sep String[] cipherSuites concode_elem_sep CipherSuite[] APPROVED_CIPHER_SUITES concode_elem_sep bo... | void function ( SSLSocket arg0 , boolean arg1 ) { ConnectionSpec loc0 = supportedSpec ( arg0 , arg1 ) ; if ( loc0 . tlsVersions != null ) { arg0 . setEnabledProtocols ( loc0 . tlsVersions ) ; } if ( loc0 . cipherSuites != null ) { arg0 . setEnabledCipherSuites ( loc0 . cipherSuites ) ; } } |
22,036 | return type metadata object concode_field_sep com.gvt.www.ws.eai.oss.gpon.EnumCertificacao certificacao concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String bridge concode_elem_sep java.lan... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
22,037 | test of getfirstname method , of class homepage . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetDifferentLastName concode_elem_sep void testGetEmail concode_elem_sep void testGetEmailConfirm concode_elem_sep void testGetDifferentFirstName concode_elem_sep void testGetLastName concode_elem_sep ... | void function ( ) { System . out . println ( "srini_string" ) ; HomePage loc0 = new HomePage ( ) ; String loc1 = "srini_string" ; String loc2 = loc1 ; loc0 . setFirstName ( loc1 ) ; String loc3 = loc0 . getFirstName ( ) ; assertEquals ( loc2 , loc3 ) ; } |
22,038 | returns the tracker , which is responsible for deleting temporary files . concode_field_sep int sizeThreshold concode_elem_sep int DEFAULT_SIZE_THRESHOLD concode_elem_sep File repository concode_elem_sep FileCleaningTracker fileCleaningTracker concode_field_sep void setSizeThreshold concode_elem_sep void setFileCleanin... | FileCleaningTracker function ( ) { return fileCleaningTracker ; } |
22,039 | ensure that filebuffer has at least one byte available in it . potentially wipes out what is in filebuffer so everything from filebuffer 0 . . nextbyte should already have been pulled out . concode_field_sep int nextByte concode_elem_sep InputStream in concode_elem_sep int numBytes concode_elem_sep boolean atEof concod... | boolean function ( ) { try { if ( nextByte < numBytes ) { return true ; } nextByte = 0 ; numBytes = in . read ( fileBuffer ) ; atEof = ( numBytes < 1 ) ; return ! atEof ; } catch ( IOException loc0 ) { throw new SAMException ( "srini_string" , loc0 ) ; } } |
22,040 | returns a hash code value for the object . concode_field_sep Reference reference concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep void setResourceAdapter concode_elem_sep String getName concode_elem_sep void setRefere... | int function ( ) { int loc0 = 17 ; if ( name != null ) { loc0 += 31 * loc0 + 7 * name . hashCode ( ) ; } else { loc0 += 31 * loc0 + 7 ; } return loc0 ; } |
22,041 | create a line chart with sample data in the range -3 to +3 . concode_field_sep boolean flag concode_elem_sep JFreeChart chart concode_field_sep void chartChanged concode_elem_sep void testSetSeriesURLGenerator concode_elem_sep void testReplaceDataset concode_elem_sep void setUp concode_elem_sep void testDrawWithNullInf... | JFreeChart function ( ) { Number [ ] [ ] loc0 = new Integer [ ] [ ] { { new Integer ( - 3 ) , new Integer ( - 2 ) } , { new Integer ( - 1 ) , new Integer ( 1 ) } , { new Integer ( 2 ) , new Integer ( 3 ) } } ; CategoryDataset loc1 = DatasetUtilities . createCategoryDataset ( "srini_string" , "srini_string" , loc0 ) ; r... |
22,042 | push a value thata 's already been put within the range of the output , to a specific channel concode_field_sep float defaultvalnaive concode_elem_sep float min concode_elem_sep boolean DEBUG concode_elem_sep float max concode_elem_sep boolean enabled concode_elem_sep String name concode_elem_sep float lastVal concode_... | void function ( final float arg0 , final int arg1 ) { PdBase . sendFloat ( getParamName ( arg1 ) , arg0 ) ; if ( DEBUG ) System . out . println ( "srini_string" + this . name + "srini_string" + arg1 + "srini_string" + arg0 ) ; } |
22,043 | converts a vector to a string concode_field_sep long serialVersionUID concode_elem_sep double[] m_Elements concode_field_sep AlgVector add concode_elem_sep void scalarMultiply concode_elem_sep void setElements concode_elem_sep void main concode_elem_sep int numElements concode_elem_sep double dotMultiply concode_elem_s... | String function ( ) { StringBuffer loc0 = new StringBuffer ( ) ; for ( int loc1 = 0 ; loc1 < m_Elements . length ; loc1 ++ ) { if ( loc1 > 0 ) loc0 . append ( "srini_string" ) ; loc0 . append ( Utils . doubleToString ( m_Elements [ loc1 ] , 6 ) ) ; } loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
22,044 | returns the target associated with the event . concode_field_sep NestedSet<Label> rootCauses concode_elem_sep ConfiguredTarget target concode_field_sep TargetCompleteEvent createFailed concode_elem_sep TargetCompleteEvent createSuccessful concode_elem_sep boolean failed concode_elem_sep Iterable<Label> getRootCauses | ConfiguredTarget function ( ) { return target ; } |
22,045 | configure the api endpoint to connect to concode_field_sep Optional<Boolean> skipSslValidation concode_elem_sep Optional<String> host concode_elem_sep Optional<String> clientId concode_elem_sep RestTemplate restTemplate concode_elem_sep Optional<String> username concode_elem_sep SslCertificateTruster sslCertificateTrus... | SpringCloudFoundryClientBuilder function ( String arg0 ) { this . host = Optional . of ( arg0 ) ; return this ; } |
22,046 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep DomainStatus domainStatus concode_field_sep void setDomainStatus concode_elem_sep CreateDomainResult withDomainStatus concode_elem_sep DomainStatus getDomainStatus concode_elem_sep int hashCode concode_elem_sep boolean... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getDomainStatus ( ) != null ) loc0 . append ( "srini_string" + getDomainStatus ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
22,047 | returns #rollbackingscripts . concode_field_sep boolean multiDb concode_elem_sep String itemTableName concode_elem_sep List<String> committingScripts concode_elem_sep String dialect concode_elem_sep String refTableName concode_elem_sep String refTableSuffix concode_elem_sep String valueTableName concode_elem_sep Worksp... | Collection < String > function ( ) { return rollbackingScripts ; } |
22,048 | test method concode_field_sep PlaceHolder placeHolder concode_field_sep void testPac concode_elem_sep void testManualFtp concode_elem_sep void testManualHttps concode_elem_sep void testManualHttp concode_elem_sep void testWhiteList | void function ( ) { TestUtil . setTestDataFolder ( "srini_string" ) ; ProxySelector loc0 = new GnomeProxySearchStrategy ( ) . getProxySelector ( ) ; List < Proxy > loc1 = loc0 . select ( TestUtil . HTTP_TEST_URI ) ; assertEquals ( Proxy . NO_PROXY , loc1 . get ( 0 ) ) ; } |
22,049 | sets the contentbundleactiontype value for this contentbundleaction . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String contentBundleActionType concode_field_sep java.lang.String getCon... | void function ( java . lang . String arg0 ) { this . contentBundleActionType = arg0 ; } |
22,050 | name of the region group concode_field_sep Optional<String> serviceName concode_elem_sep ImmutableList.Builder<RecordSet> recordSets concode_elem_sep String name concode_elem_sep ImmutableList.Builder<String> countries concode_elem_sep List<String> countries concode_elem_sep Optional<String> serviceName concode_elem_se... | String function ( ) { return name ; } |
22,051 | returns a list of optional keys . concode_field_sep int RESERVED concode_elem_sep StructuredDataId ORIGIN concode_elem_sep long serialVersionUID concode_elem_sep int enterpriseNumber concode_elem_sep String AT_SIGN concode_elem_sep StructuredDataId META concode_elem_sep int MAX_LENGTH concode_elem_sep String name conco... | String [ ] function ( ) { return optional ; } |
22,052 | get this node 's position , as defined by style . concode_field_sep CSSNodeDEPRECATED mParent concode_elem_sep CSSStyle style concode_elem_sep CSSNodeDEPRECATED nextChild concode_elem_sep ArrayList<CSSNodeDEPRECATED> mChildren concode_elem_sep int lineIndex concode_elem_sep Object mData concode_elem_sep boolean mIsText... | float function ( int arg0 ) { return style . position . get ( arg0 ) ; } |
22,053 | single pattern concode_field_sep ConnectionInfo mInstance concode_elem_sep String mDeviceName concode_elem_sep Context mContext concode_elem_sep String mDeviceAddress concode_field_sep void setDeviceName concode_elem_sep String getDeviceAddress concode_elem_sep void resetConnectionInfo concode_elem_sep String getDevice... | ConnectionInfo function ( Context arg0 ) { if ( mInstance == null ) { if ( arg0 != null ) mInstance = new ConnectionInfo ( arg0 ) ; else return null ; } return mInstance ; } |
22,054 | returns the greatest value present in array , treating values as unsigned . concode_field_sep int[] maxValueMods concode_elem_sep int[] maxSafeDigits concode_elem_sep long[] maxValueDivs concode_elem_sep long MAX_VALUE concode_field_sep long parseUnsignedLong concode_elem_sep long parseUnsignedLong concode_elem_sep int... | long function ( long ... arg0 ) { checkArgument ( arg0 . length > 0 ) ; long loc0 = flip ( arg0 [ 0 ] ) ; for ( int loc1 = 1 ; loc1 < arg0 . length ; loc1 ++ ) { long loc2 = flip ( arg0 [ loc1 ] ) ; if ( loc2 > loc0 ) { loc0 = loc2 ; } } return flip ( loc0 ) ; } |
22,055 | sets the experimentbidmultiplier value for this biddableadgroupcriterionexperimentdata . concode_field_sep com.google.api.ads.adwords.axis.v201406.cm.ExperimentDeltaStatus experimentDeltaStatus concode_elem_sep com.google.api.ads.adwords.axis.v201406.cm.AdGroupCriterionExperimentBidMultiplier experimentBidMultiplier co... | void function ( com . google . api . ads . adwords . axis . v201406 . cm . AdGroupCriterionExperimentBidMultiplier arg0 ) { this . experimentBidMultiplier = arg0 ; } |
22,056 | returns the working graph object concode_field_sep long serialVersionUID concode_elem_sep Report m_workingReport concode_elem_sep int m_workingGraphIndex concode_elem_sep Graph m_workingGraph concode_field_sep Report getWorkingReport concode_elem_sep int getWorkingGraphIndex concode_elem_sep void unloadWorkingGraph con... | Graph function ( ) { return m_workingGraph ; } |
22,057 | getter method for loggeddate concode_field_sep String subSubCategoryName concode_elem_sep String ticketNo concode_elem_sep String customer_Segment concode_elem_sep String loggedBy concode_elem_sep long serialVersionUID concode_elem_sep String source concode_elem_sep String circle concode_elem_sep String mobile_number c... | String function ( ) { return loggedDate ; } |
22,058 | get the norm for the vector . concode_field_sep Vector3D plusI concode_elem_sep Vector3D minusJ concode_elem_sep double x concode_elem_sep double y concode_elem_sep Vector3D plusK concode_elem_sep Vector3D zero concode_elem_sep double z concode_elem_sep Vector3D minusK concode_elem_sep Vector3D plusJ concode_elem_sep V... | double function ( ) { return Math . sqrt ( x * x + y * y + z * z ) ; } |
22,059 | registers the target object and the native data for later disposal when the target is unreachable . . concode_field_sep LinkedList<Record> disposalQueue concode_elem_sep int SOFT concode_elem_sep int refType concode_elem_sep int PHANTOM concode_elem_sep int WEAK concode_elem_sep Disposer disposerInstance concode_elem_s... | void function ( Object arg0 , Disposer . Record arg1 ) { disposerInstance . add ( arg0 , arg1 ) ; } |
22,060 | return the charset to use for reading from the @linkplain #getresource resource , or null if none specified . concode_field_sep Charset charset concode_elem_sep Resource resource concode_elem_sep String encoding concode_field_sep String getEncoding concode_elem_sep Resource getResource concode_elem_sep Reader getReader... | Charset function ( ) { return this . charset ; } |
22,061 | the property type : e.g. java.lang.string concode_field_sep Map<Property,Annotation[]> annotationCache concode_elem_sep Method readMethod concode_elem_sep String name concode_elem_sep MethodParameter methodParameter concode_elem_sep Annotation[] annotations concode_elem_sep Method writeMethod concode_elem_sep Class<?> ... | Class < ? > function ( ) { return this . methodParameter . getParameterType ( ) ; } |
22,062 | returns a random integer concode_field_sep java.util.Random rand concode_elem_sep long seed concode_field_sep boolean nextBoolean concode_elem_sep void setSeed concode_elem_sep long nextLong | int function ( ) { return rand . nextInt ( ) ; } |
22,063 | sets the responsetime value for this soapresponseheader . concode_field_sep java.lang.String requestId concode_elem_sep java.lang.Long responseTime concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.... | void function ( java . lang . Long arg0 ) { this . responseTime = arg0 ; } |
22,064 | performs a dynamic query on the database and returns the matching rows . concode_field_sep JIRAChangeGroupLocalService _jiraChangeGroupLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuer... | java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _jiraChangeGroupLocalService . arg0 ( arg0 ) ; } |
22,065 | retrieves whether this factory produces secure sockets . concode_field_sep HsqlSocketFactory sslImpl concode_elem_sep HsqlSocketFactory plainImpl concode_field_sep Socket createSocket concode_elem_sep HsqlSocketFactory getPlainImpl concode_elem_sep HsqlSocketFactory newFactory concode_elem_sep HsqlSocketFactory getInst... | boolean function ( ) { return false ; } |
22,066 | return the singleton of this class . concode_field_sep StaticMarkerBinder SINGLETON concode_field_sep IMarkerFactory getMarkerFactory concode_elem_sep String getMarkerFactoryClassStr | StaticMarkerBinder function ( ) { return SINGLETON ; } |
22,067 | get the default gradebook uid . concode_field_sep Log log concode_elem_sep GradebookHelper helper concode_elem_sep long serialVersionUID concode_elem_sep boolean integrated concode_field_sep String getGradebookUId concode_elem_sep String getGradebookUId | String function ( ) { return helper . getDefaultGradebookUId ( ) ; } |
22,068 | read one byte from the byte buffer . final method to help inlining . concode_field_sep byte[] data concode_elem_sep int start concode_elem_sep int end concode_field_sep int tell concode_elem_sep void reset concode_elem_sep void seek concode_elem_sep int getEnd concode_elem_sep String dumpHex concode_elem_sep boolean is... | byte function ( boolean arg0 ) { if ( start >= end ) { throw new EOFException ( ) ; } if ( arg0 ) { return ( byte ) ( 0xff ^ data [ start ++ ] ) ; } else { return data [ start ++ ] ; } } |
22,069 | get the line number corresponding to a given sequence number concode_field_sep int[] sequenceNumbers concode_elem_sep int[] lineNumbers concode_elem_sep int allocated concode_field_sep void setLineNumber | int function ( int arg0 ) { for ( int loc0 = 1 ; loc0 < allocated ; loc0 ++ ) { if ( sequenceNumbers [ loc0 ] > arg0 ) { return lineNumbers [ loc0 - 1 ] ; } } return lineNumbers [ allocated - 1 ] ; } |
22,070 | parse the content of the given inputstream as an xml document and return a new dom document object.an illegalargumentexception is thrown if the inputstream is null . concode_field_sep PlaceHolder placeHolder concode_field_sep DOMImplementation getDOMImplementation concode_elem_sep void setEntityResolver concode_elem_se... | Document function ( InputStream arg0 , String arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } InputSource loc0 = new InputSource ( arg0 ) ; loc0 . setSystemId ( arg1 ) ; return parse ( loc0 ) ; } |
22,071 | create an instance of jaxbelement concode_field_sep QName _SVPersonenbindung_QNAME concode_elem_sep QName _Response_QNAME concode_elem_sep QName _Script_QNAME concode_elem_sep QName _Status_QNAME concode_elem_sep QName _EHIC_QNAME concode_elem_sep QName _Grunddaten_QNAME concode_field_sep ScriptType createScriptType co... | JAXBElement < AttributeList > function ( AttributeList arg0 ) { return new JAXBElement < AttributeList > ( _Status_QNAME , AttributeList . class , null , arg0 ) ; } |
22,072 | returns true if any type listeners are installed . other code may take shortcuts when there are n't any type listeners . concode_field_sep FailableCache<TypeLiteral<?>,MembersInjectorImpl<?>> cache concode_elem_sep InjectorImpl injector concode_elem_sep List<TypeListenerBinding> typeListenerBindings concode_field_sep M... | boolean function ( ) { return ! typeListenerBindings . isEmpty ( ) ; } |
22,073 | wzhang comment method `` setrow '' . concode_field_sep long precisionValue concode_elem_sep boolean isChoice concode_elem_sep boolean isSubstitution concode_elem_sep IMetadataTable table concode_elem_sep boolean isGroupNode concode_elem_sep String defaultValue concode_elem_sep String dataType concode_elem_sep List<Stri... | void function ( String arg0 ) { this . row = arg0 ; } |
22,074 | internal only . set whether event 's entity had focus at the time the event was distributed . note : this must be called by the eventdistributor at event distribution time . concode_field_sep int EVENT_CLASS_ID concode_elem_sep Logger logger concode_elem_sep SmallIntegerAllocator classIdAllocator concode_elem_sep boole... | void function ( boolean arg0 ) { isFocussed = arg0 ; } |
22,075 | inits the recovery thread click at . concode_field_sep String[] recoveryMethodNames concode_elem_sep int TIMEOUT concode_elem_sep SeleniumTestBase caller concode_elem_sep RecoveryThreadTask recovery concode_elem_sep long thresholdTimeout concode_elem_sep Timer timer concode_elem_sep String[] onerrorMethodNames concode_... | void function ( final ProceedingJoinPoint arg0 ) { advice ( arg0 ) ; } |
22,076 | write an array of samples between -1.0 and +1.0 to standard audio . if a sample is outside the range , it will be clipped . concode_field_sep int BITS_PER_SAMPLE concode_elem_sep int SAMPLE_BUFFER_SIZE concode_elem_sep SourceDataLine line concode_elem_sep int BYTES_PER_SAMPLE concode_elem_sep double MAX_16_BIT concode_... | void function ( double [ ] arg0 ) { for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { play ( arg0 [ loc0 ] ) ; } } |
22,077 | this method is used for getting the reference to data source . it is used to link custom inputs inputs of custom module type to system input defined by the system module type . the system module type uses only system inputs . concode_field_sep String reference concode_elem_sep boolean required concode_elem_sep String d... | String function ( ) { return reference ; } |
22,078 | allows the iworkbenchpart to be set for this delegate concode_field_sep IWorkbenchPart fPart concode_elem_sep IStructuredSelection fSelection concode_elem_sep IAction fAction concode_field_sep void breakpointsAdded concode_elem_sep void setAction concode_elem_sep IBreakpointManager getBreakpointManager concode_elem_sep... | void function ( IWorkbenchPart arg0 ) { fPart = arg0 ; } |
22,079 | gets a value out of the object . concode_field_sep Bundle bundle concode_elem_sep Bundle bundle concode_field_sep E putStringArrayList concode_elem_sep SharePhoto getPhoto concode_elem_sep E putPhotoArrayList concode_elem_sep E putDoubleArray concode_elem_sep double getDouble concode_elem_sep E putDouble concode_elem_s... | Object function ( String arg0 ) { return this . bundle . get ( arg0 ) ; } |
22,080 | call this before you close the pane . this gives it an opportunity to do cleanup . you probably should call canclose before this . it gives the app a chance to cancel if its busy . concode_field_sep AlternateUIInteraction alternateUIInteraction concode_elem_sep SettingsNode settings concode_elem_sep MainGradlePanel gra... | void function ( ) { gradlePanel . aboutToClose ( ) ; } |
22,081 | the artifact version to use or null if it should not be customized . concode_field_sep String bootVersion concode_elem_sep String javaVersion concode_elem_sep String groupId concode_elem_sep String format concode_elem_sep String description concode_elem_sep String packaging concode_elem_sep String language concode_elem... | String function ( ) { return this . version ; } |
22,082 | sets the value of the saleprice property . concode_field_sep BigDecimal unitPrice concode_elem_sep Fee depositAmount concode_elem_sep Boolean usageContext concode_elem_sep Fee damageFee concode_elem_sep BigDecimal salePrice concode_elem_sep List<TierInfo> tierInfo concode_elem_sep BigDecimal discountAmount concode_elem... | void function ( BigDecimal arg0 ) { this . salePrice = arg0 ; } |
22,083 | called after plugin construction and fields have been initialized . prefer to use plugininitialize instead since there is no value in having parameters on the initialize function . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_... | void function ( CordovaInterface arg0 , CordovaWebView arg1 ) { } |
22,084 | unregisters all objects from a vreng client , and removes the client from the active client list . concode_field_sep ClientController clients concode_elem_sep Receiver receiver concode_elem_sep int port concode_elem_sep AppController apps concode_field_sep void usage concode_elem_sep void processControl concode_elem_se... | void function ( ControlMessage arg0 ) { Vreng loc0 = clients . getClient ( arg0 . getHeader ( ) . getSSRC ( ) ) ; if ( loc0 == null ) { System . out . println ( "srini_string" + arg0 . getHeader ( ) ) ; return ; } clients . removeClient ( loc0 ) ; loc0 . removeAll ( ) ; } |
22,085 | returns the name of this attribute . concode_field_sep Attribute INPUT_METHOD_SEGMENT concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep Attribute LANGUAGE concode_elem_sep Attribute READING concode_field_sep Object readResolve concode_elem_sep Map getAttributes concode_elem_sep Object... | String function ( ) { return name ; } |
22,086 | returns the series titles . concode_field_sep List<String[]> mTitles concode_elem_sep List<String> mCategories concode_elem_sep String mTitle concode_elem_sep List<double[]> mValues concode_field_sep void add concode_elem_sep void add concode_elem_sep double[] getValues concode_elem_sep int getItemCount concode_elem_se... | String [ ] function ( int arg0 ) { return mTitles . get ( arg0 ) ; } |
22,087 | is the provided message safe to use in an http header . safe messages must meet the requirements of rfc2616 - i.e. must consist only of text . concode_field_sep String st_200 concode_elem_sep String st_400 concode_elem_sep String st_404 concode_elem_sep StringManager sm concode_elem_sep String st_302 concode_field_sep ... | boolean function ( String arg0 ) { if ( arg0 == null ) { return true ; } final int loc0 = arg0 . length ( ) ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { char loc2 = arg0 . charAt ( loc1 ) ; if ( 32 <= loc2 && loc2 <= 126 || 128 <= loc2 && loc2 <= 255 || loc2 == 9 ) { continue ; } return false ; } return true ; } |
22,088 | adds a configuration default for the given namespace to the tag-descriptions . if the namespace uri given here is null , this defines the global default for all namespaces . concode_field_sep HashMap<TagDefinitionKey,TagDefinitionValue> tagData concode_elem_sep boolean legacyOverride concode_elem_sep String defaultName... | void function ( final String arg0 , final Class < ? extends T > arg1 ) { final TagDefinitionKey loc0 = new TagDefinitionKey ( arg0 , null ) ; setValueIfNotDefinedAsLegacy ( loc0 , arg1 ) ; } |
22,089 | sets the value of the name property . concode_field_sep SystemFeedGenerationData systemFeedGenerationData concode_elem_sep FeedOrigin origin concode_elem_sep String name concode_elem_sep List<FeedAttribute> attributes concode_elem_sep Long id concode_elem_sep FeedStatus status concode_field_sep String getName concode_e... | void function ( String arg0 ) { this . name = arg0 ; } |
22,090 | the system default for package assertion status . this is used for all classloader 's packageassertionstatus defaults . it must be a map of package names to boolean.true or boolean.false , with the unnamed package represented as a null key . xxx - not implemented yet ; this requires native help . concode_field_sep Prot... | Map function ( ) { return new HashMap ( ) ; } |
22,091 | returns v i concode_field_sep double sqNorm concode_elem_sep boolean calcNorm concode_elem_sep double[] val concode_elem_sep double norm concode_elem_sep boolean calcSqNorm concode_field_sep void setW concode_elem_sep Coords3D add concode_elem_sep Coords3D crossProduct concode_elem_sep Coords3D sub concode_elem_sep voi... | double function ( int arg0 ) { switch ( arg0 ) { case 0 : return val [ 0 ] ; case 1 : return val [ 1 ] ; case 2 : return val [ 2 ] ; } return val [ 3 ] ; } |
22,092 | return type metadata object concode_field_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String value concode_field_sep void setName concode_elem_sep java.lang.Stri... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
22,093 | check if point p is nearer than current concode_field_sep Coords currentNearest concode_elem_sep double currentDistance concode_elem_sep Coords point concode_field_sep Coords get | boolean function ( Coords arg0 ) { double loc0 = arg0 . loc0 ( point ) ; if ( loc0 < currentDistance ) { currentDistance = loc0 ; currentNearest . set2 ( arg0 ) ; return true ; } return false ; } |
22,094 | a value that indicates the starting point for the next set of response records in a subsequent request . if a value is returned in a response , you can retrieve the next set of records by providing this returned marker value in the marker parameter and retrying the command . if the marker field is empty , all response ... | String function ( ) { return marker ; } |
22,095 | gets the a register number , as a byte . this will throw if the value is out of the range of an unsigned byte . concode_field_sep IndexType indexType concode_elem_sep InstructionCodec format concode_elem_sep int index concode_elem_sep int opcode concode_elem_sep int target concode_elem_sep long literal concode_field_se... | short function ( ) { int loc0 = getA ( ) ; if ( ( loc0 & ~ 0xff ) != 0 ) { throw new DexException ( "srini_string" + Hex . u8 ( loc0 ) ) ; } return ( short ) loc0 ; } |
22,096 | setter concode_field_sep List<String> keys concode_elem_sep List<UserNotificationPreferencesRegistration> registeredItems concode_field_sep List<UserNotificationPreferencesRegistration> getRegisteredItems concode_elem_sep void setKeys concode_elem_sep List<String> getKeys concode_elem_sep void register | void function ( List < UserNotificationPreferencesRegistration > arg0 ) { this . registeredItems = arg0 ; } |
22,097 | yields the offset indicator which must be consulted when interpreting the date and time of time switch in terms of utc . concode_field_sep OffsetIndicator indicator concode_elem_sep int savings concode_elem_sep PlainTime timeOfDay concode_field_sep int toCalendarYear concode_elem_sep int toCalendarYear concode_elem_sep... | OffsetIndicator function ( ) { return this . indicator ; } |
22,098 | find division \ / find division of two natural numbers concode_field_sep PlaceHolder placeHolder concode_field_sep NaturalN add concode_elem_sep IntegerN add concode_elem_sep RationalN add concode_elem_sep RealN add concode_elem_sep ComplexN add concode_elem_sep NaturalN subtract concode_elem_sep IntegerN subtract conc... | NaturalN function ( NaturalN arg0 , NaturalN arg1 ) { int loc0 = arg0 . getNumerator ( ) / arg1 . getNumerator ( ) ; if ( arg1 . getNumerator ( ) == 0 ) throw new ArithmeticException ( "srini_string" ) ; NaturalN loc1 = new NaturalN ( loc0 ) ; return loc1 ; } |
22,099 | sets the initial context . concode_field_sep Properties properties concode_field_sep DataSource get concode_elem_sep void setEnvInitialContextFactory concode_elem_sep void setEnvProviderURL | void function ( @ Named ( "srini_string" ) final String arg0 ) { properties . setProperty ( JndiDataSourceFactory . INITIAL_CONTEXT , arg0 ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.