question
stringlengths
33
1.59k
target
stringlengths
33
1.58k
public DeleteVoiceTemplateResult deleteVoiceTemplate ( DeleteVoiceTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteVoiceTemplate ( request ) ; }
public virtual DeleteVoiceTemplateResponse DeleteVoiceTemplate ( DeleteVoiceTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteVoiceTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteVoiceTemplateResponseUnmarshaller . Instance ; return Invok...
public void addListenerForAllRecords ( HSSFListener lsnr ) { short [ ] rectypes = RecordFactory . getAllKnownRecordSIDs ( ) ; for ( short rectype : rectypes ) { addListener ( lsnr , rectype ) ; } }
public void AddListenerForAllRecords ( IHSSFListener lsnr ) { short [ ] rectypes = RecordFactory . GetAllKnownRecordSIDs ( ) ; for ( int k = 0 ; k < rectypes . Length ; k ++ ) { AddListener ( lsnr , rectypes [ k ] ) ; } }
public DescribeLocalGatewayRouteTablesResult describeLocalGatewayRouteTables ( DescribeLocalGatewayRouteTablesRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeLocalGatewayRouteTables ( request ) ; }
public virtual DescribeLocalGatewayRouteTablesResponse DescribeLocalGatewayRouteTables ( DescribeLocalGatewayRouteTablesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeLocalGatewayRouteTablesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeLocalGate...
public EnableDomainAutoRenewResult enableDomainAutoRenew ( EnableDomainAutoRenewRequest request ) { request = beforeClientExecution ( request ) ; return executeEnableDomainAutoRenew ( request ) ; }
public virtual EnableDomainAutoRenewResponse EnableDomainAutoRenew ( EnableDomainAutoRenewRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = EnableDomainAutoRenewRequestMarshaller . Instance ; options . ResponseUnmarshaller = EnableDomainAutoRenewResponseUnmarshaller . Instance ; re...
public String toString ( ) { StringBuilder result = new StringBuilder ( ) ; result . append ( type . toString ( ) ) ; result . append ( '<' ) ; result . append ( name ) ; result . append ( ':' ) ; if ( fieldsData != null ) { result . append ( fieldsData ) ; } result . append ( '>' ) ; return result . toString ( ) ; }
public override string ToString ( ) { StringBuilder result = new StringBuilder ( ) ; result . Append ( m_type . ToString ( ) ) ; result . Append ( '<' ) ; result . Append ( m_name ) ; result . Append ( ':' ) ; if ( FieldsData != null ) { result . Append ( FieldsData ) ; } result . Append ( '>' ) ; return result . ToStr...
public DescribeConversionTasksResult describeConversionTasks ( ) { return describeConversionTasks ( new DescribeConversionTasksRequest ( ) ) ; }
public virtual DescribeConversionTasksResponse DescribeConversionTasks ( ) { return DescribeConversionTasks ( new DescribeConversionTasksRequest ( ) ) ; }
public GetFieldLevelEncryptionProfileConfigResult getFieldLevelEncryptionProfileConfig ( GetFieldLevelEncryptionProfileConfigRequest request ) { request = beforeClientExecution ( request ) ; return executeGetFieldLevelEncryptionProfileConfig ( request ) ; }
public virtual GetFieldLevelEncryptionProfileConfigResponse GetFieldLevelEncryptionProfileConfig ( GetFieldLevelEncryptionProfileConfigRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetFieldLevelEncryptionProfileConfigRequestMarshaller . Instance ; options . ResponseUnmarshaller...
public ListInstancesResult listInstances ( ListInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeListInstances ( request ) ; }
public virtual ListInstancesResponse ListInstances ( ListInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListInstancesResponseUnmarshaller . Instance ; return Invoke < ListInstancesResponse > ( ...
public void decode ( byte [ ] blocks , int blocksOffset , int [ ] values , int valuesOffset , int iterations ) { for ( int j = 0 ; j < iterations ; ++ j ) { final byte block = blocks [ blocksOffset ++ ] ; values [ valuesOffset ++ ] = ( block > > > 6 ) & 3 ; values [ valuesOffset ++ ] = ( block > > > 4 ) & 3 ; values [ ...
public override void Decode ( byte [ ] blocks , int blocksOffset , int [ ] values , int valuesOffset , int iterations ) { for ( int j = 0 ; j < iterations ; ++ j ) { var block = blocks [ blocksOffset ++ ] ; values [ valuesOffset ++ ] = ( ( int ) ( ( uint ) block > > 6 ) ) & 3 ; values [ valuesOffset ++ ] = ( ( int ) ( ...
public int read ( byte [ ] dst , int pos , int cnt ) throws IOException { try { int n = 0 ; while ( n < cnt ) { int r = inf . inflate ( dst , pos + n , cnt - n ) ; n += r ; if ( inf . finished ( ) ) break ; if ( inf . needsInput ( ) ) { onObjectData ( src , buf , p , bAvail ) ; use ( bAvail ) ; p = fill ( src , 1 ) ; i...
public override int Read ( byte [ ] dst , int pos , int cnt ) { try { int n = 0 ; while ( n < cnt ) { int r = this . inf . Inflate ( dst , pos + n , cnt - n ) ; if ( r == 0 ) { if ( this . inf . IsFinished ) { break ; } if ( this . inf . IsNeedingInput ) { this . _enclosing . OnObjectData ( this . src , this . _enclosi...
public WorkflowExecutionCount countClosedWorkflowExecutions ( CountClosedWorkflowExecutionsRequest request ) { request = beforeClientExecution ( request ) ; return executeCountClosedWorkflowExecutions ( request ) ; }
public virtual CountClosedWorkflowExecutionsResponse CountClosedWorkflowExecutions ( CountClosedWorkflowExecutionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CountClosedWorkflowExecutionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = CountClosedWorkflowExecut...
public E remove ( ) { return removeFirstImpl ( ) ; }
public virtual E remove ( ) { return removeFirstImpl ( ) ; }
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval numberVE ) { final String number ; if ( numberVE instanceof RefEval ) { RefEval re = ( RefEval ) numberVE ; number = OperandResolver . coerceValueToString ( re . getInnerValueEval ( re . getFirstSheetIndex ( ) ) ) ; } else { number = OperandRe...
public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval numberVE ) { String number ; if ( numberVE is RefEval ) { RefEval re = ( RefEval ) numberVE ; number = OperandResolver . CoerceValueToString ( re . GetInnerValueEval ( re . FirstSheetIndex ) ) ; } else { number = OperandResolver . Coe...
public ObjectId getOldId ( ) { return oldId ; }
public virtual ObjectId GetOldId ( ) { return oldId ; }
public FeatProtection ( RecordInputStream in ) { fSD = in . readInt ( ) ; passwordVerifier = in . readInt ( ) ; title = StringUtil . readUnicodeString ( in ) ; securityDescriptor = in . readRemainder ( ) ; }
public FeatProtection ( RecordInputStream in1 ) { fSD = in1 . ReadInt ( ) ; passwordVerifier = in1 . ReadInt ( ) ; title = StringUtil . ReadUnicodeString ( in1 ) ; securityDescriptor = in1 . ReadRemainder ( ) ; }
public UpdateContactAttributesResult updateContactAttributes ( UpdateContactAttributesRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateContactAttributes ( request ) ; }
public virtual UpdateContactAttributesResponse UpdateContactAttributes ( UpdateContactAttributesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateContactAttributesRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateContactAttributesResponseUnmarshaller . Ins...
public DescribeClientVpnEndpointsResult describeClientVpnEndpoints ( DescribeClientVpnEndpointsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeClientVpnEndpoints ( request ) ; }
public virtual DescribeClientVpnEndpointsResponse DescribeClientVpnEndpoints ( DescribeClientVpnEndpointsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeClientVpnEndpointsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeClientVpnEndpointsResponseUnm...
public DescribeCacheSecurityGroupsResult describeCacheSecurityGroups ( DescribeCacheSecurityGroupsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeCacheSecurityGroups ( request ) ; }
public virtual DescribeCacheSecurityGroupsResponse DescribeCacheSecurityGroups ( DescribeCacheSecurityGroupsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeCacheSecurityGroupsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeCacheSecurityGroupsRespon...
public boolean equals ( Object object ) { synchronized ( Hashtable . this ) { return super . equals ( object ) ; } }
public override bool Equals ( object @ object ) { lock ( this . _enclosing ) { return base . Equals ( @ object ) ; } }
public static List < TransportProtocol > getTransportProtocols ( ) { int cnt = protocols . size ( ) ; List < TransportProtocol > res = new ArrayList < > ( cnt ) ; for ( WeakReference < TransportProtocol > ref : protocols ) { TransportProtocol proto = ref . get ( ) ; if ( proto != null ) res . add ( proto ) ; elseprotoc...
public static IList < TransportProtocol > GetTransportProtocols ( ) { int cnt = protocols . Count ; IList < TransportProtocol > res = new AList < TransportProtocol > ( cnt ) ; foreach ( JavaWeakReference < TransportProtocol > @ ref in protocols ) { TransportProtocol proto = @ ref . Get ( ) ; if ( proto != null ) { res ...
public SrndTermQuery ( String termText , boolean quoted ) { super ( quoted ) ; this . termText = termText ; }
public SrndTermQuery ( string termText , bool quoted ) : base ( quoted ) { this . termText = termText ; }
public CreateEmailTemplateResult createEmailTemplate ( CreateEmailTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateEmailTemplate ( request ) ; }
public virtual CreateEmailTemplateResponse CreateEmailTemplate ( CreateEmailTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateEmailTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateEmailTemplateResponseUnmarshaller . Instance ; return Invok...
public ByteBuffer putChar ( char value ) { return putShort ( ( short ) value ) ; }
public override java . nio . ByteBuffer putChar ( char value ) { return putShort ( ( short ) value ) ; }
public static String getLocalizedMessage ( String key ) { return getLocalizedMessage ( key , Locale . getDefault ( ) ) ; }
public static string GetLocalizedMessage ( string key ) { return GetLocalizedMessage ( key , CultureInfo . InvariantCulture ) ; }
public Snapshot deleteSnapshot ( DeleteSnapshotRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteSnapshot ( request ) ; }
public virtual DeleteSnapshotResponse DeleteSnapshot ( DeleteSnapshotRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteSnapshotRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteSnapshotResponseUnmarshaller . Instance ; return Invoke < DeleteSnapshotRespons...
public ListMemberAccountsResult listMemberAccounts ( ListMemberAccountsRequest request ) { request = beforeClientExecution ( request ) ; return executeListMemberAccounts ( request ) ; }
public virtual ListMemberAccountsResponse ListMemberAccounts ( ListMemberAccountsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListMemberAccountsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListMemberAccountsResponseUnmarshaller . Instance ; return Invoke < L...
public boolean shouldRefresh ( ) { long now = System . currentTimeMillis ( ) ; return now - lastFailedRefreshTime > refreshIntervalInMillSeconds ; }
public bool ShouldRefresh ( ) { var now = DateTime . UtcNow . Ticks ; return now - lastFailedRefreshTime > refreshIntervalInMillSeconds ; }
public void setRefLogMessage ( String msg , boolean appendStatus ) { if ( msg == null && ! appendStatus ) disableRefLog ( ) ; else if ( msg == null && appendStatus ) { refLogMessage = "" ; refLogIncludeResult = true ; } else { refLogMessage = msg ; refLogIncludeResult = appendStatus ; } }
public virtual void SetRefLogMessage ( string msg , bool appendStatus ) { if ( msg == null && ! appendStatus ) { DisableRefLog ( ) ; } else { if ( msg == null && appendStatus ) { refLogMessage = string . Empty ; refLogIncludeResult = true ; } else { refLogMessage = msg ; refLogIncludeResult = appendStatus ; } } }
public Status getStatus ( ) { return myStatus ; }
public virtual RemoteRefUpdate . Status GetStatus ( ) { return status ; }
public GetDeploymentStrategyResult getDeploymentStrategy ( GetDeploymentStrategyRequest request ) { request = beforeClientExecution ( request ) ; return executeGetDeploymentStrategy ( request ) ; }
public virtual GetDeploymentStrategyResponse GetDeploymentStrategy ( GetDeploymentStrategyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetDeploymentStrategyRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetDeploymentStrategyResponseUnmarshaller . Instance ; re...
public DeleteEventResult deleteEvent ( DeleteEventRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteEvent ( request ) ; }
public virtual DeleteEventResponse DeleteEvent ( DeleteEventRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteEventRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteEventResponseUnmarshaller . Instance ; return Invoke < DeleteEventResponse > ( request , op...
public ListQueryLoggingConfigsResult listQueryLoggingConfigs ( ListQueryLoggingConfigsRequest request ) { request = beforeClientExecution ( request ) ; return executeListQueryLoggingConfigs ( request ) ; }
public virtual ListQueryLoggingConfigsResponse ListQueryLoggingConfigs ( ListQueryLoggingConfigsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListQueryLoggingConfigsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListQueryLoggingConfigsResponseUnmarshaller . Ins...
public BatchGetDeploymentTargetsResult batchGetDeploymentTargets ( BatchGetDeploymentTargetsRequest request ) { request = beforeClientExecution ( request ) ; return executeBatchGetDeploymentTargets ( request ) ; }
public virtual BatchGetDeploymentTargetsResponse BatchGetDeploymentTargets ( BatchGetDeploymentTargetsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BatchGetDeploymentTargetsRequestMarshaller . Instance ; options . ResponseUnmarshaller = BatchGetDeploymentTargetsResponseUnmarsha...
public GetRulesResult getRules ( GetRulesRequest request ) { request = beforeClientExecution ( request ) ; return executeGetRules ( request ) ; }
public virtual GetRulesResponse GetRules ( GetRulesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetRulesRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetRulesResponseUnmarshaller . Instance ; return Invoke < GetRulesResponse > ( request , options ) ; }
public void setMessage ( String newMessage ) { message = newMessage ; }
public virtual void SetMessage ( string newMessage ) { message = newMessage ; }
public String toString ( String field ) { return null ; }
public override string ToString ( string field ) { return null ; }
public ReplicationGroup completeMigration ( CompleteMigrationRequest request ) { request = beforeClientExecution ( request ) ; return executeCompleteMigration ( request ) ; }
public virtual CompleteMigrationResponse CompleteMigration ( CompleteMigrationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CompleteMigrationRequestMarshaller . Instance ; options . ResponseUnmarshaller = CompleteMigrationResponseUnmarshaller . Instance ; return Invoke < Comple...
public SupBookRecord ( RecordInputStream in ) { int recLen = in . remaining ( ) ; field_1_number_of_sheets = in . readShort ( ) ; if ( recLen > SMALL_RECORD_SIZE ) { _isAddInFunctions = false ; field_2_encoded_url = in . readString ( ) ; String [ ] sheetNames = new String [ field_1_number_of_sheets ] ; for ( int i = 0 ...
public SupBookRecord ( RecordInputStream in1 ) { int recLen = in1 . Remaining ; field_1_number_of_sheets = in1 . ReadShort ( ) ; if ( recLen > SMALL_RECORD_SIZE ) { _isAddInFunctions = false ; field_2_encoded_url = in1 . ReadString ( ) ; String [ ] sheetNames = new String [ field_1_number_of_sheets ] ; for ( int i = 0 ...
public GetEmailTemplateResult getEmailTemplate ( GetEmailTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeGetEmailTemplate ( request ) ; }
public virtual GetEmailTemplateResponse GetEmailTemplate ( GetEmailTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetEmailTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetEmailTemplateResponseUnmarshaller . Instance ; return Invoke < GetEmailTem...
public void setByte ( int index , int value ) { switch ( index > > 2 ) { case 0 : w1 = set ( w1 , index & 3 , value ) ; break ; case 1 : w2 = set ( w2 , index & 3 , value ) ; break ; case 2 : w3 = set ( w3 , index & 3 , value ) ; break ; case 3 : w4 = set ( w4 , index & 3 , value ) ; break ; case 4 : w5 = set ( w5 , in...
public virtual void SetByte ( int index , int value ) { switch ( index > > 2 ) { case 0 : { w1 = Set ( w1 , index & 3 , value ) ; break ; } case 1 : { w2 = Set ( w2 , index & 3 , value ) ; break ; } case 2 : { w3 = Set ( w3 , index & 3 , value ) ; break ; } case 3 : { w4 = Set ( w4 , index & 3 , value ) ; break ; } cas...
public LongBuffer put ( int index , long c ) { throw new ReadOnlyBufferException ( ) ; }
public override java . nio . LongBuffer put ( int index , long c ) { throw new java . nio . ReadOnlyBufferException ( ) ; }
public SumTotalTermFreqValueSource ( String indexedField ) { this . indexedField = indexedField ; }
public SumTotalTermFreqValueSource ( string indexedField ) { this . m_indexedField = indexedField ; }
public NavigableSet < E > tailSet ( E start , boolean startInclusive ) { Comparator < ? super E > c = backingMap . comparator ( ) ; if ( c == null ) { ( ( Comparable < E > ) start ) . compareTo ( start ) ; } else { c . compare ( start , start ) ; } return new TreeSet < E > ( backingMap . tailMap ( start , startInclusiv...
public virtual java . util . NavigableSet < E > tailSet ( E start , bool startInclusive ) { java . util . Comparator < E > c = backingMap . comparator ( ) ; if ( c == null ) { ( ( java . lang . Comparable < E > ) start ) . compareTo ( start ) ; } else { c . compare ( start , start ) ; } return new java . util . TreeSet...
public ReadJobResult readJob ( ReadJobRequest request ) { request = beforeClientExecution ( request ) ; return executeReadJob ( request ) ; }
public virtual ReadJobResponse ReadJob ( ReadJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ReadJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = ReadJobResponseUnmarshaller . Instance ; return Invoke < ReadJobResponse > ( request , options ) ; }
public GetSignalingChannelEndpointResult getSignalingChannelEndpoint ( GetSignalingChannelEndpointRequest request ) { request = beforeClientExecution ( request ) ; return executeGetSignalingChannelEndpoint ( request ) ; }
public virtual GetSignalingChannelEndpointResponse GetSignalingChannelEndpoint ( GetSignalingChannelEndpointRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetSignalingChannelEndpointRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetSignalingChannelEndpointRespon...
public VariableGapTermsIndexWriter ( SegmentWriteState state , IndexTermSelector policy ) throws IOException { final String indexFileName = IndexFileNames . segmentFileName ( state . segmentInfo . name , state . segmentSuffix , TERMS_INDEX_EXTENSION ) ; out = state . directory . createOutput ( indexFileName , state . c...
public VariableGapTermsIndexWriter ( SegmentWriteState state , IndexTermSelector policy ) { string indexFileName = IndexFileNames . SegmentFileName ( state . SegmentInfo . Name , state . SegmentSuffix , TERMS_INDEX_EXTENSION ) ; m_output = state . Directory . CreateOutput ( indexFileName , state . Context ) ; bool succ...
@ Override public boolean add ( E object ) { Object [ ] a = array ; int s = size ; if ( s == a . length ) { Object [ ] newArray = new Object [ s + ( s < ( MIN_CAPACITY_INCREMENT / 2 ) ? MIN_CAPACITY_INCREMENT : s > > 1 ) ] ; System . arraycopy ( a , 0 , newArray , 0 , s ) ; array = a = newArray ; } a [ s ] = object ; s...
public override bool add ( E @ object ) { object [ ] a = array ; int s = _size ; if ( s == a . Length ) { object [ ] newArray = new object [ s + ( s < ( java . util . ArrayList . MIN_CAPACITY_INCREMENT / 2 ) ? java . util . ArrayList . MIN_CAPACITY_INCREMENT : s > > 1 ) ] ; System . Array . Copy ( a , 0 , newArray , 0 ...
public Set < Integer > toSet ( ) { Set < Integer > s = new HashSet < Integer > ( ) ; for ( Interval I : intervals ) { int a = I . a ; int b = I . b ; for ( int v = a ; v <= b ; v ++ ) { s . add ( v ) ; } } return s ; }
public virtual HashSet < int > ToSet ( ) { HashSet < int > s = new HashSet < int > ( ) ; foreach ( Interval I in intervals ) { int a = I . a ; int b = I . b ; for ( int v = a ; v <= b ; v ++ ) { s . Add ( v ) ; } } return s ; }
public final void writeBoolean ( boolean val ) throws IOException { write ( val ? 1 : 0 ) ; }
public virtual void writeBoolean ( bool val ) { throw new System . NotImplementedException ( ) ; }
public void serialize ( LittleEndianOutput out ) { throw new RecordFormatException ( "Sorry, you can't serialize MulRK in this release" ) ; }
public override void Serialize ( ILittleEndianOutput out1 ) { throw new RecordFormatException ( "Sorry, you can't serialize MulRK in this release" ) ; }
public T get ( int index ) { if ( index < 0 || size <= index ) throw new IndexOutOfBoundsException ( String . valueOf ( index ) ) ; return directory [ toDirectoryIndex ( index ) ] [ toBlockIndex ( index ) ] ; }
public override T Get ( int index ) { if ( index < 0 || size <= index ) { throw new IndexOutOfRangeException ( index . ToString ( ) ) ; } return directory [ ToDirectoryIndex ( index ) ] [ ToBlockIndex ( index ) ] ; }
public DeleteSnapshotCopyGrantResult deleteSnapshotCopyGrant ( DeleteSnapshotCopyGrantRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteSnapshotCopyGrant ( request ) ; }
public virtual DeleteSnapshotCopyGrantResponse DeleteSnapshotCopyGrant ( DeleteSnapshotCopyGrantRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteSnapshotCopyGrantRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteSnapshotCopyGrantResponseUnmarshaller . Ins...
public void resetFontStyle ( ) { setFontStyle ( false , false ) ; }
public void ResetFontStyle ( ) { SetFontStyle ( false , false ) ; }
public static int getEncodedSize ( int numberOfRanges ) { return 2 + CellRangeAddress . getEncodedSize ( numberOfRanges ) ; }
public static int GetEncodedSize ( int numberOfRanges ) { return 2 + CellRangeAddress . GetEncodedSize ( numberOfRanges ) ; }
public ListJobsRequest ( String vaultName ) { setVaultName ( vaultName ) ; }
public ListJobsRequest ( string vaultName ) { _vaultName = vaultName ; }
public DeletePlacementGroupRequest ( String groupName ) { setGroupName ( groupName ) ; }
public DeletePlacementGroupRequest ( string groupName ) { _groupName = groupName ; }
public void fill ( ) { lazyInit ( ) ; final int blockSize = 1000 ; while ( true ) { int fetched = fetch ( blockSize ) ; if ( fetched < blockSize ) { return ; } } }
public virtual void Fill ( ) { LazyInit ( ) ; int blockSize = 1000 ; while ( true ) { int fetched = Fetch ( blockSize ) ; if ( fetched < blockSize ) { return ; } } }
public DescribeGlobalClustersResult describeGlobalClusters ( DescribeGlobalClustersRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeGlobalClusters ( request ) ; }
public virtual DescribeGlobalClustersResponse DescribeGlobalClusters ( DescribeGlobalClustersRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeGlobalClustersRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeGlobalClustersResponseUnmarshaller . Instance...
public PutVoiceConnectorTerminationResult putVoiceConnectorTermination ( PutVoiceConnectorTerminationRequest request ) { request = beforeClientExecution ( request ) ; return executePutVoiceConnectorTermination ( request ) ; }
public virtual PutVoiceConnectorTerminationResponse PutVoiceConnectorTermination ( PutVoiceConnectorTerminationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PutVoiceConnectorTerminationRequestMarshaller . Instance ; options . ResponseUnmarshaller = PutVoiceConnectorTerminationR...
public static int strcmp ( char [ ] a , int startA , char [ ] b , int startB ) { for ( ; a [ startA ] == b [ startB ] ; startA ++ , startB ++ ) { if ( a [ startA ] == 0 ) { return 0 ; } } return a [ startA ] - b [ startB ] ; }
public static int StrCmp ( char [ ] a , int startA , char [ ] b , int startB ) { for ( ; a [ startA ] == b [ startB ] ; startA ++ , startB ++ ) { if ( a [ startA ] == 0 ) { return 0 ; } } return a [ startA ] - b [ startB ] ; }
public StartSentimentDetectionJobResult startSentimentDetectionJob ( StartSentimentDetectionJobRequest request ) { request = beforeClientExecution ( request ) ; return executeStartSentimentDetectionJob ( request ) ; }
public virtual StartSentimentDetectionJobResponse StartSentimentDetectionJob ( StartSentimentDetectionJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = StartSentimentDetectionJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = StartSentimentDetectionJobResponseUnm...
public HSSFCell createCell ( int column ) { return this . createCell ( column , CellType . BLANK ) ; }
public ICell CreateCell ( int column ) { return this . CreateCell ( column , CellType . Blank ) ; }
public RecalcIdRecord ( RecordInputStream in ) { in . readUShort ( ) ; _reserved0 = in . readUShort ( ) ; _engineId = in . readInt ( ) ; }
public RecalcIdRecord ( RecordInputStream in1 ) { in1 . ReadUShort ( ) ; _reserved0 = in1 . ReadUShort ( ) ; _engineId = in1 . ReadInt ( ) ; }
public static int getEncodedSizeWithoutArrayData ( Ptg [ ] ptgs ) { int result = 0 ; for ( Ptg ptg : ptgs ) { if ( ptg instanceof ArrayPtg ) { result += ArrayPtg . PLAIN_TOKEN_SIZE ; } else { result += ptg . getSize ( ) ; } } return result ; }
public static int GetEncodedSizeWithoutArrayData ( Ptg [ ] ptgs ) { int result = 0 ; for ( int i = 0 ; i < ptgs . Length ; i ++ ) { Ptg ptg = ptgs [ i ] ; if ( ptg is ArrayPtg ) { result += ArrayPtg . PLAIN_TOKEN_SIZE ; } else { result += ptg . Size ; } } return result ; }
public static double ceiling ( double n , double s ) { if ( n > 0 && s < 0 ) { return Double . NaN ; } else { return ( n == 0 || s == 0 ) ? 0 : Math . ceil ( n / s ) * s ; } }
public static double Ceiling ( double n , double s ) { double c ; if ( ( n < 0 && s > 0 ) || ( n > 0 && s < 0 ) ) { c = double . NaN ; } else { c = ( n == 0 || s == 0 ) ? 0 : Math . Ceiling ( n / s ) * s ; } return c ; }
public ListResolverRulesResult listResolverRules ( ListResolverRulesRequest request ) { request = beforeClientExecution ( request ) ; return executeListResolverRules ( request ) ; }
public virtual ListResolverRulesResponse ListResolverRules ( ListResolverRulesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListResolverRulesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListResolverRulesResponseUnmarshaller . Instance ; return Invoke < ListRe...
public ListBusinessReportSchedulesResult listBusinessReportSchedules ( ListBusinessReportSchedulesRequest request ) { request = beforeClientExecution ( request ) ; return executeListBusinessReportSchedules ( request ) ; }
public virtual ListBusinessReportSchedulesResponse ListBusinessReportSchedules ( ListBusinessReportSchedulesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListBusinessReportSchedulesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListBusinessReportSchedulesRespon...
public EscherDgRecord createDgRecord ( ) { EscherDgRecord dg = new EscherDgRecord ( ) ; dg . setRecordId ( EscherDgRecord . RECORD_ID ) ; short dgId = findNewDrawingGroupId ( ) ; dg . setOptions ( ( short ) ( dgId << 4 ) ) ; dg . setNumShapes ( 0 ) ; dg . setLastMSOSPID ( - 1 ) ; drawingGroups . add ( dg ) ; dgg . addC...
public virtual EscherDgRecord CreateDgRecord ( ) { EscherDgRecord dg = new EscherDgRecord ( ) ; dg . RecordId = EscherDgRecord . RECORD_ID ; short dgId = FindNewDrawingGroupId ( ) ; dg . Options = ( short ) ( dgId << 4 ) ; dg . NumShapes = 0 ; dg . LastMSOSPID = ( - 1 ) ; drawingGroups . Add ( dg ) ; dgg . AddCluster (...
public Transport open ( URIish uri ) throws NotSupportedException , TransportException { throw new NotSupportedException ( JGitText . get ( ) . transportNeedsRepository ) ; }
public virtual NGit . Transport . Transport Open ( URIish uri ) { throw new NotSupportedException ( JGitText . Get ( ) . transportNeedsRepository ) ; }
public int compare ( Ref o1 , Ref o2 ) { return compareTo ( o1 , o2 ) ; }
public virtual int Compare ( Ref o1 , Ref o2 ) { return CompareTo ( o1 , o2 ) ; }
public OrdRange ( int start , int end ) { this . start = start ; this . end = end ; }
public OrdRange ( int start , int end ) { this . Start = start ; this . End = end ; }
public boolean add ( E object ) { return backingMap . put ( object , this ) == null ; }
public override bool add ( E @ object ) { return backingMap . put ( @ object , this ) == null ; }
public void write ( String s ) { reserve ( s . length ( ) ) ; s . getChars ( 0 , s . length ( ) , buf , len ) ; len += s . length ( ) ; }
public virtual void Write ( int b ) { Write ( ( char ) b ) ; }
public long skip ( long cnt ) throws IOException { try { beginRead ( ) ; return super . skip ( cnt ) ; } catch ( InterruptedIOException e ) { throw readTimedOut ( e ) ; } finally { endRead ( ) ; } }
public override long Skip ( long cnt ) { try { BeginRead ( ) ; return base . Skip ( cnt ) ; } catch ( ThreadInterruptedException ) { throw ReadTimedOut ( ) ; } finally { EndRead ( ) ; } }
public StepDetail ( StepConfig stepConfig , StepExecutionStatusDetail executionStatusDetail ) { setStepConfig ( stepConfig ) ; setExecutionStatusDetail ( executionStatusDetail ) ; }
public StepDetail ( StepConfig stepConfig , StepExecutionStatusDetail executionStatusDetail ) { _stepConfig = stepConfig ; _executionStatusDetail = executionStatusDetail ; }
final public Token getToken ( int index ) { Token t = token ; for ( int i = 0 ; i < index ; i ++ ) { if ( t . next != null ) t = t . next ; else t = t . next = token_source . getNextToken ( ) ; } return t ; }
public Token GetToken ( int index ) { Token t = Token ; for ( int i = 0 ; i < index ; i ++ ) { if ( t . Next != null ) t = t . Next ; else t = t . Next = TokenSource . GetNextToken ( ) ; } return t ; }
public Object [ ] toArray ( ) { synchronized ( mutex ) { return delegate ( ) . toArray ( ) ; } }
public virtual object [ ] toArray ( ) { lock ( mutex ) { return c . toArray ( ) ; } }
public DBParameterGroup createDBParameterGroup ( CreateDBParameterGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateDBParameterGroup ( request ) ; }
public virtual CreateDBParameterGroupResponse CreateDBParameterGroup ( CreateDBParameterGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateDBParameterGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateDBParameterGroupResponseUnmarshaller . Instance...
public StringBuilder append ( boolean b ) { append0 ( b ? "true" : "false" ) ; return this ; }
public java . lang . StringBuilder append ( bool b ) { append0 ( b ? "true" : "false" ) ; return this ; }
public void execute ( Lexer lexer , CharStream input , int startIndex ) { boolean requiresSeek = false ; int stopIndex = input . index ( ) ; try { for ( LexerAction lexerAction : lexerActions ) { if ( lexerAction instanceof LexerIndexedCustomAction ) { int offset = ( ( LexerIndexedCustomAction ) lexerAction ) . getOffs...
public virtual void Execute ( Lexer lexer , ICharStream input , int startIndex ) { bool requiresSeek = false ; int stopIndex = input . Index ; try { foreach ( ILexerAction lexerAction in lexerActions ) { ILexerAction action = lexerAction ; if ( action is LexerIndexedCustomAction ) { int offset = ( ( LexerIndexedCustomA...
public ListMailboxPermissionsResult listMailboxPermissions ( ListMailboxPermissionsRequest request ) { request = beforeClientExecution ( request ) ; return executeListMailboxPermissions ( request ) ; }
public virtual ListMailboxPermissionsResponse ListMailboxPermissions ( ListMailboxPermissionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListMailboxPermissionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListMailboxPermissionsResponseUnmarshaller . Instance...
public ConditionalFormattingTable ( RecordStream rs ) { while ( rs . peekNextRecord ( ) instanceof CFHeaderBase ) { _cfHeaders . add ( CFRecordsAggregate . createCFAggregate ( rs ) ) ; } }
public ConditionalFormattingTable ( RecordStream rs ) { IList temp = new ArrayList ( ) ; while ( rs . PeekNextClass ( ) == typeof ( CFHeaderRecord ) ) { temp . Add ( CFRecordsAggregate . CreateCFAggregate ( rs ) ) ; } _cfHeaders = temp ; }
public void decode ( byte [ ] blocks , int blocksOffset , int [ ] values , int valuesOffset , int iterations ) { for ( int i = 0 ; i < iterations ; ++ i ) { final int byte0 = blocks [ blocksOffset ++ ] & 0xFF ; final int byte1 = blocks [ blocksOffset ++ ] & 0xFF ; values [ valuesOffset ++ ] = ( byte0 << 4 ) | ( byte1 >...
public override void Decode ( byte [ ] blocks , int blocksOffset , int [ ] values , int valuesOffset , int iterations ) { for ( int i = 0 ; i < iterations ; ++ i ) { int byte0 = blocks [ blocksOffset ++ ] & 0xFF ; int byte1 = blocks [ blocksOffset ++ ] & 0xFF ; values [ valuesOffset ++ ] = ( byte0 << 4 ) | ( ( int ) ( ...
public Map < String , Ref > getTags ( ) { try { return getRefDatabase ( ) . getRefs ( Constants . R_TAGS ) ; } catch ( IOException e ) { throw new UncheckedIOException ( e ) ; } }
public virtual IDictionary < string , Ref > GetTags ( ) { try { return RefDatabase . GetRefs ( Constants . R_TAGS ) ; } catch ( IOException ) { return new Dictionary < string , Ref > ( ) ; } }
public ComposedQuery ( List < SrndQuery > qs , boolean operatorInfix , String opName ) { recompose ( qs ) ; this . operatorInfix = operatorInfix ; this . opName = opName ; }
public ComposedQuery ( IList < SrndQuery > qs , bool operatorInfix , string opName ) { Recompose ( qs ) ; this . operatorInfix = operatorInfix ; this . m_opName = opName ; }
public TestRoleResult testRole ( TestRoleRequest request ) { request = beforeClientExecution ( request ) ; return executeTestRole ( request ) ; }
public virtual TestRoleResponse TestRole ( TestRoleRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = TestRoleRequestMarshaller . Instance ; options . ResponseUnmarshaller = TestRoleResponseUnmarshaller . Instance ; return Invoke < TestRoleResponse > ( request , options ) ; }
public String toString ( ) { final StringBuilder r = new StringBuilder ( ) ; r . append ( "(" ) ; for ( int i = 0 ; i < subfilters . length ; i ++ ) { if ( i > 0 ) r . append ( " AND " ) ; r . append ( subfilters [ i ] . toString ( ) ) ; } r . append ( ")" ) ; return r . toString ( ) ; }
public override string ToString ( ) { StringBuilder r = new StringBuilder ( ) ; r . Append ( "(" ) ; for ( int i = 0 ; i < subfilters . Length ; i ++ ) { if ( i > 0 ) { r . Append ( " OR " ) ; } r . Append ( subfilters [ i ] . ToString ( ) ) ; } r . Append ( ")" ) ; return r . ToString ( ) ; }
public ModifyVpcAttributeResult modifyVpcAttribute ( ModifyVpcAttributeRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyVpcAttribute ( request ) ; }
public virtual ModifyVpcAttributeResponse ModifyVpcAttribute ( ModifyVpcAttributeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyVpcAttributeRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyVpcAttributeResponseUnmarshaller . Instance ; return Invoke < M...
public void seekExact ( long ord ) throws IOException { throw new UnsupportedOperationException ( ) ; }
public override void SeekExact ( long ord ) { throw new System . NotSupportedException ( ) ; }
public ArabicNormalizationFilterFactory ( Map < String , String > args ) { super ( args ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } }
public ArabicNormalizationFilterFactory ( IDictionary < string , string > args ) : base ( args ) { if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } }
public boolean equals ( Object obj ) { if ( ! ( obj instanceof BookSheetKey ) ) { return false ; } BookSheetKey other = ( BookSheetKey ) obj ; return _bookIndex == other . _bookIndex && _sheetIndex == other . _sheetIndex ; }
public override bool Equals ( Object obj ) { BookSheetKey other = ( BookSheetKey ) obj ; return _bookIndex == other . _bookIndex && _sheetIndex == other . _sheetIndex ; }
public TermQuery ( Term t , TermStates states ) { assert states != null ; term = Objects . requireNonNull ( t ) ; perReaderTermState = Objects . requireNonNull ( states ) ; }
public TermQuery ( Term t , TermContext states ) { Debug . Assert ( states != null ) ; term = t ; docFreq = states . DocFreq ; perReaderTermState = states ; }
public GetClusterCredentialsResult getClusterCredentials ( GetClusterCredentialsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetClusterCredentials ( request ) ; }
public virtual GetClusterCredentialsResponse GetClusterCredentials ( GetClusterCredentialsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetClusterCredentialsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetClusterCredentialsResponseUnmarshaller . Instance ; re...
public boolean equals ( Object other ) { return ( getClass ( ) == other . getClass ( ) ) && this . equalsSameType ( other ) ; }
public override bool Equals ( object other ) { return ( this . GetType ( ) == other . GetType ( ) ) && this . EqualsSameType ( other ) ; }
public Item clone ( ) { return new Item ( parent , child ) ; }
public object Clone ( ) { return new Item ( parent , child ) ; }
public UpdateClusterResult updateCluster ( UpdateClusterRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateCluster ( request ) ; }
public virtual UpdateClusterResponse UpdateCluster ( UpdateClusterRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateClusterRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateClusterResponseUnmarshaller . Instance ; return Invoke < UpdateClusterResponse > ( ...
public E get ( int index ) { synchronized ( mutex ) { return delegate ( ) . get ( index ) ; } }
public virtual E get ( int location ) { lock ( mutex ) { return list . get ( location ) ; } }
public LogCommand setMaxCount ( int maxCount ) { checkCallable ( ) ; this . maxCount = maxCount ; return this ; }
public virtual NGit . Api . LogCommand SetMaxCount ( int maxCount ) { CheckCallable ( ) ; this . maxCount = maxCount ; return this ; }
public GetInsightRuleReportResult getInsightRuleReport ( GetInsightRuleReportRequest request ) { request = beforeClientExecution ( request ) ; return executeGetInsightRuleReport ( request ) ; }
public virtual GetInsightRuleReportResponse GetInsightRuleReport ( GetInsightRuleReportRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetInsightRuleReportRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetInsightRuleReportResponseUnmarshaller . Instance ; return ...
public CommonToken ( Token oldToken ) { type = oldToken . getType ( ) ; line = oldToken . getLine ( ) ; index = oldToken . getTokenIndex ( ) ; charPositionInLine = oldToken . getCharPositionInLine ( ) ; channel = oldToken . getChannel ( ) ; start = oldToken . getStartIndex ( ) ; stop = oldToken . getStopIndex ( ) ; if ...
public CommonToken ( IToken oldToken ) { _type = oldToken . Type ; _line = oldToken . Line ; index = oldToken . TokenIndex ; charPositionInLine = oldToken . Column ; _channel = oldToken . Channel ; start = oldToken . StartIndex ; stop = oldToken . StopIndex ; if ( oldToken is Antlr4 . Runtime . CommonToken ) { _text = ...