idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
16,000
the number of instances that have succeeded in the deployment . concode_field_sep Long inProgress concode_elem_sep Long pending concode_elem_sep Long failed concode_elem_sep Long succeeded concode_elem_sep Long skipped concode_field_sep DeploymentOverview withFailed concode_elem_sep DeploymentOverview withPending conco...
void function ( Long arg0 ) { this . succeeded = arg0 ; }
16,001
returns true if this connection is idle . 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 spdyConnection == null || spdyConnection . isIdle ( ) ; }
16,002
get the retention time in minutes . concode_field_sep Class<? extends SpectrumImpl> gSpectrumClass concode_elem_sep double[] dataMassArray concode_elem_sep double[] dataIntensityArray concode_elem_sep Double retentionTimeInMinutes concode_elem_sep List<SpectrumPrecursor> precursors concode_elem_sep List<StringPairInter...
Double function ( ) { return this . retentionTimeInMinutes ; }
16,003
returns / mocks / #version / mockaxisservice appended to endpointserverafter removing any trailing forward slash from endpointserver . for example , given endpointserver of https://ads.google.com/ or https://ads.google.com , this method returns https://ads.google.com/mocks/v201408/mockaxisservice . concode_field_sep St...
String function ( String arg0 ) { String loc0 = StringUtils . removeEnd ( arg0 , "srini_string" ) ; return String . format ( "srini_string" , loc0 , VERSION ) ; }
16,004
stops this modbustcplistener . concode_field_sep InetAddress m_Address concode_elem_sep Logger logger concode_elem_sep int m_Port concode_elem_sep boolean m_Listening concode_elem_sep int c_RequestCounter concode_elem_sep Thread m_Listener concode_elem_sep int m_FloodProtection concode_elem_sep int REQUESTS_TOGC concod...
void function ( ) { m_Listening = false ; try { m_ServerSocket . close ( ) ; m_Listener . join ( ) ; } catch ( Exception loc0 ) { } }
16,005
sets the value of the length property . concode_field_sep BigInteger length concode_elem_sep BigInteger width concode_elem_sep LinearUnits units concode_elem_sep BigInteger height concode_field_sep BigInteger getHeight concode_elem_sep LinearUnits getUnits concode_elem_sep BigInteger getLength concode_elem_sep BigInteg...
void function ( BigInteger arg0 ) { this . length = arg0 ; }
16,006
use > = and < = comparison as a workaround for between explicit rhs version . concode_field_sep PlaceHolder placeHolder concode_field_sep void shouldNotUseBetweenSymmetricRhsMinMaxReversed concode_elem_sep void shouldGenerateIsFalsePredicate concode_elem_sep void shouldNotUseBetweenPredicateMinMaxReversed concode_elem_...
void function ( ) { SqlConstraints . setDisableBetweenPredicate ( true ) ; int loc0 = uniqueInt ( 10 ) ; int loc1 = loc0 + uniqueInt ( 10 ) ; String loc2 = between ( "srini_string" , "srini_string" , loc0 , loc1 ) ; String loc3 = "srini_string" + loc0 + "srini_string" + loc1 ; assertEquals ( loc3 , loc2 ) ; }
16,007
gets whether this instance has any local variable data to represent . concode_field_sep CatchBuilder unprocessedCatches concode_elem_sep OutputFinisher unprocessedInsns concode_elem_sep int positionInfo concode_elem_sep DalvInsnList insns concode_elem_sep CatchTable catches concode_elem_sep PositionList positions conco...
boolean function ( ) { return unprocessedInsns . hasAnyLocalInfo ( ) ; }
16,008
sends a packet of data to a remote host . concode_field_sep int IP_TTL concode_field_sep void nativeSendTo concode_elem_sep void receive concode_elem_sep void setOption concode_elem_sep Object getOption concode_elem_sep void joinGroup concode_elem_sep void leaveGroup concode_elem_sep void bind concode_elem_sep void nat...
void function ( PlainDatagramSocketImpl arg0 , DatagramPacket arg1 ) { nativeSendTo ( arg0 , arg1 . getAddress ( ) , arg1 . getPort ( ) , arg1 . getData ( ) , arg1 . getOffset ( ) , arg1 . getLength ( ) ) ; }
16,009
read a csv file into a dataset . use the correct constructor : dataset ds = new recordreaderdatasetiterator rr , batchsize ; returns the data as follows : =========== input =================== 12.89 , 22.70 , 19.34 , 20.47 , 16.94 , 6.08 , 15.87 , 8.42 , 10.71 , 26.18 which is not the way the framework likes its data ....
DataSet function ( String arg0 ) { int loc0 = 1000 ; RecordReader loc1 = new CSVRecordReader ( ) ; loc1 . initialize ( new FileSplit ( new File ( arg0 ) ) ) ; DataSetIterator loc2 = new RecordReaderDataSetIterator ( loc1 , loc0 , 1 , 1 , true ) ; return loc2 . next ( ) ; }
16,010
getter for the url of the content review icon associated with this item concode_field_sep String reviewReport concode_elem_sep int reviewScore concode_elem_sep String reviewIconURL concode_elem_sep ContentResource resource concode_elem_sep String reviewStatus concode_elem_sep String reviewError concode_field_sep void s...
String function ( ) { return reviewIconURL ; }
16,011
gets the day of the week based on the input . concode_field_sep PlaceHolder placeHolder concode_field_sep Table TableDays concode_elem_sep Table TableHours
String function ( LocalDateTime arg0 ) { return arg0 . getDayOfWeek ( ) . toString ( ) ; }
16,012
this is a setter . concode_field_sep String calendarEventId concode_elem_sep String calendarId concode_elem_sep String groupId concode_elem_sep String title concode_field_sep String getCalendarId concode_elem_sep void setGroupId concode_elem_sep String getTitle concode_elem_sep String getCalendarEventId concode_elem_se...
void function ( String arg0 ) { this . title = arg0 ; }
16,013
identifies that this generated class should be generated via the plain java mechanism . this flag only has meaning if the generated class is capable of plain java generation . concode_field_sep String fqcn concode_elem_sep boolean usePlainJava concode_elem_sep String generatedCode concode_elem_sep String PACKAGE_NAME c...
void function ( boolean arg0 ) { usePlainJava = arg0 ; }
16,014
register code to invoke when the async request completes . this method is called from a container thread when an async request completed for any reason including timeout and network error . this is useful for detecting that a deferredresult instance is no longer usable . concode_field_sep Runnable timeoutCallback conco...
void function ( Runnable arg0 ) { this . completionCallback = arg0 ; }
16,015
returns the empty map . 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 ( ) { return newHashMap ( ) ; }
16,016
returns the sql statement which retrieves the number of rows in the specified table . concode_field_sep String storageFields concode_field_sep String getDeleteLocksSql concode_elem_sep String getXmlSql concode_elem_sep String getXmlSql concode_elem_sep String getXmlSql concode_elem_sep String getXmlWhereSql concode_ele...
String function ( String arg0 , String arg1 ) { return "srini_string" + arg0 + "srini_string" + arg1 ; }
16,017
getter for the relative position of the screen concode_field_sep Texture play concode_elem_sep Game game concode_elem_sep int screenWidth concode_elem_sep Rectangle[] rectangles concode_elem_sep int screenHeight concode_elem_sep Rectangle back concode_elem_sep int yPos concode_elem_sep int xPos concode_elem_sep Texture...
Vector2 function ( int arg0 , int arg1 ) { return new Vector2 ( myGame . w * arg0 / screenWidth , myGame . h - myGame . h * arg1 / screenHeight ) ; }
16,018
change to a new state and notify all listeners . this is a private method that is only invoked from synchronized methods , which avoid having to clone the listener list . it does imply that the state change listener methods should be short lived , as they will delay the state transition . concode_field_sep STATE state ...
void function ( STATE arg0 ) { state = arg0 ; for ( ServiceStateChangeListener loc0 : listeners ) { loc0 . stateChanged ( this ) ; } }
16,019
returns the name of the write handler . concode_field_sep Class baseClass concode_elem_sep String readHandler concode_elem_sep String writeHandler concode_field_sep String getReadHandler concode_elem_sep Class getBaseClass
String function ( ) { return this . writeHandler ; }
16,020
sets similarindex concode_field_sep HashSet inArrows concode_elem_sep double endAt concode_elem_sep HashSet outArrows concode_elem_sep int similarIndex concode_elem_sep double startAt concode_elem_sep String dataElement concode_field_sep void setEndAt concode_elem_sep int getSimilarIndex concode_elem_sep String getData...
void function ( int arg0 ) { this . similarIndex = arg0 ; }
16,021
the frequency in which charges will recur . concode_field_sep MonetaryAmount cost concode_elem_sep String frequency concode_field_sep RecurringCharge withCost concode_elem_sep String getFrequency concode_elem_sep int hashCode concode_elem_sep void setCost concode_elem_sep boolean equals concode_elem_sep RecurringCharge...
RecurringCharge function ( RecurringChargeFrequency arg0 ) { setFrequency ( arg0 ) ; return this ; }
16,022
gets the price of this item in canadian dollars . concode_field_sep int odometer concode_elem_sep int price concode_elem_sep String description concode_elem_sep String model concode_elem_sep InventoryItem[] carInventory concode_elem_sep int stock concode_field_sep int getOdometer concode_elem_sep String getModel concod...
int function ( ) { return price ; }
16,023
returns the pivot/centre of the node 's ball . concode_field_sep int m_End concode_elem_sep BallNode m_Right concode_elem_sep double m_Radius concode_elem_sep long serialVersionUID concode_elem_sep int m_NodeNumber concode_elem_sep int m_Start concode_elem_sep double m_SplitVal concode_elem_sep Instance m_Pivot concode...
Instance function ( ) { return m_Pivot ; }
16,024
the wire-level request that initiated this http response . this is usually not the same request instance provided to the http client : it may be transformed by the http client . for example , the client may have added its own content-encoding header to enableresponse compression . it may be the request generated in res...
Request function ( ) { return request ; }
16,025
returns an immutable range map mapping a single range to a single value . concode_field_sep long serialVersionUID concode_elem_sep ImmutableRangeMap<Comparable<?>,Object> EMPTY concode_elem_sep ImmutableList<Range<K>> ranges concode_elem_sep ImmutableList<V> values concode_elem_sep RangeMap<K,V> rangeMap concode_elem_s...
ImmutableRangeMap < K , V > function ( Range < K > arg0 , V arg1 ) { return new ImmutableRangeMap < K , V > ( ImmutableList . of ( arg0 ) , ImmutableList . of ( arg1 ) ) ; }
16,026
returns the value at the 95th percentile in the distribution . concode_field_sep PlaceHolder placeHolder concode_field_sep double get99thPercentile concode_elem_sep long[] getValues concode_elem_sep double get98thPercentile concode_elem_sep long getMax concode_elem_sep double get999thPercentile concode_elem_sep double ...
double function ( ) { return getValue ( 0.95 ) ; }
16,027
print a formatted string to standard output using the specified locale , format string , and arguments , and flush standard output . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void pr...
void function ( Locale arg0 , String arg1 , Object ... arg2 ) { out . printf ( arg0 , arg1 , arg2 ) ; out . flush ( ) ; }
16,028
reads a count corresponding to a serialized map , multiset , or multimap . it returns the size of a map serialized by #writemap map , objectoutputstream , the number of distinct elements in a multiset serialized by #writemultiset multiset , objectoutputstream , or the number of distinct keys in a multimap serialized by...
int function ( ObjectInputStream arg0 ) { return arg0 . readInt ( ) ; }
16,029
gets an `` inline '' string portion for tohuman , if available . this is the portion that appears after the rop opcode concode_field_sep RegisterSpec result concode_elem_sep RegisterSpecList sources concode_elem_sep SourcePosition position concode_elem_sep Rop opcode concode_field_sep String toHumanWithInline concode_e...
String function ( ) { return null ; }
16,030
getter method for status concode_field_sep String subSubCategoryName concode_elem_sep String callSource concode_elem_sep String ticketNO concode_elem_sep String avgTime concode_elem_sep String circle concode_elem_sep String categoryName concode_elem_sep String subCategoryName concode_elem_sep String caseType concode_el...
String function ( ) { return status ; }
16,031
set the classifier concode_field_sep String artifact concode_elem_sep String ext concode_elem_sep String module concode_elem_sep String classifier concode_elem_sep String organisation concode_elem_sep String target concode_elem_sep String revision concode_field_sep String getModule concode_elem_sep void setArtifact con...
void function ( String arg0 ) { if ( arg0 != null && ! arg0 . trim ( ) . equals ( "srini_string" ) ) classifier = arg0 ; }
16,032
create an instance of disk concode_field_sep QName _Manufacturer_QNAME concode_elem_sep QName _Url_QNAME concode_elem_sep QName _Email_QNAME concode_elem_sep QName _Date_QNAME concode_elem_sep QName _Category_QNAME concode_elem_sep QName _Comment_QNAME concode_elem_sep QName _Version_QNAME concode_elem_sep QName _Homep...
Disk function ( ) { return new Disk ( ) ; }
16,033
return server connection status concode_field_sep Proxy proxy concode_elem_sep int DEFAULT_CONNECT_TIMEOUT concode_elem_sep int connectTimeout concode_elem_sep int DEFAULT_READ_TIMEOUT concode_elem_sep InputStream serverInput concode_elem_sep int defaultSoTimeout concode_elem_sep int defaultConnectTimeout concode_elem_...
boolean function ( ) { return serverSocket != null ; }
16,034
returns true if this validation result contains errors . concode_field_sep String NESTED_PATH_SEPARATOR concode_elem_sep String NESTED_PATH_INDEX_SUFFIX concode_elem_sep String NESTED_PATH_INDEX_PREFIX concode_elem_sep List<ValidationError> errors concode_elem_sep Deque<String> nestedPathStack concode_field_sep void ad...
boolean function ( ) { return ! this . errors . isEmpty ( ) ; }
16,035
add basic authentication to a request object concode_field_sep RequestExecutor JAVA_NET concode_elem_sep Logger log concode_elem_sep RequestExecutor APACHE concode_elem_sep int DEFAULT_TIMEOUT concode_field_sep OAuthTokens getAccessTokens concode_elem_sep Request addAutoRetry concode_elem_sep Request addOAuth concode_e...
Request function ( Request arg0 , String arg1 , String arg2 ) { String loc0 = arg1 + "srini_string" + arg2 ; String loc1 = "srini_string" + Encoder . base64Encode ( loc0 ) ; arg0 . beforeExec ( req -> arg0 . getHeaders ( ) . loc1 ( loc1 ) ) ; return arg0 ; }
16,036
creates a writer callback that writes some byte array to the target stream . this writer can be used many times . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
WriterCallback function ( final byte [ ] arg0 ) { return new WriterCallback ( ) { @ Override public void write ( OutputStream arg1 ) throws IOException { arg1 . write ( arg0 ) ; } } ; }
16,037
last measured latency in milliseconds or zero if unknown concode_field_sep long lastUnicastFrame concode_elem_sep long address concode_elem_sep int versionRev concode_elem_sep PeerRole role concode_elem_sep PeerPhysicalPath[] paths concode_elem_sep long lastMulticastFrame concode_elem_sep int latency concode_elem_sep i...
int function ( ) { return latency ; }
16,038
gets the component id of the commandbutton , in the map ui , corresponding to this time zone . concode_field_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep boolean isRelevantComponentId concode_elem_sep String getId
String function ( ) { return mapCommandButtonId ; }
16,039
determine a cache key for the given method and target class . must not produce same key for overloaded methods . must produce same key for different instances of the same method . concode_field_sep TransactionAttribute NULL_TRANSACTION_ATTRIBUTE concode_elem_sep Method method concode_elem_sep Log logger concode_elem_se...
Object function ( Method arg0 , Class < ? > arg1 ) { return new DefaultCacheKey ( arg0 , arg1 ) ; }
16,040
encodes the image via the etc1 compression scheme . only format #rgb565 and format #rgb888 are supported . addsa pkm header in front of the compressed image data . concode_field_sep ByteBuffer compressedData concode_elem_sep int dataOffset concode_elem_sep int width concode_elem_sep int PKM_HEADER_SIZE concode_elem_sep...
ETC1Data function ( Pixmap arg0 ) { int loc0 = getPixelSize ( arg0 . getFormat ( ) ) ; ByteBuffer loc1 = encodeImagePKM ( arg0 . getPixels ( ) , 0 , arg0 . getWidth ( ) , arg0 . getHeight ( ) , loc0 ) ; BufferUtils . newUnsafeByteBuffer ( loc1 ) ; return new ETC1Data ( arg0 . getWidth ( ) , arg0 . getHeight ( ) , loc1 ...
16,041
returns the type of this system event . concode_field_sep SystemEvent _systemEvent concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep bo...
int function ( ) { return _systemEvent . getType ( ) ; }
16,042
called when the shard routing has changed state . concode_field_sep PlaceHolder placeHolder concode_field_sep void afterIndexCreated concode_elem_sep void beforeIndexShardClosed concode_elem_sep void beforeIndexDeleted concode_elem_sep void beforeIndexClosed concode_elem_sep void beforeIndexShardCreated concode_elem_se...
void function ( IndexShard arg0 , @ Nullable ShardRouting arg1 , ShardRouting arg2 ) { }
16,043
print a double value right-aligned in the column . concode_field_sep int m_nLineSize concode_elem_sep PrintStream m_aPS concode_field_sep void println concode_elem_sep void underline
void function ( final double arg0 , final int arg1 ) { print ( Double . toString ( arg0 ) , arg1 ) ; }
16,044
register the given bean definition with a generated name , unique within the given bean factory . concode_field_sep String GENERATED_BEAN_NAME_SEPARATOR concode_field_sep void registerBeanDefinition concode_elem_sep String generateBeanName concode_elem_sep String generateBeanName concode_elem_sep AbstractBeanDefinition...
String function ( AbstractBeanDefinition arg0 , BeanDefinitionRegistry arg1 ) { String loc0 = generateBeanName ( arg0 , arg1 , false ) ; arg1 . registerBeanDefinition ( loc0 , arg0 ) ; return loc0 ; }
16,045
descriptor for a reactive type that must produce 1 value to complete . concode_field_sep boolean noValue concode_elem_sep boolean supportsEmpty concode_elem_sep Class<?> reactiveType concode_elem_sep Supplier<?> emptyValueSupplier concode_elem_sep boolean multiValue concode_field_sep ReactiveTypeDescriptor noValue conc...
ReactiveTypeDescriptor function ( Class < ? > arg0 ) { return new ReactiveTypeDescriptor ( arg0 , null , false , false , false ) ; }
16,046
get a typecode for class c . an object o of this class is needed in order to get at nested types , as e.g. in array of arrays of arrays concode_field_sep Map cache concode_field_sep placeholderType placeHolder
org . omg . CORBA . TypeCode function ( Class arg0 , java . lang . Object arg1 , Logger arg2 ) { return getTypeCode ( arg0 , null , arg1 , null , arg2 ) ; }
16,047
define valor do atributo nome . concode_field_sep Integer idPerfilAcessoGrupo concode_elem_sep String sigla concode_elem_sep ArrayList<PermissoesFluxoDTO> permissoesFluxos concode_elem_sep Date dataFim concode_elem_sep String permiteSuspensaoReativacao concode_elem_sep Integer idTipoFluxo concode_elem_sep String empreg...
void function ( String arg0 ) { this . nome = arg0 ; }
16,048
register an application with its secret . executors need to first authenticate themselves with the same secret before fetching shuffle files written by other executors in this application . concode_field_sep ConcurrentHashMap<String,String> shuffleSecretMap concode_elem_sep Logger logger concode_elem_sep String SPARK_S...
void function ( String arg0 , String arg1 ) { if ( ! shuffleSecretMap . contains ( arg0 ) ) { shuffleSecretMap . put ( arg0 , arg1 ) ; logger . info ( "srini_string" , arg0 ) ; } else { logger . debug ( "srini_string" , arg0 ) ; } }
16,049
unique id that is identifying the request and then the filetransfer if the request has been accepted . concode_field_sep Date date concode_elem_sep String fileName concode_elem_sep Contact sender concode_elem_sep long fileSize concode_elem_sep ProtocolProviderServiceYahooImpl yahooProvider concode_elem_sep String id co...
String function ( ) { return id ; }
16,050
returns the status id of this status . concode_field_sep Status _status concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setStatusId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean g...
long function ( ) { return _status . getStatusId ( ) ; }
16,051
nexttoken string is returned when calling listplatformapplications action if additional records are available after the first page results . concode_field_sep com.amazonaws.internal.SdkInternalList<PlatformApplication> platformApplications concode_elem_sep String nextToken concode_field_sep ListPlatformApplicationsResu...
String function ( ) { return this . nextToken ; }
16,052
tests whether given certificate contains public key or not . concode_field_sep int BUF_SIZE concode_field_sep Set<String> getSignedFiles concode_elem_sep boolean verify0 concode_elem_sep boolean verify0 concode_elem_sep boolean verifyEntry concode_elem_sep boolean verify concode_elem_sep boolean verify concode_elem_sep...
boolean function ( PublicKey arg0 , Certificate [ ] arg1 ) { if ( arg0 == null || arg1 == null ) return false ; for ( Certificate loc0 : arg1 ) { if ( loc0 . getPublicKey ( ) . equals ( arg0 ) ) return true ; } return false ; }
16,053
sets the value of the arcrole property . concode_field_sep String displayLabel concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep String type concode_elem_sep String title concode_elem_sep String script concode_elem_sep String autho...
void function ( String arg0 ) { this . arcrole = arg0 ; }
16,054
invalid scenario : mode and url must not be empty concode_field_sep String mode concode_elem_sep HubValidator hubValidator concode_elem_sep String topic concode_elem_sep String callbackUrl concode_elem_sep String secret concode_elem_sep String url concode_elem_sep String leaseSeconds concode_field_sep void validateSubs...
void function ( ) { mode = "srini_string" ; url = "srini_string" ; List < String > loc0 = hubValidator . validatePing ( mode , url ) ; assertNotNull ( loc0 ) ; assertEquals ( 2 , loc0 . size ( ) ) ; assertEquals ( "srini_string" , loc0 . get ( 0 ) ) ; assertEquals ( "srini_string" , loc0 . get ( 1 ) ) ; }
16,055
encode from geohash string to the geohash based long format lon/lat interleaved , 4 least significant bits = level concode_field_sep int PRECISION concode_elem_sep short MORTON_OFFSET concode_elem_sep String BASE_32_STRING concode_elem_sep char[] BASE_32 concode_field_sep long fromMorton concode_elem_sep char encode co...
long function ( final String arg0 ) { int loc0 = arg0 . length ( ) - 1 ; long loc1 ; long loc2 = 0L ; for ( char loc3 : arg0 . toCharArray ( ) ) { loc1 = ( long ) ( BASE_32_STRING . indexOf ( loc3 ) ) ; loc2 |= ( loc1 << ( loc0 -- * 5 ) ) ; } return ( loc2 << 4 ) | arg0 . length ( ) ; }
16,056
return the type declared by the underlying field or method/constructor parameter , indicating the injection type . concode_field_sep Field field concode_elem_sep MethodParameter methodParameter concode_elem_sep Annotation[] fieldAnnotations concode_field_sep MethodParameter getMethodParameter concode_elem_sep int hashC...
Class < ? > function ( ) { return ( this . field != null ? this . field . getType ( ) : this . methodParameter . getParameterType ( ) ) ; }
16,057
relay state sent to the idp as part of the authentication request . value will be returned by idp and made available in the samlcredential after successful authentication . concode_field_sep Set<String> allowedIDPs concode_elem_sep AuthnContextComparisonTypeEnumeration authnContextComparison concode_elem_sep String bin...
void function ( String arg0 ) { this . relayState = arg0 ; }
16,058
sets the value of the format property . concode_field_sep Layout layout concode_elem_sep Boolean sendOnFinish concode_elem_sep String mapping concode_elem_sep List<Address> address concode_elem_sep BigDecimal min concode_elem_sep String styling concode_elem_sep String flavour concode_elem_sep BigDecimal max concode_ele...
void function ( String arg0 ) { this . format = arg0 ; }
16,059
gets the value of the position 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 position property . for example , to add a new item , do ...
List < Position > function ( ) { if ( position == null ) { position = new ArrayList < Position > ( ) ; } return this . position ; }
16,060
only used for testing purposes . concode_field_sep Random rand concode_elem_sep int mNumHolders concode_elem_sep String TAG concode_elem_sep int mMaxPoolSize concode_elem_sep SQLiteDatabase mParentDbObj concode_elem_sep HashSet<Long> mHolderIds concode_elem_sep boolean mFreeBusyFlag concode_elem_sep boolean BUSY concod...
boolean function ( SQLiteDatabase arg0 ) { return mPool . get ( arg0 . mConnectionNum - 1 ) . isFree ( ) ; }
16,061
returns the position of the specified element . concode_field_sep int[] sizes concode_field_sep void setSizes concode_elem_sep int getSize concode_elem_sep void insertEntries concode_elem_sep void setSize concode_elem_sep int getIndex concode_elem_sep void removeEntries concode_elem_sep int[] getSizes
int function ( int arg0 ) { int loc0 ; int loc1 ; loc0 = 0 ; for ( loc1 = 0 ; loc1 < arg0 ; loc1 ++ ) loc0 += sizes [ loc1 ] ; return loc0 ; }
16,062
if sever damage is defined in the critical , return that ; otherwise return an emtpy maybe . concode_field_sep boolean randomDamageDefined concode_elem_sep Wound severType concode_elem_sep int randomDamage concode_elem_sep int chance concode_elem_sep int fixedDamage concode_elem_sep int hitsRequired concode_elem_sep bo...
Wound function ( ) { return severType ; }
16,063
creates a new specific fsdirectory instance concode_field_sep PlaceHolder placeHolder concode_field_sep Class<? extends FSDirectory> loadFSDirectoryClass concode_elem_sep Class<? extends Directory> loadDirectoryClass concode_elem_sep String adjustDirectoryClassName
FSDirectory function ( Class < ? extends FSDirectory > arg0 , Path arg1 , LockFactory arg2 ) { Constructor < ? extends FSDirectory > loc0 = arg0 . getConstructor ( Path . class , LockFactory . class ) ; return loc0 . newInstance ( arg1 , arg2 ) ; }
16,064
removes the specified archive from the archive registry . concode_field_sep StringBuilder xmlConfig concode_elem_sep ArchiveRegistry archives concode_elem_sep ComponentRegistry components concode_elem_sep boolean enableStatsOutput concode_elem_sep boolean enableZipCompression concode_elem_sep boolean enable7Zip concode...
void function ( final int arg0 ) { this . archives . removeArchive ( arg0 ) ; }
16,065
increase the balance by the given amount . concode_field_sep long balance concode_elem_sep int id concode_field_sep long balance concode_elem_sep int id concode_elem_sep void withdraw
void function ( long arg0 ) { if ( arg0 <= 0 ) throw new IllegalArgumentException ( ) ; balance += arg0 ; }
16,066
tests the createfileoptions #defaults method . concode_field_sep PlaceHolder placeHolder concode_field_sep void fields concode_elem_sep void equalsTest
void function ( ) { DeleteOptions loc0 = DeleteOptions . defaults ( ) ; Assert . assertFalse ( loc0 . isRecursive ( ) ) ; Assert . assertFalse ( loc0 . isAlluxioOnly ( ) ) ; }
16,067
returns the bundle context of this bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep void start
BundleContext function ( ) { return context ; }
16,068
sets the response cache to be used to read and write cached responses . if unset , the responsecache #getdefault system-wide default response cache will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connectionPool concode_e...
OkHttpClient function ( ResponseCache arg0 ) { this . responseCache = arg0 ; return this ; }
16,069
appends compilation problems to summary message if object is an array of compilationproblem separated with backspaces concode_field_sep String DEFAULT_SEPARATOR concode_field_sep StringBuilder appendProblems concode_elem_sep String fillSummary
String function ( Object arg0 , String arg1 ) { return getProblemMessage ( arg0 , arg1 , DEFAULT_SEPARATOR ) ; }
16,070
test of tostring method , of class defaultclock . concode_field_sep Clock clock2 concode_elem_sep Clock clock1 concode_field_sep void testGetDateBasis concode_elem_sep void testUtcTrans concode_elem_sep void testSetUtcReference concode_elem_sep void testGetReferenceTime concode_elem_sep void testClkTrans concode_elem_s...
void function ( ) { String loc0 = clock1 . toString ( ) ; assertFalse ( clock2 . toString ( ) . equals ( loc0 ) ) ; }
16,071
decompress the provided bytesreference . concode_field_sep Compressor[] compressors concode_elem_sep Compressor defaultCompressor concode_field_sep Compressor defaultCompressor concode_elem_sep boolean isAncient concode_elem_sep void setDefaultCompressor concode_elem_sep boolean isCompressed concode_elem_sep boolean is...
BytesReference function ( BytesReference arg0 ) { Compressor loc0 = loc0 ( arg0 ) ; if ( loc0 == null ) { throw new NotCompressedException ( ) ; } return uncompress ( arg0 , loc0 ) ; }
16,072
returns the session that this connection belongs to . concode_field_sep Logger Log concode_elem_sep boolean isClosed concode_elem_sep X509Certificate[] sslCertificates concode_elem_sep long requestId concode_elem_sep HttpSession session concode_elem_sep boolean isSecure concode_elem_sep String body concode_elem_sep Con...
HttpSession function ( ) { return session ; }
16,073
create an instance of periodicpaymenttriggertype concode_field_sep PlaceHolder placeHolder concode_field_sep GenericPromotionDefinitionType createGenericPromotionDefinitionType concode_elem_sep AwardType.RecurringBonus createAwardTypeRecurringBonus concode_elem_sep AwardType.PeriodicPaymentDiscount createAwardTypePerio...
PeriodicPaymentTriggerType function ( ) { return new PeriodicPaymentTriggerType ( ) ; }
16,074
`` sys_idx _ '' is used for auto-indexes on referring fk columns or unique constraints . `` sys_pk _ '' is for the primary key indexes . `` sys_ref _ '' is for fk constraints in referenced tables concode_field_sep HsqlNameManager staticManager concode_elem_sep String statementName concode_elem_sep int sysNumber concode...
boolean function ( String arg0 ) { return ( arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) || arg0 . startsWith ( "srini_string" ) ) ; }
16,075
print time zone concode_field_sep char zone concode_elem_sep char ZERO_ZONE concode_elem_sep int HOURS_PER_DAY concode_field_sep int getHourseZone concode_elem_sep String exportToString concode_elem_sep Object clone concode_elem_sep int compareTo concode_elem_sep java.util.TimeZone getUtilTimeZone
String function ( ) { return getUtilTimeZone ( ) . getID ( ) ; }
16,076
returns a new movie in that all tracks have the timescale 10000000 . cts & dts are modified in a way that even with more than one framerate the fragments exactly begin at the same time . concode_field_sep Logger LOG concode_elem_sep ManifestWriter manifestWriter concode_elem_sep boolean debugOutput concode_elem_sep Fil...
Movie function ( Movie arg0 ) { Movie loc0 = new Movie ( ) ; for ( Track loc1 : arg0 . getTracks ( ) ) { loc0 . addTrack ( new ChangeTimeScaleTrack ( loc1 , timeScale , ismvBuilder . getFragmentIntersectionFinder ( ) . sampleNumbers ( loc1 , arg0 ) ) ) ; } return loc0 ; }
16,077
handle the result if the user cancelled the dialog . concode_field_sep boolean mResult concode_elem_sep boolean mReady concode_elem_sep boolean mTriedToNotifyBeforeReady concode_elem_sep boolean mDefaultValue concode_elem_sep CallbackProxy mProxy concode_field_sep void confirm concode_elem_sep void setReady concode_ele...
void function ( ) { mResult = false ; wakeUp ( ) ; }
16,078
indicates if the value represented by the given key represents an unsupported action . concode_field_sep Object DEFAULT_ACTION concode_elem_sep IAction UNSUPPORTED_ACTION concode_elem_sep Map map concode_field_sep Set entrySet concode_elem_sep boolean containsKey concode_elem_sep Collection values concode_elem_sep void...
boolean function ( Object arg0 ) { return ( get ( arg0 ) == UNSUPPORTED_ACTION ) ; }
16,079
returns the mouse bindings bound to the command specified by #getcommand . when any of these are executed , the command will be executed . concode_field_sep int[] buttons concode_elem_sep String PITCH concode_elem_sep String YAW concode_elem_sep MouseDirection[] directions concode_elem_sep Keyboard[] keys concode_elem_...
int [ ] function ( ) { return buttons ; }
16,080
gets the value of the appname property . concode_field_sep String appName concode_elem_sep String subscriberID concode_elem_sep String callDetailID concode_field_sep void setSubscriberID concode_elem_sep void setAppName concode_elem_sep String getSubscriberID concode_elem_sep String getCallDetailID concode_elem_sep voi...
String function ( ) { return appName ; }
16,081
if there are more than one error list them out . \ nfor example , list out validation errors by each field . \ n concode_field_sep String description concode_elem_sep Long code concode_elem_sep String moreInfo concode_elem_sep String message concode_elem_sep List<ErrorListItemDTO> error concode_field_sep String getMore...
List < ErrorListItemDTO > function ( ) { return error ; }
16,082
clear the counterexample . concode_field_sep prism.Model model concode_elem_sep ArrayList<State> states concode_field_sep int getChoice concode_elem_sep int getModuleOrActionIndex concode_elem_sep long loopStart concode_elem_sep double getTime concode_elem_sep String getModuleOrAction concode_elem_sep boolean hasTimeIn...
void function ( ) { states = null ; }
16,083
prepare the shutdown , disallowing new requests . concode_field_sep CountDownLatch latch concode_elem_sep AtomicIntegerFieldUpdater<ManagementHttpRequestProcessor> stateUpdater concode_elem_sep List<ShutdownListener> listeners concode_elem_sep int state concode_elem_sep int CLOSED concode_field_sep boolean beginRequest...
void function ( ) { int loc0 , loc1 ; do { loc0 = state ; if ( ( loc0 & CLOSED ) != 0 ) { return ; } loc1 = loc0 | CLOSED ; } while ( ! stateUpdater . compareAndSet ( this , loc0 , loc1 ) ) ; if ( loc1 == CLOSED ) { handleCompleted ( ) ; } }
16,084
decodes a vp9 encoded frame and converts it to rgb565 . concode_field_sep int OUTPUT_MODE_YUV concode_elem_sep int OUTPUT_MODE_RGB concode_elem_sep boolean IS_AVAILABLE concode_elem_sep long vpxDecContext concode_elem_sep int OUTPUT_MODE_UNKNOWN concode_field_sep boolean isLibvpxAvailable concode_elem_sep long vpxInit ...
int function ( ByteBuffer arg0 , int arg1 , VpxOutputBuffer arg2 ) { if ( vpxDecode ( vpxDecContext , arg0 , arg1 ) != 0 ) { throw new VpxDecoderException ( "srini_string" + vpxGetErrorMessage ( vpxDecContext ) ) ; } return vpxGetFrame ( vpxDecContext , arg2 ) ; }
16,085
pre-load shared prefs to avoid being blocked on the disk access async task in the future . concode_field_sep int MAX_WEBAPP_ACTIVITIES_EVER concode_elem_sep String PREF_NUM_SAVED_ENTRIES[] concode_elem_sep List<ActivityAssigner> sInstances concode_elem_sep String TAG concode_elem_sep Object LOCK concode_elem_sep int mA...
void function ( Context arg0 ) { for ( int loc0 = 0 ; loc0 < NAMESPACE_COUNT ; ++ loc0 ) { arg0 . getSharedPreferences ( PREF_PACKAGE [ loc0 ] , Context . MODE_PRIVATE ) ; } }
16,086
recursively finds the number of visible levels there are . concode_field_sep String m_label concode_elem_sep boolean m_visible concode_elem_sep boolean m_root concode_elem_sep Instances m_theData concode_elem_sep double m_center concode_elem_sep Vector m_children concode_elem_sep int m_shape concode_elem_sep Vector m_p...
int function ( Node arg0 , int arg1 ) { arg1 ++ ; int loc0 = arg1 , loc1 = 0 ; Edge loc2 ; for ( int loc3 = 0 ; ( loc2 = arg0 . getChild ( loc3 ) ) != null && arg0 . getCVisible ( ) ; loc3 ++ ) { loc1 = getHeight ( loc2 . getTarget ( ) , arg1 ) ; if ( loc1 > loc0 ) { loc0 = loc1 ; } } return loc0 ; }
16,087
if the course grade is displayed , should the letter grade be displayed ? concode_field_sep Set<GradeMapping> gradeMappings concode_elem_sep Boolean showStatisticsChart concode_elem_sep Boolean showRank concode_elem_sep boolean coursePointsDisplayed concode_elem_sep Boolean equalWeightCategories concode_elem_sep Boolea...
boolean function ( ) { return courseLetterGradeDisplayed ; }
16,088
gets the value of the notbefore property . concode_field_sep String address concode_elem_sep Object anyType concode_elem_sep String inResponseTo concode_elem_sep String recipient concode_elem_sep long serialVersionUID concode_elem_sep XMLGregorianCalendar notOnOrAfter concode_elem_sep Map<QName,String> otherAttributes ...
XMLGregorianCalendar function ( ) { return notBefore ; }
16,089
returns the group id of this entry . concode_field_sep Entry _entry 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 isCach...
long function ( ) { return _entry . getGroupId ( ) ; }
16,090
sets the desired os architecture concode_field_sep String FAMILY_WINDOWS concode_elem_sep String FAMILY_9X concode_elem_sep String FAMILY_ZOS concode_elem_sep String PATH_SEP concode_elem_sep String OS_NAME concode_elem_sep String FAMILY_OS2 concode_elem_sep String OS_VERSION concode_elem_sep String FAMILY_DOS concode_...
void function ( String arg0 ) { this . arch = arg0 . toLowerCase ( Locale . US ) ; }
16,091
get tags concode_field_sep String name concode_elem_sep List<String> photoUrls concode_elem_sep List<Tag> tags concode_elem_sep Category category concode_elem_sep Long id concode_elem_sep String value concode_elem_sep StatusEnum status concode_field_sep void setName concode_elem_sep StatusEnum fromValue concode_elem_se...
List < Tag > function ( ) { return tags ; }
16,092
convenience method for determining if the syncresult indicates that a hard error occurred . see #syncresult for an explanation of what the syncmanager doeswhen it sees a hard error . a hard error is indicated when any of the following is true : syncstats #numparseexceptions > 0 syncstats #numconflictdetectedexceptions ...
boolean function ( ) { return stats . numParseExceptions > 0 || stats . numConflictDetectedExceptions > 0 || stats . numAuthExceptions > 0 || tooManyDeletions || tooManyRetries || databaseError ; }
16,093
this method resets the outgoing events . concode_field_sep SCInterfaceImpl sCInterface concode_elem_sep long x concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void reactMain_region_A concode_elem_sep void init concode_elem_sep SCInterface getSCInterface concode_elem_sep void e...
void function ( ) { }
16,094
hook method called to shutdown the model layer . concode_field_sep String TAG concode_elem_sep PalantiriManager mPalantiriManager concode_field_sep void onCreate concode_elem_sep void releasePalantir concode_elem_sep Palantir acquirePalantir concode_elem_sep void makePalantiri
void function ( boolean arg0 ) { }
16,095
returns the lexical scope of the variable . concode_field_sep int NESTED concode_elem_sep int AT_END concode_elem_sep String varName concode_elem_sep boolean declare concode_elem_sep int scope concode_elem_sep String className concode_elem_sep int AT_BEGIN concode_field_sep String getVarName concode_elem_sep String get...
int function ( ) { return scope ; }
16,096
gets the byte array that backs the memory segment and this random access view . since different regions of the backing array are used by different segments , the logical positions in this view do not correspond to the indexes in the backing array and need to be translated via the #translateoffset int method . concode_f...
byte [ ] function ( ) { return this . memory ; }
16,097
returns the link percent . concode_field_sep double allocatedY concode_elem_sep double gap concode_elem_sep double angle concode_elem_sep double baseY concode_elem_sep double linkPercent concode_elem_sep TextBox label concode_elem_sep double labelHeight concode_elem_sep Comparable key concode_field_sep Comparable getKe...
double function ( ) { return this . linkPercent ; }
16,098
skip the first character of the remaining part of the signature . concode_field_sep String signature concode_field_sep String shorten concode_elem_sep char getFirst concode_elem_sep String convert concode_elem_sep String parseNext concode_elem_sep String convertMethodSignature concode_elem_sep String convertMethodSigna...
void function ( ) { signature = signature . substring ( 1 ) ; }
16,099
creates a new hexbinary by parsing the given string as hex binary data . concode_field_sep byte[] data concode_field_sep String stringValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep byte[] getData
HexBinary function ( String arg0 ) { if ( arg0 == null ) { return null ; } byte [ ] loc0 = ( byte [ ] ) new Hex ( ) . decode ( arg0 ) ; return new HexBinary ( loc0 ) ; }