idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
7,800
get arrayarraynumber concode_field_sep List<List<BigDecimal>> arrayArrayNumber concode_field_sep String toIndentedString concode_elem_sep ArrayOfArrayOfNumberOnly arrayArrayNumber concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep void setArrayArrayNumber
List < List < BigDecimal >> function ( ) { return arrayArrayNumber ; }
7,801
called when the service transitions to the @linkplain state #terminated terminated state.the @linkplain state #terminated terminated state is a terminal state in the transitiondiagram . therefore , if this method is called , no other methods will be called on the listener . concode_field_sep PlaceHolder placeHolder con...
void function ( State arg0 ) { }
7,802
returns the max time in millis that a session can remain open without receiving any packets . after this time period elapses , the session is automatically closed . concode_field_sep int minPort concode_elem_sep long idleTime concode_elem_sep String ipAddress concode_elem_sep Logger Log concode_elem_sep long lifetime c...
long function ( ) { return idleTime ; }
7,803
adds an instruction to attempt to match a specific rule object . note that when this method is used , it is not necessary to add the rule to the planner via reloptplanner #addrule ; the instance supplied here will be used . however , adding the rule to the planner redundantly is good form since other planners may requi...
HepProgramBuilder function ( RelOptRule arg0 ) { HepInstruction . RuleInstance loc0 = new HepInstruction . RuleInstance ( ) ; loc0 . arg0 = arg0 ; instructions . add ( loc0 ) ; return this ; }
7,804
normalize a location to within the valid range . given an arbitrary double not bound to 0.0 , 1.0 return the normalized double 0.0 , 1.0 which would result in simple wrapping/overflowing . e.g. normalize 0.3 +1.0 == 0.3 , normalize 0.3-1 .0 == 0.3 , normalize x == x with x in 0.0 , 1.0 concode_field_sep double LOCATION...
double function ( double arg0 ) { double loc0 = arg0 % 1.0 ; if ( loc0 < 0 ) { return 1.0 + loc0 ; } return loc0 ; }
7,805
executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c...
boolean function ( String arg0 , String arg1 , CallbackContext arg2 ) { JSONArray loc0 = new JSONArray ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; }
7,806
returns a set of methods in elements . concode_field_sep Set<ElementKind> METHOD_KIND concode_elem_sep Set<ElementKind> PACKAGE_KIND concode_elem_sep Set<ElementKind> FIELD_KINDS concode_elem_sep Set<ElementKind> TYPE_KINDS concode_elem_sep Set<ElementKind> CONSTRUCTOR_KIND concode_field_sep List<E> listFilter concode_...
Set < ExecutableElement > function ( Set < ? extends Element > arg0 ) { return setFilter ( arg0 , METHOD_KIND , ExecutableElement . class ) ; }
7,807
verifies whether there are any user credentials registered for the call that `` request '' belongs to and appends corresponding authorization headers if that is the case . concode_field_sep SipProvider transactionCreator concode_elem_sep CredentialsCache cachedCredentials concode_elem_sep HeaderFactory headerFactory co...
void function ( Request arg0 ) { }
7,808
tests assigning values to final fields in the deserialized object . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerializer_InnerClassWithSyntheticReference concode_elem_sep void testSerializer_SerializeNull
void function ( ) { Serializer loc0 = new KryoSerializer ( getClass ( ) . getClassLoader ( ) ) ; Foo loc1 = new Foo ( 5 ) ; byte [ ] loc2 = loc0 . serialize ( loc1 ) ; Object loc3 = loc0 . deserialize ( loc2 ) ; assertEquals ( loc1 , loc3 ) ; }
7,809
animation concode_field_sep Arrow arr concode_elem_sep int sleep concode_field_sep void paint
void function ( AnimeWorks arg0 ) { while ( ! arr . end ( ) ) { arr . move ( ) ; arg0 . setLocation ( arr . getX ( ) , arr . getY ( ) ) ; arg0 . repaint ( ) ; arg0 . sleep ( sleep ) ; } arg0 . sleep ( sleep ) ; }
7,810
returns the sentence as a string , based on the original text and spacing prior to tokenization . this method assumes that this extra information has been encoded in corelabel objects for each token of the sentence , which do have the original spacing preserved done with `` invertible = true '' for ptbtokenizer . howev...
String function ( List < T > arg0 ) { return listToOriginalTextString ( arg0 , true ) ; }
7,811
method getstep concode_field_sep java.util.Vector _stepList concode_field_sep int getStepCount concode_elem_sep void addStep concode_elem_sep void addStep concode_elem_sep sempath.xsd.FinishedSteps unmarshal concode_elem_sep boolean isValid concode_elem_sep void marshal concode_elem_sep void marshal concode_elem_sep se...
sempath . xsd . Step function ( int arg0 ) { if ( ( arg0 < 0 ) || ( arg0 >= _stepList . size ( ) ) ) { throw new IndexOutOfBoundsException ( "srini_string" + arg0 + "srini_string" + ( _stepList . size ( ) - 1 ) + "srini_string" ) ; } return ( sempath . xsd . Step ) _stepList . elementAt ( arg0 ) ; }
7,812
move the mouse on the screen . concode_field_sep Robot robot concode_elem_sep NativeKeyboard nativeKeyboard concode_elem_sep Logger logger concode_field_sep void keyRelease concode_elem_sep void keyRelease concode_elem_sep void mousePress concode_elem_sep void mouseRelease concode_elem_sep void symbolRelease concode_el...
void function ( int arg0 , int arg1 ) { robot . mouseMove ( arg0 , arg1 ) ; }
7,813
starts tracking a new coalescing key corresponding to the gesture with this down time . concode_field_sep SparseIntArray sDownTimeToCoalescingKey concode_field_sep void incrementCoalescingKey concode_elem_sep void removeCoalescingKey concode_elem_sep short getCoalescingKey
void function ( long arg0 ) { sDownTimeToCoalescingKey . put ( ( int ) arg0 , 0 ) ; }
7,814
reads the configuration file . concode_field_sep Element m_persistenceUnit concode_elem_sep String TAG_PROPERTY concode_elem_sep String ATTR_GENERATE_SCHEMA_VALUE concode_elem_sep String m_persistenceUnitName concode_elem_sep Element m_propertiesElement concode_elem_sep String m_fileName concode_elem_sep String ATTR_VA...
Document function ( String arg0 ) { Document loc0 = null ; try { DocumentBuilder loc1 = DocumentBuilderFactory . newInstance ( ) . newDocumentBuilder ( ) ; File loc2 = new File ( arg0 ) ; loc0 = loc1 . parse ( loc2 ) ; } catch ( Exception loc1 ) { loc1 . printStackTrace ( ) ; } return loc0 ; }
7,815
returns the name to use for coprocessor service calls . for core hbase services in the hbase.pb protobuf package , this returns the unqualified name in order to provide backward compatibility across the package name change . for all other services , the fully-qualified service name is used . concode_field_sep String hb...
String function ( Descriptors . ServiceDescriptor arg0 ) { if ( arg0 . getFullName ( ) . startsWith ( hbaseServicePackage ) ) { return arg0 . getName ( ) ; } return arg0 . getFullName ( ) ; }
7,816
sets the value of the min property . concode_field_sep String mapping concode_elem_sep List<Address> address concode_elem_sep BigDecimal shorttime concode_elem_sep String flavour concode_elem_sep String downlabel concode_elem_sep BigDecimal max concode_elem_sep String change concode_elem_sep String format concode_elem_...
void function ( BigDecimal arg0 ) { this . min = arg0 ; }
7,817
a string that marks the start of the next batch of returned results . concode_field_sep java.util.List<AlarmHistoryItem> alarmHistoryItems concode_elem_sep String nextToken concode_field_sep void setNextToken concode_elem_sep DescribeAlarmHistoryResult withAlarmHistoryItems concode_elem_sep DescribeAlarmHistoryResult w...
String function ( ) { return nextToken ; }
7,818
set a name/attribute map , consisting of `` fqcn.method '' method names e.g. `` com.mycompany.mycode.myclass.mymethod '' and transactionattribute instances or strings to be convertedto transactionattribute instances . intended for configuration via setter injection , typically within a spring bean factory . relies on #...
void function ( Map < String , TransactionAttribute > arg0 ) { this . methodMap = arg0 ; }
7,819
returns the inbound bytes counter . concode_field_sep Counter messagesOut concode_elem_sep long lastActiveTime concode_elem_sep ByteBuffer inbound concode_elem_sep ByteChannel channel concode_elem_sep Logger log concode_elem_sep Counter bytesIn concode_elem_sep int maxIdleMillis concode_elem_sep boolean writePending co...
Counter function ( ) { return bytesIn ; }
7,820
sample_has_redundancy takes one of the following four values : 0 : it is unknown whether there is redundant coding in this sample ; 1 : there is redundant coding in this sample ; 2 : there is no redundant coding in this sample ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep int samplePad...
int function ( ) { return sampleHasRedundancy ; }
7,821
returns the full property string . concode_field_sep RoundingMode roundingMode concode_elem_sep Unit unit concode_elem_sep String locationId concode_elem_sep String property concode_elem_sep Integer scale concode_elem_sep String type concode_field_sep String getLocationId concode_elem_sep String getProperty concode_ele...
String function ( ) { return type + "srini_string" + property ; }
7,822
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 ; }
7,823
returns actual credentials . may be null . concode_field_sep Queue<AuthOption> authOptions concode_elem_sep Credentials credentials concode_elem_sep AuthProtocolState state concode_elem_sep AuthScheme authScheme concode_elem_sep AuthScope authScope concode_field_sep AuthScope getAuthScope concode_elem_sep boolean isVal...
Credentials function ( ) { return this . credentials ; }
7,824
utility method to get the schema path for given schema instance . concode_field_sep Joiner SCHEMA_PATH_JOINER concode_elem_sep org.slf4j.Logger logger concode_field_sep SchemaPlus findSchema concode_elem_sep SchemaPlus findSchema concode_elem_sep AbstractSchema resolveToMutableDrillSchema concode_elem_sep void throwSch...
String function ( SchemaPlus arg0 ) { return SCHEMA_PATH_JOINER . join ( getSchemaPathAsList ( arg0 ) ) ; }
7,825
create an instance of hello concode_field_sep QName _Hello_QNAME concode_elem_sep QName _HelloResponse_QNAME concode_field_sep HelloResponse createHelloResponse concode_elem_sep JAXBElement<HelloResponse> createHelloResponse
Hello function ( ) { return new Hello ( ) ; }
7,826
creates a string in the form of `` name time : value , load : value '' concode_field_sep long startTime concode_elem_sep long lastTick concode_elem_sep FloatCounter load concode_elem_sep String name concode_elem_sep boolean valid concode_elem_sep FloatCounter time concode_elem_sep float nano2seconds concode_elem_sep fl...
StringBuilder function ( final StringBuilder arg0 ) { arg0 . append ( name ) . append ( "srini_string" ) . append ( time . value ) . append ( "srini_string" ) . append ( load . value ) . append ( "srini_string" ) ; return arg0 ; }
7,827
settoast concode_field_sep Toast sToast concode_field_sep void showText concode_elem_sep void showText concode_elem_sep void cancelToast concode_elem_sep void showTextCenter
void function ( Toast arg0 ) { if ( sToast != null ) { sToast . cancel ( ) ; } sToast = arg0 ; }
7,828
returns an array containing the modified utf-8 form of s . concode_field_sep PlaceHolder placeHolder concode_field_sep long countBytes concode_elem_sep String decode
byte [ ] function ( String arg0 ) { int loc0 = ( int ) countBytes ( arg0 , true ) ; byte [ ] loc1 = new byte [ loc0 ] ; encode ( loc1 , 0 , arg0 ) ; return loc1 ; }
7,829
set a copyinformee to be notified of element nodes if the origin of the pipeline is copying elements . concode_field_sep SchemaURIResolver schemaURIResolver concode_elem_sep Controller controller concode_elem_sep ParseOptions parseOptions concode_elem_sep boolean isSerializing concode_elem_sep int hostLanguage concode_...
void function ( CopyInformee arg0 ) { this . copyInformee = arg0 ; }
7,830
close the connection to the jms subsystem concode_field_sep int RETRIES concode_elem_sep Context ctx concode_elem_sep String INITIAL_CONTEXT_FACTORY concode_elem_sep ConnectionFactory cf concode_elem_sep String PROVIDER_URL concode_elem_sep String URL_PKG_PREFIXES concode_elem_sep String SERVER_RESTART concode_elem_sep...
void function ( ) { try { if ( connection != null ) { connection . close ( ) ; } } catch ( final Exception loc0 ) { } finally { connection = null ; } }
7,831
this method returns the mapping quality . concode_field_sep int occurrences concode_elem_sep double score concode_elem_sep String sequence concode_elem_sep String strand concode_elem_sep String cigar concode_elem_sep String chromosome concode_elem_sep int map_quality concode_elem_sep int start concode_elem_sep int end ...
int function ( ) { return map_quality ; }
7,832
the method is not used with this manager . concode_field_sep long serialVersionUID concode_field_sep Dimension preferredLayoutSize concode_elem_sep void removeLayoutComponent concode_elem_sep Dimension minimumLayoutSize concode_elem_sep void layoutContainer
void function ( String arg0 , Component arg1 ) { }
7,833
returns whether task is not scripted curation task concode_field_sep CurationTask cTask concode_elem_sep ScriptedTask sTask concode_elem_sep int[] codes concode_elem_sep boolean distributive concode_elem_sep String taskName concode_elem_sep boolean mutative concode_elem_sep Curator.Invoked mode concode_field_sep void i...
boolean function ( ) { return sTask == null ; }
7,834
returns a string representation of this object ; useful for testing and debugging . concode_field_sep AccessPoliciesStatus accessPolicies concode_field_sep AccessPoliciesStatus getAccessPolicies concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DescribeServiceAccessPoliciesResult clone conc...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getAccessPolicies ( ) != null ) loc0 . append ( "srini_string" + getAccessPolicies ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
7,835
visits an itemgroup by visits the member items . concode_field_sep PlaceHolder placeHolder concode_field_sep void onItem concode_elem_sep void walk
void function ( ItemGroup < ? > arg0 ) { for ( Item loc0 : arg0 . getItems ( ) ) if ( loc0 . hasPermission ( Item . READ ) ) onItem ( loc0 ) ; }
7,836
get the server socket object . more at java.net.serversocket concode_field_sep int _myMode concode_elem_sep Vector _myTcpClients concode_elem_sep TcpPacketListener _myTcpPacketListener concode_elem_sep int _myPort concode_elem_sep int MODE_STREAM concode_elem_sep Vector _myBanList concode_elem_sep ServerSocket _myServe...
ServerSocket function ( ) { return _myServerSocket ; }
7,837
sets the mvcc version of this resource block . concode_field_sep ResourceBlock _resourceBlock concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes co...
void function ( long arg0 ) { _resourceBlock . setMvccVersion ( arg0 ) ; }
7,838
makes a initializer for java.time.localdate or java.time.localdatetime class concode_field_sep PlaceHolder placeHolder concode_field_sep CtField.Initializer createInitializerForThirdPartyPackages concode_elem_sep CtField.Initializer createLocaleInitializer concode_elem_sep CtField createField concode_elem_sep CtField.I...
CtField . Initializer function ( String arg0 , String arg1 ) { return CtField . Initializer . byExpr ( String . format ( "srini_string" % s , arg0 , arg1 ) ) ; }
7,839
returns the number of registered listeners . concode_field_sep int EQUALITY concode_elem_sep boolean identity concode_elem_sep Object[] listeners concode_elem_sep Object[] EmptyArray concode_elem_sep int IDENTITY concode_field_sep void add concode_elem_sep Object[] getListeners concode_elem_sep boolean isEmpty concode_...
int function ( ) { return listeners . length ; }
7,840
adds a column that will be dropped from the table . concode_field_sep Vector<Column> columnsToDrop concode_elem_sep Vector<Column> columnsToAdd concode_elem_sep String name concode_elem_sep Vector<Column> columnsToModify concode_elem_sep String STATEMENT_SEPARATOR concode_elem_sep Vector<Column> allTableColumns concode...
void function ( Column arg0 ) { if ( ! columnsToDrop . contains ( arg0 ) ) { columnsToDrop . add ( arg0 ) ; } }
7,841
the current cursor if applicable concode_field_sep DataSetPreProcessor preProcessor concode_elem_sep DataSetIterator iter concode_field_sep DataSet next concode_elem_sep DataSet next concode_elem_sep void setPreProcessor concode_elem_sep int batch concode_elem_sep boolean hasNext concode_elem_sep int totalOutcomes conc...
int function ( ) { return iter . cursor ( ) ; }
7,842
re-acquires a suspended lock and reverts to the correct lock depth . concode_field_sep DeadlockDetector locks concode_elem_sep int depth concode_elem_sep OrderedLock lock concode_elem_sep HashMap<Thread,Stack<LockState[]>> suspendedLocks concode_elem_sep LockListener lockListener concode_field_sep LockState suspend con...
void function ( ) { while ( true ) { try { if ( lock . acquire ( Long . MAX_VALUE ) ) break ; } catch ( InterruptedException loc0 ) { } } lock . setDepth ( depth ) ; }
7,843
get the number of lanes per road . concode_field_sep double trafficLevel concode_elem_sep double laneWidth concode_elem_sep double distanceBetween concode_elem_sep int numOfColumns concode_elem_sep double speedLimit concode_elem_sep int numOfRows concode_elem_sep int lanesPerRoad concode_elem_sep double stopDistBeforeI...
int function ( ) { return lanesPerRoad ; }
7,844
returns the revision string . concode_field_sep long serialVersionUID concode_elem_sep Instances m_Data concode_elem_sep int m_Type concode_elem_sep Vector m_Locators concode_elem_sep int[] m_AllowedIndices concode_elem_sep Vector m_Attributes concode_elem_sep int[] m_Indices concode_elem_sep int[] m_LocatorIndices con...
String function ( ) { return RevisionUtils . extract ( "srini_string" ) ; }
7,845
get inlinecontent concode_field_sep String name concode_elem_sep String summary concode_elem_sep String inlineContent concode_elem_sep String sourceUrl concode_elem_sep String otherTypeName concode_elem_sep SourceTypeEnum sourceType concode_elem_sep TypeEnum type concode_elem_sep String value concode_elem_sep String do...
String function ( ) { return inlineContent ; }
7,846
init concode_field_sep PlaceHolder placeHolder concode_field_sep void stop concode_elem_sep void start concode_elem_sep int getStatus concode_elem_sep String getStatusText concode_elem_sep String status
void function ( ) { }
7,847
skips over a complete xml element on the input . precondition : the cursor is at a start_element . postcondition : the cursor is at an end_element . concode_field_sep Collection<String> TOPLEVEL_ELEMENT_NAMES concode_field_sep TestCase parseTestSuite concode_elem_sep void parseContainedElements concode_elem_sep TestXml...
void function ( XMLStreamReader arg0 ) { int loc0 = 1 ; while ( true ) { int loc1 = arg0 . next ( ) ; switch ( loc1 ) { case XMLStreamConstants . START_ELEMENT : loc0 ++ ; break ; case XMLStreamConstants . END_ELEMENT : if ( -- loc0 == 0 ) { return ; } break ; } } }
7,848
set the jsr-303 validator to delegate to for validating beans . default is the default validatorfactory 's default validator . concode_field_sep boolean afterInitialization concode_elem_sep Validator validator concode_field_sep void setAfterInitialization concode_elem_sep void setValidatorFactory concode_elem_sep void ...
void function ( Validator arg0 ) { this . validator = arg0 ; }
7,849
gives us a reversed enumeration which enumerates starting from the newest element the last element added . concode_field_sep Hashtable metaDataTable concode_elem_sep int trackID concode_elem_sep int bufferCapacity concode_elem_sep CyclicQueue measurementBuffer concode_elem_sep Vector processors concode_elem_sep Saver s...
Enumeration function ( ) { return measurementBuffer . getElementsReversed ( ) ; }
7,850
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 ) ) ; }
7,851
finishes the source mapping for the given node at the current position . concode_field_sep boolean statementNeedsEnded concode_elem_sep boolean statementStarted concode_elem_sep boolean sawFunction concode_field_sep void endLine concode_elem_sep void listSeparator concode_elem_sep void startNewLine concode_elem_sep boo...
void function ( Node arg0 ) { }
7,852
gets the value of the set property . concode_field_sep String identifier concode_elem_sep String metadataPrefix concode_elem_sep String set concode_elem_sep String resumptionToken concode_elem_sep VerbType verb concode_elem_sep String from concode_elem_sep String until concode_elem_sep long serialVersionUID concode_ele...
String function ( ) { return set ; }
7,853
hook method called after the connection has been closed . the default implementation does nothing . the method may be overriden by subclasses to perform special processing such as cleaning up and terminating , or attempting to reconnect . concode_field_sep Socket clientSocket concode_elem_sep ObjectOutputStream output ...
void function ( ) { }
7,854
returns version name of opensudoku . concode_field_sep PlaceHolder placeHolder concode_field_sep void setThemeFromPreferences concode_elem_sep boolean isIntentAvailable concode_elem_sep int getAppVersionCode
String function ( Context arg0 ) { try { return arg0 . getPackageManager ( ) . getPackageInfo ( arg0 . getPackageName ( ) , 0 ) . versionName ; } catch ( NameNotFoundException loc0 ) { throw new RuntimeException ( loc0 ) ; } }
7,855
extend this method to make your transformer modify the time . concode_field_sep Pattern returnPattern concode_field_sep void measureEvent concode_elem_sep void controllerEvent concode_elem_sep void channelPressureEvent concode_elem_sep Pattern getReturnPattern concode_elem_sep void keySignatureEvent concode_elem_sep vo...
void function ( Time arg0 ) { returnPattern . addElement ( arg0 ) ; }
7,856
returns the primary name server . concode_field_sep String responsiblePerson concode_elem_sep int expireTime concode_elem_sep long minimumTtl concode_elem_sep long serial concode_elem_sep int refreshTime concode_elem_sep String primaryNameServer concode_elem_sep int retryTime concode_field_sep String responsiblePerson ...
String function ( ) { return primaryNameServer ; }
7,857
returns the source of a link , or null if it has none . concode_field_sep PlaceHolder placeHolder concode_field_sep List getFlowLinks concode_elem_sep Flow[] getParentFlows concode_elem_sep void getParentFlows concode_elem_sep void removeActivitySource concode_elem_sep void setLinkSource concode_elem_sep void removeFlo...
Activity function ( Link arg0 ) { if ( arg0 . getSources ( ) . isEmpty ( ) ) return null ; return ( ( arg0 . getSources ( ) . get ( 0 ) ) ) . getActivity ( ) ; }
7,858
returns true if the given web resource exists . concode_field_sep FilterConfig filterConfig concode_field_sep void init concode_elem_sep void doFilter concode_elem_sep void destroy concode_elem_sep String getWebResourceContents concode_elem_sep void applyFilter
boolean function ( String arg0 ) { try { URL loc0 = filterConfig . getServletContext ( ) . getResource ( arg0 ) ; return loc0 != null ; } catch ( MalformedURLException loc0 ) { return false ; } }
7,859
for cascade operations concode_field_sep HsqlArrayList stack concode_elem_sep Number lastIdentity concode_elem_sep LongDeque savepointTimestamps concode_elem_sep Session session concode_elem_sep Object[] routineArguments concode_elem_sep HashSet constraintPath concode_elem_sep Object[] dynamicArguments concode_elem_sep...
HashSet function ( ) { if ( constraintPath == null ) { constraintPath = new HashSet ( ) ; } else { constraintPath . clear ( ) ; } return constraintPath ; }
7,860
load default user configuration form user settings.xml with custom properties . concode_field_sep Pattern SPACES concode_field_sep void ensureFolder concode_elem_sep void process concode_elem_sep void copy concode_elem_sep File getUserSettings concode_elem_sep MavenConfiguration getConfig concode_elem_sep File getMaven...
MavenConfiguration function ( final Properties arg0 ) { return getConfig ( getUserSettings ( ) , arg0 ) ; }
7,861
positions the overlay structure . this reads the cached data only when it was not previously set by the constructor . concode_field_sep boolean csRsData_ concode_elem_sep int REPEATED_LENGTH_ concode_elem_sep int numberOfFields_ concode_elem_sep byte[] rawBytes_ concode_elem_sep int FIXED_LENGTH_ concode_elem_sep Strin...
void function ( byte [ ] arg0 , int arg1 ) { rawBytes_ = arg0 ; offset_ = arg1 ; if ( numberOfFields_ == - 1 ) { numberOfFields_ = BinaryConverter . byteArrayToInt ( rawBytes_ , arg1 + 4 ) ; length_ = FIXED_LENGTH_ + numberOfFields_ * REPEATED_LENGTH_ ; } else { setNumberOfFields ( numberOfFields_ ) ; } }
7,862
some text . concode_field_sep int CONSTANT concode_elem_sep InnerClassWithAnnotations anon concode_elem_sep String fFirstName concode_elem_sep String tThirdName concode_elem_sep String sSecondName concode_field_sep String method5 concode_elem_sep String method5 concode_elem_sep String method5 concode_elem_sep String me...
String function ( String arg0 , int arg1 , boolean arg2 ) { return "srini_string" ; }
7,863
define valor do atributo comando concode_field_sep Integer idTipoItemConfiguracao concode_elem_sep Integer idBaseItemConfiguracaoPai concode_elem_sep Date dataFim concode_elem_sep TipoItemConfiguracaoDTO tipoItemConfiguracao concode_elem_sep String executavel concode_elem_sep String comando concode_elem_sep String nome...
void function ( String arg0 ) { this . comando = arg0 ; }
7,864
retrieves the canonical path for the given path , or the absolute path if attemting to retrieve the canonical path fails . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep boolean fsIsIgnoreCase concode_field_sep File absoluteFile concode_elem_sep IOException toIOException concode_elem_sep void ren...
String function ( String arg0 ) { try { return canonicalPath ( arg0 ) ; } catch ( Exception loc0 ) { return absolutePath ( arg0 ) ; } }
7,865
sets the value of the livestreameventaction property . concode_field_sep LiveStreamEventAction liveStreamEventAction concode_elem_sep Statement filterStatement concode_field_sep LiveStreamEventAction getLiveStreamEventAction concode_elem_sep Statement getFilterStatement concode_elem_sep void setFilterStatement
void function ( LiveStreamEventAction arg0 ) { this . liveStreamEventAction = arg0 ; }
7,866
returns a reference variable representing the array element of this variable . now it does not look at the array index . concode_field_sep PlaceHolder placeHolder concode_field_sep ReferenceVariable arrayElementOfImpl concode_elem_sep ReferenceVariable tempVariableImpl concode_elem_sep ReferenceVariable cloneObject con...
ReferenceVariable function ( ReferenceVariable arg0 ) { return arrayElementOfImpl ( arg0 ) ; }
7,867
returns the inetsocketaddress of this route . concode_field_sep Proxy proxy concode_elem_sep Address address concode_elem_sep boolean modernTls concode_elem_sep InetSocketAddress inetSocketAddress concode_field_sep Route flipTlsMode concode_elem_sep Proxy getProxy concode_elem_sep int hashCode concode_elem_sep boolean ...
InetSocketAddress function ( ) { return inetSocketAddress ; }
7,868
search for a column with the given name . the search is not case sensitive . concode_field_sep int size concode_elem_sep Column[] data concode_field_sep void add concode_elem_sep int size concode_elem_sep void resize concode_elem_sep Columns copy
Column function ( String arg0 ) { for ( int loc0 = 0 ; loc0 < size ; loc0 ++ ) { Column loc1 = data [ loc0 ] ; if ( arg0 . equalsIgnoreCase ( loc1 . getName ( ) ) ) { return loc1 ; } } return null ; }
7,869
does this element currently have the focus . concode_field_sep PlaceHolder placeHolder concode_field_sep String getTextValue concode_elem_sep Point getLocation concode_elem_sep void shouldContainOnlyText concode_elem_sep WebElementFacade waitUntilClickable concode_elem_sep Duration getCurrentImplicitTimeout concode_ele...
boolean function ( ) { return false ; }
7,870
get token end line number . concode_field_sep int bufpos concode_elem_sep boolean prevCharIsLF concode_elem_sep int bufsize concode_elem_sep int available concode_elem_sep int tabSize concode_elem_sep java.io.Reader inputStream concode_elem_sep int line concode_elem_sep boolean staticFlag concode_elem_sep int bufcolumn...
int function ( ) { return bufline [ bufpos ] ; }
7,871
returns true if there 's another proxy to try . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> proxySelectorProxies concode_elem_sep ConnectionPool pool concode_elem_sep Dns ...
boolean function ( ) { return hasNextProxy ; }
7,872
returns the last row that should be visible . concode_field_sep ArrayList listeners concode_elem_sep int start concode_elem_sep int end concode_elem_sep TableModel model concode_elem_sep TableEventTranslator eventHandler concode_field_sep void addTableModelListener concode_elem_sep void addTableModelListener concode_el...
int function ( ) { return end ; }
7,873
returns the value of this asset category property . concode_field_sep AssetCategoryProperty _assetCategoryProperty concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_ele...
java . lang . String function ( ) { return _assetCategoryProperty . getValue ( ) ; }
7,874
write out number . concode_field_sep String string concode_elem_sep byte[] bytes concode_elem_sep Vector items concode_field_sep OutputStream startLiteral concode_elem_sep void writeBytes concode_elem_sep void writeBytes concode_elem_sep void writeBytes concode_elem_sep void astring concode_elem_sep void writeAtom conc...
void function ( long arg0 ) { items . addElement ( new Long ( arg0 ) ) ; }
7,875
finds a range of item indices that is guaranteed to contain all the x-values from x0 to x1 inclusive . concode_field_sep PlaceHolder placeHolder concode_field_sep int findLiveItemsLowerBound concode_elem_sep int findLiveItemsUpperBound
int [ ] function ( XYDataset arg0 , int arg1 , double arg2 , double arg3 ) { int loc0 = findLiveItemsLowerBound ( arg0 , arg1 , arg2 , arg3 ) ; int loc1 = findLiveItemsUpperBound ( arg0 , arg1 , arg2 , arg3 ) ; if ( loc0 > loc1 ) { loc0 = loc1 ; } return new int [ ] { loc0 , loc1 } ; }
7,876
set the databasepopulator to execute during the bean destructionphase , cleaning up the database and leaving it in a known state for others . concode_field_sep boolean enabled concode_elem_sep DatabasePopulator databaseCleaner concode_elem_sep DatabasePopulator databasePopulator concode_elem_sep DataSource dataSource c...
void function ( DatabasePopulator arg0 ) { this . databaseCleaner = arg0 ; }
7,877
creates a new pepenginefactory instance by examining initialization resources from various places to determine the class to instantiate and return . concode_field_sep String FACTORYID concode_elem_sep String DEFAULT_FACTORY_CLASSNAME concode_field_sep PEPEngine newEngine concode_elem_sep PEPEngine newEngine
PEPEngineFactory function ( ) { return FactoryFinder . find ( FACTORYID , DEFAULT_FACTORY_CLASSNAME , PEPEngineFactory . class ) ; }
7,878
sets the value of the id property . concode_field_sep Boolean unlimitedEndDateTime concode_elem_sep StartDateTimeType startDateTimeType concode_elem_sep BaseAdRuleSlot preroll concode_elem_sep Integer maxImpressionsPerLineItemPerStream concode_elem_sep Integer priority concode_elem_sep DateTime endDateTime concode_elem...
void function ( Integer arg0 ) { this . id = arg0 ; }
7,879
setter del nombre concode_field_sep Date fecha concode_elem_sep TFinca finca concode_elem_sep ArrayList<TRecurso> recursos concode_elem_sep String nombre concode_field_sep void setFecha concode_elem_sep String getNombre concode_elem_sep ArrayList<TRecurso> getRecurso concode_elem_sep TRecurso getRecurso_solo concode_el...
void function ( String arg0 ) { this . nombre = arg0 ; }
7,880
gets the value of the style property . concode_field_sep Parent parent concode_elem_sep String image concode_elem_sep String code concode_elem_sep Boolean visible concode_elem_sep List<Tracked> tracked concode_elem_sep long serialVersionUID concode_elem_sep String label concode_elem_sep Descriptions descriptions concod...
String function ( ) { return style ; }
7,881
gets the value of the created property . concode_field_sep OfferForGetSavedRetention offer concode_elem_sep XMLGregorianCalendar created concode_elem_sep List<Long> cfsId concode_elem_sep GetSavedRetentionResponse2.CfsIds cfsIds concode_elem_sep String sid concode_field_sep String getSid concode_elem_sep void setCfsIds...
XMLGregorianCalendar function ( ) { return created ; }
7,882
the method removes the user . the parameter accepts : concode_field_sep TaskGroupModel taskGroupModel concode_elem_sep User activeUser concode_elem_sep ViewDetailsModel viewModel concode_elem_sep UserService userService concode_field_sep User getActiveUser concode_elem_sep void updUser concode_elem_sep User getUser con...
void function ( String arg0 ) { userService . delUser ( arg0 ) ; }
7,883
sets the optional bearer specific network specifier . this has no meaning if a single transport is also not specified , so calling this without a single transport set will generate an exception , as will subsequently adding or removing transports after this is set . the interpretation of this string is bearer specific ...
Builder function ( String arg0 ) { mNetworkCapabilities . setNetworkSpecifier ( arg0 ) ; return this ; }
7,884
the logger for the configurablefactory concode_field_sep Class classToServe concode_elem_sep Logger log concode_field_sep String buildArgumentString concode_elem_sep Class getClassToServe concode_elem_sep Object createNewInstance concode_elem_sep Object createNewInstance concode_elem_sep Object createNewInstance concod...
Logger function ( ) { return log ; }
7,885
clear the class counters concode_field_sep long rollSize concode_elem_sep long processSize concode_elem_sep FileSystem fileSystem concode_elem_sep String IN_USE_EXT concode_elem_sep String filePath concode_elem_sep Logger LOG concode_elem_sep Integer staticLock concode_elem_sep ScheduledExecutorService timedRollerPool ...
void function ( ) { eventCounter = 0 ; processSize = 0 ; batchCounter = 0 ; }
7,886
palauttaa salinumeron concode_field_sep boolean kesken concode_elem_sep boolean verbose concode_elem_sep ArrayList<ArrayList<Naytos>> naytokset concode_elem_sep int salinumero concode_elem_sep String teatterinPaikkakunta concode_elem_sep boolean tulostapaikat concode_elem_sep String teatterinNimi concode_elem_sep Strin...
int function ( ) { if ( verbose ) { System . out . println ( "srini_string" ) ; } return salinumero ; }
7,887
returns true if this chunk is pushdata content , including the single-byte pushdatas . concode_field_sep byte[] data concode_elem_sep int startLocationInProgram concode_elem_sep int opcode concode_field_sep boolean equalsOpCode concode_elem_sep int getStartLocationInProgram concode_elem_sep int hashCode concode_elem_se...
boolean function ( ) { return opcode <= OP_16 ; }
7,888
sets the value of the format property . concode_field_sep URI format concode_elem_sep String spNameQualifier concode_elem_sep Boolean allowCreate concode_field_sep Boolean isAllowCreate concode_elem_sep void setAllowCreate concode_elem_sep URI getFormat concode_elem_sep String getSPNameQualifier concode_elem_sep void s...
void function ( URI arg0 ) { this . format = arg0 ; }
7,889
returns an array of indexablefield s with the given name . this method returns an empty array when there are no matching fields . it never returns null . concode_field_sep List<IndexableField> fields concode_elem_sep String[] NO_STRINGS concode_field_sep void add concode_elem_sep Iterator<IndexableField> iterator conco...
IndexableField [ ] function ( String arg0 ) { List < IndexableField > loc0 = new ArrayList < > ( ) ; for ( IndexableField loc1 : fields ) { if ( loc1 . arg0 ( ) . equals ( arg0 ) ) { loc0 . add ( loc1 ) ; } } return loc0 . toArray ( new IndexableField [ loc0 . size ( ) ] ) ; }
7,890
retrieves a hexidecimal character sequence representing the md5 digest of the specified character sequence , using the specified encoding to first convert the character sequence into a byte sequence . if the specified encoding is null , then iso-8859-1 is assumed concode_field_sep MessageDigest md5 concode_field_sep by...
String function ( String arg0 , String arg1 ) { return StringConverter . byteToHex ( digestString ( arg0 , arg1 ) ) ; }
7,891
a click on one of the items in our menubar has occured . forward it to the item itself to let it decide what happens . concode_field_sep SVWindow svWindow concode_elem_sep JPopupMenu root concode_elem_sep HashMap<String,SVAbstractMenuItem> items concode_field_sep void add concode_elem_sep void add concode_elem_sep void...
void function ( ActionEvent arg0 ) { SVAbstractMenuItem loc0 = items . get ( arg0 . getActionCommand ( ) ) ; loc0 . performAction ( svWindow , SVEventType . SVET_POPUP ) ; }
7,892
sets the value of the min property . concode_field_sep String unit concode_elem_sep BigDecimal min concode_elem_sep BigDecimal max concode_elem_sep BigInteger decimals concode_elem_sep String label concode_elem_sep String position concode_elem_sep String value concode_field_sep void setMax concode_elem_sep String getLa...
void function ( BigDecimal arg0 ) { this . min = arg0 ; }
7,893
current ssa form requires each move-exception block to have a unique predecessor concode_field_sep PlaceHolder placeHolder concode_field_sep int edgeSplitSuccessor concode_elem_sep void voidFunction concode_elem_sep int edgeSplitPredTest
void function ( ) { try { hashCode ( ) ; hashCode ( ) ; } catch ( Throwable loc0 ) { } }
7,894
get the failure message concode_field_sep ValidatorInfo validatorInfo concode_elem_sep StringBuffer failureMessages concode_elem_sep boolean failed concode_field_sep boolean hasFailed concode_elem_sep void handleListener concode_elem_sep void parseStartElement concode_elem_sep void handleConverter concode_elem_sep void...
String function ( ) { return failureMessages . toString ( ) ; }
7,895
add a single value for the specified property . if there are already one or more values registered for the given property key , the given value will be added to the end of the list . concode_field_sep boolean requestedSessionIdValid concode_elem_sep PortletSession session concode_elem_sep String scheme concode_elem_sep...
void function ( String arg0 , String arg1 ) { Assert . notNull ( arg0 , "srini_string" ) ; List < String > loc0 = this . properties . get ( arg0 ) ; if ( loc0 != null ) { loc0 . add ( arg1 ) ; } else { List < String > loc1 = new LinkedList < String > ( ) ; loc1 . add ( arg1 ) ; this . properties . put ( arg0 , loc1 ) ;...
7,896
isreadermtomaware concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.DescribeLicensesType localDescribeLicenses concode_field_sep java.lang.String generatePrefix concode_elem_sep void setDescribeLicenses concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_sep c...
boolean function ( javax . xml . stream . XMLStreamReader arg0 ) { boolean loc0 = false ; try { loc0 = java . lang . Boolean . TRUE . equals ( arg0 . getProperty ( org . apache . axiom . om . OMConstants . IS_DATA_HANDLERS_AWARE ) ) ; } catch ( java . lang . IllegalArgumentException loc1 ) { loc0 = false ; } return loc...
7,897
this will test if the event/meeting is cross days concode_field_sep boolean receiveEmailByOwner concode_elem_sep List<SignupTimeslot> signupTimeSlots concode_elem_sep String creatorUserId concode_elem_sep boolean createGroups concode_elem_sep Calendar cal concode_elem_sep net.fortuna.ical4j.model.component.VEvent veven...
boolean function ( ) { cal . setTime ( getStartTime ( ) ) ; int loc0 = cal . get ( Calendar . DAY_OF_YEAR ) ; cal . setTime ( getEndTime ( ) ) ; int loc1 = cal . get ( Calendar . DAY_OF_YEAR ) ; return ( loc0 != loc1 ) ; }
7,898
replaces the current map of active connection permissions with the give map , which must map active connection id to its corresponding set of granted permissions . if an active connection has no permissions , its id must not be present as a key in the map . concode_field_sep Map<String,Set<ObjectPermission.Type>> conne...
void function ( Map < String , Set < ObjectPermission . Type >> arg0 ) { this . activeConnectionPermissions = arg0 ; }
7,899
puts int into struct onto specified index with specified offset as four bytes concode_field_sep ByteArrayTool bt concode_elem_sep long size concode_elem_sep OffHeapMemory ohm concode_elem_sep int MIN_CAPACITY_INCREMENT concode_elem_sep int structLength concode_elem_sep long capacity concode_field_sep void add concode_e...
void function ( long arg0 , int arg1 , int arg2 ) { assert arg1 <= structLength - 4 : arg1 ; ohm . putInt ( arg0 * structLength + arg1 , arg2 ) ; }