idx int64 0 25k | question stringlengths 68 5.61k | target stringlengths 21 500 |
|---|---|---|
3,000 | returns an array allocated in an area of the java heap where it will never be moved . this is used to implement native allocations on the java heap , such as directbytebuffers and bitmaps . concode_field_sep VMRuntime THE_ONE concode_field_sep long getMinimumHeapSize concode_elem_sep void trackExternalFree concode_elem... | Object function ( Class < ? > arg0 , int arg1 ) { return Array . newInstance ( arg0 , arg1 ) ; } |
3,001 | gets the value of the name property . concode_field_sep String code concode_elem_sep String name concode_elem_sep String description concode_elem_sep Operation operation concode_field_sep void setName concode_elem_sep void setCode concode_elem_sep Operation getOperation concode_elem_sep void setOperation concode_elem_s... | String function ( ) { return name ; } |
3,002 | gets the state of daylight time in this time zone . concode_field_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_elem_sep String checkboxId concode_field_sep String getUseDaylightTime concode_elem_sep String getLocation concode_elem_sep boolean isRelevantComponen... | String function ( ) { TimeZone loc0 = TimeZone . getTimeZone ( id ) ; Calendar loc1 = Calendar . getInstance ( loc0 ) ; if ( loc0 . inDaylightTime ( loc1 . getTime ( ) ) ) { return "srini_string" ; } return "srini_string" ; } |
3,003 | required for use in a listadapter ; indicates that this is selectable and clickable concode_field_sep boolean mDay0 concode_elem_sep boolean mDay1 concode_elem_sep boolean mDay2 concode_elem_sep boolean mDay3 concode_elem_sep boolean mDay4 concode_elem_sep boolean mDay5 concode_elem_sep int mVolumeType concode_elem_sep... | boolean function ( ) { return true ; } |
3,004 | 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 ; } |
3,005 | sets the value of the md5aluefile property . concode_field_sep String userFile concode_elem_sep String md5AlueFile concode_field_sep void setUserFile concode_elem_sep String getUserFile concode_elem_sep String getMd5ValueFile | void function ( String arg0 ) { this . md5AlueFile = arg0 ; } |
3,006 | matches if value is null . with type inference . concode_field_sep PlaceHolder placeHolder concode_field_sep org.hamcrest.Matcher<T> allOf concode_elem_sep org.hamcrest.Matcher<T> allOf concode_elem_sep org.hamcrest.Matcher<T> sameInstance concode_elem_sep org.hamcrest.Matcher<T> not concode_elem_sep org.hamcrest.Match... | org . hamcrest . Matcher < T > function ( java . lang . Class < T > arg0 ) { return org . hamcrest . core . IsNull . nullValue ( arg0 ) ; } |
3,007 | test for bug 1611872 - previous fails for first minute in hour . concode_field_sep PlaceHolder placeHolder concode_field_sep void testDateConstructor1 concode_elem_sep void testGetStart concode_elem_sep void testGetLastMillisecond concode_elem_sep void testGetSerialIndex concode_elem_sep void testGetFirstMillisecondWit... | void function ( ) { Minute loc0 = new Minute ( 0 , 10 , 15 , 4 , 2000 ) ; Minute loc1 = ( Minute ) loc0 . previous ( ) ; assertEquals ( loc1 , new Minute ( 59 , 9 , 15 , 4 , 2000 ) ) ; } |
3,008 | sets a custom logging level to be used for spring boot and related libraries . concode_field_sep String CONFIG_PROPERTY concode_elem_sep String LOG_PATH concode_elem_sep Log logger concode_elem_sep int order concode_elem_sep String REGISTER_SHUTDOWN_HOOK_PROPERTY concode_elem_sep Class<?>[] EVENT_TYPES concode_elem_sep... | void function ( LogLevel arg0 ) { this . springBootLogging = arg0 ; } |
3,009 | prefix the passed href with the absolute server + context path in case the passed href has no protocol yet . concode_field_sep Logger s_aLogger concode_elem_sep SimpleReadWriteLock s_aRWLock concode_elem_sep String s_sStreamServletName concode_elem_sep String DEFAULT_STREAM_SERVLET_NAME concode_elem_sep String STREAM_S... | SimpleURL function ( @ Nonnull final IRequestWebScopeWithoutResponse arg0 , @ Nonnull final String arg1 ) { return new SimpleURL ( getURIWithServerAndContext ( arg0 , arg1 ) ) ; } |
3,010 | repeat a string n times concode_field_sep PlaceHolder placeHolder concode_field_sep String padRight concode_elem_sep String generateMD5Hash concode_elem_sep String cutFirst concode_elem_sep String left concode_elem_sep double similarity concode_elem_sep double calculateSimilarityArray concode_elem_sep double nameSimila... | String function ( String arg0 , int arg1 ) { return new String ( new char [ arg1 ] ) . replace ( "srini_string" , arg0 ) ; } |
3,011 | gets the exchange server version string e.g. `` exchange2010 '' concode_field_sep int minorBuildNumber concode_elem_sep String versionString concode_elem_sep int majorVersion concode_elem_sep int minorVersion concode_elem_sep int majorBuildNumber concode_field_sep int getMajorVersion concode_elem_sep void setVersionStr... | String function ( ) { return versionString ; } |
3,012 | de-serializes the object and returns the result . concode_field_sep Supplier<SerializedObject<?>> serializedObject concode_elem_sep T deserializedObject concode_elem_sep Serializer serializer concode_elem_sep Class<T> deserializedObjectType concode_field_sep Serializer getSerializer concode_elem_sep Class<T> getType co... | T function ( ) { if ( ! isDeserialized ( ) ) { deserializedObject = serializer . deserialize ( serializedObject . get ( ) ) ; } return deserializedObject ; } |
3,013 | returns time zone used by class . concode_field_sep DateTimeSource sourceInstance concode_field_sep DateTime now concode_elem_sep LocalDate today concode_elem_sep void setSourceInstance | DateTimeZone function ( ) { return sourceInstance . timeZone ( ) ; } |
3,014 | gets the value of the size property . concode_field_sep Integer lunMapping concode_elem_sep String storageDomainId concode_elem_sep String address concode_elem_sep String productId concode_elem_sep String volumeGroupId concode_elem_sep String vendorId concode_elem_sep String target concode_elem_sep String password conc... | Long function ( ) { return size ; } |
3,015 | gets the value of the step property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the step property . for example , to add a new item , do as follo... | List < AbstractStepT > function ( ) { if ( step == null ) { step = new ArrayList < > ( ) ; } return this . step ; } |
3,016 | gets the value of the sppr property . concode_field_sep CTScaling scaling concode_elem_sep CTTickMark majorTickMark concode_elem_sep CTExtensionList extLst concode_elem_sep CTShapeProperties spPr concode_elem_sep CTTitle title concode_elem_sep CTBoolean delete concode_elem_sep CTCrosses crosses concode_elem_sep CTTextB... | CTShapeProperties function ( ) { return spPr ; } |
3,017 | return the number of type arguments . this method should be overridden by a subclass to support java 5 types . concode_field_sep ReifiedType ALL concode_elem_sep Class clazz concode_field_sep Class<?> getRawClass concode_elem_sep ReifiedType getActualTypeArgument | int function ( ) { return 0 ; } |
3,018 | get socket receive timeout . concode_field_sep int mSocketReceiveTimeout concode_elem_sep boolean mValidateIncomingUtf8 concode_elem_sep int mMaxMessagePayloadSize concode_elem_sep int mSocketConnectTimeout concode_elem_sep int mReconnectInterval concode_elem_sep boolean mReceiveTextMessagesRaw concode_elem_sep boolean... | int function ( ) { return mSocketReceiveTimeout ; } |
3,019 | clears all entries from this fetch queue . called after flushing or clearing the session . concode_field_sep Map<String,LinkedHashMap<CollectionEntry,PersistentCollection>> batchLoadableCollections concode_elem_sep Map<String,LinkedHashSet<EntityKey>> batchLoadableEntityKeys concode_elem_sep PersistenceContext context ... | void function ( ) { batchLoadableEntityKeys . clear ( ) ; batchLoadableCollections . clear ( ) ; subselectsByEntityKey . clear ( ) ; } |
3,020 | sets the value of the navigationnode property . concode_field_sep Node navigationNode concode_field_sep Node getNavigationNode | void function ( Node arg0 ) { this . navigationNode = arg0 ; } |
3,021 | returns a sub array concode_field_sep int size concode_elem_sep byte[] h concode_elem_sep byte[] skey concode_elem_sep int index concode_field_sep void init concode_elem_sep String asHex concode_elem_sep byte[] encrypt concode_elem_sep byte[] cat concode_elem_sep byte[] clone concode_elem_sep byte[] update concode_elem... | byte [ ] function ( byte [ ] arg0 , int arg1 , int arg2 ) { byte [ ] loc0 = new byte [ arg2 - arg1 ] ; for ( int loc1 = arg1 ; loc1 < arg2 ; loc1 ++ ) loc0 [ loc1 - arg1 ] = arg0 [ loc1 ] ; return loc0 ; } |
3,022 | returns the memorylayout for the running jvm . concode_field_sep int addrSize concode_elem_sep int ARCH_32BIT concode_elem_sep int size concode_elem_sep int ARCH_64BIT concode_elem_sep boolean aligned concode_elem_sep int ARCH_8BIT concode_elem_sep int ARCH_16BIT concode_elem_sep int intSize concode_elem_sep int WORD_S... | MemoryLayout function ( ) { return new MemoryLayout ( ByteOrder . nativeOrder ( ) , Integer . parseInt ( System . getProperty ( "srini_string" ) ) / 8 , Integer . SIZE / 8 ) ; } |
3,023 | returns the item that was emitted by the observable after this time interval . concode_field_sep long intervalInMilliseconds concode_elem_sep T value concode_field_sep long getIntervalInMilliseconds concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString | T function ( ) { return value ; } |
3,024 | note : distance is from top of bin ! concode_field_sep Logger LOG concode_elem_sep short numOsOnBoard concode_elem_sep short numLsOnBoard concode_elem_sep SparseObjectMatrix2D fMatrix concode_elem_sep short numberOfTetrominosOnBoard concode_elem_sep int minHeight concode_elem_sep short numSsOnBoard concode_elem_sep byt... | int function ( ) { return maxHeight ; } |
3,025 | not implemented . concode_field_sep Map<String,Unit> contextIndependentUnits concode_elem_sep float[][] transform concode_elem_sep UnitManager unitManager concode_elem_sep String location concode_elem_sep Pool<Senone> senonePool concode_elem_sep Properties modelProperties concode_elem_sep String PROP_UNIT_MANAGER conco... | Pool < float [ ] [ ] > function ( ) { return null ; } |
3,026 | query that the state is in a specific state concode_field_sep String name concode_elem_sep boolean[][] statemap concode_elem_sep Service.STATE state concode_field_sep Service.STATE getState concode_elem_sep Service.STATE enterState concode_elem_sep void ensureCurrentState concode_elem_sep boolean isValidStateTransition... | boolean function ( Service . STATE arg0 ) { return state . equals ( arg0 ) ; } |
3,027 | format a method call , including arguments , for an exception message . concode_field_sep HashMap<Class<?>,Class<?>> proxyMap concode_elem_sep TreeMap<String,Method> methods concode_elem_sep Constructor<?> constructor concode_elem_sep String className concode_elem_sep String packageName concode_elem_sep TreeSet<String>... | String function ( Method arg0 , Object ... arg1 ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( arg0 . getName ( ) ) . append ( '(' ) ; for ( int loc1 = 0 ; loc1 < arg1 . length ; loc1 ++ ) { Object loc2 = arg1 [ loc1 ] ; if ( loc1 > 0 ) { loc0 . append ( "srini_string" ) ; } loc0 . append ( loc2 == nu... |
3,028 | this method resets the incoming events time events included . concode_field_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void reactMain_region_A concode_elem_sep void init concode_elem_sep void exit concode_elem_sep void reactMain_region_B concode_elem_sep void exitAction concode_elem_s... | void function ( ) { } |
3,029 | filter to constraint members to be used for classloading request when a user class is not available locally . filter format : has_attribute : foo this will send classloading requestsonly to members which has a member attribute foo set . value is ignored , it can be any type . a present of the attribute is sufficient . ... | UserCodeDeploymentConfig function ( String arg0 ) { this . providerFilter = arg0 ; return this ; } |
3,030 | calcuate 12:00 am by zeroing out hour , minute , second , millisecond concode_field_sep int DAY_COUNT concode_elem_sep String LOGTAG concode_elem_sep int NUM_DAYS_AGO concode_elem_sep long[] mBins concode_elem_sep String[] mLabels concode_field_sep String getLabel concode_elem_sep int getIndex concode_elem_sep long get... | void function ( Calendar arg0 ) { arg0 . set ( Calendar . HOUR_OF_DAY , 0 ) ; arg0 . set ( Calendar . MINUTE , 0 ) ; arg0 . set ( Calendar . SECOND , 0 ) ; arg0 . set ( Calendar . MILLISECOND , 0 ) ; } |
3,031 | this method was generated by mybatis generator . this method returns the value of the database column reply_hot_req . userid concode_field_sep Byte enable concode_elem_sep Integer replyid concode_elem_sep Integer type concode_elem_sep String userid concode_field_sep void setEnable concode_elem_sep Integer getReplyid co... | String function ( ) { return userid ; } |
3,032 | when retrieved this will iterate over the contained hystrixproperty instances until a non-null value is found and return that . concode_field_sep PlaceHolder placeHolder concode_field_sep HystrixProperty<T> nullProperty concode_elem_sep T get | HystrixProperty < T > function ( final HystrixProperty < T > ... arg0 ) { return new HystrixProperty < T > ( ) { @ Override public T get ( ) { for ( HystrixProperty < T > loc0 : arg0 ) { if ( loc0 . get ( ) != null ) { return loc0 . get ( ) ; } } return null ; } } ; } |
3,033 | static method that returns true concode_field_sep int x concode_elem_sep int y concode_field_sep int getX concode_elem_sep void setY concode_elem_sep void setX concode_elem_sep int getY concode_elem_sep Object twoFunctionsOfX concode_elem_sep void listInput | boolean function ( ) { return true ; } |
3,034 | return the user-visible label for the completion , or null if the plain text should be shown . if non-null , this will be what the user sees as the completion option instead of the actual text . concode_field_sep String TAG concode_elem_sep Parcelable.Creator<CompletionInfo> CREATOR concode_elem_sep int mPosition conco... | CharSequence function ( ) { return mLabel ; } |
3,035 | sets the concurrency level of the threading system of the java virtual machine jvm to the specified level . the concurrency level specifies how many threads can run in parallel on different cpus at any given time for jvm implementations that use posix threads with pthread_scope_process scheduling scope . a concurrency ... | void function ( int arg0 ) { checkLibrary ( ) ; if ( arg0 < 0 ) throw new IllegalArgumentException ( ) ; setThreadConcurrencyN ( arg0 ) ; } |
3,036 | log a message internal current debug and enabled logtypes decide what gets logged - even if a custom callback is registered concode_field_sep int LOG_GENERAL concode_elem_sep OnLogListener logListener concode_elem_sep int LOG_COMMAND concode_elem_sep int LOG_NONE concode_elem_sep int LOG_ALL concode_elem_sep int logTyp... | void function ( int arg0 , String arg1 , String arg2 ) { if ( debug && ( ( logTypes & arg0 ) == arg0 ) ) { if ( logListener != null ) { logListener . onLog ( arg0 , arg1 , arg2 ) ; } else { Log . d ( TAG , "srini_string" + TAG + "srini_string" + arg1 + "srini_string" + ( ! arg2 . startsWith ( "srini_string" ) && ! arg2... |
3,037 | returns true if this connection has been idle for longer than keepalivedurationns . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep So... | boolean function ( long arg0 ) { return getIdleStartTimeNs ( ) < System . nanoTime ( ) - arg0 ; } |
3,038 | equality operator , check whether service name and port name are both equal . concode_field_sep String portName concode_elem_sep QName serviceName concode_field_sep int hashCode concode_elem_sep String toString | boolean function ( Object arg0 ) { if ( ! ( arg0 instanceof Endpoint ) ) { return false ; } Endpoint loc0 = ( Endpoint ) arg0 ; return loc0 . serviceName . equals ( serviceName ) && loc0 . portName . equals ( portName ) ; } |
3,039 | empty implementation which allows subclasses to receive the same output that is generated here . concode_field_sep int msgOutputLevel concode_elem_sep long startTime concode_elem_sep PrintStream err concode_elem_sep boolean emacsMode concode_elem_sep int LEFT_COLUMN_SIZE concode_elem_sep PrintStream out concode_elem_se... | void function ( String arg0 ) { } |
3,040 | reads the setting from the options hash . if it is nil or undefined , returns the default value given . if not , ensures it is a rubyclass instance and shares the same allocator as the default value i.e. for the basic types which have their specific allocators , this ensures the passed value is a subclass of them . con... | RubyClass function ( String arg0 , RubyClass arg1 ) { IRubyObject loc0 = get ( arg0 ) ; if ( loc0 == null || loc0 . isNil ( ) ) return arg1 ; return ( RubyClass ) loc0 ; } |
3,041 | gets the totalresultsetsize value for this placementpage . concode_field_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer totalResultSetSize concode_el... | java . lang . Integer function ( ) { return totalResultSetSize ; } |
3,042 | returns a string representation of the statistics concode_field_sep int maxWordHistories concode_elem_sep int frameNumber concode_elem_sep Map<WordSequence,WordStats> statMap concode_elem_sep float minScore concode_elem_sep int size concode_elem_sep int stateCount concode_elem_sep float maxScore concode_elem_sep WordSe... | String function ( ) { return "srini_string" + size + "srini_string" + maxScore + "srini_string" + minScore + ' ' + ws ; } |
3,043 | returns whether the request returned a valid response concode_field_sep String args concode_elem_sep String path concode_elem_sep int retries concode_elem_sep FritzahaWebInterface webIface concode_elem_sep boolean validRequest concode_elem_sep Method httpMethod concode_elem_sep FritzahaCallback retryCallback concode_fi... | boolean function ( ) { return validRequest ; } |
3,044 | returns the start date of this projects entry . concode_field_sep ProjectsEntry _projectsEntry concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedMode... | Date function ( ) { return _projectsEntry . getStartDate ( ) ; } |
3,045 | this method is used by members to discover if their key node node has been submitted . receive : the total nodes number for themselves 0 or 1 , our own key node if available . concode_field_sep int mVersion concode_elem_sep int mLatestServerVersion concode_elem_sep ConnectionEngine sInstance concode_elem_sep String TAG... | byte [ ] function ( int arg0 ) { handleTimeoutException ( ) ; ByteBuffer loc0 = ByteBuffer . allocate ( 4 + 4 ) ; loc0 . putInt ( mVersion ) ; loc0 . putInt ( arg0 ) ; byte [ ] loc1 = syncKeyNodes ( loc0 . array ( ) ) ; handleResponseExceptions ( loc1 , 2 ) ; Log . i ( TAG , "srini_string" ) ; return loc1 ; } |
3,046 | asserts that two booleans are equal . if they are not an assertionfailederror is thrown with the given message . concode_field_sep PlaceHolder placeHolder concode_field_sep void fail concode_elem_sep void fail concode_elem_sep void assertNull concode_elem_sep void assertNull concode_elem_sep void assertTrue concode_ele... | void function ( String arg0 , boolean arg1 , boolean arg2 ) { assertEquals ( arg0 , new Boolean ( arg1 ) , new Boolean ( arg2 ) ) ; } |
3,047 | whether to ignore requests that have a file extension that does not match any mapped media types . setting this to false will result in a httpmediatypenotacceptableexception when there is no match.by default this is set to true . concode_field_sep ContentNegotiationManagerFactoryBean factoryBean concode_elem_sep Map<St... | ContentNegotiationConfigurer function ( boolean arg0 ) { this . factoryBean . setIgnoreUnknownPathExtensions ( arg0 ) ; return this ; } |
3,048 | get the sequence id of this sequence . concode_field_sep List<List<String>> itemsets concode_elem_sep int id concode_field_sep Sequence cloneSequenceMinusItems concode_elem_sep void print concode_elem_sep int size concode_elem_sep List<String> get concode_elem_sep List<String> cloneItemsetMinusItems concode_elem_sep St... | int function ( ) { return id ; } |
3,049 | removes the given listener from the state listener list . concode_field_sep String PREF_HOMEPAGE_CUSTOM_URI concode_elem_sep SharedPreferences mSharedPreferences concode_elem_sep String PREF_HOMEPAGE_ENABLED concode_elem_sep HomepageManager sInstance concode_elem_sep ObserverList<HomepageStateListener> mHomepageStateLi... | void function ( HomepageStateListener arg0 ) { mHomepageStateListeners . removeObserver ( arg0 ) ; } |
3,050 | describe getlabel method here . concode_field_sep int[] ages concode_elem_sep int seasonYear concode_elem_sep int startingYear concode_elem_sep int turn concode_field_sep Turn next concode_elem_sep int getAge concode_elem_sep int getAge concode_elem_sep void setSeasonYear concode_elem_sep void setStartingYear concode_e... | StringTemplate function ( ) { return getLabel ( turn ) ; } |
3,051 | returns true if this connection is alive . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode_elem_sep byte[] SPDY3... | boolean function ( ) { return ! socket . isClosed ( ) && ! socket . isInputShutdown ( ) && ! socket . isOutputShutdown ( ) ; } |
3,052 | free the internal buffer cache for #reliablycopyexecutable . concode_field_sep byte[] cachedBuffer concode_field_sep void reliablyCopyExecutable concode_elem_sep void deleteOrThrow concode_elem_sep FileLocker lockLibsDirectory concode_elem_sep File createLibsDirectory concode_elem_sep File getLibsDirectory concode_elem... | void function ( ) { cachedBuffer = null ; } |
3,053 | erthrowableinformation is equals with throwableproxy concode_field_sep PlaceHolder placeHolder concode_field_sep void testFromThrowableInformation concode_elem_sep void testFromThrowableProxy | boolean function ( ErThrowableInformation arg0 , ThrowableProxy arg1 ) { if ( ! ErThrowableTest . equalsWithThrowable ( arg0 . getThrowable ( ) , arg1 ) ) { return false ; } return true ; } |
3,054 | get the typecode of the parametermode . concode_field_sep ParameterMode value concode_field_sep void _read concode_elem_sep void _write | org . omg . CORBA . TypeCode function ( ) { return ParameterModeHelper . type ( ) ; } |
3,055 | sets the value of the additionalsocdescription property . concode_field_sep String socCategoryCode concode_elem_sep Boolean isPromotional concode_elem_sep List<String> featureCode concode_elem_sep Double socPrice concode_elem_sep String soc concode_elem_sep String socCategoryName concode_elem_sep Boolean isDeviceCompat... | void function ( String arg0 ) { this . additionalSOCDescription = arg0 ; } |
3,056 | negates all bits in the reg . concode_field_sep int value concode_field_sep void add concode_elem_sep void add concode_elem_sep void mult concode_elem_sep void or concode_elem_sep void subtract concode_elem_sep void maxx concode_elem_sep void clear concode_elem_sep void scale concode_elem_sep void main concode_elem_sep... | void function ( ) { value = ~ ( value & 0xffffffff ) ; } |
3,057 | set the list of additional client properties concode_field_sep String clientIpAddress concode_elem_sep String clientId concode_elem_sep List<String> allowedGrantTypes concode_elem_sep boolean isConfidential concode_elem_sep List<String> applicationCertificates concode_elem_sep UserSubject subject concode_elem_sep List<... | void function ( Map < String , String > arg0 ) { this . properties = arg0 ; } |
3,058 | utility method to determine if the seam classes can be loaded . concode_field_sep Object pageContextInstance concode_elem_sep Method seamBeforeRedirectMethodInstance concode_elem_sep Object[] seamInstanceArgs concode_elem_sep String conversationIdParameter concode_elem_sep String versionedUrlParam concode_elem_sep Meth... | boolean function ( ) { return seamManagerClass != null ; } |
3,059 | this method is called from the org.tigris.subversion.subclipse.ui plugin and will install a factory that creates baseresourcestorage that implements the concode_field_sep IBaseResourceStorageFactory currentFactory concode_field_sep IBaseResourceStorageFactory current concode_elem_sep BaseResourceStorage createResourceS... | void function ( IBaseResourceStorageFactory arg0 ) { currentFactory = arg0 ; } |
3,060 | returns the last transformtreenode on the stack . concode_field_sep Deque<TransformTreeNode> transformStack concode_elem_sep Map<PInput,TransformTreeNode> producingTransformNode concode_field_sep void popNode concode_elem_sep void pushNode concode_elem_sep void addInput concode_elem_sep void visit concode_elem_sep void... | TransformTreeNode function ( ) { return transformStack . peek ( ) ; } |
3,061 | set the current log level . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep ... | void function ( int arg0 ) { LOGLEVEL = arg0 ; Log . i ( "srini_string" , "srini_string" + arg0 ) ; } |
3,062 | return the computed integer list . concode_field_sep Expression[] values concode_elem_sep ListType listType concode_field_sep boolean isEmpty | int [ ] function ( Ability arg0 , Target arg1 , ContextEventListener arg2 ) { final int [ ] loc0 = new int [ values . length ] ; for ( int loc1 = 0 ; loc1 < values . length ; loc1 ++ ) { loc0 [ loc1 ] = values [ loc1 ] . getValue ( arg0 , arg0 . getCard ( ) , arg2 ) ; } return listType . getList ( loc0 ) ; } |
3,063 | set the user data pointer . concode_field_sep Body m_bodyA concode_elem_sep boolean m_islandFlag concode_elem_sep JointEdge m_edgeB concode_elem_sep Body m_bodyB concode_elem_sep JointEdge m_edgeA concode_elem_sep Object m_userData concode_elem_sep IWorldPool pool concode_elem_sep Joint m_prev concode_elem_sep Joint m_... | void function ( Object arg0 ) { m_userData = arg0 ; } |
3,064 | collect garbage and sleep . return immediately without gc if the argument m is 0 . concode_field_sep PlaceHolder placeHolder concode_field_sep void sleep concode_elem_sep byte[] byte_array_from_long concode_elem_sep long long_from_byte_array concode_elem_sep String to_byte_hex_string | void function ( int arg0 ) { if ( arg0 == 0 ) return ; System . gc ( ) ; sleep ( arg0 ) ; } |
3,065 | returns the osgi service identifier . concode_field_sep CounterLocalService _counterLocalService concode_field_sep java.util.List<com.liferay.counter.kernel.model.Counter> getCounters concode_elem_sep com.liferay.counter.kernel.model.Counter getCounter concode_elem_sep void setWrappedService concode_elem_sep int getCou... | java . lang . String function ( ) { return _counterLocalService . getOSGiServiceIdentifier ( ) ; } |
3,066 | invoked by the asynchronous task when it 's over . concode_field_sep T t concode_elem_sep Throwable e concode_elem_sep int NO_TIMEOUT concode_field_sep T get concode_elem_sep T get concode_elem_sep void error concode_elem_sep boolean isDone | void function ( T arg0 ) { this . t = arg0 ; this . e = null ; this . notify ( ) ; } |
3,067 | marks this file as a read only or not concode_field_sep int NOT_REGISTERED concode_elem_sep int TYPE_RAW_DATA concode_elem_sep int TYPE_TAG_DATA concode_elem_sep String name concode_elem_sep int TYPE_RECONSTRUCTED_DATA concode_elem_sep FileAttribute attribute concode_elem_sep double transactionTime concode_elem_sep int... | void function ( boolean arg0 ) { attribute . setReadOnly ( arg0 ) ; } |
3,068 | return total time spent in #flushandsync boolean concode_field_sep long numSync concode_elem_sep long totalTimeSync concode_field_sep void flushAndSync concode_elem_sep long getNumSync concode_elem_sep void flush concode_elem_sep void flush concode_elem_sep void abort concode_elem_sep String generateReport concode_elem... | long function ( ) { return totalTimeSync ; } |
3,069 | the maximum orthogonality of all pseudo states is 0 concode_field_sep SexecExtensions sexec concode_elem_sep StatechartExtensions sc concode_elem_sep SexecElementMapping mapping concode_elem_sep SgraphExtensions sgraph concode_field_sep int defineStateVectors concode_elem_sep int defineStateVectors concode_elem_sep int... | int function ( final Vertex arg0 , final int arg1 ) { return 0 ; } |
3,070 | sets the value of the measurevalue property . concode_field_sep String measureValue concode_elem_sep Long mid concode_elem_sep String dateRegistered concode_elem_sep MeasureType measureType concode_field_sep String getDateRegistered concode_elem_sep void setMid concode_elem_sep void setMeasureType concode_elem_sep Long... | void function ( String arg0 ) { this . measureValue = arg0 ; } |
3,071 | accesses the number of items stored in the array . concode_field_sep int capacityDelta concode_elem_sep Logger logger concode_elem_sep int DEFAULT_CAPACITY concode_elem_sep char[] items concode_elem_sep int numItems concode_elem_sep int capacity concode_field_sep void init concode_elem_sep char[] toCharArray concode_el... | int function ( ) { return this . numItems ; } |
3,072 | returns the attribute name . concode_field_sep String name concode_elem_sep List entryList concode_elem_sep Iterator backend concode_elem_sep String value concode_field_sep Object next concode_elem_sep String getValue concode_elem_sep void setAttribute concode_elem_sep String getAttribute concode_elem_sep String getAtt... | String function ( ) { return this . name ; } |
3,073 | returns a clone of the object . concode_field_sep long serialVersionUID concode_elem_sep double top concode_elem_sep double left concode_elem_sep double bottom concode_elem_sep double right concode_field_sep void add concode_elem_sep double getBottom concode_elem_sep void setLeft concode_elem_sep Rectangle2D shrink con... | Object function ( ) { return super . clone ( ) ; } |
3,074 | ascertains whether mapcommandbuttonid is a part of componentid . componentid might be a fully qualified id , with a prefix corresponding to container component s . concode_field_sep Polygon mapPolygon concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep String getId concode_elem_sep P... | boolean function ( String arg0 ) { return arg0 . endsWith ( mapCommandButtonId ) ; } |
3,075 | this will print the usage for this document . concode_field_sep PlaceHolder placeHolder concode_field_sep void main concode_elem_sep void printBookmark | void function ( ) { System . err . println ( "srini_string" ) ; } |
3,076 | converts the given string id to an int by removing ` loc - ' prefix from the id . concode_field_sep PlaceHolder placeHolder concode_field_sep List<String> notesToList concode_elem_sep List<String> subjectsToList concode_elem_sep List<Integer> subjectIdsToList concode_elem_sep LocationDocument build concode_elem_sep Lis... | int function ( String arg0 ) { arg0 = arg0 . replaceAll ( RepositoryConstants . PREFIX_LOCATION , "srini_string" ) ; return Integer . parseInt ( arg0 ) ; } |
3,077 | gets selected time zone display name . concode_field_sep DateFormat selectedFormat concode_elem_sep int[] pacificXCoords concode_elem_sep int[] nfldXCoords concode_elem_sep int[] easternYCoords concode_elem_sep int[] alaskaYCoords concode_elem_sep int[] pacificYCoords concode_elem_sep ArrayList allTimeZoneList concode_... | String function ( ) { return displayNameTokenizer ( selectedTimeZone . getDisplayName ( ) ) ; } |
3,078 | return the first child node of this node with the specified name , if there is one ; otherwise , return null . 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 String findAttribute concod... | TreeNode function ( String arg0 ) { if ( children == null ) return ( null ) ; Iterator loc0 = children . iterator ( ) ; while ( loc0 . hasNext ( ) ) { TreeNode loc1 = ( TreeNode ) loc0 . next ( ) ; if ( arg0 . equals ( loc1 . getName ( ) ) ) return ( loc1 ) ; } return ( null ) ; } |
3,079 | returns a printable representation of the certificatepolicyid . concode_field_sep ObjectIdentifier id concode_field_sep void encode concode_elem_sep ObjectIdentifier getIdentifier concode_elem_sep int hashCode concode_elem_sep boolean equals | String function ( ) { String loc0 = "srini_string" + id . toString ( ) + "srini_string" ; return ( loc0 ) ; } |
3,080 | returns the number of words with fewer zs than x , where x is some key in the map . if x is not part of the map , return -1 . concode_field_sep boolean needsUpdating concode_elem_sep TreeMap<String,Integer> countMap concode_elem_sep TreeMap<String,Integer> fewerZsCount concode_field_sep int compare concode_elem_sep int... | int function ( String arg0 ) { if ( ! countMap . containsKey ( arg0 ) ) { return - 1 ; } if ( needsUpdating ) { updateFewerZsCount ( ) ; needsUpdating = false ; } return fewerZsCount . get ( arg0 ) ; } |
3,081 | choose the public key that produced a signature . concode_field_sep Map<Fingerprint,PGPPublicKeyRing> toAdd concode_elem_sep NoteMap notes concode_elem_sep Set<Fingerprint> toRemove concode_elem_sep ObjectReader reader concode_elem_sep Repository repo concode_elem_sep String REFS_GPG_KEYS concode_elem_sep RevCommit tip... | PGPPublicKey function ( Iterable < PGPPublicKeyRing > arg0 , PGPSignature arg1 , byte [ ] arg2 ) { for ( PGPPublicKeyRing loc0 : arg0 ) { PGPPublicKey loc1 = loc0 . getPublicKey ( ) ; arg1 . init ( new BcPGPContentVerifierBuilderProvider ( ) , loc1 ) ; arg1 . update ( arg2 ) ; if ( arg1 . verify ( ) ) { return loc1 ; }... |
3,082 | return if native hadoop libraries , if present , can be used for this job . concode_field_sep boolean nativeCodeLoaded concode_elem_sep Log LOG concode_field_sep boolean buildSupportsSnappy concode_elem_sep String getLibraryName concode_elem_sep void setLoadNativeLibraries concode_elem_sep boolean buildSupportsOpenssl ... | boolean function ( Configuration arg0 ) { return arg0 . getBoolean ( CommonConfigurationKeys . IO_NATIVE_LIB_AVAILABLE_KEY , CommonConfigurationKeys . IO_NATIVE_LIB_AVAILABLE_DEFAULT ) ; } |
3,083 | creates a random string whose length is the number of characters specified . characters will be chosen from the set of alpha-numeric characters as indicated by the arguments . concode_field_sep Random RANDOM concode_field_sep String randomAlphabetic concode_elem_sep String randomAlphanumeric concode_elem_sep String ran... | String function ( int arg0 , boolean arg1 , boolean arg2 ) { return random ( arg0 , 0 , 0 , arg1 , arg2 ) ; } |
3,084 | get elements concode_field_sep ArrayList<PrintElement> m_elements concode_elem_sep PrintElement[] m_pe concode_elem_sep Properties m_ctx concode_field_sep void paint concode_elem_sep void addElement concode_elem_sep MQuery getDrillDown | PrintElement [ ] function ( ) { if ( m_pe == null ) { m_pe = new PrintElement [ m_elements . size ( ) ] ; m_elements . toArray ( m_pe ) ; } return m_pe ; } |
3,085 | returns the result of interpreting the object as an instance of 'em apping context ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep TracePackage modelPackage concode_elem_sep String copyright concode_field_sep T caseTrace concode_elem_sep T caseTraceRecord... | T function ( EMappingContext arg0 ) { return null ; } |
3,086 | gets the crouton 's layout parameters , constructing a default if necessary . concode_field_sep LayoutParams mLayoutParams concode_elem_sep int duration concode_elem_sep int LENGTH_SHORT concode_elem_sep Style STYLE_INFO concode_elem_sep int background concode_elem_sep int LENGTH_LONG concode_elem_sep View mView concod... | LayoutParams function ( ) { if ( mLayoutParams == null ) { mLayoutParams = new LayoutParams ( LayoutParams . MATCH_PARENT , LayoutParams . WRAP_CONTENT ) ; } return mLayoutParams ; } |
3,087 | returns the steady fair share of this queue in megabytes . concode_field_sep FairSchedulerQueueInfoList childQueues concode_elem_sep float fractionMemMaxShare concode_elem_sep ResourceInfo fairResources concode_elem_sep float fractionMemUsed concode_elem_sep ResourceInfo minResources concode_elem_sep float fractionMemM... | ResourceInfo function ( ) { return steadyFairResources ; } |
3,088 | called from native when template url service is done loading . concode_field_sep String mMonth concode_elem_sep String mYear concode_elem_sep String mZip concode_elem_sep String mCompanyName concode_elem_sep String mState concode_elem_sep String mAddressLine2 concode_elem_sep PersonalDataManager sManager concode_elem_s... | void function ( ) { ThreadUtils . assertOnUiThread ( ) ; for ( PersonalDataManagerObserver loc0 : mDataObservers ) { loc0 . onPersonalDataChanged ( ) ; } } |
3,089 | gets the current value of label concode_field_sep int titleDepth concode_elem_sep List<NavNode> nodes concode_elem_sep String aclMixins concode_elem_sep AclGuard guard concode_elem_sep boolean invisible concode_elem_sep String label concode_elem_sep String formvar concode_field_sep String getFormvar concode_elem_sep vo... | String function ( ) { return this . label ; } |
3,090 | gets the sprite rotation angle , in degrees . concode_field_sep String TAG concode_elem_sep Drawable2d mDrawable concode_elem_sep float mAngle concode_elem_sep float mScaleX concode_elem_sep float[] mModelViewMatrix concode_elem_sep float mPosY concode_elem_sep float[] mScratchMatrix concode_elem_sep boolean mMatrixRea... | float function ( ) { return mAngle ; } |
3,091 | f0 - > `` if '' f1 - > '' '' f2 - > expression f3 - > '' '' f4 - > statement f5 - > `` else '' f6 - > statement concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | void function ( IfStatement arg0 , A arg1 ) { arg0 . f0 . accept ( this , arg1 ) ; arg0 . f1 . accept ( this , arg1 ) ; arg0 . f2 . accept ( this , arg1 ) ; arg0 . f3 . accept ( this , arg1 ) ; arg0 . f4 . accept ( this , arg1 ) ; arg0 . f5 . accept ( this , arg1 ) ; arg0 . f6 . accept ( this , arg1 ) ; } |
3,092 | returns the number of d a t a g r o u ps . concode_field_sep DATAGROUPPersistence _persistence concode_field_sep void cacheResult concode_elem_sep void cacheResult concode_elem_sep List<DATAGROUP> findWithDynamicQuery concode_elem_sep List<DATAGROUP> findWithDynamicQuery concode_elem_sep List<DATAGROUP> findWithDynamic... | int function ( ) { return getPersistence ( ) . countAll ( ) ; } |
3,093 | compute 2 ^ y mod n for n odd . concode_field_sep long R concode_elem_sep int s concode_elem_sep LongLong x concode_elem_sep long R_1 concode_elem_sep LongLong aN concode_elem_sep Product product concode_elem_sep long N_I concode_elem_sep LongLong xN_I concode_elem_sep long N concode_field_sep Montgomery set concode_el... | long function ( final long arg0 ) { long loc0 = R - N ; long loc1 = loc0 << 1 ; if ( loc1 >= N ) loc1 -= N ; for ( long loc2 = Long . highestOneBit ( arg0 ) ; loc2 > 0 ; loc2 >>>= 1 ) { loc0 = product . m ( loc0 , loc0 ) ; if ( ( loc2 & arg0 ) != 0 ) loc0 = product . m ( loc0 , loc1 ) ; } return product . m ( loc0 , 1 ... |
3,094 | set second concode_field_sep Reference reference concode_elem_sep long serialVersionUID concode_elem_sep Long first concode_elem_sep ResourceAdapter ra concode_elem_sep Boolean second concode_field_sep void setResourceAdapter concode_elem_sep void setFirst concode_elem_sep void setReference concode_elem_sep Long getFir... | void function ( Boolean arg0 ) { this . second = arg0 ; } |
3,095 | return true or false based on whether the named file exists . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep boolean fsIsIgnoreCase concode_field_sep File absoluteFile concode_elem_sep IOException toIOException concode_elem_sep void renameOverwrite concode_elem_sep String canonicalPath concode_el... | boolean function ( String arg0 ) { try { return ( new File ( arg0 ) ) . exists ( ) ; } catch ( Throwable loc0 ) { throw toIOException ( loc0 ) ; } } |
3,096 | gets the cached last refresh date from a bundle . concode_field_sep String TOKEN_SOURCE_KEY concode_elem_sep long INVALID_BUNDLE_MILLISECONDS concode_elem_sep String TOKEN_KEY concode_elem_sep String PERMISSIONS_KEY concode_elem_sep String EXPIRATION_DATE_KEY concode_elem_sep String DECLINED_PERMISSIONS_KEY concode_ele... | Date function ( Bundle arg0 ) { Validate . notNull ( arg0 , "srini_string" ) ; return getDate ( arg0 , LAST_REFRESH_DATE_KEY ) ; } |
3,097 | gets the value of the id property . concode_field_sep String id concode_elem_sep List<Object> content concode_field_sep List<Object> getContent concode_elem_sep void setId | String function ( ) { return id ; } |
3,098 | returns a range of all the shopping item prices . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end to com.liferay.portal.kernel.dao.orm.query... | java . util . List < com . liferay . shopping . model . ShoppingItemPrice > function ( int arg0 , int arg1 ) { return getService ( ) . getShoppingItemPrices ( arg0 , arg1 ) ; } |
3,099 | what kind of operation to perform concode_field_sep int DEFAULT_TIMEOUT concode_elem_sep Olingo2ApiName apiName concode_elem_sep String serviceUri concode_elem_sep int socketTimeout concode_elem_sep SSLContextParameters sslContextParameters concode_elem_sep String methodName concode_elem_sep Map<String,String> httpHead... | void function ( Olingo2ApiName arg0 ) { this . apiName = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.