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 ; return Invoke < StartMonitoringMemberResponse > ( request , options ) ; } |
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 ( ) , absColIx , getLastRow ( ) , absColIx , _evaluator ) ; } | 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 , _evaluator ) ; } |
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 = true ; } finally { if ( ! success ) { IOUtils . closeWhileHandlingException ( in ) ; } } return result ; } | 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 ; } success = true ; } finally { if ( ! success ) { IOUtils . DisposeWhileHandlingException ( outerInstance . @ in ) ; } } return result ; } |
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 = ApplyPendingMaintenanceActionResponseUnmarshaller . Instance ; return Invoke < ApplyPendingMaintenanceActionResponse > ( request , options ) ; } |
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 . create ( s ) ; return create ( p ) ; } | 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 ( s ) ; } return Create ( p ) ; } |
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 = AuthorizeSecurityGroupEgressResponseUnmarshaller . Instance ; return Invoke < AuthorizeSecurityGroupEgressResponse > ( request , options ) ; } |
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 < CreateComponentResponse > ( request , options ) ; } |
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 [ i ] + "' does not end with '" + suffix + "'" ) ; } this . exceptions = new char [ exceptions . length ] [ ] ; for ( int i = 0 ; i < exceptions . length ; i ++ ) this . exceptions [ i ] = exceptions [ i ] . toCharArray ( ) ; } | 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 exception '" + exceptions [ i ] + "' does not end with '" + suffix + "'" ) ; } } this . m_exceptions = new char [ exceptions . Length ] [ ] ; for ( int i = 0 ; i < exceptions . Length ; i ++ ) { this . m_exceptions [ i ] = exceptions [ i ] . ToCharArray ( ) ; } } |
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 Invoke < DescribeVpnGatewaysResponse > ( request , options ) ; } |
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 ; return Invoke < GetRelationalDatabasesResponse > ( request , options ) ; } |
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 < ListMeetingTagsResponse > ( request , options ) ; } |
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 < ImportInstanceResponse > ( request , options ) ; } |
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 Invoke < UpdateRulesOfIpGroupResponse > ( request , options ) ; } |
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 AtomTransition ) { AtomTransition at = ( AtomTransition ) t ; trans = "Atom " + getTokenName ( at . label ) ; } else if ( t instanceof SetTransition ) { SetTransition st = ( SetTransition ) t ; boolean not = st instanceof NotSetTransition ; trans = ( not ? "~" : "" ) + "Set " + st . set . toString ( ) ; } } System . err . println ( c . toString ( parser , true ) + ":" + trans ) ; } } | 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 AtomTransition ) { AtomTransition at = ( AtomTransition ) t ; trans = "Atom " + GetTokenName ( at . token ) ; } else if ( t is SetTransition ) { SetTransition st = ( SetTransition ) t ; bool not = st is NotSetTransition ; trans = ( not ? "~" : "" ) + "Set " + st . set . ToString ( ) ; } } System . Console . Error . WriteLine ( c . ToString ( parser , true ) + ":" + trans ) ; } } |
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 ) . append ( "\n" ) ; for ( String sheetname : field_3_sheet_names ) { sb . append ( " .name = " ) . append ( sheetname ) . append ( "\n" ) ; } sb . append ( "[/SUPBOOK" ) ; } else if ( _isAddInFunctions ) { sb . append ( "Add-In Functions" ) ; } else { sb . append ( "Internal References" ) ; sb . append ( " nSheets=" ) . append ( field_1_number_of_sheets ) ; } sb . append ( "]" ) ; return sb . toString ( ) ; } | 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_number_of_sheets ) . Append ( "\n" ) ; foreach ( String sheetname in field_3_sheet_names ) { sb . Append ( " .name = " ) . Append ( sheetname ) . Append ( "\n" ) ; } sb . Append ( "[/SUPBOOK" ) ; } else if ( _isAddInFunctions ) { sb . Append ( "Add-In Functions" ) ; } else { sb . Append ( "Internal References " ) ; sb . Append ( " nSheets= " ) . Append ( field_1_number_of_sheets ) ; } return sb . ToString ( ) ; } |
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 ( _linkPtg ) . append ( _linkPtg . getRVAType ( ) ) . append ( '\n' ) ; } sb . append ( " .nEntryCount =" ) . append ( HexDump . shortToHex ( _cLines ) ) . append ( "\n" ) ; sb . append ( " .selEntryIx =" ) . append ( HexDump . shortToHex ( _iSel ) ) . append ( "\n" ) ; sb . append ( " .style =" ) . append ( HexDump . shortToHex ( _flags ) ) . append ( "\n" ) ; sb . append ( " .unknownShort10=" ) . append ( HexDump . shortToHex ( _idEdit ) ) . append ( "\n" ) ; if ( _dropData != null ) { sb . append ( '\n' ) . append ( _dropData ) ; } sb . append ( "[/ftLbsData]\n" ) ; return sb . toString ( ) ; } | 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 . ToString ( ) ) . Append ( _linkPtg . RVAType ) . Append ( '\n' ) ; sb . Append ( " .nEntryCount =" ) . Append ( HexDump . ShortToHex ( _cLines ) ) . Append ( "\n" ) ; sb . Append ( " .selEntryIx =" ) . Append ( HexDump . ShortToHex ( _iSel ) ) . Append ( "\n" ) ; sb . Append ( " .style =" ) . Append ( HexDump . ShortToHex ( _flags ) ) . Append ( "\n" ) ; sb . Append ( " .unknownshort10=" ) . Append ( HexDump . ShortToHex ( _idEdit ) ) . Append ( "\n" ) ; if ( _dropData != null ) sb . Append ( '\n' ) . Append ( _dropData . ToString ( ) ) ; sb . Append ( "[/ftLbsData]\n" ) ; return sb . ToString ( ) ; } |
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 ] . docNamesExtractTime ; if ( stats [ i ] . maxGoodPoints > 0 ) { m ++ ; avg . numGoodPoints += stats [ i ] . numGoodPoints ; avg . numPoints += stats [ i ] . numPoints ; avg . pReleventSum += stats [ i ] . getAvp ( ) ; avg . recall += stats [ i ] . recall ; avg . mrr += stats [ i ] . getMRR ( ) ; avg . maxGoodPoints += stats [ i ] . maxGoodPoints ; for ( int j = 1 ; j < avg . pAt . length ; j ++ ) { avg . pAt [ j ] += stats [ i ] . getPrecisionAt ( j ) ; } } } assert m > 0 : "Fishy: no \"good\" queries!" ; avg . searchTime /= stats . length ; avg . docNamesExtractTime /= stats . length ; avg . numGoodPoints /= m ; avg . numPoints /= m ; avg . recall /= m ; avg . mrr /= m ; avg . maxGoodPoints /= m ; for ( int j = 1 ; j < avg . pAt . length ; j ++ ) { avg . pAt [ j ] /= m ; } avg . pReleventSum /= m ; avg . pReleventSum *= avg . maxGoodPoints ; return avg ; } | 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 ] . docNamesExtractTime ; if ( stats [ i ] . maxGoodPoints > 0 ) { m ++ ; avg . numGoodPoints += stats [ i ] . numGoodPoints ; avg . numPoints += stats [ i ] . numPoints ; avg . pReleventSum += stats [ i ] . GetAvp ( ) ; avg . recall += stats [ i ] . recall ; avg . mrr += stats [ i ] . MRR ; avg . maxGoodPoints += stats [ i ] . maxGoodPoints ; for ( int j = 1 ; j < avg . pAt . Length ; j ++ ) { avg . pAt [ j ] += stats [ i ] . GetPrecisionAt ( j ) ; } } } Debug . Assert ( m > 0 , "Fishy: no \"good\" queries!" ) ; avg . searchTime /= stats . Length ; avg . docNamesExtractTime /= stats . Length ; avg . numGoodPoints /= m ; avg . numPoints /= m ; avg . recall /= m ; avg . mrr /= m ; avg . maxGoodPoints /= m ; for ( int j = 1 ; j < avg . pAt . Length ; j ++ ) { avg . pAt [ j ] /= m ; } avg . pReleventSum /= m ; avg . pReleventSum *= avg . maxGoodPoints ; return avg ; } |
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 = DescribeApplicationSnapshotResponseUnmarshaller . Instance ; return Invoke < DescribeApplicationSnapshotResponse > ( request , options ) ; } |
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 allowable range (0.." + ( nNames - 1 ) + ")." ) ; } return names . get ( nameIndex ) ; } | 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 " + nameIndex + " is outside the allowable range (0.." + ( nNames - 1 ) + ")." ) ; } HSSFName result = names [ nameIndex ] ; return result ; } |
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 = DescribeTableRestoreStatusResponseUnmarshaller . Instance ; return Invoke < DescribeTableRestoreStatusResponse > ( request , options ) ; } |
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 = UpdateDomainEndpointOptionsResponseUnmarshaller . Instance ; return Invoke < UpdateDomainEndpointOptionsResponse > ( request , options ) ; } |
@ 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 Invoke < CreateGlobalClusterResponse > ( request , options ) ; } |
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 ( " )" ) ; buffer . append ( System . getProperty ( "line.separator" ) ) ; buffer . append ( "[/SeriesToChartGroup]\n" ) ; return buffer . toString ( ) ; } | 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 ( " )" ) ; buffer . Append ( Environment . NewLine ) ; buffer . Append ( "[/SeriesToChartGroup]\n" ) ; return buffer . ToString ( ) ; } |
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 parameter: at least one of '" + DICTIONARY + "' and '" + LEMMATIZER_MODEL + "' must be provided." ) ; } if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } } | 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 parameter: at least one of '" + DICTIONARY + "' and '" + LEMMATIZER_MODEL + "' must be provided." ) ; } if ( args . Any ( ) ) { throw new ArgumentException ( "Unknown parameters: " + args ) ; } } |
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 . Instance ; return Invoke < DeletePartnerEventSourceResponse > ( request , options ) ; } |
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 = ListClosedWorkflowExecutionsResponseUnmarshaller . Instance ; return Invoke < ListClosedWorkflowExecutionsResponse > ( request , options ) ; } |
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 Invoke < DeleteEmailIdentityResponse > ( request , options ) ; } |
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 , options ) ; } |
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 < DeleteFlowLogsResponse > ( request , options ) ; } |
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 < CreateIdentityPoolResponse > ( request , options ) ; } |
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 ) { return m ; } } else { return "Operator " + getOperatorName ( ) + " does not allow subquery " + leq . toString ( ) ; } } return null ; } | 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 ; } } else { return "Operator " + OperatorName + " does not allow subquery " + leq . ToString ( ) ; } } return null ; } |
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 ( ) ; if ( altNumber != ATN . INVALID_ALT_NUMBER ) { return ruleName + ":" + altNumber ; } return ruleName ; } else if ( t instanceof ErrorNode ) { return t . toString ( ) ; } else if ( t instanceof TerminalNode ) { Token symbol = ( ( TerminalNode ) t ) . getSymbol ( ) ; if ( symbol != null ) { String s = symbol . getText ( ) ; return s ; } } } Object payload = t . getPayload ( ) ; if ( payload instanceof Token ) { return ( ( Token ) payload ) . getText ( ) ; } return t . getPayload ( ) . toString ( ) ; } | 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 . INVALID_ALT_NUMBER ) { return ruleName + ":" + altNumber ; } return ruleName ; } else { if ( t is IErrorNode ) { return t . ToString ( ) ; } else { if ( t is ITerminalNode ) { IToken symbol = ( ( ITerminalNode ) t ) . Symbol ; if ( symbol != null ) { string s = symbol . Text ; return s ; } } } } } object payload = t . Payload ; if ( payload is IToken ) { return ( ( IToken ) payload ) . Text ; } return t . Payload . ToString ( ) ; } |
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 Invoke < PollForDecisionTaskResponse > ( request , options ) ; } |
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 ; return Invoke < UpdateUserPhoneConfigResponse > ( request , options ) ; } |
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 = CreateStreamingDistributionWithTagsResponseUnmarshaller . Instance ; return Invoke < CreateStreamingDistributionWithTagsResponse > ( request , options ) ; } |
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 = DescribeNotificationSubscriptionsResponseUnmarshaller . Instance ; return Invoke < DescribeNotificationSubscriptionsResponse > ( request , options ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.