question stringlengths 33 1.59k | target stringlengths 33 1.58k |
|---|---|
public StartMonitoringMemberResult startMonitoringMember ( StartMonitoringMemberRequest request ) { request = beforeClientExecution ( request ) ; return executeStartMonitoringMember ( request ) ; } | public virtual StartMonitoringMemberResponse StartMonitoringMember ( StartMonitoringMemberRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = StartMonitoringMemberRequestMarshaller . Instance ; options . ResponseUnmarshaller = StartMonitoringMemberResponseUnmarshaller . Instance ; re... |
public < T extends EscherProperty > T lookup ( int propId ) { return ( T ) properties . stream ( ) . filter ( p -> p . getPropertyNumber ( ) == propId ) . findFirst ( ) . orElse ( null ) ; } | public EscherProperty Lookup ( int propId ) { foreach ( EscherProperty prop in properties ) { if ( prop . PropertyNumber == propId ) { return prop ; } } return null ; } |
public boolean isExpectingOldObjectId ( ) { return expectedOldObjectId != null ; } | public virtual bool IsExpectingOldObjectId ( ) { return expectedOldObjectId != null ; } |
public int compareTo ( ScoreTerm other ) { if ( term . bytesEquals ( other . term ) ) return 0 ; if ( this . boost == other . boost ) return other . term . compareTo ( this . term ) ; else return Float . compare ( this . boost , other . boost ) ; } | public int CompareTo ( ScoreTerm other ) { if ( this . Boost == other . Boost ) { return TermComp . Compare ( other . Bytes , this . Bytes ) ; } else { return this . Boost . CompareTo ( other . Boost ) ; } } |
public LazyAreaEval getColumn ( int columnIndex ) { if ( columnIndex >= getWidth ( ) ) { throw new IllegalArgumentException ( "Invalid columnIndex " + columnIndex + ". Allowable range is (0.." + getWidth ( ) + ")." ) ; } int absColIx = getFirstColumn ( ) + columnIndex ; return new LazyAreaEval ( getFirstRow ( ) , absC... | public override TwoDEval GetColumn ( int columnIndex ) { if ( columnIndex >= Width ) { throw new ArgumentException ( "Invalid columnIndex " + columnIndex + ". Allowable range is (0.." + Width + ")." ) ; } int absColIx = FirstColumn + columnIndex ; return new LazyAreaEval ( FirstRow , absColIx , LastRow , absColIx , _e... |
public BytesRef next ( ) throws IOException { if ( done ) { return null ; } boolean success = false ; BytesRef result ; try { String line ; if ( ( line = in . readLine ( ) ) != null ) { spare . copyChars ( line ) ; result = spare . get ( ) ; } else { done = true ; IOUtils . close ( in ) ; result = null ; } success = tr... | public BytesRef Next ( ) { if ( done ) { return null ; } bool success = false ; BytesRef result ; try { string line ; if ( ( line = outerInstance . @ in . ReadLine ( ) ) != null ) { spare . CopyChars ( line ) ; result = spare ; } else { done = true ; IOUtils . Dispose ( outerInstance . @ in ) ; result = null ; } succes... |
public boolean shouldBeRecursive ( ) { return path . shouldBeRecursive ( ) ; } | public override bool ShouldBeRecursive ( ) { return path . ShouldBeRecursive ( ) ; } |
public String toString ( ) { return getClass ( ) . getSimpleName ( ) + "(compressionMode=" + compressionMode + ", chunkSize=" + chunkSize + ", blockSize=" + blockSize + ")" ; } | public override string ToString ( ) { return this . GetType ( ) . Name + "(compressionMode=" + compressionMode + ", chunkSize=" + chunkSize + ")" ; } |
public ResourcePendingMaintenanceActions applyPendingMaintenanceAction ( ApplyPendingMaintenanceActionRequest request ) { request = beforeClientExecution ( request ) ; return executeApplyPendingMaintenanceAction ( request ) ; } | public virtual ApplyPendingMaintenanceActionResponse ApplyPendingMaintenanceAction ( ApplyPendingMaintenanceActionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ApplyPendingMaintenanceActionRequestMarshaller . Instance ; options . ResponseUnmarshaller = ApplyPendingMaintenanceAc... |
public boolean startsWith ( AbbreviatedObjectId abbr ) { return abbr . prefixCompare ( this ) == 0 ; } | public virtual bool StartsWith ( AbbreviatedObjectId abbr ) { return abbr . PrefixCompare ( this ) == 0 ; } |
public SerializingRecordVisitor ( byte [ ] data , int startOffset ) { _data = data ; _startOffset = startOffset ; _countBytesWritten = 0 ; } | public SerializingRecordVisitor ( byte [ ] data , int startOffset ) { _data = data ; _startOffset = startOffset ; _countBytesWritten = 0 ; } |
public static TreeFilter createFromStrings ( Collection < String > paths ) { if ( paths . isEmpty ( ) ) throw new IllegalArgumentException ( JGitText . get ( ) . atLeastOnePathIsRequired ) ; final PathFilter [ ] p = new PathFilter [ paths . size ( ) ] ; int i = 0 ; for ( String s : paths ) p [ i ++ ] = PathFilter . cre... | public static TreeFilter CreateFromStrings ( ICollection < string > paths ) { if ( paths . IsEmpty ( ) ) { throw new ArgumentException ( JGitText . Get ( ) . atLeastOnePathIsRequired ) ; } PathFilter [ ] p = new PathFilter [ paths . Count ] ; int i = 0 ; foreach ( string s in paths ) { p [ i ++ ] = PathFilter . Create ... |
public void serialize ( LittleEndianOutput out ) { out . writeShort ( getDefaultCountry ( ) ) ; out . writeShort ( getCurrentCountry ( ) ) ; } | public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteShort ( DefaultCountry ) ; out1 . WriteShort ( CurrentCountry ) ; } |
@ Override public boolean equals ( Object object ) { synchronized ( mutex ) { return list . equals ( object ) ; } } | public override bool Equals ( object @ object ) { lock ( mutex ) { return list . Equals ( @ object ) ; } } |
public CellFormatter ( String format ) { this ( LocaleUtil . getUserLocale ( ) , format ) ; } | public CellFormatter ( String format ) { this . format = format ; } |
public ObjectId getResultTreeId ( ) { return resultTree ; } | public override ObjectId GetResultTreeId ( ) { return resultTree ; } |
public DrillDownQuery clone ( ) { return new DrillDownQuery ( config , baseQuery , dimQueries , drillDownDims ) ; } | public override object Clone ( ) { return new DrillDownQuery ( config , query , drillDownDims ) ; } |
public final ShortBuffer put ( short [ ] src , int srcOffset , int shortCount ) { throw new ReadOnlyBufferException ( ) ; } | public sealed override java . nio . ShortBuffer put ( short [ ] src , int srcOffset , int shortCount ) { throw new java . nio . ReadOnlyBufferException ( ) ; } |
public final void writeLong ( long val ) throws IOException { Memory . pokeLong ( scratch , 0 , val , ByteOrder . BIG_ENDIAN ) ; write ( scratch , 0 , SizeOf . LONG ) ; } | public virtual void writeLong ( long val ) { throw new System . NotImplementedException ( ) ; } |
public AuthorizeSecurityGroupEgressResult authorizeSecurityGroupEgress ( AuthorizeSecurityGroupEgressRequest request ) { request = beforeClientExecution ( request ) ; return executeAuthorizeSecurityGroupEgress ( request ) ; } | public virtual AuthorizeSecurityGroupEgressResponse AuthorizeSecurityGroupEgress ( AuthorizeSecurityGroupEgressRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AuthorizeSecurityGroupEgressRequestMarshaller . Instance ; options . ResponseUnmarshaller = AuthorizeSecurityGroupEgressR... |
public void add ( E object ) { throw new UnsupportedOperationException ( ) ; } | public virtual void add ( E @ object ) { throw new System . NotSupportedException ( ) ; } |
public static String getPOSTranslation ( String s ) { return posTranslations . get ( s ) ; } | public static string GetPOSTranslation ( string s ) { string result ; posTranslations . TryGetValue ( s , out result ) ; return result ; } |
public AnalyticsTagPredicate ( Tag tag ) { this . tag = tag ; } | public AnalyticsTagPredicate ( Tag tag ) { this . tag = tag ; } |
public String toInfoString ( Parser recognizer ) { List < String > rules = recognizer . getRuleInvocationStack ( this ) ; Collections . reverse ( rules ) ; return "ParserRuleContext" + rules + "{" + "start=" + start + ", stop=" + stop + '}' ; } | public virtual string ToInfoString ( Parser recognizer ) { List < string > rules = new List < string > ( recognizer . GetRuleInvocationStack ( this ) ) ; rules . Reverse ( ) ; return "ParserRuleContext" + rules + "{" + "start=" + _start + ", stop=" + _stop + '}' ; } |
public CharBuffer put ( int index , char c ) { checkIndex ( index ) ; backingArray [ offset + index ] = c ; return this ; } | public override java . nio . CharBuffer put ( int index , char c ) { checkIndex ( index ) ; backingArray [ offset + index ] = c ; return this ; } |
public CreateComponentResult createComponent ( CreateComponentRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateComponent ( request ) ; } | public virtual CreateComponentResponse CreateComponent ( CreateComponentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateComponentRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateComponentResponseUnmarshaller . Instance ; return Invoke < CreateComponentR... |
public RuleWithSuffixExceptions ( String suffix , int min , String replacement , String [ ] exceptions ) { super ( suffix , min , replacement ) ; for ( int i = 0 ; i < exceptions . length ; i ++ ) { if ( ! exceptions [ i ] . endsWith ( suffix ) ) throw new RuntimeException ( "warning: useless exception '" + exceptions ... | public RuleWithSuffixExceptions ( string suffix , int min , string replacement , string [ ] exceptions ) : base ( suffix , min , replacement ) { for ( int i = 0 ; i < exceptions . Length ; i ++ ) { if ( ! exceptions [ i ] . EndsWith ( suffix , StringComparison . Ordinal ) ) { throw new Exception ( "warning: useless exc... |
public DescribeVpnGatewaysResult describeVpnGateways ( DescribeVpnGatewaysRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeVpnGateways ( request ) ; } | public virtual DescribeVpnGatewaysResponse DescribeVpnGateways ( DescribeVpnGatewaysRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeVpnGatewaysRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeVpnGatewaysResponseUnmarshaller . Instance ; return Invok... |
public HSSFClientAnchor ( EscherClientAnchorRecord escherClientAnchorRecord ) { this . _escherClientAnchor = escherClientAnchorRecord ; } | public HSSFClientAnchor ( EscherClientAnchorRecord escherClientAnchorRecord ) { this . _escherClientAnchor = escherClientAnchorRecord ; } |
public void stopNow ( ) { stopNow = true ; } | public virtual void StopNow ( ) { stopNow = true ; } |
public String toString ( ) { return "FooterKey[" + name + "]" ; } | public override string ToString ( ) { return "FooterKey[" + name + "]" ; } |
public GetRelationalDatabasesResult getRelationalDatabases ( GetRelationalDatabasesRequest request ) { request = beforeClientExecution ( request ) ; return executeGetRelationalDatabases ( request ) ; } | public virtual GetRelationalDatabasesResponse GetRelationalDatabases ( GetRelationalDatabasesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetRelationalDatabasesRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetRelationalDatabasesResponseUnmarshaller . Instance... |
public int compareTo ( Revision o ) { IndexRevision other = ( IndexRevision ) o ; return commit . compareTo ( other . commit ) ; } | public virtual int CompareTo ( IRevision other ) { IndexRevision or = ( IndexRevision ) other ; return commit . CompareTo ( or . commit ) ; } |
public PredPrediction ( SemanticContext pred , int alt ) { this . alt = alt ; this . pred = pred ; } | public PredPrediction ( SemanticContext pred , int alt ) { this . alt = alt ; this . pred = pred ; } |
public ListMeetingTagsResult listMeetingTags ( ListMeetingTagsRequest request ) { request = beforeClientExecution ( request ) ; return executeListMeetingTags ( request ) ; } | public virtual ListMeetingTagsResponse ListMeetingTags ( ListMeetingTagsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListMeetingTagsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListMeetingTagsResponseUnmarshaller . Instance ; return Invoke < ListMeetingTagsR... |
public TokenStream create ( TokenStream input ) { return new NorwegianMinimalStemFilter ( input , flags ) ; } | public override TokenStream Create ( TokenStream input ) { return new NorwegianMinimalStemFilter ( input , flags ) ; } |
public ImportInstanceResult importInstance ( ImportInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeImportInstance ( request ) ; } | public virtual ImportInstanceResponse ImportInstance ( ImportInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ImportInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = ImportInstanceResponseUnmarshaller . Instance ; return Invoke < ImportInstanceRespons... |
public void setCodePage ( CodepageRecord codepage ) { this . codepage = codepage ; } | public void SetCodePage ( CodepageRecord codepage ) { this . codepage = codepage ; } |
@ Override public Collection < V > values ( ) { Collection < V > vs = values ; return ( vs != null ) ? vs : ( values = new Values ( ) ) ; } | public override java . util . Collection < V > values ( ) { java . util . Collection < V > vs = _values ; return ( vs != null ) ? vs : ( _values = new java . util . HashMap < K , V > . Values ( this ) ) ; } |
public UpdateRulesOfIpGroupResult updateRulesOfIpGroup ( UpdateRulesOfIpGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateRulesOfIpGroup ( request ) ; } | public virtual UpdateRulesOfIpGroupResponse UpdateRulesOfIpGroup ( UpdateRulesOfIpGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateRulesOfIpGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateRulesOfIpGroupResponseUnmarshaller . Instance ; return ... |
public String toString ( ) { return "OneOrMoreOutputs(" + outputs + ")" ; } | public override string ToString ( ) { return "OneOrMoreOutputs(" + outputs + ")" ; } |
public static TreeFilter create ( TreeFilter a , TreeFilter b ) { if ( a == ALL || b == ALL ) return ALL ; return new Binary ( a , b ) ; } | public static TreeFilter Create ( TreeFilter a , TreeFilter b ) { if ( a == ALL || b == ALL ) { return ALL ; } return new OrTreeFilter . Binary ( a , b ) ; } |
public UntagQueueResult untagQueue ( UntagQueueRequest request ) { request = beforeClientExecution ( request ) ; return executeUntagQueue ( request ) ; } | public virtual UntagQueueResponse UntagQueue ( UntagQueueRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UntagQueueRequestMarshaller . Instance ; options . ResponseUnmarshaller = UntagQueueResponseUnmarshaller . Instance ; return Invoke < UntagQueueResponse > ( request , options ... |
public final double getDouble ( int index ) { return Double . longBitsToDouble ( getLong ( index ) ) ; } | public sealed override double getDouble ( int index ) { return Sharpen . Util . LongBitsToDouble ( getLong ( index ) ) ; } |
public V next ( ) { return entryIterator . next ( ) . getValue ( ) ; } | public override V next ( ) { return this . nextEntry ( ) . value ; } |
public IntervalSet ( int ... els ) { if ( els == null ) { intervals = new ArrayList < Interval > ( 2 ) ; } else { intervals = new ArrayList < Interval > ( els . length ) ; for ( int e : els ) add ( e ) ; } } | public IntervalSet ( params int [ ] els ) { if ( els == null ) { intervals = new ArrayList < Interval > ( 2 ) ; } else { intervals = new ArrayList < Interval > ( els . Length ) ; foreach ( int e in els ) { Add ( e ) ; } } } |
public void dumpDeadEndConfigs ( NoViableAltException nvae ) { System . err . println ( "dead end configs: " ) ; for ( ATNConfig c : nvae . getDeadEndConfigs ( ) ) { String trans = "no edges" ; if ( c . state . getNumberOfTransitions ( ) > 0 ) { Transition t = c . state . transition ( 0 ) ; if ( t instanceof AtomTransi... | public void DumpDeadEndConfigs ( NoViableAltException nvae ) { System . Console . Error . WriteLine ( "dead end configs: " ) ; foreach ( ATNConfig c in nvae . DeadEndConfigs . configs ) { String trans = "no edges" ; if ( c . state . NumberOfTransitions > 0 ) { Transition t = c . state . Transition ( 0 ) ; if ( t is Ato... |
public String toString ( ) { StringBuilder sb = new StringBuilder ( ) ; sb . append ( "[SUPBOOK " ) ; if ( isExternalReferences ( ) ) { sb . append ( "External References]\n" ) ; sb . append ( " .url = " ) . append ( getURL ( ) ) . append ( "\n" ) ; sb . append ( " .nSheets = " ) . append ( field_1_number_of_sheets... | public override String ToString ( ) { StringBuilder sb = new StringBuilder ( ) ; sb . Append ( "[SUPBOOK " ) ; if ( IsExternalReferences ) { sb . Append ( "External References]\n" ) ; sb . Append ( " .url = " ) . Append ( field_2_encoded_url ) . Append ( "\n" ) ; sb . Append ( " .nSheets = " ) . Append ( field_1_nu... |
public String toString ( ) { StringBuilder sb = new StringBuilder ( 256 ) ; sb . append ( "[ftLbsData]\n" ) ; sb . append ( " .unknownShort1 =" ) . append ( HexDump . shortToHex ( _cbFContinued ) ) . append ( "\n" ) ; sb . append ( " .formula = " ) . append ( '\n' ) ; if ( _linkPtg != null ) { sb . append ... | public override String ToString ( ) { StringBuilder sb = new StringBuilder ( 256 ) ; sb . Append ( "[ftLbsData]\n" ) ; sb . Append ( " .unknownshort1 =" ) . Append ( HexDump . ShortToHex ( _cbFContinued ) ) . Append ( "\n" ) ; sb . Append ( " .formula = " ) . Append ( '\n' ) ; sb . Append ( _linkPtg . ToSt... |
public static QualityStats average ( QualityStats [ ] stats ) { QualityStats avg = new QualityStats ( 0 , 0 ) ; if ( stats . length == 0 ) { return avg ; } int m = 0 ; for ( int i = 0 ; i < stats . length ; i ++ ) { avg . searchTime += stats [ i ] . searchTime ; avg . docNamesExtractTime += stats [ i ] . docNamesExtrac... | public static QualityStats Average ( QualityStats [ ] stats ) { QualityStats avg = new QualityStats ( 0 , 0 ) ; if ( stats . Length == 0 ) { return avg ; } int m = 0 ; for ( int i = 0 ; i < stats . Length ; i ++ ) { avg . searchTime += stats [ i ] . searchTime ; avg . docNamesExtractTime += stats [ i ] . docNamesExtrac... |
public String getUser ( ) { return Host . this . getUser ( ) ; } | public virtual string GetUser ( ) { return user ; } |
public int [ ] clear ( ) { boost = null ; termState = null ; return super . clear ( ) ; } | public override int [ ] Clear ( ) { boost = null ; termState = null ; return base . Clear ( ) ; } |
public DescribeApplicationSnapshotResult describeApplicationSnapshot ( DescribeApplicationSnapshotRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeApplicationSnapshot ( request ) ; } | public virtual DescribeApplicationSnapshotResponse DescribeApplicationSnapshot ( DescribeApplicationSnapshotRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeApplicationSnapshotRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeApplicationSnapshotRespon... |
public FormatAndBits ( Format format , int bitsPerValue ) { this . format = format ; this . bitsPerValue = bitsPerValue ; } | public FormatAndBits ( Format format , int bitsPerValue ) { this . Format = format ; this . BitsPerValue = bitsPerValue ; } |
public HSSFName getNameAt ( int nameIndex ) { int nNames = names . size ( ) ; if ( nNames < 1 ) { throw new IllegalStateException ( "There are no defined names in this workbook" ) ; } if ( nameIndex < 0 || nameIndex > nNames ) { throw new IllegalArgumentException ( "Specified name index " + nameIndex + " is outside the... | public NPOI . SS . UserModel . IName GetNameAt ( int nameIndex ) { int nNames = names . Count ; if ( nNames < 1 ) { throw new InvalidOperationException ( "There are no defined names in this workbook" ) ; } if ( nameIndex < 0 || nameIndex > nNames ) { throw new ArgumentOutOfRangeException ( "Specified name index " + nam... |
public void fromString ( String str ) { if ( str . length ( ) != Constants . OBJECT_ID_STRING_LENGTH ) throw new IllegalArgumentException ( MessageFormat . format ( JGitText . get ( ) . invalidId , str ) ) ; fromHexString ( Constants . encodeASCII ( str ) , 0 ) ; } | public virtual void FromString ( string str ) { if ( str . Length != Constants . OBJECT_ID_STRING_LENGTH ) { throw new ArgumentException ( MessageFormat . Format ( JGitText . Get ( ) . invalidId , str ) ) ; } FromHexString ( Constants . EncodeASCII ( str ) , 0 ) ; } |
public DescribeTableRestoreStatusResult describeTableRestoreStatus ( DescribeTableRestoreStatusRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeTableRestoreStatus ( request ) ; } | public virtual DescribeTableRestoreStatusResponse DescribeTableRestoreStatus ( DescribeTableRestoreStatusRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeTableRestoreStatusRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeTableRestoreStatusResponseUnm... |
public Edit ( int as , int ae , int bs , int be ) { beginA = as ; endA = ae ; beginB = bs ; endB = be ; } | public Edit ( int @ as , int ae , int bs , int be ) { beginA = @ as ; endA = ae ; beginB = bs ; endB = be ; } |
public UpdateDomainEndpointOptionsResult updateDomainEndpointOptions ( UpdateDomainEndpointOptionsRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateDomainEndpointOptions ( request ) ; } | public virtual UpdateDomainEndpointOptionsResponse UpdateDomainEndpointOptions ( UpdateDomainEndpointOptionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateDomainEndpointOptionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateDomainEndpointOptionsRespon... |
@ Override public boolean contains ( Object o ) { return Impl . this . containsKey ( o ) ; } | public override bool contains ( object o ) { return this . _enclosing . containsKey ( o ) ; } |
public ParseTreePattern compileParseTreePattern ( String pattern , int patternRuleIndex , Lexer lexer ) { ParseTreePatternMatcher m = new ParseTreePatternMatcher ( lexer , this ) ; return m . compile ( pattern , patternRuleIndex ) ; } | public virtual ParseTreePattern CompileParseTreePattern ( string pattern , int patternRuleIndex , Lexer lexer ) { ParseTreePatternMatcher m = new ParseTreePatternMatcher ( lexer , this ) ; return m . Compile ( pattern , patternRuleIndex ) ; } |
public MalformedInputException ( int length ) { this . inputLength = length ; } | public MalformedInputException ( int length ) { this . inputLength = length ; } |
public void reset ( ) { upto = 0 ; in . reset ( ) ; } | public virtual void Reset ( ) { upto = 0 ; @ in . Reset ( ) ; } |
public String toString ( ) { return name ; } | public override string ToString ( ) { return name ; } |
public DeletePhotoStoreRequest ( ) { super ( "CloudPhoto" , "2017-07-11" , "DeletePhotoStore" , "cloudphoto" ) ; setProtocol ( ProtocolType . HTTPS ) ; } | public DeletePhotoStoreRequest ( ) : base ( "CloudPhoto" , "2017-07-11" , "DeletePhotoStore" , "cloudphoto" , "openAPI" ) { Protocol = ProtocolType . HTTPS ; } |
public GlobalCluster createGlobalCluster ( CreateGlobalClusterRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateGlobalCluster ( request ) ; } | public virtual CreateGlobalClusterResponse CreateGlobalCluster ( CreateGlobalClusterRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateGlobalClusterRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateGlobalClusterResponseUnmarshaller . Instance ; return Invok... |
public SimpleImmutableEntry ( K theKey , V theValue ) { key = theKey ; value = theValue ; } | public SimpleImmutableEntry ( K theKey , V theValue ) { key = theKey ; value = theValue ; } |
public String toString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( "[SeriesToChartGroup]\n" ) ; buffer . append ( " .chartGroupIndex = " ) . append ( "0x" ) . append ( HexDump . toHex ( getChartGroupIndex ( ) ) ) . append ( " (" ) . append ( getChartGroupIndex ( ) ) . append ( " )" ) ... | public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[SeriesToChartGroup]\n" ) ; buffer . Append ( " .chartGroupIndex = " ) . Append ( "0x" ) . Append ( HexDump . ToHex ( ChartGroupIndex ) ) . Append ( " (" ) . Append ( ChartGroupIndex ) . Append ( " )" ) ; buf... |
public String toString ( ) { return "FAST_" + path . toString ( ) ; } | public override string ToString ( ) { return "FAST_" + path . ToString ( ) ; } |
public OpenNLPLemmatizerFilterFactory ( Map < String , String > args ) { super ( args ) ; dictionaryFile = get ( args , DICTIONARY ) ; lemmatizerModelFile = get ( args , LEMMATIZER_MODEL ) ; if ( dictionaryFile == null && lemmatizerModelFile == null ) { throw new IllegalArgumentException ( "Configuration Error: missing... | public OpenNLPLemmatizerFilterFactory ( IDictionary < string , string > args ) : base ( args ) { dictionaryFile = Get ( args , DICTIONARY ) ; lemmatizerModelFile = Get ( args , LEMMATIZER_MODEL ) ; if ( dictionaryFile == null && lemmatizerModelFile == null ) { throw new ArgumentException ( "Configuration Error: missing... |
public Long contentLength ( ) { return this . contentLength ; } | public System . Uri BaseUri { get ; set ; } |
public void addError ( FormatError err ) { errors . add ( err ) ; } | public virtual void AddError ( FormatError err ) { errors . AddItem ( err ) ; } |
public UpdateUserResult updateUser ( UpdateUserRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateUser ( request ) ; } | public virtual UpdateUserResponse UpdateUser ( UpdateUserRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateUserRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateUserResponseUnmarshaller . Instance ; return Invoke < UpdateUserResponse > ( request , options ... |
public DeletePartnerEventSourceResult deletePartnerEventSource ( DeletePartnerEventSourceRequest request ) { request = beforeClientExecution ( request ) ; return executeDeletePartnerEventSource ( request ) ; } | public virtual DeletePartnerEventSourceResponse DeletePartnerEventSource ( DeletePartnerEventSourceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeletePartnerEventSourceRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeletePartnerEventSourceResponseUnmarshaller ... |
public WorkflowExecutionInfos listClosedWorkflowExecutions ( ListClosedWorkflowExecutionsRequest request ) { request = beforeClientExecution ( request ) ; return executeListClosedWorkflowExecutions ( request ) ; } | public virtual ListClosedWorkflowExecutionsResponse ListClosedWorkflowExecutions ( ListClosedWorkflowExecutionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListClosedWorkflowExecutionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListClosedWorkflowExecutionsR... |
public HSSFFontFormatting createFontFormatting ( ) { return getFontFormatting ( true ) ; } | public IFontFormatting CreateFontFormatting ( ) { return GetFontFormatting ( true ) ; } |
public SimpleFragmenter ( int fragmentSize ) { this . fragmentSize = fragmentSize ; } | public SimpleFragmenter ( int fragmentSize ) { this . fragmentSize = fragmentSize ; } |
public DeleteEmailIdentityResult deleteEmailIdentity ( DeleteEmailIdentityRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteEmailIdentity ( request ) ; } | public virtual DeleteEmailIdentityResponse DeleteEmailIdentity ( DeleteEmailIdentityRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteEmailIdentityRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteEmailIdentityResponseUnmarshaller . Instance ; return Invok... |
public ListScriptsResult listScripts ( ListScriptsRequest request ) { request = beforeClientExecution ( request ) ; return executeListScripts ( request ) ; } | public virtual ListScriptsResponse ListScripts ( ListScriptsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListScriptsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListScriptsResponseUnmarshaller . Instance ; return Invoke < ListScriptsResponse > ( request , op... |
public SnowballFilter ( TokenStream input , SnowballStemmer stemmer ) { super ( input ) ; this . stemmer = stemmer ; } | public SnowballFilter ( TokenStream input , SnowballProgram stemmer ) : base ( input ) { this . stemmer = stemmer ; this . termAtt = AddAttribute < ICharTermAttribute > ( ) ; this . keywordAttr = AddAttribute < IKeywordAttribute > ( ) ; } |
public DeleteFlowLogsResult deleteFlowLogs ( DeleteFlowLogsRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteFlowLogs ( request ) ; } | public virtual DeleteFlowLogsResponse DeleteFlowLogs ( DeleteFlowLogsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteFlowLogsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteFlowLogsResponseUnmarshaller . Instance ; return Invoke < DeleteFlowLogsRespons... |
public CreateIdentityPoolResult createIdentityPool ( CreateIdentityPoolRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateIdentityPool ( request ) ; } | public virtual CreateIdentityPoolResponse CreateIdentityPool ( CreateIdentityPoolRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateIdentityPoolRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateIdentityPoolResponseUnmarshaller . Instance ; return Invoke < C... |
public String distanceSubQueryNotAllowed ( ) { Iterator < ? > sqi = getSubQueriesIterator ( ) ; while ( sqi . hasNext ( ) ) { Object leq = sqi . next ( ) ; if ( leq instanceof DistanceSubQuery ) { DistanceSubQuery dsq = ( DistanceSubQuery ) leq ; String m = dsq . distanceSubQueryNotAllowed ( ) ; if ( m != null ) { retu... | public virtual string DistanceSubQueryNotAllowed ( ) { var sqi = GetSubQueriesEnumerator ( ) ; while ( sqi . MoveNext ( ) ) { var leq = sqi . Current ; if ( leq is IDistanceSubQuery ) { var dsq = sqi . Current as IDistanceSubQuery ; string m = dsq . DistanceSubQueryNotAllowed ( ) ; if ( m != null ) { return m ; } } els... |
public static String getNodeText ( Tree t , List < String > ruleNames ) { if ( ruleNames != null ) { if ( t instanceof RuleContext ) { int ruleIndex = ( ( RuleContext ) t ) . getRuleContext ( ) . getRuleIndex ( ) ; String ruleName = ruleNames . get ( ruleIndex ) ; int altNumber = ( ( RuleContext ) t ) . getAltNumber ( ... | public static string GetNodeText ( ITree t , IList < string > ruleNames ) { if ( ruleNames != null ) { if ( t is RuleContext ) { int ruleIndex = ( ( RuleContext ) t ) . RuleIndex ; string ruleName = ruleNames [ ruleIndex ] ; int altNumber = ( ( RuleContext ) t ) . getAltNumber ( ) ; if ( altNumber != Atn . ATN . INVALI... |
public int last ( ) { if ( sentenceStarts . length > 0 ) { currentSentence = sentenceStarts . length - 1 ; text . setIndex ( text . getEndIndex ( ) ) ; } else { currentSentence = 0 ; text . setIndex ( text . getBeginIndex ( ) ) ; } return current ( ) ; } | public override int Last ( ) { if ( sentenceStarts . Length > 0 ) { currentSentence = sentenceStarts . Length - 1 ; text . SetIndex ( text . EndIndex ) ; } else { currentSentence = 0 ; text . SetIndex ( text . BeginIndex ) ; } return Current ; } |
public HSSFRichTextString createRichTextString ( String text ) { return new HSSFRichTextString ( text ) ; } | public NPOI . SS . UserModel . IRichTextString CreateRichTextString ( String text ) { return new HSSFRichTextString ( text ) ; } |
public PushbackReader ( Reader in ) { super ( in ) ; buf = new char [ 1 ] ; pos = 1 ; } | public PushbackReader ( java . io . Reader @ in ) : base ( @ in ) { buf = new char [ 1 ] ; pos = 1 ; } |
public List < ParseTree > getAll ( String label ) { List < ParseTree > nodes = labels . get ( label ) ; if ( nodes == null ) { return Collections . emptyList ( ) ; } return nodes ; } | public virtual IList < IParseTree > GetAll ( string label ) { IList < IParseTree > nodes = labels . Get ( label ) ; if ( nodes == null ) { return Sharpen . Collections . EmptyList < IParseTree > ( ) ; } return nodes ; } |
public InternalWorkbook getStubWorkbook ( ) { return createStubWorkbook ( getExternSheetRecords ( ) , getBoundSheetRecords ( ) , getSSTRecord ( ) ) ; } | public InternalWorkbook GetStubWorkbook ( ) { return CreateStubWorkbook ( GetExternSheetRecords ( ) , GetBoundSheetRecords ( ) , GetSSTRecord ( ) ) ; } |
public ReactivatePhotosRequest ( ) { super ( "CloudPhoto" , "2017-07-11" , "ReactivatePhotos" , "cloudphoto" ) ; setProtocol ( ProtocolType . HTTPS ) ; } | public ReactivatePhotosRequest ( ) : base ( "CloudPhoto" , "2017-07-11" , "ReactivatePhotos" , "cloudphoto" , "openAPI" ) { Protocol = ProtocolType . HTTPS ; } |
public DecisionTask pollForDecisionTask ( PollForDecisionTaskRequest request ) { request = beforeClientExecution ( request ) ; return executePollForDecisionTask ( request ) ; } | public virtual PollForDecisionTaskResponse PollForDecisionTask ( PollForDecisionTaskRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PollForDecisionTaskRequestMarshaller . Instance ; options . ResponseUnmarshaller = PollForDecisionTaskResponseUnmarshaller . Instance ; return Invok... |
public void write ( LittleEndianOutput out ) { out . writeByte ( getSid ( ) + getPtgClass ( ) ) ; writeCoordinates ( out ) ; } | public override void Write ( ILittleEndianOutput out1 ) { out1 . WriteByte ( Sid + PtgClass ) ; WriteCoordinates ( out1 ) ; } |
public Ref getTarget ( ) { return target ; } | public virtual Ref GetTarget ( ) { return target ; } |
public CreateTagsResult createTags ( CreateTagsRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateTags ( request ) ; } | public virtual CreateTagsResponse CreateTags ( CreateTagsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateTagsRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateTagsResponseUnmarshaller . Instance ; return Invoke < CreateTagsResponse > ( request , options ... |
public UpdateUserPhoneConfigResult updateUserPhoneConfig ( UpdateUserPhoneConfigRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateUserPhoneConfig ( request ) ; } | public virtual UpdateUserPhoneConfigResponse UpdateUserPhoneConfig ( UpdateUserPhoneConfigRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateUserPhoneConfigRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateUserPhoneConfigResponseUnmarshaller . Instance ; re... |
public PersonIdent getSourceAuthor ( int idx ) { return sourceAuthors [ idx ] ; } | public virtual PersonIdent GetSourceAuthor ( int idx ) { return sourceAuthors [ idx ] ; } |
public void setLength ( long sz ) { setLength ( ( int ) sz ) ; } | public virtual void SetLength ( int sz ) { NB . EncodeInt32 ( info , infoOffset + P_SIZE , sz ) ; } |
public GetServerCertificateRequest ( String serverCertificateName ) { setServerCertificateName ( serverCertificateName ) ; } | public GetServerCertificateRequest ( string serverCertificateName ) { _serverCertificateName = serverCertificateName ; } |
public CreateStreamingDistributionWithTagsResult createStreamingDistributionWithTags ( CreateStreamingDistributionWithTagsRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateStreamingDistributionWithTags ( request ) ; } | public virtual CreateStreamingDistributionWithTagsResponse CreateStreamingDistributionWithTags ( CreateStreamingDistributionWithTagsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateStreamingDistributionWithTagsRequestMarshaller . Instance ; options . ResponseUnmarshaller = C... |
public DescribeNotificationSubscriptionsResult describeNotificationSubscriptions ( DescribeNotificationSubscriptionsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeNotificationSubscriptions ( request ) ; } | public virtual DescribeNotificationSubscriptionsResponse DescribeNotificationSubscriptions ( DescribeNotificationSubscriptionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeNotificationSubscriptionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeN... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.