idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
8,100
sets the userid value for this salespersonsplit . concode_field_sep java.lang.Integer split 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.Long userId concode_field_sep java.lang.Integer get...
void function ( java . lang . Long arg0 ) { this . userId = arg0 ; }
8,101
by default , elements are nameable if they have an eattribute named `` name '' . concode_field_sep Map nameFeatureMap concode_elem_sep Object NULL_TOKEN concode_field_sep boolean shouldOverrideCopyOperation concode_elem_sep void setName concode_elem_sep boolean canContain concode_elem_sep XMLResource getResource concod...
boolean function ( EObject arg0 ) { return getNameAttribute ( arg0 . eClass ( ) ) != null ; }
8,102
this is called when a read operation has timed out . to ensure that stale channels do not remain registered they are cleared out with this method and a close frame is sent if possible . concode_field_sep ByteCursor cursor concode_elem_sep Trace trace concode_elem_sep Reactor reactor concode_elem_sep Channel channel con...
void function ( ) { try { processor . close ( ) ; } catch ( Exception loc0 ) { trace . trace ( ERROR , loc0 ) ; channel . close ( ) ; } }
8,103
gets the value of the name property . concode_field_sep String name concode_elem_sep Boolean selfRegistration concode_elem_sep SUserType type concode_elem_sep String username concode_field_sep void setName concode_elem_sep void setUsername concode_elem_sep SUserType getType concode_elem_sep void setSelfRegistration con...
String function ( ) { return name ; }
8,104
set up an ha topology with a single ha nameservice . concode_field_sep boolean federation concode_elem_sep int httpPort concode_elem_sep String nnId concode_elem_sep List<NSConf> nameservices concode_elem_sep String id concode_elem_sep int ipcPort concode_elem_sep String clusterId concode_elem_sep List<NNConf> nns conc...
MiniDFSNNTopology function ( ) { return new MiniDFSNNTopology ( ) . addNameservice ( new MiniDFSNNTopology . NSConf ( "srini_string" ) . addNN ( new MiniDFSNNTopology . NNConf ( "srini_string" ) ) . addNN ( new MiniDFSNNTopology . NNConf ( "srini_string" ) ) ) ; }
8,105
initializes or re-initializes a query timing , also setting whether enabled . all previous stats are removed . concode_field_sep long duration concode_elem_sep String name concode_elem_sep long count concode_elem_sep long startTime concode_elem_sep Map<String,DurationCount> fullTimings concode_elem_sep long endTime con...
void function ( boolean arg0 ) { this . enabled = arg0 ; currentTimings . clear ( ) ; timings . clear ( ) ; fullTimings . clear ( ) ; }
8,106
returns the distance from this int3d to the specified point concode_field_sep int x concode_elem_sep int y concode_elem_sep int z concode_field_sep int getX concode_elem_sep String toCoordinates concode_elem_sep long manhattanDistance concode_elem_sep long manhattanDistance concode_elem_sep long manhattanDistance conco...
double function ( final double arg0 , final double arg1 , final double arg2 ) { final double loc0 = ( double ) this . x - arg0 ; final double loc1 = ( double ) this . y - arg1 ; final double loc2 = ( double ) this . z - arg2 ; return Math . sqrt ( loc0 * loc0 + loc1 * loc1 + loc2 * loc2 ) ; }
8,107
send a logger.level #info log message . concode_field_sep PlaceHolder placeHolder concode_field_sep void a concode_elem_sep void a concode_elem_sep void a concode_elem_sep void a concode_elem_sep void print concode_elem_sep void print concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_...
void function ( Throwable arg0 ) { LoggerManager . getLogger ( ) . i ( arg0 ) ; }
8,108
returns a random integer concode_field_sep java.util.Random rand concode_elem_sep long seed concode_field_sep String nextHexString concode_elem_sep String nextNumString concode_elem_sep boolean nextBoolean concode_elem_sep void setSeed concode_elem_sep long nextLong concode_elem_sep String nextString concode_elem_sep b...
int function ( ) { return rand . nextInt ( ) ; }
8,109
close the connection with the file concode_field_sep RandomAccessFile file concode_field_sep HeaderData extract concode_elem_sep void compress concode_elem_sep void connect
void function ( ) { file . close ( ) ; }
8,110
returns the key of this lock . concode_field_sep Lock _lock concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean getInheritable concode_elem_sep boolean isCache...
java . lang . String function ( ) { return _lock . getKey ( ) ; }
8,111
adds element at the starting of the linked list concode_field_sep Node head concode_elem_sep Node next concode_elem_sep int size concode_elem_sep Node tail concode_elem_sep Node prev concode_elem_sep E element concode_field_sep void addLast concode_elem_sep void iterateBackward concode_elem_sep int size concode_elem_se...
void function ( E arg0 ) { Node loc0 = new Node ( arg0 , head , null ) ; if ( head != null ) { head . prev = loc0 ; } head = loc0 ; if ( tail == null ) { tail = loc0 ; } size ++ ; System . out . println ( "srini_string" + arg0 ) ; }
8,112
a flag that indicates whether there are more items to return . if your results were truncated , you can make a subsequent pagination request using the marker request parameter to retrieve more items . note that iam might return fewer than the maxitems number of results even when there are more results available . we re...
Boolean function ( ) { return this . isTruncated ; }
8,113
sets new anchor . concode_field_sep String TYPE_ATTR concode_elem_sep boolean myWasRead concode_elem_sep String ORDER_ATTR concode_elem_sep float DEFAULT_WEIGHT concode_elem_sep ToolWindowType myInternalType concode_elem_sep String AUTOHIDE_ATTR concode_elem_sep String SIDE_TOOL_ATTR concode_elem_sep boolean mySplitMod...
void function ( @ NotNull final ToolWindowAnchor arg0 ) { myAnchor = arg0 ; }
8,114
calculate the value and standard deviation of this variable added to an input argument and calculate the resulting standard deviation , given the standard deviation of the input value . concode_field_sep double value concode_elem_sep double variance concode_field_sep DoublePlus div concode_elem_sep DoublePlus div conco...
DoublePlus function ( double arg0 , double arg1 ) { DoublePlus loc0 = new DoublePlus ( ) ; loc0 . value = value + arg0 ; loc0 . variance = Errors . var_A_plusMinus_B ( Math . sqrt ( variance ) , arg1 ) ; return loc0 ; }
8,115
method to set whether the requested resource is a versioned resource . concode_field_sep boolean loggedIn concode_elem_sep String[] validationProperties concode_elem_sep String pathWithVersion concode_elem_sep String[] lifecycleProperties concode_elem_sep String isWriteLocked concode_elem_sep String isDeleteLocked conc...
void function ( boolean arg0 ) { this . versionView = arg0 ; }
8,116
gets the value of the filterstatement property . concode_field_sep Statement filterStatement concode_field_sep void setFilterStatement
Statement function ( ) { return filterStatement ; }
8,117
private/internal method - has package level access solely for testing purposes . concode_field_sep IRecordProcessor recordProcessor concode_elem_sep ICheckpoint checkpoint concode_elem_sep KinesisDataFetcher dataFetcher concode_elem_sep StreamConfig streamConfig concode_elem_sep ExecutorService executorService concode_...
ConsumerStates . ShardConsumerState function ( ) { return currentState . getState ( ) ; }
8,118
simulate receiving the current packet from the given sender . concode_field_sep PacketContainer handle concode_field_sep PacketContainer getHandle concode_elem_sep void sendPacket concode_elem_sep void recievePacket
void function ( Player arg0 ) { try { ProtocolLibrary . getProtocolManager ( ) . recieveClientPacket ( arg0 , getHandle ( ) ) ; } catch ( Exception loc0 ) { throw new RuntimeException ( "srini_string" , loc0 ) ; } }
8,119
returns the distance of the origin of the pick to the specified picked obj . concode_field_sep MTComponent hitObj concode_elem_sep List<PickEntry> pickEntries concode_elem_sep float HIT_TOLERANCE concode_elem_sep int originalOrderIndex concode_elem_sep Vector3D intersectionPoint concode_elem_sep boolean isAlreadySorted...
float function ( MTComponent arg0 ) { for ( int loc0 = 0 ; loc0 < getPickList ( ) . size ( ) ; loc0 ++ ) { PickEntry loc1 = pickEntries . get ( loc0 ) ; if ( loc1 . hitObj . equals ( arg0 ) ) return loc1 . cameraDistance ; } return Float . MAX_VALUE ; }
8,120
creates devicedisplayinfo for a given context . concode_field_sep WindowManager mWinManager concode_field_sep int getBitsPerComponent concode_elem_sep double getRefreshRate concode_elem_sep DisplayMetrics getMetrics concode_elem_sep int getDisplayWidth concode_elem_sep int getDisplayHeight concode_elem_sep int getBitsP...
DeviceDisplayInfo function ( Context arg0 ) { return new DeviceDisplayInfo ( arg0 ) ; }
8,121
this method is called when the beginning of a matching xml element is encountered . the default implementation delegates to the deprecated method #begin attributes begin without the namespace and name parameters , to retain backwards compatibility . concode_field_sep String namespaceURI concode_elem_sep Digester digest...
void function ( String arg0 , String arg1 , Attributes arg2 ) { begin ( arg2 ) ; }
8,122
add a delete operation to the list of mutations concode_field_sep List<Mutation> mutations concode_elem_sep byte[] row concode_field_sep List<Mutation> getMutations concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep int compareTo concode_elem_sep byte[] getRow concode_elem_sep void internalA...
void function ( Delete arg0 ) { internalAdd ( arg0 ) ; }
8,123
gets the cscr count cc concode_field_sep int packet_len concode_elem_sep byte[] packet concode_field_sep long getSscr concode_elem_sep void setSscr concode_elem_sep boolean hasPadding concode_elem_sep void setExtension concode_elem_sep int getSequenceNumber concode_elem_sep byte[] getPacket concode_elem_sep boolean has...
int function ( ) { if ( packet_len >= 12 ) return ( packet [ 0 ] & 0x0F ) ; else return 0 ; }
8,124
used by ognl to generate bytecode concode_field_sep PlaceHolder placeHolder concode_field_sep Object getProperty concode_elem_sep String getSourceSetter concode_elem_sep void setProperty concode_elem_sep void setupContext
String function ( OgnlContext arg0 , Object arg1 , Object arg2 ) { return null ; }
8,125
sets the value of the arg0 property . concode_field_sep int arg0 concode_field_sep int getArg0
void function ( int arg1 ) { this . arg0 = arg1 ; }
8,126
get topic node by topic name concode_field_sep ConfigurationContext configurationContext concode_elem_sep String SessionCookie concode_elem_sep String backendUrl concode_elem_sep TopicManagerAdminServiceStub stub concode_field_sep void configureCookie concode_elem_sep void addTopic concode_elem_sep void removeTopic con...
TopicNode function ( String arg0 ) { TopicNode [ ] loc0 = stub . getAllTopics ( ) . getChildren ( ) ; if ( loc0 != null && loc0 . length > 0 ) { for ( TopicNode loc1 : loc0 ) { if ( loc1 . getTopicName ( ) . equalsIgnoreCase ( arg0 ) ) { return loc1 ; } } } return null ; }
8,127
records the given token range . concode_field_sep ITokenComparatorFactory fTextTokenComparatorFactory concode_elem_sep String fText concode_elem_sep boolean DEBUG concode_elem_sep int[] fStarts concode_elem_sep int fCount concode_elem_sep int[] fLengths concode_field_sep int getCommentStartTokenLength concode_elem_sep ...
void function ( int arg0 , int arg1 ) { fStarts [ fCount ] = arg0 ; fLengths [ fCount ] = arg1 ; fCount ++ ; if ( DEBUG ) System . out . println ( fText . substring ( arg0 , arg0 + arg1 ) ) ; }
8,128
get the integer value for this label concode_field_sep ClassLabel NEGATIVE concode_elem_sep ClassLabel POSITIVE concode_elem_sep int value concode_elem_sep ClassLabel UNKNOWN concode_field_sep placeholderType placeHolder
int function ( ) { return this . value ; }
8,129
gets the value of the status property . concode_field_sep String passID concode_elem_sep long serialVersionUID concode_elem_sep XMLGregorianCalendar effectiveDate concode_elem_sep String status concode_field_sep String getPassID concode_elem_sep void setEffectiveDate concode_elem_sep XMLGregorianCalendar getEffectiveDa...
String function ( ) { return status ; }
8,130
gets the value of the skugroup property . concode_field_sep FreightOptionsType freightOptions concode_elem_sep String skuGroup concode_elem_sep long serialVersionUID concode_elem_sep String sku concode_field_sep FreightOptionsType getFreightOptions concode_elem_sep void setSKUGroup concode_elem_sep void setFreightOptio...
String function ( ) { return skuGroup ; }
8,131
sets the client id which needs to be retained in a hidden form field concode_field_sep String redirectUri concode_elem_sep String audience concode_elem_sep String responseType concode_elem_sep String clientId concode_elem_sep String clientCodeChallenge concode_elem_sep Map<String,String> extraProperties concode_elem_se...
void function ( String arg0 ) { this . clientId = arg0 ; }
8,132
gets the value of the label property . concode_field_sep String entityBean concode_elem_sep List<Extension> extensions concode_elem_sep List<ContainerManagedEntity> entityBeans concode_elem_sep String description concode_elem_sep String id concode_elem_sep String href concode_elem_sep String label concode_elem_sep QNam...
String function ( ) { return label ; }
8,133
create an instance of forecast concode_field_sep QName _WeatherReturn_QNAME concode_elem_sep QName _ArrayOfWeatherDescription_QNAME concode_elem_sep QName _ForecastReturn_QNAME concode_field_sep WeatherDescription createWeatherDescription concode_elem_sep GetCityWeatherByZIPResponse createGetCityWeatherByZIPResponse co...
Forecast function ( ) { return new Forecast ( ) ; }
8,134
returns true if the http connection needs to tunnel one protocol over another , such as when using https through an http proxy . when doing so , we must avoid buffering bytes intended for the higher-level protocol . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route conc...
boolean function ( ) { return route . address . sslSocketFactory != null && route . proxy . type ( ) == Proxy . Type . HTTP ; }
8,135
returns the response for the http redirect that triggered this response , or null if this response was n't triggered by an automatic redirect . the body of the returned response should not be read because it has already been consumed by the redirecting client . concode_field_sep Request request concode_elem_sep RawHead...
Response function ( ) { return redirectedBy ; }
8,136
get the central global logging object . concode_field_sep String LOG_TO_FILE concode_elem_sep int DEBUG concode_elem_sep int MAX_STD_LEVEL concode_elem_sep int WARNING concode_elem_sep int ALERT concode_elem_sep String LOG_FILE concode_elem_sep int LOCAL concode_elem_sep int CRITICAL concode_elem_sep Logger centralLogg...
Logger function ( ) { return centralLogger ; }
8,137
gets the value of the value property . concode_field_sep String id concode_elem_sep String value concode_field_sep void setValue concode_elem_sep void setId concode_elem_sep String getId
String function ( ) { return value ; }
8,138
get the static instance of the singleton idlist based on bitmaps . concode_field_sep IdListCreator_Bitmap instance concode_field_sep void addAppearancesInSequence concode_elem_sep void clear concode_elem_sep IDList create concode_elem_sep void addAppearance
IdListCreator function ( ) { if ( instance == null ) { instance = new IdListCreator_Bitmap ( ) ; } return instance ; }
8,139
performs a dynamic query on the database and returns a range of the matching rows . 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.l...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 ) { return getService ( ) . arg0 ( arg0 , arg1 , arg2 ) ; }
8,140
creates project with this dependency . concode_field_sep TemporaryFolder temp concode_field_sep void buildsClasspath concode_elem_sep void hasToStringWithBrokenDependency concode_elem_sep DependencyGraphBuilder builder concode_elem_sep void comparesToAnotherClasspath
MavenProject function ( final Dependency arg0 ) { final MavenProject loc0 = Mockito . mock ( MavenProject . class ) ; Mockito . doReturn ( Arrays . asList ( "srini_string" ) ) . when ( loc0 ) . getTestClasspathElements ( ) ; Mockito . doReturn ( Arrays . asList ( arg0 ) ) . when ( loc0 ) . getDependencies ( ) ; return ...
8,141
schedules the next execution . concode_field_sep long lastWriteTime concode_elem_sep boolean ignore concode_elem_sep String collidingId concode_elem_sep Logger LOGGER concode_elem_sep Random random concode_elem_sep File home concode_field_sep void init concode_elem_sep void doIgnore concode_elem_sep String getId concod...
void function ( ) { long loc0 = 1000 * 60 ; Timer . get ( ) . schedule ( new SafeTimerTask ( ) { protected void doRun ( ) { execute ( ) ; } } , ( random . nextInt ( 30 ) + 60 ) * loc0 , TimeUnit . MILLISECONDS ) ; }
8,142
used to communicate a return object from a plugin tool to the main whitebox user-interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive...
void function ( Object arg0 ) { if ( myHost != null ) { myHost . returnData ( arg0 ) ; } }
8,143
method to trim the user message after it exceeds a maximum length the length cap is 150 characters concode_field_sep String color concode_elem_sep String DEFAULT_NICK concode_elem_sep String buttonImage concode_elem_sep Log log concode_elem_sep boolean minimized concode_elem_sep String autoLoad concode_elem_sep String ...
String function ( String arg0 ) { if ( arg0 . length ( ) > 150 ) { arg0 = ( arg0 . substring ( 0 , 150 ) + "srini_string" ) ; } return arg0 ; }
8,144
puts the last refresh date into 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 LAST_REFRESH_DATE_KEY concode_elem_sep Stri...
void function ( Bundle arg0 , long arg1 ) { Validate . notNull ( arg0 , "srini_string" ) ; arg0 . putLong ( LAST_REFRESH_DATE_KEY , arg1 ) ; }
8,145
sets the password . concode_field_sep String password concode_elem_sep String userName concode_field_sep String getPassword concode_elem_sep void setUserName concode_elem_sep String getUserName
void function ( String arg0 ) { this . password = arg0 ; }
8,146
to use the amazonsns as the client concode_field_sep Integer proxyPort concode_elem_sep String amazonSNSEndpoint concode_elem_sep String secretKey concode_elem_sep String accessKey concode_elem_sep String subject concode_elem_sep String topicName concode_elem_sep String messageStructure concode_elem_sep String proxyHos...
void function ( AmazonSNS arg0 ) { this . amazonSNSClient = arg0 ; }
8,147
returns the options used by this configuration concode_field_sep JsonProvider jsonProvider concode_elem_sep Collection<EvaluationListener> evaluationListener concode_elem_sep Collection<EvaluationListener> evaluationListeners concode_elem_sep EnumSet<Option> options concode_elem_sep Set<Option> options concode_elem_sep...
Set < Option > function ( ) { return options ; }
8,148
sets the value of the lastupdatedate property . concode_field_sep List<ShiftPeriodType> shiftPeriod concode_elem_sep Date lastUpdateDate concode_elem_sep String name concode_elem_sep String lastUpdateUser concode_elem_sep String createUser concode_elem_sep Integer objectId concode_elem_sep Date createDate concode_field...
void function ( Date arg0 ) { this . lastUpdateDate = arg0 ; }
8,149
number of items in the response . concode_field_sep Integer count concode_elem_sep Key lastEvaluatedKey concode_elem_sep java.util.List<java.util.Map<String,AttributeValue>> items concode_elem_sep Double consumedCapacityUnits concode_field_sep QueryResult withConsumedCapacityUnits concode_elem_sep QueryResult withItems...
Integer function ( ) { return count ; }
8,150
gets the result . concode_field_sep int totalwarningcount concode_elem_sep ArrayList<TestSuite> testSuites concode_elem_sep String language concode_elem_sep String screenresolution concode_elem_sep String type concode_elem_sep String result concode_elem_sep String duration concode_elem_sep int totalerrorcount concode_e...
String function ( ) { return result ; }
8,151
called when the renderer is enabled . the default implementation is a no-op . concode_field_sep long MATCH_LONGEST_US concode_elem_sep int STATE_UNPREPARED concode_elem_sep long UNKNOWN_TIME_US concode_elem_sep int STATE_PREPARED concode_elem_sep int STATE_ENABLED concode_elem_sep long END_OF_TRACK_US concode_elem_sep ...
void function ( int arg0 , long arg1 , boolean arg2 ) { }
8,152
test % throwablefull separator | concode_field_sep PlaceHolder placeHolder concode_field_sep void testSeparator concode_elem_sep void testDepthAndSeparator concode_elem_sep void testFullAnsiWithCustomStyle concode_elem_sep void testFullAnsi concode_elem_sep void testNoneAndSeparatorAndFilters concode_elem_sep void test...
void function ( ) { test ( new String [ ] { "srini_string" , "srini_string" } , Integer . MAX_VALUE , "srini_string" , null ) ; }
8,153
is the str a simple match pattern . concode_field_sep int UNICODE_CHARACTER_CLASS concode_field_sep boolean isMatchAllPattern concode_elem_sep boolean simpleMatch concode_elem_sep boolean simpleMatch concode_elem_sep boolean simpleMatch concode_elem_sep Pattern compile concode_elem_sep int flagsFromString concode_elem_...
boolean function ( String arg0 ) { return arg0 . indexOf ( '*' ) != - 1 ; }
8,154
calls java.lang.reflect.accessibleobject #setaccessible boolean and returns the same object concode_field_sep PlaceHolder placeHolder concode_field_sep void notNull
T function ( T arg0 ) { if ( ! arg0 . isAccessible ( ) ) { arg0 . setAccessible ( true ) ; } return arg0 ; }
8,155
removes the first block in the queue and resets its inq flag . concode_field_sep ArrayList<BasicBlock> q concode_field_sep boolean contains concode_elem_sep int size concode_elem_sep boolean isEmpty concode_elem_sep void clear concode_elem_sep void push
BasicBlock function ( ) { if ( q . size ( ) == 0 ) throw new NoSuchElementException ( "srini_string" ) ; BasicBlock loc0 = ( q . get ( 0 ) ) ; q . remove ( 0 ) ; loc0 . inq = false ; return loc0 ; }
8,156
make the given directory or throw a runtimeexception concode_field_sep Redwood.RedwoodChannels log concode_field_sep void copyFile concode_elem_sep void main concode_elem_sep boolean existsAndNonEmpty concode_elem_sep boolean deleteDir concode_elem_sep void checkNotExistsOrFail concode_elem_sep void gzipFile concode_el...
void function ( File arg0 ) { if ( ! arg0 . mkdirs ( ) ) { String loc0 = "srini_string" + arg0 ; log . info ( loc0 ) ; throw new RuntimeException ( loc0 ) ; } }
8,157
sets the date value for this wsversion . concode_field_sep java.lang.String date concode_elem_sep int major concode_elem_sep int minor concode_elem_sep java.lang.String build concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String description concode_elem_sep boolean __hashCodeCalc concode_elem...
void function ( java . lang . String arg0 ) { this . date = arg0 ; }
8,158
a concode_field_sep PlaceHolder placeHolder concode_field_sep void singleChar3 concode_elem_sep void singleChar2 concode_elem_sep void singleChar1 concode_elem_sep void emptyDocComment6 concode_elem_sep void emptyDocComment5 concode_elem_sep void emptyDocComment4 concode_elem_sep void emptyDocComment3 concode_elem_sep ...
void function ( ) { System . out . println ( "srini_string" ) ; System . out . println ( "srini_string" ) ; System . out . println ( "srini_string" ) ; }
8,159
gets the value of the creativetype property . concode_field_sep String previewUrl concode_elem_sep DateTime lastModifiedDateTime concode_elem_sep Size size concode_elem_sep List<BaseCustomFieldValue> customFieldValues concode_elem_sep String creativeType concode_elem_sep String name concode_elem_sep List<AppliedLabel> ...
String function ( ) { return creativeType ; }
8,160
returns a composed predicate that represents a short-circuiting logical and of this predicate and another . when evaluating the composed predicate , if this predicate is false , then the other predicate is not evaluated . any exceptions thrown during evaluation of either predicate are relayed to the caller ; if evaluat...
LongPredicate function ( LongPredicate arg0 ) { Objects . requireNonNull ( arg0 ) ; return ( value ) -> test ( value ) && arg0 . test ( value ) ; }
8,161
none concode_field_sep PlaceHolder placeHolder concode_field_sep scala.collection.Seq<T> toSeq concode_elem_sep scala.collection.Seq<T> toSeq concode_elem_sep T[] asArray concode_elem_sep scala.collection.Seq<T> emptySeq concode_elem_sep scala.reflect.ClassTag<C> classTag concode_elem_sep scala.collection.immutable.Map...
scala . Option < T > function ( ) { return ( scala . Option < T > ) scala . None$ . MODULE$ ; }
8,162
return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize concode_elem_sep com.google.api.ads.dfp.a...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
8,163
look up the index of an attribute by namespace name . concode_field_sep NamedNodeMap m_attrs concode_elem_sep int m_lastIndex concode_elem_sep DOM2Helper m_dh concode_field_sep String getValue concode_elem_sep String getValue concode_elem_sep String getValue concode_elem_sep String getLocalName concode_elem_sep String ...
int function ( String arg0 , String arg1 ) { for ( int loc0 = m_attrs . getLength ( ) - 1 ; loc0 >= 0 ; -- loc0 ) { Node loc1 = m_attrs . item ( loc0 ) ; String loc2 = loc1 . getNamespaceURI ( ) ; if ( ( loc2 == null ? arg0 == null : loc2 . equals ( arg0 ) ) && loc1 . getLocalName ( ) . equals ( arg1 ) ) return loc0 ; ...
8,164
create a litedevicedelegatingviewresolver delegating to the specified viewresolver and computing a sensible order for it . the specified viewresolver should implement ordered , consider using #createviewresolver viewresolver , int if that 's not the case . concode_field_sep DeviceDelegatingViewResolverProperties proper...
LiteDeviceDelegatingViewResolver function ( ViewResolver arg0 ) { if ( ! ( arg0 instanceof Ordered ) ) { throw new IllegalStateException ( "srini_string" + arg0 + "srini_string" + Ordered . class . getName ( ) ) ; } int loc0 = ( ( Ordered ) arg0 ) . getOrder ( ) ; return createViewResolver ( arg0 , adjustOrder ( loc0 )...
8,165
note : this class has a natural ordering that is inconsistent with equals . two gitversions are equal if their number versions are equal and if their types are equal . types are considered equal also if one of them is undefined . otherwise they are compared . concode_field_sep GitVersion NULL concode_elem_sep int myMaj...
boolean function ( final Object arg0 ) { if ( ! ( arg0 instanceof GitVersion ) ) { return false ; } GitVersion loc0 = ( GitVersion ) arg0 ; if ( compareTo ( loc0 ) != 0 ) { return false ; } if ( myType == Type . UNDEFINED || loc0 . myType == Type . UNDEFINED ) { return true ; } return myType == loc0 . myType ; }
8,166
sets the unit price of this sales record . concode_field_sep GregorianCalendar date concode_elem_sep int quantity concode_elem_sep double price concode_elem_sep String description concode_field_sep String getDateString concode_elem_sep int getQuantity concode_elem_sep void setQuantity concode_elem_sep void setDate conc...
void function ( double arg0 ) { this . price = arg0 ; }
8,167
returns the osgi service identifier . concode_field_sep PhoneService _service concode_field_sep com.liferay.portal.kernel.model.Phone getPhone concode_elem_sep com.liferay.portal.kernel.model.Phone addPhone concode_elem_sep java.util.List<com.liferay.portal.kernel.model.Phone> getPhones concode_elem_sep void deletePhon...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
8,168
get the gap between the border component and the parent component . concode_field_sep boolean adjustInsets concode_elem_sep float LEADING concode_elem_sep JComponent parent concode_elem_sep JComponent component concode_elem_sep Edge edge concode_elem_sep int addY concode_elem_sep float CENTER concode_elem_sep int gap c...
int function ( ) { return gap ; }
8,169
validates that a keystore with the given parameters exists and can be used for an ssl context . concode_field_sep InternalLogger logger concode_elem_sep HashMap<String,WebsockifySslContext> INSTANCE_MAP concode_elem_sep SSLContext _serverContext concode_elem_sep String PROTOCOL concode_field_sep WebsockifySslContext ge...
void function ( String arg0 , String arg1 , String arg2 ) { getSSLContext ( arg0 , arg1 , arg2 ) ; }
8,170
the operation id . concode_field_sep long serialVersionUID concode_elem_sep String oid concode_elem_sep Map<String,Object> params concode_field_sep OperationParameters set concode_elem_sep OperationParameters from concode_elem_sep Map<String,Object> map
String function ( ) { return oid ; }
8,171
create a list key , with the given name and metadata . concode_field_sep PlaceHolder placeHolder concode_field_sep Record $$ concode_elem_sep Record $$ concode_elem_sep Record $$ concode_elem_sep ValidRecordKey<T> $V concode_elem_sep ValidRecordKey<T> $V concode_elem_sep Key<T> $ concode_elem_sep Key<T> $ concode_elem_...
ListKey < T > function ( String arg0 , Record arg1 ) { return ListKey . named ( arg0 , arg1 ) ; }
8,172
parses the date value using the given date formats . concode_field_sep String PATTERN_RFC1123 concode_elem_sep Date DEFAULT_TWO_DIGIT_YEAR_START concode_elem_sep TimeZone GMT concode_elem_sep String[] DEFAULT_PATTERNS concode_elem_sep String PATTERN_RFC1036 concode_elem_sep ThreadLocal<SoftReference<Map<String,SimpleDa...
Date function ( final String arg0 , String [ ] arg1 ) { return parseDate ( arg0 , arg1 , null ) ; }
8,173
manually shifts the list index . if it reaches the end of the list , it will start over again at zero . concode_field_sep int index concode_elem_sep boolean auto concode_elem_sep Object[] list concode_field_sep boolean isAuto concode_elem_sep void setAuto concode_elem_sep String toString concode_elem_sep Object getCurr...
void function ( ) { index = ( index + 1 ) % list . length ; }
8,174
returns a constraint that matches this one on the width attributes , but has a fixed height constraint . concode_field_sep LengthConstraintType widthConstraintType concode_elem_sep Range widthRange concode_elem_sep double width concode_elem_sep RectangleConstraint NONE concode_elem_sep Range heightRange concode_elem_se...
RectangleConstraint function ( double arg0 ) { return new RectangleConstraint ( this . width , this . widthRange , this . widthConstraintType , arg0 , this . heightRange , LengthConstraintType . FIXED ) ; }
8,175
adds the d d m structure version to the database . also notifies the appropriate model listeners . concode_field_sep DDMStructureVersionLocalService _ddmStructureVersionLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep int getStructureVersionsCount concode_elem_sep void setWrappe...
com . liferay . dynamic . data . mapping . model . DDMStructureVersion function ( com . liferay . dynamic . data . mapping . model . DDMStructureVersion arg0 ) { return _ddmStructureVersionLocalService . addDDMStructureVersion ( arg0 ) ; }
8,176
verbose 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 . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , String . format ( arg1 , arg2 ) ) ; }
8,177
extracts the application id from the docbase . concode_field_sep Log log concode_field_sep void deserializeParameters concode_elem_sep void init concode_elem_sep boolean isParameterLocked concode_elem_sep String extractVersion concode_elem_sep void serviceGroupUpdate concode_elem_sep void moduleUpdate concode_elem_sep ...
String function ( String arg0 ) { String [ ] loc0 = arg0 . split ( "srini_string" ) ; String loc1 = null ; if ( loc0 . length > 0 ) { loc1 = loc0 [ 0 ] ; } else { loc1 = arg0 ; } return loc1 ; }
8,178
set the internal id for this stream concode_field_sep Phase outboundPhase concode_elem_sep Phase inboundPhase concode_elem_sep MessageFramer framer concode_elem_sep IdT id concode_elem_sep MessageDeframer deframer concode_field_sep void closeFramer concode_elem_sep boolean canReceive concode_elem_sep void receiveMessag...
void function ( IdT arg0 ) { Preconditions . checkState ( arg0 != null , "srini_string" ) ; this . id = arg0 ; }
8,179
extract the rejected value behind the given constraint violation , for exposure through the spring errors representation . concode_field_sep Set<String> internalAnnotationAttributes concode_elem_sep javax.validation.Validator targetValidator concode_elem_sep String resolvableString concode_field_sep String determineErr...
Object function ( String arg0 , ConstraintViolation < Object > arg1 , BindingResult arg2 ) { Object loc0 = arg1 . getInvalidValue ( ) ; if ( ! "srini_string" . equals ( arg0 ) && ( loc0 == arg1 . getLeafBean ( ) || ( arg0 . contains ( "srini_string" ) && ! arg0 . contains ( "srini_string" ) ) ) ) { loc0 = arg2 . getRaw...
8,180
sets the y position relative to the current position where the sprite will be drawn . if origin , rotation , or scale are changed , it is slightly more efficient to translate after those operations . concode_field_sep boolean dirty concode_elem_sep Rectangle bounds concode_elem_sep float[] vertices concode_elem_sep flo...
void function ( float arg0 ) { y += arg0 ; if ( dirty ) return ; final float [ ] loc0 = this . vertices ; for ( int loc1 = 1 ; loc1 < loc0 . length ; loc1 += Sprite . VERTEX_SIZE ) loc0 [ loc1 ] += arg0 ; }
8,181
checks that setting a bid on a subdivision node fails . concode_field_sep ExpectedException thrown concode_elem_sep ProductPartitionNode rootNode concode_field_sep void testAddChildToUnit_fails concode_elem_sep void testNavigation concode_elem_sep void testSetNegativeBid_fails concode_elem_sep void testSetBidOnUnit con...
void function ( ) { rootNode = rootNode . asSubdivision ( ) ; thrown . expect ( IllegalStateException . class ) ; rootNode . setBid ( 1L ) ; }
8,182
sets the font descriptor when embedding a font . concode_field_sep PDFontDescriptor fontDescriptor concode_elem_sep Matrix DEFAULT_FONT_MATRIX concode_elem_sep FontMetrics afmStandard14 concode_elem_sep COSDictionary dict concode_elem_sep List<Integer> widths concode_elem_sep CMap toUnicodeCMap concode_elem_sep float f...
void function ( PDFontDescriptor arg0 ) { this . fontDescriptor = arg0 ; }
8,183
set the path to the boundary of the region . if the region is empty , the path will also be empty . concode_field_sep SynchronizedPool<Region> sPool concode_elem_sep Parcelable.Creator<Region> CREATOR concode_elem_sep int MAX_POOL_SIZE concode_elem_sep long mNativeRegion concode_elem_sep int nativeInt concode_field_sep...
boolean function ( Path arg0 ) { return nativeGetBoundaryPath ( mNativeRegion , arg0 . ni ( ) ) ; }
8,184
tells whether this class supports the running in a gui concode_field_sep int oldColor concode_elem_sep Game game concode_elem_sep GameTimer myTimer concode_elem_sep GameInfo myInfo concode_elem_sep String name concode_elem_sep GameMainActivity myActivity concode_elem_sep Handler myHandler concode_elem_sep boolean gameO...
boolean function ( ) { return true ; }
8,185
convert the two-dimensional value into a one-dimensional scalar value . this is done by interleaving the bits of the values . each values must be between 0 including and the maximum value for the given number of dimensions getmaxvalue , excluding . to normalize values to this range , use the normalize function . concod...
long function ( int arg0 , int arg1 ) { if ( arg0 < 0 ) { throw new IllegalArgumentException ( 0 + "srini_string" + arg0 ) ; } if ( arg1 < 0 ) { throw new IllegalArgumentException ( 0 + "srini_string" + arg1 ) ; } long loc0 = 0 ; for ( int loc1 = 0 ; loc1 < 32 ; loc1 ++ ) { loc0 |= ( arg0 & ( 1L << loc1 ) ) << loc1 ; l...
8,186
returns the radius of a circumscribed sphere length of diagonal of rectangular prism/2 , that goes through at least four vertices concode_field_sep int[] lineLoop3 concode_elem_sep int[] lineLoop1 concode_elem_sep double height concode_elem_sep int[] lineLoop2 concode_elem_sep int[] lineLoop4 concode_elem_sep double le...
double function ( ) { return 0.5 * Math . sqrt ( width * width + height * height + length * length ) ; }
8,187
adds the given exiftag to its default ifd and returns an existing exiftag with the same tid or null if none exist . concode_field_sep byte[] USER_COMMENT_JIS concode_elem_sep byte[] USER_COMMENT_ASCII concode_elem_sep byte[] mThumbnail concode_elem_sep ByteOrder mByteOrder concode_elem_sep ArrayList<byte[]> mStripBytes...
ExifTag function ( ExifTag arg0 ) { if ( arg0 != null ) { int loc0 = arg0 . getIfd ( ) ; return addTag ( arg0 , loc0 ) ; } return null ; }
8,188
returns the zooid . concode_field_sep String color concode_elem_sep String name concode_elem_sep int animalId concode_elem_sep int age concode_elem_sep int zooId concode_field_sep void setName concode_elem_sep int getAge concode_elem_sep String getName concode_elem_sep void setColor concode_elem_sep void setZooId conco...
int function ( ) { return zooId ; }
8,189
insert the invalidpolicy into the given any . this method uses the invalidpolicyholder . concode_field_sep TypeCode typeCode concode_field_sep InvalidPolicy extract concode_elem_sep InvalidPolicy read concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
void function ( Any arg0 , InvalidPolicy arg1 ) { arg0 . insert_Streamable ( new InvalidPolicyHolder ( arg1 ) ) ; }
8,190
get minor version concode_field_sep String VERSION_PROP_FILE concode_elem_sep String BUILD_SCREVISION concode_elem_sep Logger LOGGER concode_elem_sep String MAJOR_VERSION concode_elem_sep String BUILD_REVISION concode_elem_sep Properties versionProps concode_elem_sep String BUILD_MINOR concode_elem_sep String BUILD_COD...
String function ( ) { return versionProps . getProperty ( BUILD_MINOR ) ; }
8,191
sets the severe loglevel . concode_field_sep int JDK14_LOG_LEVELS concode_elem_sep int LOG4J_LOG_LEVELS concode_elem_sep LogBrokerMonitor _logMonitor concode_elem_sep LogLevel _defaultLevel concode_field_sep void setDefaultLevel concode_elem_sep void log concode_elem_sep void log concode_elem_sep void log concode_elem_...
void function ( LogLevel arg0 ) { AdapterLogRecord . setSevereLevel ( arg0 ) ; }
8,192
execute on window close . will ask the user if the edited content should be saved . concode_field_sep CmsPopup m_dialog concode_elem_sep I_CmsContentEditorHandler m_editorHandler concode_elem_sep String CLOSING_METHOD_NAME concode_elem_sep boolean m_isNew concode_elem_sep String EDITOR_IFRAME_NAME concode_elem_sep CmsC...
void function ( ) { boolean loc0 = Window . confirm ( Messages . get ( ) . key ( Messages . GUI_EDITOR_SAVE_BEFORE_LEAVING_1 , m_editableData . getSitePath ( ) ) ) ; if ( loc0 ) { saveEditorContent ( ) ; } }
8,193
like #tostring but puts the output in the given buffer . concode_field_sep Logger LOG concode_elem_sep byte[] stop_key concode_elem_sep byte[] region_name concode_elem_sep RegionNameCmp REGION_NAME_CMP concode_elem_sep byte[] table concode_field_sep int compare concode_elem_sep int stringSizeHint concode_elem_sep Regio...
void function ( final StringBuilder arg0 ) { arg0 . append ( "srini_string" ) ; if ( table == EMPTY_ARRAY ) { arg0 . append ( "srini_string" ) ; } else { Bytes . pretty ( arg0 , table ) ; } arg0 . append ( "srini_string" ) ; Bytes . pretty ( arg0 , region_name ) ; arg0 . append ( "srini_string" ) ; Bytes . pretty ( arg...
8,194
writes a long as a typed bytes sequence . concode_field_sep ThreadLocal tbOut concode_elem_sep DataOutput out concode_field_sep void writeInt concode_elem_sep void writeVectorHeader concode_elem_sep void writeByte concode_elem_sep void writeListHeader concode_elem_sep void writeEndOfRecord concode_elem_sep void writeFl...
void function ( long arg0 ) { out . write ( Type . LONG . code ) ; out . writeLong ( arg0 ) ; }
8,195
firepropertychange concode_field_sep Object identifier concode_elem_sep int preferredWidth concode_elem_sep String CELL_RENDERER_PROPERTY concode_elem_sep boolean isResizable concode_elem_sep TableCellRenderer cellRenderer concode_elem_sep Object headerValue concode_elem_sep int resizedPostingDisableCount concode_elem_...
void function ( String arg0 , Object arg1 , Object arg2 ) { changeSupport . firePropertyChange ( arg0 , arg1 , arg2 ) ; }
8,196
sets the user id of this kaleo node . concode_field_sep KaleoNode _kaleoNode concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean getTerminal concode_elem_sep java.lang.String getName concode_elem_sep...
void function ( long arg0 ) { _kaleoNode . setUserId ( arg0 ) ; }
8,197
gets the node id concode_field_sep String node concode_elem_sep PubSubElementType element concode_field_sep String getNamespace concode_elem_sep String toXML concode_elem_sep String toString concode_elem_sep String getElementName
String function ( ) { return node ; }
8,198
returns true if this country is equivalent to the given object . this ignoresthe timestamp value and just checks for equivalence of countryiso and source values . returns false otherwise . concode_field_sep String mCountryIso concode_elem_sep int mHashCode concode_elem_sep int COUNTRY_SOURCE_NETWORK concode_elem_sep in...
boolean function ( Object arg0 ) { if ( arg0 == this ) { return true ; } if ( arg0 instanceof Country ) { Country loc0 = ( Country ) arg0 ; return mCountryIso . equals ( loc0 . getCountryIso ( ) ) && mSource == loc0 . getSource ( ) ; } return false ; }
8,199
set the bytestream that is to be written to . normally , a stream should be used rather than a reader , so that the transformer may use instructions contained in the transformation instructions to control the encoding . concode_field_sep String systemId concode_elem_sep String FEATURE concode_elem_sep OutputStream outp...
void function ( OutputStream arg0 ) { this . outputStream = arg0 ; }