question
stringlengths
33
1.59k
target
stringlengths
33
1.58k
public GetIdentityVerificationAttributesResult getIdentityVerificationAttributes ( GetIdentityVerificationAttributesRequest request ) { request = beforeClientExecution ( request ) ; return executeGetIdentityVerificationAttributes ( request ) ; }
public virtual GetIdentityVerificationAttributesResponse GetIdentityVerificationAttributes ( GetIdentityVerificationAttributesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetIdentityVerificationAttributesRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetIdentityVerificationAttributesResponseUnmarshaller . Instance ; return Invoke < GetIdentityVerificationAttributesResponse > ( request , options ) ; }
public LittleEndianOutputStream ( OutputStream out ) { super ( out ) ; }
public LittleEndianOutputStream ( Stream out1 ) { this . out1 = out1 ; }
public GetDeploymentGroupResult getDeploymentGroup ( GetDeploymentGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeGetDeploymentGroup ( request ) ; }
public virtual GetDeploymentGroupResponse GetDeploymentGroup ( GetDeploymentGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetDeploymentGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetDeploymentGroupResponseUnmarshaller . Instance ; return Invoke < GetDeploymentGroupResponse > ( request , options ) ; }
public boolean containsKey ( char [ ] text , int off , int len ) { if ( text == null ) throw new NullPointerException ( ) ; return false ; }
public override bool ContainsKey ( char [ ] text , int offset , int length ) { if ( text == null ) { throw new ArgumentNullException ( "text" ) ; } return false ; }
public void inform ( ResourceLoader loader ) throws IOException { clazz = registry . get ( name . toUpperCase ( Locale . ROOT ) ) ; if ( clazz == null ) { clazz = resolveEncoder ( name , loader ) ; } if ( maxCodeLength != null ) { try { setMaxCodeLenMethod = clazz . getMethod ( "setMaxCodeLen" , int . class ) ; } catch ( Exception e ) { throw new IllegalArgumentException ( "Encoder " + name + " / " + clazz + " does not support " + MAX_CODE_LENGTH , e ) ; } } getEncoder ( ) ; }
public virtual void Inform ( IResourceLoader loader ) { registry . TryGetValue ( name . ToUpperInvariant ( ) , out clazz ) ; if ( clazz == null ) { clazz = ResolveEncoder ( name , loader ) ; } if ( maxCodeLength != null ) { try { setMaxCodeLenMethod = clazz . GetMethod ( "set_MaxCodeLen" ) ; } catch ( Exception e ) { throw new ArgumentException ( "Encoder " + name + " / " + clazz + " does not support " + MAX_CODE_LENGTH , e ) ; } } GetEncoder ( ) ; }
public DescribeOrganizationConfigurationResult describeOrganizationConfiguration ( DescribeOrganizationConfigurationRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeOrganizationConfiguration ( request ) ; }
public virtual DescribeOrganizationConfigurationResponse DescribeOrganizationConfiguration ( DescribeOrganizationConfigurationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeOrganizationConfigurationRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeOrganizationConfigurationResponseUnmarshaller . Instance ; return Invoke < DescribeOrganizationConfigurationResponse > ( request , options ) ; }
public AbbreviatedObjectId getOldId ( ) { return getOldId ( 0 ) ; }
public override AbbreviatedObjectId GetOldId ( ) { return GetOldId ( 0 ) ; }
public UpdateRuleMetadataResult updateRuleMetadata ( UpdateRuleMetadataRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateRuleMetadata ( request ) ; }
public virtual UpdateRuleMetadataResponse UpdateRuleMetadata ( UpdateRuleMetadataRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateRuleMetadataRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateRuleMetadataResponseUnmarshaller . Instance ; return Invoke < UpdateRuleMetadataResponse > ( request , options ) ; }
public K lowerKey ( K key ) { Entry < K , V > entry = findBounded ( key , LOWER ) ; return entry != null ? entry . getKey ( ) : null ; }
public K lowerKey ( K key ) { java . util . MapClass . Entry < K , V > entry = this . findBounded ( key , java . util . TreeMap . Relation . LOWER ) ; return entry != null ? entry . getKey ( ) : default ( K ) ; }
public FtCfSubRecord clone ( ) { return copy ( ) ; }
public override Object Clone ( ) { FtCfSubRecord rec = new FtCfSubRecord ( ) ; rec . flags = this . flags ; return rec ; }
public HCenterRecord clone ( ) { return copy ( ) ; }
public override Object Clone ( ) { HCenterRecord rec = new HCenterRecord ( ) ; rec . field_1_hcenter = field_1_hcenter ; return rec ; }
public void serialize ( LittleEndianOutput out ) { out . writeInt ( field_1_foregroundColor ) ; out . writeInt ( field_2_backgroundColor ) ; out . writeShort ( field_3_pattern ) ; out . writeShort ( field_4_formatFlags ) ; out . writeShort ( field_5_forecolorIndex ) ; out . writeShort ( field_6_backcolorIndex ) ; }
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteInt ( field_1_foregroundColor ) ; out1 . WriteInt ( field_2_backgroundColor ) ; out1 . WriteShort ( field_3_pattern ) ; out1 . WriteShort ( field_4_formatFlags ) ; out1 . WriteShort ( field_5_forecolorIndex ) ; out1 . WriteShort ( field_6_backcolorIndex ) ; }
public GetDashboardEmbedUrlResult getDashboardEmbedUrl ( GetDashboardEmbedUrlRequest request ) { request = beforeClientExecution ( request ) ; return executeGetDashboardEmbedUrl ( request ) ; }
public virtual GetDashboardEmbedUrlResponse GetDashboardEmbedUrl ( GetDashboardEmbedUrlRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetDashboardEmbedUrlRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetDashboardEmbedUrlResponseUnmarshaller . Instance ; return Invoke < GetDashboardEmbedUrlResponse > ( request , options ) ; }
public BinaryDocValues getBinaryDocValues ( String field ) { return getSortedDocValues ( field , DocValuesType . BINARY ) ; }
public override BinaryDocValues GetBinaryDocValues ( string field ) { return null ; }
public TreeFilter clone ( ) { final TreeFilter [ ] s = new TreeFilter [ subfilters . length ] ; for ( int i = 0 ; i < s . length ; i ++ ) s [ i ] = subfilters [ i ] . clone ( ) ; return new List ( s ) ; }
public override RevFilter Clone ( ) { RevFilter [ ] s = new RevFilter [ subfilters . Length ] ; for ( int i = 0 ; i < s . Length ; i ++ ) { s [ i ] = subfilters [ i ] . Clone ( ) ; } return new OrRevFilter . List ( s ) ; }
public DeleteApnsVoipSandboxChannelResult deleteApnsVoipSandboxChannel ( DeleteApnsVoipSandboxChannelRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteApnsVoipSandboxChannel ( request ) ; }
public virtual DeleteApnsVoipSandboxChannelResponse DeleteApnsVoipSandboxChannel ( DeleteApnsVoipSandboxChannelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteApnsVoipSandboxChannelRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteApnsVoipSandboxChannelResponseUnmarshaller . Instance ; return Invoke < DeleteApnsVoipSandboxChannelResponse > ( request , options ) ; }
public FreeRefFunction findFunction ( String name ) { return _functionsByName . get ( name . toUpperCase ( Locale . ROOT ) ) ; }
public override FreeRefFunction FindFunction ( String name ) { if ( ! _functionsByName . ContainsKey ( name . ToUpper ( ) ) ) return null ; return _functionsByName [ name . ToUpper ( ) ] ; }
public Credentials ( String accessKeyId , String secretAccessKey , String sessionToken , java . util . Date expiration ) { setAccessKeyId ( accessKeyId ) ; setSecretAccessKey ( secretAccessKey ) ; setSessionToken ( sessionToken ) ; setExpiration ( expiration ) ; }
public Credentials ( string accessKeyId , string secretAccessKey , string sessionToken , DateTime expiration ) { _accessKeyId = accessKeyId ; _secretAccessKey = secretAccessKey ; _sessionToken = sessionToken ; _expiration = expiration ; }
public ReadTask ( PerfRunData runData ) { super ( runData ) ; if ( withSearch ( ) ) { queryMaker = getQueryMaker ( ) ; } else { queryMaker = null ; } }
public ReadTask ( PerfRunData runData ) : base ( runData ) { if ( WithSearch ) { queryMaker = GetQueryMaker ( ) ; } else { queryMaker = null ; } }
public int getPositionIncrementGap ( String fieldName ) { return 0 ; }
public virtual int GetPositionIncrementGap ( string fieldName ) { return 0 ; }
public void serialize ( LittleEndianOutput out ) { out . writeInt ( _option_flags ) ; serializeUnicodeString ( _promptTitle , out ) ; serializeUnicodeString ( _errorTitle , out ) ; serializeUnicodeString ( _promptText , out ) ; serializeUnicodeString ( _errorText , out ) ; out . writeShort ( _formula1 . getEncodedTokenSize ( ) ) ; out . writeShort ( _not_used_1 ) ; _formula1 . serializeTokens ( out ) ; out . writeShort ( _formula2 . getEncodedTokenSize ( ) ) ; out . writeShort ( _not_used_2 ) ; _formula2 . serializeTokens ( out ) ; _regions . serialize ( out ) ; }
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteInt ( _option_flags ) ; SerializeUnicodeString ( _promptTitle , out1 ) ; SerializeUnicodeString ( _errorTitle , out1 ) ; SerializeUnicodeString ( _promptText , out1 ) ; SerializeUnicodeString ( _errorText , out1 ) ; out1 . WriteShort ( _formula1 . EncodedTokenSize ) ; out1 . WriteShort ( _not_used_1 ) ; _formula1 . SerializeTokens ( out1 ) ; out1 . WriteShort ( _formula2 . EncodedTokenSize ) ; out1 . WriteShort ( _not_used_2 ) ; _formula2 . SerializeTokens ( out1 ) ; _regions . Serialize ( out1 ) ; }
public String toString ( ) { return "[PRINTHEADERS]\n" + " .printheaders = " + getPrintHeaders ( ) + "\n" + "[/PRINTHEADERS]\n" ; }
public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[PRINTHEADERS]\n" ) ; buffer . Append ( " .printheaders = " ) . Append ( PrintHeaders ) . Append ( "\n" ) ; buffer . Append ( "[/PRINTHEADERS]\n" ) ; return buffer . ToString ( ) ; }
public GetConferencePreferenceResult getConferencePreference ( GetConferencePreferenceRequest request ) { request = beforeClientExecution ( request ) ; return executeGetConferencePreference ( request ) ; }
public virtual GetConferencePreferenceResponse GetConferencePreference ( GetConferencePreferenceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetConferencePreferenceRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetConferencePreferenceResponseUnmarshaller . Instance ; return Invoke < GetConferencePreferenceResponse > ( request , options ) ; }
public static BitSet getAlts ( Collection < BitSet > altsets ) { BitSet all = new BitSet ( ) ; for ( BitSet alts : altsets ) { all . or ( alts ) ; } return all ; }
public static BitSet GetAlts ( IEnumerable < BitSet > altsets ) { BitSet all = new BitSet ( ) ; foreach ( BitSet alts in altsets ) { all . Or ( alts ) ; } return all ; }
public ListTrafficPolicyInstancesResult listTrafficPolicyInstances ( ListTrafficPolicyInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeListTrafficPolicyInstances ( request ) ; }
public virtual ListTrafficPolicyInstancesResponse ListTrafficPolicyInstances ( ListTrafficPolicyInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListTrafficPolicyInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListTrafficPolicyInstancesResponseUnmarshaller . Instance ; return Invoke < ListTrafficPolicyInstancesResponse > ( request , options ) ; }
public void init ( Repository src ) { repository = src ; }
public virtual void Init ( Repository src ) { repository = src ; }
public StandardSyntaxParser ( StandardSyntaxParserTokenManager tm ) { token_source = tm ; token = new Token ( ) ; jj_ntk = - 1 ; jj_gen = 0 ; for ( int i = 0 ; i < 25 ; i ++ ) jj_la1 [ i ] = - 1 ; for ( int i = 0 ; i < jj_2_rtns . length ; i ++ ) jj_2_rtns [ i ] = new JJCalls ( ) ; }
public StandardSyntaxParser ( StandardSyntaxParserTokenManager tm ) { TokenSource = tm ; Token = new Token ( ) ; jj_ntk = - 1 ; jj_gen = 0 ; for ( int i = 0 ; i < 28 ; i ++ ) jj_la1 [ i ] = - 1 ; for ( int i = 0 ; i < jj_2_rtns . Length ; i ++ ) jj_2_rtns [ i ] = new JJCalls ( ) ; }
public ModifyDBClusterEndpointResult modifyDBClusterEndpoint ( ModifyDBClusterEndpointRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyDBClusterEndpoint ( request ) ; }
public virtual ModifyDBClusterEndpointResponse ModifyDBClusterEndpoint ( ModifyDBClusterEndpointRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyDBClusterEndpointRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyDBClusterEndpointResponseUnmarshaller . Instance ; return Invoke < ModifyDBClusterEndpointResponse > ( request , options ) ; }
public DescribeTransitGatewaysResult describeTransitGateways ( DescribeTransitGatewaysRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeTransitGateways ( request ) ; }
public virtual DescribeTransitGatewaysResponse DescribeTransitGateways ( DescribeTransitGatewaysRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeTransitGatewaysRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeTransitGatewaysResponseUnmarshaller . Instance ; return Invoke < DescribeTransitGatewaysResponse > ( request , options ) ; }
public GetSimilarPhotosRequest ( ) { super ( "CloudPhoto" , "2017-07-11" , "GetSimilarPhotos" , "cloudphoto" ) ; setProtocol ( ProtocolType . HTTPS ) ; }
public GetSimilarPhotosRequest ( ) : base ( "CloudPhoto" , "2017-07-11" , "GetSimilarPhotos" , "cloudphoto" , "openAPI" ) { Protocol = ProtocolType . HTTPS ; }
public GetProposalResult getProposal ( GetProposalRequest request ) { request = beforeClientExecution ( request ) ; return executeGetProposal ( request ) ; }
public virtual GetProposalResponse GetProposal ( GetProposalRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetProposalRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetProposalResponseUnmarshaller . Instance ; return Invoke < GetProposalResponse > ( request , options ) ; }
public AddJobFlowStepsRequest ( String jobFlowId ) { setJobFlowId ( jobFlowId ) ; }
public AddJobFlowStepsRequest ( string jobFlowId ) { _jobFlowId = jobFlowId ; }
public StartInstancesRequest ( java . util . List < String > instanceIds ) { setInstanceIds ( instanceIds ) ; }
public StartInstancesRequest ( List < string > instanceIds ) { _instanceIds = instanceIds ; }
public GetRawMessageContentResult getRawMessageContent ( GetRawMessageContentRequest request ) { request = beforeClientExecution ( request ) ; return executeGetRawMessageContent ( request ) ; }
public virtual GetRawMessageContentResponse GetRawMessageContent ( GetRawMessageContentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetRawMessageContentRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetRawMessageContentResponseUnmarshaller . Instance ; return Invoke < GetRawMessageContentResponse > ( request , options ) ; }
public RevObject next ( ) { return objItr . hasNext ( ) ? objItr . next ( ) : null ; }
public virtual RevCommit Next ( ) { return pending . Next ( ) ; }
final public List < SrndQuery > FieldsQueryList ( ) throws ParseException { SrndQuery q ; ArrayList < SrndQuery > queries = new ArrayList < SrndQuery > ( ) ; jj_consume_token ( LPAREN ) ; q = FieldsQuery ( ) ; queries . add ( q ) ; label_7 : while ( true ) { jj_consume_token ( COMMA ) ; q = FieldsQuery ( ) ; queries . add ( q ) ; switch ( ( jj_ntk == - 1 ) ? jj_ntk ( ) : jj_ntk ) { case COMMA : ; break ; default : jj_la1 [ 7 ] = jj_gen ; break label_7 ; } } jj_consume_token ( RPAREN ) ; { if ( true ) return queries ; } throw new Error ( "Missing return statement in function" ) ; }
public IList < SrndQuery > FieldsQueryList ( ) { SrndQuery q ; IList < SrndQuery > queries = new List < SrndQuery > ( ) ; Jj_consume_token ( RegexpToken . LPAREN ) ; q = FieldsQuery ( ) ; queries . Add ( q ) ; while ( true ) { Jj_consume_token ( RegexpToken . COMMA ) ; q = FieldsQuery ( ) ; queries . Add ( q ) ; switch ( ( jj_ntk == - 1 ) ? Jj_ntk ( ) : jj_ntk ) { case RegexpToken . COMMA : ; break ; default : jj_la1 [ 7 ] = jj_gen ; goto label_7 ; } } label_7 : Jj_consume_token ( RegexpToken . RPAREN ) ; { if ( true ) return queries ; } throw new Exception ( "Missing return statement in function" ) ; }
public boolean contains ( long value ) { for ( int i = 0 ; i < count ; i ++ ) if ( entries [ i ] == value ) return true ; return false ; }
public virtual bool Contains ( long value ) { for ( int i = 0 ; i < count ; i ++ ) { if ( entries [ i ] == value ) { return true ; } } return false ; }
public static boolean matchesExtension ( String filename , String ext ) { return filename . endsWith ( "." + ext ) ; }
public static bool MatchesExtension ( string filename , string ext ) { return filename . EndsWith ( "." + ext , StringComparison . Ordinal ) ; }
public ObjectId idFor ( int type , byte [ ] data , int off , int len ) { return delegate ( ) . idFor ( type , data , off , len ) ; }
public override ObjectId IdFor ( int type , byte [ ] data , int off , int len ) { return Delegate ( ) . IdFor ( type , data , off , len ) ; }
public void remove ( ) { parent . remove ( this ) ; }
public virtual void Remove ( ) { parent . Remove ( this ) ; }
public DisassociateDeviceFromRoomResult disassociateDeviceFromRoom ( DisassociateDeviceFromRoomRequest request ) { request = beforeClientExecution ( request ) ; return executeDisassociateDeviceFromRoom ( request ) ; }
public virtual DisassociateDeviceFromRoomResponse DisassociateDeviceFromRoom ( DisassociateDeviceFromRoomRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DisassociateDeviceFromRoomRequestMarshaller . Instance ; options . ResponseUnmarshaller = DisassociateDeviceFromRoomResponseUnmarshaller . Instance ; return Invoke < DisassociateDeviceFromRoomResponse > ( request , options ) ; }
final public ModifierQueryNode . Modifier Modifiers ( ) throws ParseException { ModifierQueryNode . Modifier ret = ModifierQueryNode . Modifier . MOD_NONE ; switch ( ( jj_ntk == - 1 ) ? jj_ntk ( ) : jj_ntk ) { case NOT : case PLUS : case MINUS : switch ( ( jj_ntk == - 1 ) ? jj_ntk ( ) : jj_ntk ) { case PLUS : jj_consume_token ( PLUS ) ; ret = ModifierQueryNode . Modifier . MOD_REQ ; break ; case MINUS : jj_consume_token ( MINUS ) ; ret = ModifierQueryNode . Modifier . MOD_NOT ; break ; case NOT : jj_consume_token ( NOT ) ; ret = ModifierQueryNode . Modifier . MOD_NOT ; break ; default : jj_la1 [ 0 ] = jj_gen ; jj_consume_token ( - 1 ) ; throw new ParseException ( ) ; } break ; default : jj_la1 [ 1 ] = jj_gen ; ; } { if ( true ) return ret ; } throw new Error ( "Missing return statement in function" ) ; }
public Modifier Modifiers ( ) { Modifier ret = Modifier . MOD_NONE ; switch ( ( jj_ntk == - 1 ) ? Jj_ntk ( ) : jj_ntk ) { case RegexpToken . NOT : case RegexpToken . PLUS : case RegexpToken . MINUS : switch ( ( jj_ntk == - 1 ) ? Jj_ntk ( ) : jj_ntk ) { case RegexpToken . PLUS : Jj_consume_token ( RegexpToken . PLUS ) ; ret = Modifier . MOD_REQ ; break ; case RegexpToken . MINUS : Jj_consume_token ( RegexpToken . MINUS ) ; ret = Modifier . MOD_NOT ; break ; case RegexpToken . NOT : Jj_consume_token ( RegexpToken . NOT ) ; ret = Modifier . MOD_NOT ; break ; default : jj_la1 [ 2 ] = jj_gen ; Jj_consume_token ( - 1 ) ; throw new ParseException ( ) ; } break ; default : jj_la1 [ 3 ] = jj_gen ; break ; } { if ( true ) return ret ; } throw new Exception ( "Missing return statement in function" ) ; }
public final RevCommit getParent ( int nth ) { return parents [ nth ] ; }
public NGit . Revwalk . RevCommit GetParent ( int nth ) { return parents [ nth ] ; }
public boolean hasPrevious ( ) { return iterator . previousIndex ( ) >= start ; }
public bool hasPrevious ( ) { return iterator . previousIndex ( ) >= start ; }
public TerminateWorkspacesResult terminateWorkspaces ( TerminateWorkspacesRequest request ) { request = beforeClientExecution ( request ) ; return executeTerminateWorkspaces ( request ) ; }
public virtual TerminateWorkspacesResponse TerminateWorkspaces ( TerminateWorkspacesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = TerminateWorkspacesRequestMarshaller . Instance ; options . ResponseUnmarshaller = TerminateWorkspacesResponseUnmarshaller . Instance ; return Invoke < TerminateWorkspacesResponse > ( request , options ) ; }
public long getEntryLastModified ( ) { return current ( ) . getLastModified ( ) ; }
public virtual long GetEntryLastModified ( ) { return Current ( ) . GetLastModified ( ) ; }
public CancelConversionTaskResult cancelConversionTask ( CancelConversionTaskRequest request ) { request = beforeClientExecution ( request ) ; return executeCancelConversionTask ( request ) ; }
public virtual CancelConversionTaskResponse CancelConversionTask ( CancelConversionTaskRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CancelConversionTaskRequestMarshaller . Instance ; options . ResponseUnmarshaller = CancelConversionTaskResponseUnmarshaller . Instance ; return Invoke < CancelConversionTaskResponse > ( request , options ) ; }
public InfoSubRecord ( int streamPos , int bucketSstOffset ) { field_1_stream_pos = streamPos ; field_2_bucket_sst_offset = bucketSstOffset ; }
public InfoSubRecord ( int streamPos , int bucketSstOffset ) { field_1_stream_pos = streamPos ; field_2_bucket_sst_offset = bucketSstOffset ; }
public boolean contains ( Object o ) { return map . containsKey ( o ) ; }
public virtual bool Contains ( char [ ] text ) { return map . ContainsKey ( text , 0 , text . Length ) ; }
public String toString ( ) { return "'" + ch + "' @ " + pos ; }
public override String ToString ( ) { return "'" + ch + "' @ " + pos ; }
public Step ( String name , Rule rules [ ] , int min , String suffixes [ ] ) { this . name = name ; this . rules = rules ; if ( min == 0 ) { min = Integer . MAX_VALUE ; for ( Rule r : rules ) min = Math . min ( min , r . min + r . suffix . length ) ; } this . min = min ; if ( suffixes == null || suffixes . length == 0 ) { this . suffixes = null ; } else { this . suffixes = new char [ suffixes . length ] [ ] ; for ( int i = 0 ; i < suffixes . length ; i ++ ) this . suffixes [ i ] = suffixes [ i ] . toCharArray ( ) ; } }
public Step ( string name , Rule [ ] rules , int min , string [ ] suffixes ) { this . m_name = name ; this . m_rules = rules ; if ( min == 0 ) { min = int . MaxValue ; foreach ( Rule r in rules ) { min = Math . Min ( min , r . m_min + r . m_suffix . Length ) ; } } this . m_min = min ; if ( suffixes == null || suffixes . Length == 0 ) { this . m_suffixes = null ; } else { this . m_suffixes = new char [ suffixes . Length ] [ ] ; for ( int i = 0 ; i < suffixes . Length ; i ++ ) { this . m_suffixes [ i ] = suffixes [ i ] . ToCharArray ( ) ; } } }
public E get ( int key , E valueIfKeyNotFound ) { int i = binarySearch ( mKeys , 0 , mSize , key ) ; if ( i < 0 || mValues [ i ] == DELETED ) { return valueIfKeyNotFound ; } else { return ( E ) mValues [ i ] ; } }
public virtual E get ( int key , E valueIfKeyNotFound ) { int i = binarySearch ( mKeys , 0 , mSize , key ) ; if ( i < 0 || mValues [ i ] == DELETED ) { return valueIfKeyNotFound ; } else { return ( E ) mValues [ i ] ; } }
public final ValueEval evaluate ( ValueEval [ ] args , int srcRowIndex , int srcColumnIndex ) { if ( args . length != 0 ) { return ErrorEval . VALUE_INVALID ; } return evaluate ( srcRowIndex , srcColumnIndex ) ; }
public ValueEval Evaluate ( ValueEval [ ] args , int srcRowIndex , int srcColumnIndex ) { if ( args . Length != 0 ) { return ErrorEval . VALUE_INVALID ; } return Evaluate ( srcRowIndex , srcColumnIndex ) ; }
public void enterRecursionRule ( ParserRuleContext localctx , int state , int ruleIndex , int precedence ) { setState ( state ) ; _precedenceStack . push ( precedence ) ; _ctx = localctx ; _ctx . start = _input . LT ( 1 ) ; if ( _parseListeners != null ) { triggerEnterRuleEvent ( ) ; } }
public virtual void EnterRecursionRule ( ParserRuleContext localctx , int state , int ruleIndex , int precedence ) { State = state ; _precedenceStack . Add ( precedence ) ; _ctx = localctx ; _ctx . Start = _input . LT ( 1 ) ; if ( _parseListeners != null ) { TriggerEnterRuleEvent ( ) ; } }
public GlobalReplicationGroup increaseNodeGroupsInGlobalReplicationGroup ( IncreaseNodeGroupsInGlobalReplicationGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeIncreaseNodeGroupsInGlobalReplicationGroup ( request ) ; }
public virtual IncreaseNodeGroupsInGlobalReplicationGroupResponse IncreaseNodeGroupsInGlobalReplicationGroup ( IncreaseNodeGroupsInGlobalReplicationGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = IncreaseNodeGroupsInGlobalReplicationGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = IncreaseNodeGroupsInGlobalReplicationGroupResponseUnmarshaller . Instance ; return Invoke < IncreaseNodeGroupsInGlobalReplicationGroupResponse > ( request , options ) ; }
public static String format ( String rawSheetName ) { StringBuilder sb = new StringBuilder ( ( rawSheetName == null ? 0 : rawSheetName . length ( ) ) + 2 ) ; appendFormat ( sb , rawSheetName ) ; return sb . toString ( ) ; }
public static String Format ( String rawSheetName ) { StringBuilder sb = new StringBuilder ( rawSheetName . Length + 2 ) ; AppendFormat ( sb , rawSheetName ) ; return sb . ToString ( ) ; }
public DescribeTerminationPolicyTypesResult describeTerminationPolicyTypes ( DescribeTerminationPolicyTypesRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeTerminationPolicyTypes ( request ) ; }
public virtual DescribeTerminationPolicyTypesResponse DescribeTerminationPolicyTypes ( DescribeTerminationPolicyTypesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeTerminationPolicyTypesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeTerminationPolicyTypesResponseUnmarshaller . Instance ; return Invoke < DescribeTerminationPolicyTypesResponse > ( request , options ) ; }
public DescribeScheduledActionsResult describeScheduledActions ( ) { return describeScheduledActions ( new DescribeScheduledActionsRequest ( ) ) ; }
public virtual DescribeScheduledActionsResponse DescribeScheduledActions ( ) { return DescribeScheduledActions ( new DescribeScheduledActionsRequest ( ) ) ; }
public boolean hasSourceData ( int start , int end ) { for ( ; start < end ; start ++ ) if ( sourceLines [ start ] == 0 ) return false ; return true ; }
public virtual bool HasSourceData ( int start , int end ) { for ( ; start < end ; start ++ ) { if ( sourceLines [ start ] == 0 ) { return false ; } } return true ; }
public ListImportsResult listImports ( ListImportsRequest request ) { request = beforeClientExecution ( request ) ; return executeListImports ( request ) ; }
public virtual ListImportsResponse ListImports ( ListImportsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListImportsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListImportsResponseUnmarshaller . Instance ; return Invoke < ListImportsResponse > ( request , options ) ; }
public DescribeInterconnectsResult describeInterconnects ( ) { return describeInterconnects ( new DescribeInterconnectsRequest ( ) ) ; }
public virtual DescribeInterconnectsResponse DescribeInterconnects ( ) { return DescribeInterconnects ( new DescribeInterconnectsRequest ( ) ) ; }
public DeleteEventSubscriptionResult deleteEventSubscription ( DeleteEventSubscriptionRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteEventSubscription ( request ) ; }
public virtual DeleteEventSubscriptionResponse DeleteEventSubscription ( DeleteEventSubscriptionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteEventSubscriptionRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteEventSubscriptionResponseUnmarshaller . Instance ; return Invoke < DeleteEventSubscriptionResponse > ( request , options ) ; }
public int serialize ( int offset , byte [ ] data , EscherSerializationListener listener ) { listener . beforeRecordSerialize ( offset , getRecordId ( ) , this ) ; LittleEndian . putShort ( data , offset , getOptions ( ) ) ; LittleEndian . putShort ( data , offset + 2 , getRecordId ( ) ) ; int remainingBytes = thedata . length ; LittleEndian . putInt ( data , offset + 4 , remainingBytes ) ; System . arraycopy ( thedata , 0 , data , offset + 8 , thedata . length ) ; int pos = offset + 8 + thedata . length ; listener . afterRecordSerialize ( pos , getRecordId ( ) , pos - offset , this ) ; int size = pos - offset ; if ( size != getRecordSize ( ) ) { throw new RecordFormatException ( size + " bytes written but getRecordSize() reports " + getRecordSize ( ) ) ; } return size ; }
public override int Serialize ( int offset , byte [ ] data , EscherSerializationListener listener ) { listener . BeforeRecordSerialize ( offset , RecordId , this ) ; LittleEndian . PutShort ( data , offset , Options ) ; LittleEndian . PutShort ( data , offset + 2 , RecordId ) ; int remainingBytes = _thedata . Length ; LittleEndian . PutInt ( data , offset + 4 , remainingBytes ) ; Array . Copy ( _thedata , 0 , data , offset + 8 , _thedata . Length ) ; int pos = offset + 8 + _thedata . Length ; listener . AfterRecordSerialize ( pos , RecordId , pos - offset , this ) ; int size = pos - offset ; if ( size != RecordSize ) throw new RecordFormatException ( size + " bytes written but RecordSize reports " + RecordSize ) ; return size ; }
public void write ( int oneChar ) { synchronized ( lock ) { expand ( 1 ) ; buf [ count ++ ] = ( char ) oneChar ; } }
public override void write ( int oneChar ) { lock ( @ lock ) { expand ( 1 ) ; buf [ count ++ ] = ( char ) oneChar ; } }
public DeletedRef3DPtg ( int externSheetIndex ) { field_1_index_extern_sheet = externSheetIndex ; unused1 = 0 ; }
public DeletedRef3DPtg ( int externSheetIndex ) { field_1_index_extern_sheet = externSheetIndex ; unused1 = 0 ; }
public IndexUpgrader ( Directory dir , IndexWriterConfig iwc , boolean deletePriorCommits ) { this . dir = dir ; this . iwc = iwc ; this . deletePriorCommits = deletePriorCommits ; }
public IndexUpgrader ( Directory dir , IndexWriterConfig iwc , bool deletePriorCommits ) { this . dir = dir ; this . iwc = iwc ; this . deletePriorCommits = deletePriorCommits ; }
public DetachVpnGatewayRequest ( String vpnGatewayId , String vpcId ) { setVpnGatewayId ( vpnGatewayId ) ; setVpcId ( vpcId ) ; }
public DetachVpnGatewayRequest ( string vpnGatewayId , string vpcId ) { _vpnGatewayId = vpnGatewayId ; _vpcId = vpcId ; }
public RebootInstancesRequest ( java . util . List < String > instanceIds ) { setInstanceIds ( instanceIds ) ; }
public RebootInstancesRequest ( List < string > instanceIds ) { _instanceIds = instanceIds ; }
public E remove ( int index ) { synchronized ( mutex ) { return delegate ( ) . remove ( index ) ; } }
public virtual E remove ( int location ) { lock ( mutex ) { return list . remove ( location ) ; } }
public DescribeInstanceAttributeResult describeInstanceAttribute ( DescribeInstanceAttributeRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeInstanceAttribute ( request ) ; }
public virtual DescribeInstanceAttributeResponse DescribeInstanceAttribute ( DescribeInstanceAttributeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeInstanceAttributeRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeInstanceAttributeResponseUnmarshaller . Instance ; return Invoke < DescribeInstanceAttributeResponse > ( request , options ) ; }
public void cloneStyleFrom ( CellStyle source ) { if ( source instanceof HSSFCellStyle ) { this . cloneStyleFrom ( ( HSSFCellStyle ) source ) ; } else { throw new IllegalArgumentException ( "Can only clone from one HSSFCellStyle to another, not between HSSFCellStyle and XSSFCellStyle" ) ; } }
public void CloneStyleFrom ( ICellStyle source ) { if ( source is HSSFCellStyle ) { this . CloneStyleFrom ( ( HSSFCellStyle ) source ) ; } else { throw new ArgumentException ( "Can only clone from one HSSFCellStyle to another, not between HSSFCellStyle and XSSFCellStyle" ) ; } }
public final String readUTF ( ) throws IOException { return decodeUTF ( readUnsignedShort ( ) ) ; }
public virtual string readUTF ( ) { throw new System . NotImplementedException ( ) ; }
public GetDataEndpointResult getDataEndpoint ( GetDataEndpointRequest request ) { request = beforeClientExecution ( request ) ; return executeGetDataEndpoint ( request ) ; }
public virtual GetDataEndpointResponse GetDataEndpoint ( GetDataEndpointRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetDataEndpointRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetDataEndpointResponseUnmarshaller . Instance ; return Invoke < GetDataEndpointResponse > ( request , options ) ; }
public AddApplicationOutputResult addApplicationOutput ( AddApplicationOutputRequest request ) { request = beforeClientExecution ( request ) ; return executeAddApplicationOutput ( request ) ; }
public virtual AddApplicationOutputResponse AddApplicationOutput ( AddApplicationOutputRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AddApplicationOutputRequestMarshaller . Instance ; options . ResponseUnmarshaller = AddApplicationOutputResponseUnmarshaller . Instance ; return Invoke < AddApplicationOutputResponse > ( request , options ) ; }
public LargeObjectException ( AnyObjectId id ) { setObjectId ( id ) ; }
public LargeObjectException ( AnyObjectId id ) { SetObjectId ( id ) ; }
public void trimToSize ( ) { if ( n < array . length ) { char [ ] aux = new char [ n ] ; System . arraycopy ( array , 0 , aux , 0 , n ) ; array = aux ; } }
public virtual void TrimToSize ( ) { if ( n < array . Length ) { char [ ] aux = new char [ n ] ; System . Array . Copy ( array , 0 , aux , 0 , n ) ; array = aux ; } }
public UpdateFacetResult updateFacet ( UpdateFacetRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateFacet ( request ) ; }
public virtual UpdateFacetResponse UpdateFacet ( UpdateFacetRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateFacetRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateFacetResponseUnmarshaller . Instance ; return Invoke < UpdateFacetResponse > ( request , options ) ; }
public DeleteDomainRequest ( String domainName ) { setDomainName ( domainName ) ; }
public DeleteDomainRequest ( string domainName ) { _domainName = domainName ; }
public String getReading ( ) { return dictionary . getReading ( wordId , surfaceForm , offset , length ) ; }
public virtual string GetReading ( ) { return dictionary . GetReading ( wordId , surfaceForm , offset , length ) ; }
public FloatBuffer compact ( ) { System . arraycopy ( backingArray , position + offset , backingArray , offset , remaining ( ) ) ; position = limit - position ; limit = capacity ; mark = UNSET_MARK ; return this ; }
public override java . nio . FloatBuffer compact ( ) { System . Array . Copy ( backingArray , _position + offset , backingArray , offset , remaining ( ) ) ; _position = _limit - _position ; _limit = _capacity ; _mark = UNSET_MARK ; return this ; }
public String toString ( ) { return super . toString ( ) ; }
public override string ToString ( ) { return base . ToString ( ) ; }
public void set ( int index , long value ) { ensureCapacity ( value ) ; current . set ( index , value ) ; }
public override void Set ( int index , long value ) { EnsureCapacity ( value ) ; current . Set ( index , value ) ; }
public void serialize ( LittleEndianOutput out ) { String username = getUsername ( ) ; boolean is16bit = StringUtil . hasMultibyte ( username ) ; out . writeShort ( username . length ( ) ) ; out . writeByte ( is16bit ? 0x01 : 0x00 ) ; if ( is16bit ) { StringUtil . putUnicodeLE ( username , out ) ; } else { StringUtil . putCompressedUnicode ( username , out ) ; } int encodedByteCount = 3 + username . length ( ) * ( is16bit ? 2 : 1 ) ; int paddingSize = DATA_SIZE - encodedByteCount ; out . write ( PADDING , 0 , paddingSize ) ; }
public override void Serialize ( ILittleEndianOutput out1 ) { String username = Username ; bool is16bit = StringUtil . HasMultibyte ( username ) ; out1 . WriteShort ( username . Length ) ; out1 . WriteByte ( is16bit ? 0x01 : 0x00 ) ; if ( is16bit ) { StringUtil . PutUnicodeLE ( username , out1 ) ; } else { StringUtil . PutCompressedUnicode ( username , out1 ) ; } int encodedByteCount = 3 + username . Length * ( is16bit ? 2 : 1 ) ; int paddingSize = DATA_SIZE - encodedByteCount ; out1 . Write ( PADDING , 0 , paddingSize ) ; }
public boolean isExpired ( ) { return false ; }
public new bool IsExpired ( ) { return false ; }
public ListJobsRequest ( String accountId , String vaultName ) { setAccountId ( accountId ) ; setVaultName ( vaultName ) ; }
public ListJobsRequest ( string accountId , string vaultName ) { _accountId = accountId ; _vaultName = vaultName ; }
public SheetRefEvaluator getSheetEvaluator ( int sheetIndex ) { if ( sheetIndex < _firstSheetIndex || sheetIndex > _lastSheetIndex ) { throw new IllegalArgumentException ( "Invalid SheetIndex: " + sheetIndex + " - Outside range " + _firstSheetIndex + " : " + _lastSheetIndex ) ; } return _sheetEvaluators [ sheetIndex - _firstSheetIndex ] ; }
public SheetRefEvaluator GetSheetEvaluator ( int sheetIndex ) { if ( sheetIndex < _firstSheetIndex || sheetIndex > _lastSheetIndex ) { throw new ArgumentException ( "Invalid SheetIndex: " + sheetIndex + " - Outside range " + _firstSheetIndex + " : " + _lastSheetIndex ) ; } return _sheetEvaluators [ sheetIndex - _firstSheetIndex ] ; }
public static String [ ] stringToPath ( String s ) { List < String > parts = new ArrayList < > ( ) ; int length = s . length ( ) ; if ( length == 0 ) { return new String [ 0 ] ; } char [ ] buffer = new char [ length ] ; int upto = 0 ; boolean lastEscape = false ; for ( int i = 0 ; i < length ; i ++ ) { char ch = s . charAt ( i ) ; if ( lastEscape ) { buffer [ upto ++ ] = ch ; lastEscape = false ; } else if ( ch == ESCAPE_CHAR ) { lastEscape = true ; } else if ( ch == DELIM_CHAR ) { parts . add ( new String ( buffer , 0 , upto ) ) ; upto = 0 ; } else { buffer [ upto ++ ] = ch ; } } parts . add ( new String ( buffer , 0 , upto ) ) ; assert ! lastEscape ; return parts . toArray ( new String [ parts . size ( ) ] ) ; }
public static string [ ] StringToPath ( string s ) { IList < string > parts = new List < string > ( ) ; int length = s . Length ; if ( length == 0 ) { return new string [ 0 ] ; } char [ ] buffer = new char [ length ] ; int upto = 0 ; bool lastEscape = false ; for ( int i = 0 ; i < length ; i ++ ) { char ch = s [ i ] ; if ( lastEscape ) { buffer [ upto ++ ] = ch ; lastEscape = false ; } else if ( ch == ESCAPE_CHAR ) { lastEscape = true ; } else if ( ch == DELIM_CHAR ) { parts . Add ( new string ( buffer , 0 , upto ) ) ; upto = 0 ; } else { buffer [ upto ++ ] = ch ; } } parts . Add ( new string ( buffer , 0 , upto ) ) ; Debug . Assert ( ! lastEscape ) ; return parts . ToArray ( ) ; }
public CreateDirectConnectGatewayResult createDirectConnectGateway ( CreateDirectConnectGatewayRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateDirectConnectGateway ( request ) ; }
public virtual CreateDirectConnectGatewayResponse CreateDirectConnectGateway ( CreateDirectConnectGatewayRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateDirectConnectGatewayRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateDirectConnectGatewayResponseUnmarshaller . Instance ; return Invoke < CreateDirectConnectGatewayResponse > ( request , options ) ; }
public GetMLModelResult getMLModel ( GetMLModelRequest request ) { request = beforeClientExecution ( request ) ; return executeGetMLModel ( request ) ; }
public virtual GetMLModelResponse GetMLModel ( GetMLModelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetMLModelRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetMLModelResponseUnmarshaller . Instance ; return Invoke < GetMLModelResponse > ( request , options ) ; }
public boolean isValid ( ) { if ( bytes == null ) { throw new IllegalStateException ( "bytes is null" ) ; } if ( length < 0 ) { throw new IllegalStateException ( "length is negative: " + length ) ; } if ( length > bytes . length ) { throw new IllegalStateException ( "length is out of bounds: " + length + ",bytes.length=" + bytes . length ) ; } if ( offset < 0 ) { throw new IllegalStateException ( "offset is negative: " + offset ) ; } if ( offset > bytes . length ) { throw new IllegalStateException ( "offset out of bounds: " + offset + ",bytes.length=" + bytes . length ) ; } if ( offset + length < 0 ) { throw new IllegalStateException ( "offset+length is negative: offset=" + offset + ",length=" + length ) ; } if ( offset + length > bytes . length ) { throw new IllegalStateException ( "offset+length out of bounds: offset=" + offset + ",length=" + length + ",bytes.length=" + bytes . length ) ; } return true ; }
public bool IsValid ( ) { if ( Bytes == null ) { throw new InvalidOperationException ( "bytes is null" ) ; } if ( Length < 0 ) { throw new InvalidOperationException ( "length is negative: " + Length ) ; } if ( Length > Bytes . Length ) { throw new InvalidOperationException ( "length is out of bounds: " + Length + ",bytes.length=" + Bytes . Length ) ; } if ( Offset < 0 ) { throw new InvalidOperationException ( "offset is negative: " + Offset ) ; } if ( Offset > Bytes . Length ) { throw new InvalidOperationException ( "offset out of bounds: " + Offset + ",bytes.length=" + Bytes . Length ) ; } if ( Offset + Length < 0 ) { throw new InvalidOperationException ( "offset+length is negative: offset=" + Offset + ",length=" + Length ) ; } if ( Offset + Length > Bytes . Length ) { throw new InvalidOperationException ( "offset+length out of bounds: offset=" + Offset + ",length=" + Length + ",bytes.length=" + Bytes . Length ) ; } return true ; }
public String toString ( ) { return getName ( ) ; }
public override string ToString ( ) { return Name ; }
public DescribeIAMPolicyAssignmentResult describeIAMPolicyAssignment ( DescribeIAMPolicyAssignmentRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeIAMPolicyAssignment ( request ) ; }
public virtual DescribeIAMPolicyAssignmentResponse DescribeIAMPolicyAssignment ( DescribeIAMPolicyAssignmentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeIAMPolicyAssignmentRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeIAMPolicyAssignmentResponseUnmarshaller . Instance ; return Invoke < DescribeIAMPolicyAssignmentResponse > ( request , options ) ; }
public boolean isRefLogIncludingResult ( ) { return refLogIncludeResult ; }
protected internal virtual bool IsRefLogIncludingResult ( ) { return refLogIncludeResult ; }
public DeleteStreamingDistributionResult deleteStreamingDistribution ( DeleteStreamingDistributionRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteStreamingDistribution ( request ) ; }
public virtual DeleteStreamingDistributionResponse DeleteStreamingDistribution ( DeleteStreamingDistributionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteStreamingDistributionRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteStreamingDistributionResponseUnmarshaller . Instance ; return Invoke < DeleteStreamingDistributionResponse > ( request , options ) ; }
public RawSubStringPattern ( String patternText ) { if ( patternText . length ( ) == 0 ) throw new IllegalArgumentException ( JGitText . get ( ) . cannotMatchOnEmptyString ) ; needleString = patternText ; final byte [ ] b = Constants . encode ( patternText ) ; needle = new byte [ b . length ] ; for ( int i = 0 ; i < b . length ; i ++ ) needle [ i ] = lc ( b [ i ] ) ; }
public RawSubStringPattern ( string patternText ) { if ( patternText . Length == 0 ) { throw new ArgumentException ( JGitText . Get ( ) . cannotMatchOnEmptyString ) ; } needleString = patternText ; byte [ ] b = Constants . Encode ( patternText ) ; needle = new byte [ b . Length ] ; for ( int i = 0 ; i < b . Length ; i ++ ) { needle [ i ] = Lc ( b [ i ] ) ; } }
public ListRulesResult listRules ( ListRulesRequest request ) { request = beforeClientExecution ( request ) ; return executeListRules ( request ) ; }
public virtual ListRulesResponse ListRules ( ListRulesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListRulesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListRulesResponseUnmarshaller . Instance ; return Invoke < ListRulesResponse > ( request , options ) ; }
@ Override public Iterator < Entry < K , V > > iterator ( ) { final Iterator < Entry < K , V > > iterator = esDelegate . iterator ( ) ; return new Iterator < Entry < K , V > > ( ) ; }
public override java . util . Iterator < java . util . MapClass . Entry < K , V > > iterator ( ) { return new java . util . Hashtable < K , V > . EntryIterator ( this . _enclosing ) ; }
public SendMessageResult sendMessage ( String queueUrl , String messageBody ) { return sendMessage ( new SendMessageRequest ( ) . withQueueUrl ( queueUrl ) . withMessageBody ( messageBody ) ) ; }
public virtual SendMessageResponse SendMessage ( string queueUrl , string messageBody ) { var request = new SendMessageRequest ( ) ; request . QueueUrl = queueUrl ; request . MessageBody = messageBody ; return SendMessage ( request ) ; }
public static double getExcelDate ( Date date ) { return getExcelDate ( date , false ) ; }
public static double GetExcelDate ( DateTime date ) { return GetExcelDate ( date , false ) ; }
public String toString ( ) { return markedUpText . subSequence ( textStartPos , textEndPos ) . toString ( ) ; }
public override string ToString ( ) { return markedUpText . ToString ( TextStartPos , TextEndPos - TextStartPos ) ; }