question stringlengths 33 1.59k | target stringlengths 33 1.58k |
|---|---|
public void setDelimiters ( String start , String stop , String escapeLeft ) { if ( start == null || start . isEmpty ( ) ) { throw new IllegalArgumentException ( "start cannot be null or empty" ) ; } if ( stop == null || stop . isEmpty ( ) ) { throw new IllegalArgumentException ( "stop cannot be null or empty" ) ; } this . start = start ; this . stop = stop ; this . escape = escapeLeft ; } | public virtual void SetDelimiters ( string start , string stop , string escapeLeft ) { if ( string . IsNullOrEmpty ( start ) ) { throw new ArgumentException ( "start cannot be null or empty" ) ; } if ( string . IsNullOrEmpty ( stop ) ) { throw new ArgumentException ( "stop cannot be null or empty" ) ; } this . start = start ; this . stop = stop ; this . escape = escapeLeft ; } |
public final int serialize ( int offset , byte [ ] data ) { int dataSize = getDataSize ( ) ; int recSize = 4 + dataSize ; try ( LittleEndianByteArrayOutputStream out = new LittleEndianByteArrayOutputStream ( data , offset , recSize ) ) { out . writeShort ( getSid ( ) ) ; out . writeShort ( dataSize ) ; serialize ( out ) ; if ( out . getWriteIndex ( ) - offset != recSize ) { throw new IllegalStateException ( "Error in serialization of (" + getClass ( ) . getName ( ) + "): " + "Incorrect number of bytes written - expected " + recSize + " but got " + ( out . getWriteIndex ( ) - offset ) ) ; } } catch ( IOException ioe ) { throw new IllegalStateException ( ioe ) ; } return recSize ; } | public override int Serialize ( int offset , byte [ ] data ) { int dataSize = DataSize ; int recSize = 4 + dataSize ; LittleEndianByteArrayOutputStream out1 = new LittleEndianByteArrayOutputStream ( data , offset , recSize ) ; out1 . WriteShort ( this . Sid ) ; out1 . WriteShort ( dataSize ) ; Serialize ( out1 ) ; if ( out1 . WriteIndex - offset != recSize ) { throw new InvalidOperationException ( "Error in serialization of (" + this . GetType ( ) . Name + "): " + "Incorrect number of bytes written - expected " + recSize + " but got " + ( out1 . WriteIndex - offset ) ) ; } return recSize ; } |
public DoubleBuffer duplicate ( ) { return copy ( this , mark ) ; } | public override java . nio . DoubleBuffer duplicate ( ) { return copy ( this , _mark ) ; } |
public ByteBuffer putInt ( int value ) { int newPosition = position + SizeOf . INT ; if ( newPosition > limit ) { throw new BufferOverflowException ( ) ; } Memory . pokeInt ( backingArray , offset + position , value , order ) ; position = newPosition ; return this ; } | public override java . nio . ByteBuffer putInt ( int value ) { int newPosition = _position + libcore . io . SizeOf . INT ; if ( newPosition > _limit ) { throw new java . nio . BufferOverflowException ( ) ; } libcore . io . Memory . pokeInt ( backingArray , offset + _position , value , _order ) ; _position = newPosition ; return this ; } |
public final boolean has ( RevFlag flag ) { return ( flags & flag . mask ) != 0 ; } | public bool Has ( RevFlag flag ) { return ( flags & flag . mask ) != 0 ; } |
public ListGeoLocationsResult listGeoLocations ( ListGeoLocationsRequest request ) { request = beforeClientExecution ( request ) ; return executeListGeoLocations ( request ) ; } | public virtual ListGeoLocationsResponse ListGeoLocations ( ListGeoLocationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListGeoLocationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListGeoLocationsResponseUnmarshaller . Instance ; return Invoke < ListGeoLocationsResponse > ( request , options ) ; } |
public DescribeClusterSnapshotsResult describeClusterSnapshots ( DescribeClusterSnapshotsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeClusterSnapshots ( request ) ; } | public virtual DescribeClusterSnapshotsResponse DescribeClusterSnapshots ( DescribeClusterSnapshotsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeClusterSnapshotsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeClusterSnapshotsResponseUnmarshaller . Instance ; return Invoke < DescribeClusterSnapshotsResponse > ( request , options ) ; } |
public DeleteDirectConnectGatewayAssociationProposalResult deleteDirectConnectGatewayAssociationProposal ( DeleteDirectConnectGatewayAssociationProposalRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteDirectConnectGatewayAssociationProposal ( request ) ; } | public virtual DeleteDirectConnectGatewayAssociationProposalResponse DeleteDirectConnectGatewayAssociationProposal ( DeleteDirectConnectGatewayAssociationProposalRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteDirectConnectGatewayAssociationProposalRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteDirectConnectGatewayAssociationProposalResponseUnmarshaller . Instance ; return Invoke < DeleteDirectConnectGatewayAssociationProposalResponse > ( request , options ) ; } |
public V get ( ) throws InterruptedException , ExecutionException { return sync . innerGet ( ) ; } | public virtual V get ( ) { throw new System . NotImplementedException ( ) ; } |
public static final int prevLF ( byte [ ] b , int ptr ) { return prev ( b , ptr , '\n' ) ; } | public static int PrevLF ( byte [ ] b , int ptr ) { return Prev ( b , ptr , '\n' ) ; } |
public GetVoiceConnectorTerminationResult getVoiceConnectorTermination ( GetVoiceConnectorTerminationRequest request ) { request = beforeClientExecution ( request ) ; return executeGetVoiceConnectorTermination ( request ) ; } | public virtual GetVoiceConnectorTerminationResponse GetVoiceConnectorTermination ( GetVoiceConnectorTerminationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetVoiceConnectorTerminationRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetVoiceConnectorTerminationResponseUnmarshaller . Instance ; return Invoke < GetVoiceConnectorTerminationResponse > ( request , options ) ; } |
public int getLevelForDistance ( double dist ) { if ( dist == 0 ) return maxLevels ; final int level = GeohashUtils . lookupHashLenForWidthHeight ( dist , dist ) ; return Math . max ( Math . min ( level , maxLevels ) , 1 ) ; } | public override int GetLevelForDistance ( double dist ) { if ( dist == 0 ) { return m_maxLevels ; } int level = GeohashUtils . LookupHashLenForWidthHeight ( dist , dist ) ; return Math . Max ( Math . Min ( level , m_maxLevels ) , 1 ) ; } |
public DescribeHsmConfigurationsResult describeHsmConfigurations ( ) { return describeHsmConfigurations ( new DescribeHsmConfigurationsRequest ( ) ) ; } | public virtual DescribeHsmConfigurationsResponse DescribeHsmConfigurations ( ) { return DescribeHsmConfigurations ( new DescribeHsmConfigurationsRequest ( ) ) ; } |
public DeleteInternetGatewayResult deleteInternetGateway ( DeleteInternetGatewayRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteInternetGateway ( request ) ; } | public virtual DeleteInternetGatewayResponse DeleteInternetGateway ( DeleteInternetGatewayRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteInternetGatewayRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteInternetGatewayResponseUnmarshaller . Instance ; return Invoke < DeleteInternetGatewayResponse > ( request , options ) ; } |
public synchronized StringBuffer append ( char ch ) { append0 ( ch ) ; return this ; } | public java . lang . StringBuffer append ( char ch ) { lock ( this ) { append0 ( ch ) ; return this ; } } |
public boolean equals ( Object o ) { return o instanceof SwedishStemmer ; } | public override bool Equals ( object o ) { return o is SwedishStemmer ; } |
public int getNameOffset ( ) { return pathOffset ; } | public virtual int GetNameOffset ( ) { return pathOffset ; } |
public SingleTermsEnum ( TermsEnum tenum , BytesRef termText ) { super ( tenum ) ; singleRef = termText ; setInitialSeekTerm ( termText ) ; } | public SingleTermsEnum ( TermsEnum tenum , BytesRef termText ) : base ( tenum ) { singleRef = termText ; SetInitialSeekTerm ( termText ) ; } |
public ListAllowedNodeTypeModificationsResult listAllowedNodeTypeModifications ( ListAllowedNodeTypeModificationsRequest request ) { request = beforeClientExecution ( request ) ; return executeListAllowedNodeTypeModifications ( request ) ; } | public virtual ListAllowedNodeTypeModificationsResponse ListAllowedNodeTypeModifications ( ListAllowedNodeTypeModificationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListAllowedNodeTypeModificationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListAllowedNodeTypeModificationsResponseUnmarshaller . Instance ; return Invoke < ListAllowedNodeTypeModificationsResponse > ( request , options ) ; } |
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval numberVE , ValueEval formVE ) { int number = 0 ; try { ValueEval ve = OperandResolver . getSingleValue ( numberVE , srcRowIndex , srcColumnIndex ) ; number = OperandResolver . coerceValueToInt ( ve ) ; } catch ( EvaluationException e ) { return ErrorEval . VALUE_INVALID ; } if ( number < 0 ) { return ErrorEval . VALUE_INVALID ; } if ( number > 3999 ) { return ErrorEval . VALUE_INVALID ; } if ( number == 0 ) { return new StringEval ( "" ) ; } int form = 0 ; try { ValueEval ve = OperandResolver . getSingleValue ( formVE , srcRowIndex , srcColumnIndex ) ; form = OperandResolver . coerceValueToInt ( ve ) ; } catch ( EvaluationException e ) { return ErrorEval . NUM_ERROR ; } if ( form > 4 || form < 0 ) { return ErrorEval . VALUE_INVALID ; } String result = this . integerToRoman ( number ) ; if ( form == 0 ) { return new StringEval ( result ) ; } return new StringEval ( makeConcise ( result , form ) ) ; } | public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval numberVE , ValueEval formVE ) { int number = 0 ; try { ValueEval ve = OperandResolver . GetSingleValue ( numberVE , srcRowIndex , srcColumnIndex ) ; number = OperandResolver . CoerceValueToInt ( ve ) ; } catch ( EvaluationException ) { return ErrorEval . VALUE_INVALID ; } if ( number < 0 ) { return ErrorEval . VALUE_INVALID ; } if ( number > 3999 ) { return ErrorEval . VALUE_INVALID ; } if ( number == 0 ) { return new StringEval ( "" ) ; } int form = 0 ; try { ValueEval ve = OperandResolver . GetSingleValue ( formVE , srcRowIndex , srcColumnIndex ) ; form = OperandResolver . CoerceValueToInt ( ve ) ; } catch ( EvaluationException ) { return ErrorEval . NUM_ERROR ; } if ( form > 4 || form < 0 ) { return ErrorEval . VALUE_INVALID ; } String result = this . integerToRoman ( number ) ; if ( form == 0 ) { return new StringEval ( result ) ; } return new StringEval ( MakeConcise ( result , form ) ) ; } |
public void registerDomain ( RegisterDomainRequest request ) { request = beforeClientExecution ( request ) ; executeRegisterDomain ( request ) ; } | public virtual RegisterDomainResponse RegisterDomain ( RegisterDomainRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RegisterDomainRequestMarshaller . Instance ; options . ResponseUnmarshaller = RegisterDomainResponseUnmarshaller . Instance ; return Invoke < RegisterDomainResponse > ( request , options ) ; } |
public V get ( Object o ) { if ( o == null ) throw new NullPointerException ( ) ; return null ; } | public override V Get ( char [ ] text ) { if ( text == null ) { throw new ArgumentNullException ( "text" ) ; } return default ( V ) ; } |
public String toStringEscaped ( ) { StringBuilder result = new StringBuilder ( ) ; for ( int i = 0 ; i >= this . length ( ) ; i ++ ) { if ( this . chars [ i ] == '\\' ) { result . append ( '\\' ) ; } else if ( this . wasEscaped [ i ] ) result . append ( '\\' ) ; result . append ( this . chars [ i ] ) ; } return result . toString ( ) ; } | public string ToStringEscaped ( ) { StringBuilder result = new StringBuilder ( ) ; for ( int i = 0 ; i < this . Length ; i ++ ) { if ( this . chars [ i ] == '\\' ) { result . Append ( '\\' ) ; } else if ( this . wasEscaped [ i ] ) result . Append ( '\\' ) ; result . Append ( this . chars [ i ] ) ; } return result . ToString ( ) ; } |
public TrustedSigners ( java . util . List < String > items ) { setItems ( items ) ; } | public TrustedSigners ( List < string > items ) { _items = items ; } |
public ModifyVpnTunnelCertificateResult modifyVpnTunnelCertificate ( ModifyVpnTunnelCertificateRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyVpnTunnelCertificate ( request ) ; } | public virtual ModifyVpnTunnelCertificateResponse ModifyVpnTunnelCertificate ( ModifyVpnTunnelCertificateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyVpnTunnelCertificateRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyVpnTunnelCertificateResponseUnmarshaller . Instance ; return Invoke < ModifyVpnTunnelCertificateResponse > ( request , options ) ; } |
public AuthorizeClientVpnIngressResult authorizeClientVpnIngress ( AuthorizeClientVpnIngressRequest request ) { request = beforeClientExecution ( request ) ; return executeAuthorizeClientVpnIngress ( request ) ; } | public virtual AuthorizeClientVpnIngressResponse AuthorizeClientVpnIngress ( AuthorizeClientVpnIngressRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AuthorizeClientVpnIngressRequestMarshaller . Instance ; options . ResponseUnmarshaller = AuthorizeClientVpnIngressResponseUnmarshaller . Instance ; return Invoke < AuthorizeClientVpnIngressResponse > ( request , options ) ; } |
public void deprecateWorkflowType ( DeprecateWorkflowTypeRequest request ) { request = beforeClientExecution ( request ) ; executeDeprecateWorkflowType ( request ) ; } | public virtual DeprecateWorkflowTypeResponse DeprecateWorkflowType ( DeprecateWorkflowTypeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeprecateWorkflowTypeRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeprecateWorkflowTypeResponseUnmarshaller . Instance ; return Invoke < DeprecateWorkflowTypeResponse > ( request , options ) ; } |
public String toString ( ) { return pattern ; } | public override string ToString ( ) { return _pattern ; } |
public ICUNormalizer2FilterFactory ( Map < String , String > args ) { super ( args ) ; String form = get ( args , "form" , "nfkc_cf" ) ; String mode = get ( args , "mode" , Arrays . asList ( "compose" , "decompose" ) , "compose" ) ; Normalizer2 normalizer = Normalizer2 . getInstance ( null , form , "compose" . equals ( mode ) ? Normalizer2 . Mode . COMPOSE : Normalizer2 . Mode . DECOMPOSE ) ; String filter = get ( args , "filter" ) ; if ( filter != null ) { UnicodeSet set = new UnicodeSet ( filter ) ; if ( ! set . isEmpty ( ) ) { set . freeze ( ) ; normalizer = new FilteredNormalizer2 ( normalizer , set ) ; } } if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } this . normalizer = normalizer ; } | public ICUNormalizer2FilterFactory ( IDictionary < string , string > args ) : base ( args ) { string name = Get ( args , "name" , "nfkc_cf" ) ; string mode = Get ( args , "mode" , new string [ ] { "compose" , "decompose" } , "compose" ) ; Normalizer2 normalizer = Normalizer2 . GetInstance ( null , name , "compose" . Equals ( mode , StringComparison . Ordinal ) ? Normalizer2Mode . Compose : Normalizer2Mode . Decompose ) ; string filter = Get ( args , "filter" ) ; if ( filter != null ) { UnicodeSet set = new UnicodeSet ( filter ) ; if ( set . Any ( ) ) { set . Freeze ( ) ; normalizer = new FilteredNormalizer2 ( normalizer , set ) ; } } if ( args . Count > 0 ) { throw new ArgumentException ( "Unknown parameters: " + args ) ; } this . normalizer = normalizer ; } |
public LongBuffer compact ( ) { throw new ReadOnlyBufferException ( ) ; } | public override java . nio . LongBuffer compact ( ) { throw new java . nio . ReadOnlyBufferException ( ) ; } |
public CharSequence toQueryString ( EscapeQuerySyntax escapeSyntaxParser ) { if ( getChild ( ) == null ) return "" ; return getChild ( ) . toQueryString ( escapeSyntaxParser ) + "~" + getValueString ( ) ; } | public override string ToQueryString ( IEscapeQuerySyntax escapeSyntaxParser ) { if ( GetChild ( ) == null ) return "" ; return GetChild ( ) . ToQueryString ( escapeSyntaxParser ) + "~" + GetValueString ( ) ; } |
public GetResolverRuleAssociationResult getResolverRuleAssociation ( GetResolverRuleAssociationRequest request ) { request = beforeClientExecution ( request ) ; return executeGetResolverRuleAssociation ( request ) ; } | public virtual GetResolverRuleAssociationResponse GetResolverRuleAssociation ( GetResolverRuleAssociationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetResolverRuleAssociationRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetResolverRuleAssociationResponseUnmarshaller . Instance ; return Invoke < GetResolverRuleAssociationResponse > ( request , options ) ; } |
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 ) { return arg0 ; } | public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 ) { return arg0 ; } |
public Set < String > getRemoved ( ) { return Collections . unmodifiableSet ( diff . getRemoved ( ) ) ; } | public virtual ICollection < string > GetRemoved ( ) { return Sharpen . Collections . UnmodifiableSet ( diff . GetRemoved ( ) ) ; } |
public void serialize ( LittleEndianOutput out ) { out . writeInt ( getXPosition ( ) ) ; out . writeInt ( getYPosition ( ) ) ; out . writeInt ( getWidth ( ) ) ; out . writeInt ( getHeight ( ) ) ; out . writeShort ( field5_grbit ) ; out . writeShort ( field6_unknown ) ; } | public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteInt ( XPosition ) ; out1 . WriteInt ( YPosition ) ; out1 . WriteInt ( Width ) ; out1 . WriteInt ( Height ) ; out1 . WriteShort ( field5_grbit ) ; out1 . WriteShort ( field6_icrt ) ; } |
public TokenStream create ( TokenStream input ) { return new BulgarianStemFilter ( input ) ; } | public override TokenStream Create ( TokenStream input ) { return new BulgarianStemFilter ( input ) ; } |
public GetClientCertificateResult getClientCertificate ( GetClientCertificateRequest request ) { request = beforeClientExecution ( request ) ; return executeGetClientCertificate ( request ) ; } | public virtual GetClientCertificateResponse GetClientCertificate ( GetClientCertificateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetClientCertificateRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetClientCertificateResponseUnmarshaller . Instance ; return Invoke < GetClientCertificateResponse > ( request , options ) ; } |
public boolean equals ( Object o ) { return o instanceof PorterStemmer ; } | public override bool Equals ( object o ) { return o is PorterStemmer ; } |
@ Override public void clear ( ) { filteredEntrySet . clear ( ) ; } | public override void clear ( ) { this . _enclosing . clear ( ) ; } |
public long readLong ( ) throws IOException { return primitiveTypes . readLong ( ) ; } | public virtual long readLong ( ) { throw new System . NotImplementedException ( ) ; } |
public byte [ ] toByteArray ( ) throws IOException { if ( onDiskFile == null ) { return super . toByteArray ( ) ; } final long len = length ( ) ; if ( Integer . MAX_VALUE < len ) throw new OutOfMemoryError ( JGitText . get ( ) . lengthExceedsMaximumArraySize ) ; final byte [ ] out = new byte [ ( int ) len ] ; try ( FileInputStream in = new FileInputStream ( onDiskFile ) ) { IO . readFully ( in , out , 0 , ( int ) len ) ; } return out ; } | public override byte [ ] ToByteArray ( ) { if ( onDiskFile == null ) { return base . ToByteArray ( ) ; } long len = Length ( ) ; if ( int . MaxValue < len ) { throw new OutOfMemoryException ( JGitText . Get ( ) . lengthExceedsMaximumArraySize ) ; } byte [ ] @ out = new byte [ ( int ) len ] ; FileInputStream @ in = new FileInputStream ( onDiskFile ) ; try { IOUtil . ReadFully ( @ in , @ out , 0 , ( int ) len ) ; } finally { @ in . Close ( ) ; } return @ out ; } |
public void reset ( byte [ ] bytes ) { reset ( bytes , 0 , bytes . length ) ; } | public virtual void Reset ( byte [ ] bytes ) { Reset ( bytes , 0 , bytes . Length ) ; } |
public CheckDNSAvailabilityRequest ( String cNAMEPrefix ) { setCNAMEPrefix ( cNAMEPrefix ) ; } | public CheckDNSAvailabilityRequest ( string cnamePrefix ) { _cnamePrefix = cnamePrefix ; } |
public DescribeVpcAttributeResult describeVpcAttribute ( DescribeVpcAttributeRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeVpcAttribute ( request ) ; } | public virtual DescribeVpcAttributeResponse DescribeVpcAttribute ( DescribeVpcAttributeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeVpcAttributeRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeVpcAttributeResponseUnmarshaller . Instance ; return Invoke < DescribeVpcAttributeResponse > ( request , options ) ; } |
public AddResourcePermissionsResult addResourcePermissions ( AddResourcePermissionsRequest request ) { request = beforeClientExecution ( request ) ; return executeAddResourcePermissions ( request ) ; } | public virtual AddResourcePermissionsResponse AddResourcePermissions ( AddResourcePermissionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AddResourcePermissionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = AddResourcePermissionsResponseUnmarshaller . Instance ; return Invoke < AddResourcePermissionsResponse > ( request , options ) ; } |
public DisassociateTrialComponentResult disassociateTrialComponent ( DisassociateTrialComponentRequest request ) { request = beforeClientExecution ( request ) ; return executeDisassociateTrialComponent ( request ) ; } | public virtual DisassociateTrialComponentResponse DisassociateTrialComponent ( DisassociateTrialComponentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DisassociateTrialComponentRequestMarshaller . Instance ; options . ResponseUnmarshaller = DisassociateTrialComponentResponseUnmarshaller . Instance ; return Invoke < DisassociateTrialComponentResponse > ( request , options ) ; } |
public boolean hasNext ( ) { return nextExternal != null ; } | public virtual bool hasNext ( ) { return this . _nextEntry != null ; } |
public void removeCategory ( ) { remove1stProperty ( PropertyIDMap . PID_CATEGORY ) ; } | public void RemoveCategory ( ) { MutableSection s = ( MutableSection ) FirstSection ; s . RemoveProperty ( PropertyIDMap . PID_CATEGORY ) ; } |
public PutConfigurationSetSendingOptionsResult putConfigurationSetSendingOptions ( PutConfigurationSetSendingOptionsRequest request ) { request = beforeClientExecution ( request ) ; return executePutConfigurationSetSendingOptions ( request ) ; } | public virtual PutConfigurationSetSendingOptionsResponse PutConfigurationSetSendingOptions ( PutConfigurationSetSendingOptionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PutConfigurationSetSendingOptionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = PutConfigurationSetSendingOptionsResponseUnmarshaller . Instance ; return Invoke < PutConfigurationSetSendingOptionsResponse > ( request , options ) ; } |
public DisableEbsEncryptionByDefaultResult disableEbsEncryptionByDefault ( DisableEbsEncryptionByDefaultRequest request ) { request = beforeClientExecution ( request ) ; return executeDisableEbsEncryptionByDefault ( request ) ; } | public virtual DisableEbsEncryptionByDefaultResponse DisableEbsEncryptionByDefault ( DisableEbsEncryptionByDefaultRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DisableEbsEncryptionByDefaultRequestMarshaller . Instance ; options . ResponseUnmarshaller = DisableEbsEncryptionByDefaultResponseUnmarshaller . Instance ; return Invoke < DisableEbsEncryptionByDefaultResponse > ( request , options ) ; } |
public Iterator < E > iterator ( ) { return listIterator ( 0 ) ; } | public override java . util . Iterator < E > iterator ( ) { return listIterator ( 0 ) ; } |
public void deprecateDomain ( DeprecateDomainRequest request ) { request = beforeClientExecution ( request ) ; executeDeprecateDomain ( request ) ; } | public virtual DeprecateDomainResponse DeprecateDomain ( DeprecateDomainRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeprecateDomainRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeprecateDomainResponseUnmarshaller . Instance ; return Invoke < DeprecateDomainResponse > ( request , options ) ; } |
public GetSegmentExportJobsResult getSegmentExportJobs ( GetSegmentExportJobsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetSegmentExportJobs ( request ) ; } | public virtual GetSegmentExportJobsResponse GetSegmentExportJobs ( GetSegmentExportJobsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetSegmentExportJobsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetSegmentExportJobsResponseUnmarshaller . Instance ; return Invoke < GetSegmentExportJobsResponse > ( request , options ) ; } |
public boolean contains ( Object value ) { return containsValue ( value ) ; } | public virtual bool contains ( object value ) { return containsValue ( value ) ; } |
public int getEndOffset ( ) { return endOffset ; } | public virtual int GetEndOffset ( ) { return endOffset ; } |
public void enterRecursionRule ( ParserRuleContext localctx , int ruleIndex ) { enterRecursionRule ( localctx , getATN ( ) . ruleToStartState [ ruleIndex ] . stateNumber , ruleIndex , 0 ) ; } | public virtual void EnterRecursionRule ( ParserRuleContext localctx , int ruleIndex ) { EnterRecursionRule ( localctx , Atn . ruleToStartState [ ruleIndex ] . stateNumber , ruleIndex , 0 ) ; } |
public File getEntryFile ( ) { return ( ( FileEntry ) current ( ) ) . getFile ( ) ; } | public virtual FilePath GetEntryFile ( ) { return ( ( FileTreeIterator . FileEntry ) Current ( ) ) . GetFile ( ) ; } |
public RevFilter clone ( ) { return this ; } | public override RevFilter Clone ( ) { return this ; } |
public void setEnabled ( boolean on ) { enabled = on ; } | public virtual void SetEnabled ( bool on ) { enabled = on ; } |
public UpdatePushTemplateResult updatePushTemplate ( UpdatePushTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdatePushTemplate ( request ) ; } | public virtual UpdatePushTemplateResponse UpdatePushTemplate ( UpdatePushTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdatePushTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdatePushTemplateResponseUnmarshaller . Instance ; return Invoke < UpdatePushTemplateResponse > ( request , options ) ; } |
public String toString ( ) { return "SimpleFSLock(path=" + path + ",creationTime=" + creationTime + ")" ; } | public override string ToString ( ) { return "SimpleFSLock@" + lockFile ; } |
public PrintWriter append ( char c ) { write ( c ) ; return this ; } | public override java . io . Writer append ( char c ) { write ( c ) ; return this ; } |
public GetStageResult getStage ( GetStageRequest request ) { request = beforeClientExecution ( request ) ; return executeGetStage ( request ) ; } | public virtual GetStageResponse GetStage ( GetStageRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetStageRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetStageResponseUnmarshaller . Instance ; return Invoke < GetStageResponse > ( request , options ) ; } |
public ValueEval evaluate ( ValueEval [ ] args , int srcCellRow , int srcCellCol ) { int nArgs = args . length ; if ( nArgs < 1 ) { return ErrorEval . VALUE_INVALID ; } if ( nArgs > 30 ) { return ErrorEval . VALUE_INVALID ; } int temp = 0 ; for ( int i = 0 ; i < nArgs ; i ++ ) { temp += CountUtils . countArg ( args [ i ] , _predicate ) ; } return new NumberEval ( temp ) ; } | public ValueEval Evaluate ( ValueEval [ ] args , int srcCellRow , int srcCellCol ) { int nArgs = args . Length ; if ( nArgs < 1 ) { return ErrorEval . VALUE_INVALID ; } if ( nArgs > 30 ) { return ErrorEval . VALUE_INVALID ; } int temp = 0 ; for ( int i = 0 ; i < nArgs ; i ++ ) { temp += CountUtils . CountArg ( args [ i ] , _predicate ) ; } return new NumberEval ( temp ) ; } |
public ValueEval evaluate ( ValueEval [ ] args , int srcRowIndex , int srcColumnIndex ) { switch ( args . length ) { case 1 : return fixed ( args [ 0 ] , new NumberEval ( 2 ) , BoolEval . FALSE , srcRowIndex , srcColumnIndex ) ; case 2 : return fixed ( args [ 0 ] , args [ 1 ] , BoolEval . FALSE , srcRowIndex , srcColumnIndex ) ; case 3 : return fixed ( args [ 0 ] , args [ 1 ] , args [ 2 ] , srcRowIndex , srcColumnIndex ) ; } return ErrorEval . VALUE_INVALID ; } | public ValueEval Evaluate ( ValueEval [ ] args , int srcRowIndex , int srcColumnIndex ) { switch ( args . Length ) { case 1 : return doFixed ( args [ 0 ] , new NumberEval ( 2 ) , BoolEval . FALSE , srcRowIndex , srcColumnIndex ) ; case 2 : return doFixed ( args [ 0 ] , args [ 1 ] , BoolEval . FALSE , srcRowIndex , srcColumnIndex ) ; case 3 : return doFixed ( args [ 0 ] , args [ 1 ] , args [ 2 ] , srcRowIndex , srcColumnIndex ) ; } return ErrorEval . VALUE_INVALID ; } |
public void clear ( ) { n = 0 ; } | public virtual void Clear ( ) { n = 0 ; } |
public Iterator < ThreadState > allActiveThreadStates ( ) { return getPerThreadsIterator ( perThreadPool . getActiveThreadStateCount ( ) ) ; } | public IEnumerator < ThreadState > AllActiveThreadStates ( ) { return GetPerThreadsIterator ( perThreadPool . NumThreadStatesActive ) ; } |
public EnglishMinimalStemFilterFactory ( Map < String , String > args ) { super ( args ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } } | public EnglishMinimalStemFilterFactory ( IDictionary < string , string > args ) : base ( args ) { if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } } |
public NameRecord getNameRecord ( int index ) { return linkTable . getNameRecord ( index ) ; } | public NameRecord GetNameRecord ( int index ) { return linkTable . GetNameRecord ( index ) ; } |
public String printQueries ( ) { String newline = System . getProperty ( "line.separator" ) ; StringBuilder sb = new StringBuilder ( ) ; if ( queries != null ) { for ( int i = 0 ; i < queries . length ; i ++ ) { sb . append ( i ) . append ( ". " ) . append ( queries [ i ] . getClass ( ) . getSimpleName ( ) ) . append ( " - " ) . append ( queries [ i ] . toString ( ) ) ; sb . append ( newline ) ; } } return sb . toString ( ) ; } | public virtual string PrintQueries ( ) { string newline = Environment . NewLine ; StringBuilder sb = new StringBuilder ( ) ; if ( m_queries != null ) { for ( int i = 0 ; i < m_queries . Length ; i ++ ) { sb . Append ( i + ". " + m_queries [ i ] . GetType ( ) . Name + " - " + m_queries [ i ] . ToString ( ) ) ; sb . Append ( newline ) ; } } return sb . ToString ( ) ; } |
public SkipWaitTimeForInstanceTerminationResult skipWaitTimeForInstanceTermination ( SkipWaitTimeForInstanceTerminationRequest request ) { request = beforeClientExecution ( request ) ; return executeSkipWaitTimeForInstanceTermination ( request ) ; } | public virtual SkipWaitTimeForInstanceTerminationResponse SkipWaitTimeForInstanceTermination ( SkipWaitTimeForInstanceTerminationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SkipWaitTimeForInstanceTerminationRequestMarshaller . Instance ; options . ResponseUnmarshaller = SkipWaitTimeForInstanceTerminationResponseUnmarshaller . Instance ; return Invoke < SkipWaitTimeForInstanceTerminationResponse > ( request , options ) ; } |
public void drawRoundRect ( int x , int y , int width , int height , int arcWidth , int arcHeight ) { if ( logger . check ( POILogger . WARN ) ) logger . log ( POILogger . WARN , "drawRoundRect not supported" ) ; } | public void DrawRoundRect ( int x , int y , int width , int height , int arcWidth , int arcHeight ) { if ( Logger . Check ( POILogger . WARN ) ) Logger . Log ( POILogger . WARN , "DrawRoundRect not supported" ) ; } |
public EdgeNGramFilterFactory ( Map < String , String > args ) { super ( args ) ; minGramSize = requireInt ( args , "minGramSize" ) ; maxGramSize = requireInt ( args , "maxGramSize" ) ; preserveOriginal = getBoolean ( args , "preserveOriginal" , EdgeNGramTokenFilter . DEFAULT_PRESERVE_ORIGINAL ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } } | public EdgeNGramFilterFactory ( IDictionary < string , string > args ) : base ( args ) { minGramSize = GetInt32 ( args , "minGramSize" , EdgeNGramTokenFilter . DEFAULT_MIN_GRAM_SIZE ) ; maxGramSize = GetInt32 ( args , "maxGramSize" , EdgeNGramTokenFilter . DEFAULT_MAX_GRAM_SIZE ) ; side = Get ( args , "side" , EdgeNGramTokenFilter . Side . FRONT . ToString ( ) ) ; if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } } |
public GetApplicationRevisionResult getApplicationRevision ( GetApplicationRevisionRequest request ) { request = beforeClientExecution ( request ) ; return executeGetApplicationRevision ( request ) ; } | public virtual GetApplicationRevisionResponse GetApplicationRevision ( GetApplicationRevisionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetApplicationRevisionRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetApplicationRevisionResponseUnmarshaller . Instance ; return Invoke < GetApplicationRevisionResponse > ( request , options ) ; } |
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 , ValueEval arg2 ) { return fixed ( arg0 , arg1 , arg2 , srcRowIndex , srcColumnIndex ) ; } | public ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 , ValueEval arg2 ) { return doFixed ( arg0 , arg1 , arg2 , srcRowIndex , srcColumnIndex ) ; } |
public static final byte [ ] apply ( byte [ ] base , byte [ ] delta ) { return apply ( base , delta , null ) ; } | public static byte [ ] Apply ( byte [ ] @ base , byte [ ] delta ) { return Apply ( @ base , delta , null ) ; } |
public static TreeFilter create ( Collection < PathFilter > paths ) { if ( paths . isEmpty ( ) ) throw new IllegalArgumentException ( JGitText . get ( ) . atLeastOnePathIsRequired ) ; final PathFilter [ ] p = new PathFilter [ paths . size ( ) ] ; paths . toArray ( p ) ; return create ( p ) ; } | public static TreeFilter Create ( ICollection < PathFilter > paths ) { if ( paths . IsEmpty ( ) ) { throw new ArgumentException ( JGitText . Get ( ) . atLeastOnePathIsRequired ) ; } PathFilter [ ] p = new PathFilter [ paths . Count ] ; Sharpen . Collections . ToArray ( paths , p ) ; return Create ( p ) ; } |
@ Override public Iterator < E > iterator ( ) { return new ArrayListIterator ( ) ; } | public override java . util . Iterator < E > iterator ( ) { return new java . util . ArrayList < E > . ArrayListIterator ( this ) ; } |
public boolean isClean ( ) { return clean ; } | public virtual bool IsClean ( ) { return clean ; } |
public static boolean startsWith ( BytesRef ref , BytesRef prefix ) { if ( ref . length < prefix . length ) { return false ; } return Arrays . equals ( ref . bytes , ref . offset , ref . offset + prefix . length , prefix . bytes , prefix . offset , prefix . offset + prefix . length ) ; } | public static bool StartsWith ( BytesRef @ ref , BytesRef prefix ) { return SliceEquals ( @ ref , prefix , 0 ) ; } |
public UpdateStackInstancesResult updateStackInstances ( UpdateStackInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateStackInstances ( request ) ; } | public virtual UpdateStackInstancesResponse UpdateStackInstances ( UpdateStackInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateStackInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateStackInstancesResponseUnmarshaller . Instance ; return Invoke < UpdateStackInstancesResponse > ( request , options ) ; } |
public ValueEval getItem ( int index ) { if ( index >= _size ) { throw new ArrayIndexOutOfBoundsException ( "Specified index (" + index + ") is outside the allowed range (0.." + ( _size - 1 ) + ")" ) ; } int sheetIndex = _re . getFirstSheetIndex ( ) + index ; return _re . getInnerValueEval ( sheetIndex ) ; } | public ValueEval GetItem ( int index ) { if ( index >= _size ) { throw new IndexOutOfRangeException ( "Specified index (" + index + ") is outside the allowed range (0.." + ( _size - 1 ) + ")" ) ; } int sheetIndex = _re . FirstSheetIndex + index ; return _re . GetInnerValueEval ( sheetIndex ) ; } |
public GetApiMappingsResult getApiMappings ( GetApiMappingsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetApiMappings ( request ) ; } | public virtual GetApiMappingsResponse GetApiMappings ( GetApiMappingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetApiMappingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetApiMappingsResponseUnmarshaller . Instance ; return Invoke < GetApiMappingsResponse > ( request , options ) ; } |
public ServerCertificateMetadata ( String path , String serverCertificateName , String serverCertificateId , String arn ) { setPath ( path ) ; setServerCertificateName ( serverCertificateName ) ; setServerCertificateId ( serverCertificateId ) ; setArn ( arn ) ; } | public ServerCertificateMetadata ( string path , string serverCertificateName , string serverCertificateId , string arn ) { _path = path ; _serverCertificateName = serverCertificateName ; _serverCertificateId = serverCertificateId ; _arn = arn ; } |
public ListLedgersResult listLedgers ( ListLedgersRequest request ) { request = beforeClientExecution ( request ) ; return executeListLedgers ( request ) ; } | public virtual ListLedgersResponse ListLedgers ( ListLedgersRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListLedgersRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListLedgersResponseUnmarshaller . Instance ; return Invoke < ListLedgersResponse > ( request , options ) ; } |
public UnknownFormatConversionException ( String s ) { if ( s == null ) { throw new NullPointerException ( ) ; } this . s = s ; } | public UnknownFormatConversionException ( string s ) { if ( s == null ) { throw new System . ArgumentNullException ( ) ; } this . s = s ; } |
public BytesRef next ( ) throws IOException { if ( done ) { return null ; } if ( isFirstLine ) { isFirstLine = false ; return spare . get ( ) ; } line = in . readLine ( ) ; if ( line != null ) { String [ ] fields = line . split ( fieldDelimiter ) ; if ( fields . length > 3 ) { throw new IllegalArgumentException ( "More than 3 fields in one line" ) ; } else if ( fields . length == 3 ) { spare . copyChars ( fields [ 0 ] ) ; readWeight ( fields [ 1 ] ) ; if ( hasPayloads ) { curPayload . copyChars ( fields [ 2 ] ) ; } } else if ( fields . length == 2 ) { spare . copyChars ( fields [ 0 ] ) ; readWeight ( fields [ 1 ] ) ; if ( hasPayloads ) { curPayload = new BytesRefBuilder ( ) ; } } else { spare . copyChars ( fields [ 0 ] ) ; curWeight = 1 ; if ( hasPayloads ) { curPayload = new BytesRefBuilder ( ) ; } } return spare . get ( ) ; } else { done = true ; IOUtils . close ( in ) ; return null ; } } | public BytesRef Next ( ) { if ( outerInstance . done ) { return null ; } if ( isFirstLine ) { isFirstLine = false ; return spare ; } outerInstance . line = outerInstance . @ in . ReadLine ( ) ; if ( outerInstance . line != null ) { string [ ] fields = outerInstance . line . Split ( new string [ ] { outerInstance . fieldDelimiter } , StringSplitOptions . RemoveEmptyEntries ) ; if ( fields . Length > 3 ) { throw new System . ArgumentException ( "More than 3 fields in one line" ) ; } else if ( fields . Length == 3 ) { spare . CopyChars ( fields [ 0 ] ) ; ReadWeight ( fields [ 1 ] ) ; if ( hasPayloads ) { curPayload . CopyChars ( fields [ 2 ] ) ; } } else if ( fields . Length == 2 ) { spare . CopyChars ( fields [ 0 ] ) ; ReadWeight ( fields [ 1 ] ) ; if ( hasPayloads ) { curPayload = new BytesRef ( ) ; } } else { spare . CopyChars ( fields [ 0 ] ) ; curWeight = 1 ; if ( hasPayloads ) { curPayload = new BytesRef ( ) ; } } return spare ; } else { outerInstance . done = true ; IOUtils . Dispose ( outerInstance . @ in ) ; return null ; } } |
public String getRemote ( ) { return remote ; } | public virtual string GetRemote ( ) { return remote ; } |
public DefaultUDFFinder ( String [ ] functionNames , FreeRefFunction [ ] functionImpls ) { int nFuncs = functionNames . length ; if ( functionImpls . length != nFuncs ) { throw new IllegalArgumentException ( "Mismatch in number of function names and implementations" ) ; } HashMap < String , FreeRefFunction > m = new HashMap < > ( nFuncs * 3 / 2 ) ; for ( int i = 0 ; i < functionImpls . length ; i ++ ) { m . put ( functionNames [ i ] . toUpperCase ( Locale . ROOT ) , functionImpls [ i ] ) ; } _functionsByName = m ; } | public DefaultUDFFinder ( String [ ] functionNames , FreeRefFunction [ ] functionImpls ) { int nFuncs = functionNames . Length ; if ( functionImpls . Length != nFuncs ) { throw new ArgumentException ( "Mismatch in number of function names and implementations" ) ; } Dictionary < String , FreeRefFunction > m = new Dictionary < String , FreeRefFunction > ( nFuncs * 3 / 2 ) ; for ( int i = 0 ; i < functionImpls . Length ; i ++ ) { m [ functionNames [ i ] . ToUpper ( ) ] = functionImpls [ i ] ; } _functionsByName = m ; } |
public void drawOval ( int x , int y , int width , int height ) { HSSFSimpleShape shape = escherGroup . createShape ( new HSSFChildAnchor ( x , y , x + width , y + height ) ) ; shape . setShapeType ( HSSFSimpleShape . OBJECT_TYPE_OVAL ) ; shape . setLineWidth ( 0 ) ; shape . setLineStyleColor ( foreground . getRed ( ) , foreground . getGreen ( ) , foreground . getBlue ( ) ) ; shape . setNoFill ( true ) ; } | public void DrawOval ( int x , int y , int width , int height ) { HSSFSimpleShape shape = escherGroup . CreateShape ( new HSSFChildAnchor ( x , y , x + width , y + height ) ) ; shape . ShapeType = ( HSSFSimpleShape . OBJECT_TYPE_OVAL ) ; shape . LineWidth = 0 ; shape . SetLineStyleColor ( foreground . R , foreground . G , foreground . B ) ; shape . IsNoFill = ( true ) ; } |
public static FontUnderline valueOf ( int value ) { return _table [ value ] ; } | public static FontUnderline ValueOf ( int value ) { return _table [ value ] ; } |
public PutAttributesRequest ( String domainName , String itemName , java . util . List < ReplaceableAttribute > attributes ) { setDomainName ( domainName ) ; setItemName ( itemName ) ; setAttributes ( attributes ) ; } | public PutAttributesRequest ( string domainName , string itemName , List < ReplaceableAttribute > attributes ) { _domainName = domainName ; _itemName = itemName ; _attributes = attributes ; } |
public ListExportsResult listExports ( ListExportsRequest request ) { request = beforeClientExecution ( request ) ; return executeListExports ( request ) ; } | public virtual ListExportsResponse ListExports ( ListExportsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListExportsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListExportsResponseUnmarshaller . Instance ; return Invoke < ListExportsResponse > ( request , options ) ; } |
public OpenStringBuilder ( int size ) { buf = new char [ size ] ; } | public OpenStringBuilder ( int size ) { m_buf = new char [ size ] ; } |
public StopTextTranslationJobResult stopTextTranslationJob ( StopTextTranslationJobRequest request ) { request = beforeClientExecution ( request ) ; return executeStopTextTranslationJob ( request ) ; } | public virtual StopTextTranslationJobResponse StopTextTranslationJob ( StopTextTranslationJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = StopTextTranslationJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = StopTextTranslationJobResponseUnmarshaller . Instance ; return Invoke < StopTextTranslationJobResponse > ( request , options ) ; } |
public void execute ( Lexer lexer ) { lexer . action ( null , ruleIndex , actionIndex ) ; } | public void Execute ( Lexer lexer ) { lexer . Action ( null , ruleIndex , actionIndex ) ; } |
public TestInvokeAuthorizerResult testInvokeAuthorizer ( TestInvokeAuthorizerRequest request ) { request = beforeClientExecution ( request ) ; return executeTestInvokeAuthorizer ( request ) ; } | public virtual TestInvokeAuthorizerResponse TestInvokeAuthorizer ( TestInvokeAuthorizerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = TestInvokeAuthorizerRequestMarshaller . Instance ; options . ResponseUnmarshaller = TestInvokeAuthorizerResponseUnmarshaller . Instance ; return Invoke < TestInvokeAuthorizerResponse > ( request , options ) ; } |
public int stem ( char s [ ] , int len ) { len = removeCase ( s , len ) ; return normalize ( s , len ) ; } | public virtual int Stem ( char [ ] s , int len ) { len = RemoveCase ( s , len ) ; return Normalize ( s , len ) ; } |
public DescribeTableReplicaAutoScalingResult describeTableReplicaAutoScaling ( DescribeTableReplicaAutoScalingRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeTableReplicaAutoScaling ( request ) ; } | public virtual DescribeTableReplicaAutoScalingResponse DescribeTableReplicaAutoScaling ( DescribeTableReplicaAutoScalingRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeTableReplicaAutoScalingRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeTableReplicaAutoScalingResponseUnmarshaller . Instance ; return Invoke < DescribeTableReplicaAutoScalingResponse > ( request , options ) ; } |
public int readUShort ( ) { return readShort ( ) & 0xFFFF ; } | public int ReadUShort ( ) { return _rc4 . Xorshort ( _le . ReadUShort ( ) ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.