question
stringlengths
33
1.59k
target
stringlengths
33
1.58k
public RejectTransitGatewayVpcAttachmentResult rejectTransitGatewayVpcAttachment ( RejectTransitGatewayVpcAttachmentRequest request ) { request = beforeClientExecution ( request ) ; return executeRejectTransitGatewayVpcAttachment ( request ) ; }
public virtual RejectTransitGatewayVpcAttachmentResponse RejectTransitGatewayVpcAttachment ( RejectTransitGatewayVpcAttachmentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RejectTransitGatewayVpcAttachmentRequestMarshaller . Instance ; options . ResponseUnmarshaller = RejectTransitGatewayVpcAttachmentResponseUnmarshaller . Instance ; return Invoke < RejectTransitGatewayVpcAttachmentResponse > ( request , options ) ; }
public DeleteApnsChannelResult deleteApnsChannel ( DeleteApnsChannelRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteApnsChannel ( request ) ; }
public virtual DeleteApnsChannelResponse DeleteApnsChannel ( DeleteApnsChannelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteApnsChannelRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteApnsChannelResponseUnmarshaller . Instance ; return Invoke < DeleteApnsChannelResponse > ( request , options ) ; }
public Entry getEntry ( final String name ) throws FileNotFoundException { Entry rval = null ; if ( name != null ) { rval = _byname . get ( name ) ; } if ( rval == null ) { if ( _byname . containsKey ( "Workbook" ) ) { throw new IllegalArgumentException ( "The document is really a XLS file" ) ; } else if ( _byname . containsKey ( "PowerPoint Document" ) ) { throw new IllegalArgumentException ( "The document is really a PPT file" ) ; } else if ( _byname . containsKey ( "VisioDocument" ) ) { throw new IllegalArgumentException ( "The document is really a VSD file" ) ; } throw new FileNotFoundException ( "no such entry: \"" + name + "\", had: " + _byname . keySet ( ) ) ; } return rval ; }
public Entry GetEntry ( String name ) { Entry rval = null ; if ( name != null ) { try { rval = ( Entry ) _byname [ name ] ; } catch ( KeyNotFoundException ) { throw new FileNotFoundException ( "no such entry: \"" + name + "\"" ) ; } } if ( rval == null ) { throw new FileNotFoundException ( "no such entry: \"" + name + "\"" ) ; } return rval ; }
public TokenStream create ( TokenStream input ) { return new FrenchMinimalStemFilter ( input ) ; }
public override TokenStream Create ( TokenStream input ) { return new FrenchMinimalStemFilter ( input ) ; }
public int getDecimalExponent ( ) { return _relativeDecimalExponent + EXPONENT_OFFSET ; }
public int GetDecimalExponent ( ) { return _relativeDecimalExponent + EXPONENT_OFFSET ; }
public DescribeInstanceCreditSpecificationsResult describeInstanceCreditSpecifications ( DescribeInstanceCreditSpecificationsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeInstanceCreditSpecifications ( request ) ; }
public virtual DescribeInstanceCreditSpecificationsResponse DescribeInstanceCreditSpecifications ( DescribeInstanceCreditSpecificationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeInstanceCreditSpecificationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeInstanceCreditSpecificationsResponseUnmarshaller . Instance ; return Invoke < DescribeInstanceCreditSpecificationsResponse > ( request , options ) ; }
public GetSendQuotaResult getSendQuota ( ) { return getSendQuota ( new GetSendQuotaRequest ( ) ) ; }
public virtual GetSendQuotaResponse GetSendQuota ( ) { return GetSendQuota ( new GetSendQuotaRequest ( ) ) ; }
public String toString ( ) { return "TERM: " + brToString ( termBytes ) ; }
public override string ToString ( ) { return Term . Utf8ToString ( ) ; }
public ListFacetNamesResult listFacetNames ( ListFacetNamesRequest request ) { request = beforeClientExecution ( request ) ; return executeListFacetNames ( request ) ; }
public virtual ListFacetNamesResponse ListFacetNames ( ListFacetNamesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListFacetNamesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListFacetNamesResponseUnmarshaller . Instance ; return Invoke < ListFacetNamesResponse > ( request , options ) ; }
public PlainValueCellCacheEntry ( ValueEval value ) { updateValue ( value ) ; }
public PlainValueCellCacheEntry ( ValueEval value ) { UpdateValue ( value ) ; }
public PutEmailIdentityFeedbackAttributesResult putEmailIdentityFeedbackAttributes ( PutEmailIdentityFeedbackAttributesRequest request ) { request = beforeClientExecution ( request ) ; return executePutEmailIdentityFeedbackAttributes ( request ) ; }
public virtual PutEmailIdentityFeedbackAttributesResponse PutEmailIdentityFeedbackAttributes ( PutEmailIdentityFeedbackAttributesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PutEmailIdentityFeedbackAttributesRequestMarshaller . Instance ; options . ResponseUnmarshaller = PutEmailIdentityFeedbackAttributesResponseUnmarshaller . Instance ; return Invoke < PutEmailIdentityFeedbackAttributesResponse > ( request , options ) ; }
public AbortMultipartUploadRequest ( String vaultName , String uploadId ) { setVaultName ( vaultName ) ; setUploadId ( uploadId ) ; }
public AbortMultipartUploadRequest ( string vaultName , string uploadId ) { _vaultName = vaultName ; _uploadId = uploadId ; }
public ResetDBParameterGroupRequest ( String dBParameterGroupName ) { setDBParameterGroupName ( dBParameterGroupName ) ; }
public ResetDBParameterGroupRequest ( string dbParameterGroupName ) { _dbParameterGroupName = dbParameterGroupName ; }
public HSSFClientAnchor createAnchor ( int dx1 , int dy1 , int dx2 , int dy2 , int col1 , int row1 , int col2 , int row2 ) { return new HSSFClientAnchor ( dx1 , dy1 , dx2 , dy2 , ( short ) col1 , row1 , ( short ) col2 , row2 ) ; }
public IClientAnchor CreateAnchor ( int dx1 , int dy1 , int dx2 , int dy2 , int col1 , int row1 , int col2 , int row2 ) { return new HSSFClientAnchor ( dx1 , dy1 , dx2 , dy2 , ( short ) col1 , row1 , ( short ) col2 , row2 ) ; }
public void updateCacheResult ( ValueEval result ) { int nFrames = _evaluationFrames . size ( ) ; if ( nFrames < 1 ) { throw new IllegalStateException ( "Call to endEvaluate without matching call to startEvaluate" ) ; } CellEvaluationFrame frame = _evaluationFrames . get ( nFrames - 1 ) ; if ( result == ErrorEval . CIRCULAR_REF_ERROR && nFrames > 1 ) { return ; } frame . updateFormulaResult ( result ) ; }
public void UpdateCacheResult ( ValueEval result ) { int nFrames = _evaluationFrames . Count ; if ( nFrames < 1 ) { throw new InvalidOperationException ( "Call To endEvaluate without matching call To startEvaluate" ) ; } CellEvaluationFrame frame = ( CellEvaluationFrame ) _evaluationFrames [ nFrames - 1 ] ; frame . UpdateFormulaResult ( result ) ; }
public Enumeration < String > keys ( ) { return new Iterator ( ) ; }
public virtual IEnumerator < string > Keys ( ) { return new Iterator ( this ) ; }
public void fromRaw ( int [ ] ints ) { fromRaw ( ints , 0 ) ; }
public virtual void FromRaw ( byte [ ] bs ) { FromRaw ( bs , 0 ) ; }
public int [ ] init ( ) { final int [ ] ord = super . init ( ) ; start = new int [ ArrayUtil . oversize ( ord . length , Integer . BYTES ) ] ; end = new int [ ArrayUtil . oversize ( ord . length , Integer . BYTES ) ] ; freq = new int [ ArrayUtil . oversize ( ord . length , Integer . BYTES ) ] ; assert start . length >= ord . length ; assert end . length >= ord . length ; assert freq . length >= ord . length ; return ord ; }
public override int [ ] Init ( ) { int [ ] ord = base . Init ( ) ; start = new int [ ArrayUtil . Oversize ( ord . Length , RamUsageEstimator . NUM_BYTES_INT32 ) ] ; end = new int [ ArrayUtil . Oversize ( ord . Length , RamUsageEstimator . NUM_BYTES_INT32 ) ] ; freq = new int [ ArrayUtil . Oversize ( ord . Length , RamUsageEstimator . NUM_BYTES_INT32 ) ] ; Debug . Assert ( start . Length >= ord . Length ) ; Debug . Assert ( end . Length >= ord . Length ) ; Debug . Assert ( freq . Length >= ord . Length ) ; return ord ; }
public boolean addFetchRefSpec ( RefSpec s ) { if ( fetch . contains ( s ) ) return false ; return fetch . add ( s ) ; }
public virtual bool AddFetchRefSpec ( RefSpec s ) { if ( fetch . Contains ( s ) ) { return false ; } return fetch . AddItem ( s ) ; }
public char setIndex ( int location ) { if ( location < start || location > end ) { throw new IllegalArgumentException ( ) ; } offset = location ; if ( offset == end ) { return DONE ; } return string . charAt ( offset ) ; }
public char setIndex ( int location ) { if ( location < start || location > end ) { throw new System . ArgumentException ( ) ; } offset = location ; if ( offset == end ) { return java . text . CharacterIteratorClass . DONE ; } return @ string [ offset ] ; }
public String toString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( "[ITERATION]\n" ) ; buffer . append ( " .flags = " ) . append ( HexDump . shortToHex ( _flags ) ) . append ( "\n" ) ; buffer . append ( "[/ITERATION]\n" ) ; return buffer . toString ( ) ; }
public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[ITERATION]\n" ) ; buffer . Append ( " .flags = " ) . Append ( HexDump . ShortToHex ( _flags ) ) . Append ( "\n" ) ; buffer . Append ( "[/ITERATION]\n" ) ; return buffer . ToString ( ) ; }
public LogByteSizeMergePolicy ( ) { minMergeSize = ( long ) ( DEFAULT_MIN_MERGE_MB * 1024 * 1024 ) ; maxMergeSize = ( long ) ( DEFAULT_MAX_MERGE_MB * 1024 * 1024 ) ; maxMergeSizeForForcedMerge = ( long ) ( DEFAULT_MAX_MERGE_MB_FOR_FORCED_MERGE * 1024 * 1024 ) ; }
public LogByteSizeMergePolicy ( ) { m_minMergeSize = ( long ) ( DEFAULT_MIN_MERGE_MB * 1024 * 1024 ) ; m_maxMergeSize = ( long ) ( DEFAULT_MAX_MERGE_MB * 1024 * 1024 ) ; m_maxMergeSizeForForcedMerge = long . MaxValue ; }
public DescribeNetworkInterfacePermissionsResult describeNetworkInterfacePermissions ( DescribeNetworkInterfacePermissionsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeNetworkInterfacePermissions ( request ) ; }
public virtual DescribeNetworkInterfacePermissionsResponse DescribeNetworkInterfacePermissions ( DescribeNetworkInterfacePermissionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeNetworkInterfacePermissionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeNetworkInterfacePermissionsResponseUnmarshaller . Instance ; return Invoke < DescribeNetworkInterfacePermissionsResponse > ( request , options ) ; }
public String toString ( ) { return "<wildcard field='" + this . field + "' term='" + this . text + "'/>" ; }
public override string ToString ( ) { return "<wildcard field='" + this . m_field + "' term='" + this . m_text + "'/>" ; }
public DeleteImageBuilderResult deleteImageBuilder ( DeleteImageBuilderRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteImageBuilder ( request ) ; }
public virtual DeleteImageBuilderResponse DeleteImageBuilder ( DeleteImageBuilderRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteImageBuilderRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteImageBuilderResponseUnmarshaller . Instance ; return Invoke < DeleteImageBuilderResponse > ( request , options ) ; }
public boolean requiresCommitBody ( ) { return requiresCommitBody ; }
public override bool RequiresCommitBody ( ) { return requiresCommitBody ; }
public void removeDocparts ( ) { remove1stProperty ( PropertyIDMap . PID_DOCPARTS ) ; }
public void RemoveDocparts ( ) { MutableSection s = ( MutableSection ) FirstSection ; s . RemoveProperty ( PropertyIDMap . PID_DOCPARTS ) ; }
public DescribeConfigurationSetResult describeConfigurationSet ( DescribeConfigurationSetRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeConfigurationSet ( request ) ; }
public virtual DescribeConfigurationSetResponse DescribeConfigurationSet ( DescribeConfigurationSetRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeConfigurationSetRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeConfigurationSetResponseUnmarshaller . Instance ; return Invoke < DescribeConfigurationSetResponse > ( request , options ) ; }
public static BufferSize megabytes ( long mb ) { return new BufferSize ( mb * MB ) ; }
public static BufferSize Megabytes ( long mb ) { return new BufferSize ( mb * MB ) ; }
public void write ( LittleEndianOutput out ) { out . writeByte ( sid + getPtgClass ( ) ) ; out . writeInt ( field_1_reserved ) ; }
public override void Write ( ILittleEndianOutput out1 ) { out1 . WriteByte ( sid + PtgClass ) ; out1 . WriteInt ( field_1_reserved ) ; }
public ListLabelingJobsForWorkteamResult listLabelingJobsForWorkteam ( ListLabelingJobsForWorkteamRequest request ) { request = beforeClientExecution ( request ) ; return executeListLabelingJobsForWorkteam ( request ) ; }
public virtual ListLabelingJobsForWorkteamResponse ListLabelingJobsForWorkteam ( ListLabelingJobsForWorkteamRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListLabelingJobsForWorkteamRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListLabelingJobsForWorkteamResponseUnmarshaller . Instance ; return Invoke < ListLabelingJobsForWorkteamResponse > ( request , options ) ; }
public GetKeyPairResult getKeyPair ( GetKeyPairRequest request ) { request = beforeClientExecution ( request ) ; return executeGetKeyPair ( request ) ; }
public virtual GetKeyPairResponse GetKeyPair ( GetKeyPairRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetKeyPairRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetKeyPairResponseUnmarshaller . Instance ; return Invoke < GetKeyPairResponse > ( request , options ) ; }
@ Override public boolean isEmpty ( ) { Slice slice = this . slice ; return slice . from == slice . to ; }
public virtual bool isEmpty ( ) { return elements . Length == 0 ; }
public EveryNTermSelector ( int interval ) { this . interval = interval ; count = interval ; }
public EveryNTermSelector ( int interval ) { this . interval = interval ; count = interval ; }
public void ReInit ( CharStream stream ) { token_source . ReInit ( stream ) ; 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 void ReInit ( ICharStream stream ) { TokenSource . ReInit ( stream ) ; 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 DirectTrackingAllocator ( int blockSize , Counter bytesUsed ) { super ( blockSize ) ; this . bytesUsed = bytesUsed ; }
public DirectTrackingAllocator ( int blockSize , Counter bytesUsed ) : base ( blockSize ) { this . bytesUsed = bytesUsed ; }
public static ShortBuffer allocate ( int capacity ) { if ( capacity < 0 ) { throw new IllegalArgumentException ( ) ; } return new ReadWriteShortArrayBuffer ( capacity ) ; }
public static java . nio . ShortBuffer allocate ( int capacity_1 ) { if ( capacity_1 < 0 ) { throw new System . ArgumentException ( ) ; } return new java . nio . ReadWriteShortArrayBuffer ( capacity_1 ) ; }
public DescribeDatasetImportJobResult describeDatasetImportJob ( DescribeDatasetImportJobRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeDatasetImportJob ( request ) ; }
public virtual DescribeDatasetImportJobResponse DescribeDatasetImportJob ( DescribeDatasetImportJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeDatasetImportJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeDatasetImportJobResponseUnmarshaller . Instance ; return Invoke < DescribeDatasetImportJobResponse > ( request , options ) ; }
public DescribeClusterSnapshotsResult describeClusterSnapshots ( ) { return describeClusterSnapshots ( new DescribeClusterSnapshotsRequest ( ) ) ; }
public virtual DescribeClusterSnapshotsResponse DescribeClusterSnapshots ( ) { return DescribeClusterSnapshots ( new DescribeClusterSnapshotsRequest ( ) ) ; }
public PushbackReader ( Reader in , int size ) { super ( in ) ; if ( size <= 0 ) { throw new IllegalArgumentException ( "size <= 0" ) ; } buf = new char [ size ] ; pos = size ; }
public PushbackReader ( java . io . Reader @ in , int size ) : base ( @ in ) { if ( size <= 0 ) { throw new System . ArgumentException ( "size <= 0" ) ; } buf = new char [ size ] ; pos = size ; }
public final char getChar ( int index ) { checkIndex ( index , SizeOf . CHAR ) ; return ( char ) Memory . peekShort ( backingArray , offset + index , order ) ; }
public sealed override char getChar ( int index ) { checkIndex ( index , libcore . io . SizeOf . CHAR ) ; return ( char ) libcore . io . Memory . peekShort ( backingArray , offset + index , _order ) ; }
public SingleCellValueArray ( ValueEval value ) { super ( 1 ) ; _value = value ; }
public SingleCellValueArray ( ValueEval value ) : base ( 1 ) { _value = value ; }
public List < Ref > getCherryPickedRefs ( ) { return cherryPickedRefs ; }
public virtual IList < Ref > GetCherryPickedRefs ( ) { return cherryPickedRefs ; }
public Destination ( java . util . List < String > toAddresses ) { setToAddresses ( toAddresses ) ; }
public Destination ( List < string > toAddresses ) { _toAddresses = toAddresses ; }
public String getHostname ( ) { return Host . this . getHostName ( ) ; }
public virtual string GetHostName ( ) { return hostName ; }
public void setSize ( int taxonomySize ) { map = new int [ taxonomySize ] ; }
public void SetSize ( int taxonomySize ) { map = new int [ taxonomySize ] ; }
public void writeShort ( int v ) { int b1 = ( v > > > 8 ) & 0xFF ; int b0 = ( v ) & 0xFF ; try { out . write ( b0 ) ; out . write ( b1 ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } }
public void WriteShort ( int v ) { int b1 = ( v > > 8 ) & 0xFF ; int b0 = ( v > > 0 ) & 0xFF ; try { out1 . WriteByte ( ( byte ) b0 ) ; out1 . WriteByte ( ( byte ) b1 ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } }
public PathQueryNode ( List < QueryText > pathElements ) { this . values = pathElements ; if ( pathElements . size ( ) <= 1 ) { throw new RuntimeException ( "PathQuerynode requires more 2 or more path elements." ) ; } }
public PathQueryNode ( IList < QueryText > pathElements ) { this . values = pathElements ; if ( pathElements . Count <= 1 ) { throw new Exception ( "PathQuerynode requires more 2 or more path elements." ) ; } }
public int getMaxDeltaDepth ( ) { return maxDeltaDepth ; }
public virtual int GetMaxDeltaDepth ( ) { return maxDeltaDepth ; }
public DomainInfos listDomains ( ListDomainsRequest request ) { request = beforeClientExecution ( request ) ; return executeListDomains ( request ) ; }
public virtual ListDomainsResponse ListDomains ( ListDomainsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListDomainsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListDomainsResponseUnmarshaller . Instance ; return Invoke < ListDomainsResponse > ( request , options ) ; }
public float weight ( int contentLength , int totalTermFreq ) { float numDocs = 1 + contentLength / pivot ; return ( k1 + 1 ) * ( float ) Math . log ( 1 + ( numDocs + 0.5D ) / ( totalTermFreq + 0.5D ) ) ; }
public virtual float Weight ( int contentLength , int totalTermFreq ) { float numDocs = 1 + contentLength / pivot ; return ( k1 + 1 ) * ( float ) Math . Log ( 1 + ( numDocs + 0.5D ) / ( totalTermFreq + 0.5D ) ) ; }
public PutIdentityPolicyResult putIdentityPolicy ( PutIdentityPolicyRequest request ) { request = beforeClientExecution ( request ) ; return executePutIdentityPolicy ( request ) ; }
public virtual PutIdentityPolicyResponse PutIdentityPolicy ( PutIdentityPolicyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PutIdentityPolicyRequestMarshaller . Instance ; options . ResponseUnmarshaller = PutIdentityPolicyResponseUnmarshaller . Instance ; return Invoke < PutIdentityPolicyResponse > ( request , options ) ; }
public String toString ( ) { if ( getChildren ( ) == null || getChildren ( ) . size ( ) == 0 ) return "<tokenizedphrase/>" ; StringBuilder sb = new StringBuilder ( ) ; sb . append ( "<tokenizedtphrase>" ) ; for ( QueryNode child : getChildren ( ) ) { sb . append ( "\n" ) ; sb . append ( child . toString ( ) ) ; } sb . append ( "\n</tokenizedphrase>" ) ; return sb . toString ( ) ; }
public override string ToString ( ) { var children = GetChildren ( ) ; if ( children == null || children . Count == 0 ) return "<tokenizedphrase/>" ; StringBuilder sb = new StringBuilder ( ) ; sb . Append ( "<tokenizedtphrase>" ) ; foreach ( IQueryNode child in children ) { sb . Append ( "\n" ) ; sb . Append ( child . ToString ( ) ) ; } sb . Append ( "\n</tokenizedphrase>" ) ; return sb . ToString ( ) ; }
public static File [ ] listRoots ( ) { return new File [ ] { new File ( "/" ) } ; }
public static java . io . File [ ] listRoots ( ) { return new java . io . File [ ] { new java . io . File ( "/" ) } ; }
public CharBuffer slice ( ) { return new ReadOnlyCharArrayBuffer ( remaining ( ) , backingArray , offset + position ) ; }
public override java . nio . CharBuffer slice ( ) { return new java . nio . ReadOnlyCharArrayBuffer ( remaining ( ) , backingArray , offset + _position ) ; }
public JapaneseKatakanaStemFilter ( TokenStream input , int minimumLength ) { super ( input ) ; this . minimumKatakanaLength = minimumLength ; }
public JapaneseKatakanaStemFilter ( TokenStream input , int minimumLength ) : base ( input ) { this . minimumKatakanaLength = minimumLength ; this . termAttr = AddAttribute < ICharTermAttribute > ( ) ; this . keywordAttr = AddAttribute < IKeywordAttribute > ( ) ; }
public String toString ( ) { return brToString ( termBytes ) ; }
public override string ToString ( ) { return Term . Utf8ToString ( ) ; }
public void unsafeWrite ( char b [ ] , int off , int len ) { System . arraycopy ( b , off , buf , this . len , len ) ; this . len += len ; }
public virtual void UnsafeWrite ( char [ ] b , int off , int len ) { System . Array . Copy ( b , off , m_buf , this . m_len , len ) ; this . m_len += len ; }
public ExternalNameRecord ( RecordInputStream in ) { field_1_option_flag = in . readShort ( ) ; field_2_ixals = in . readShort ( ) ; field_3_not_used = in . readShort ( ) ; int numChars = in . readUByte ( ) ; field_4_name = StringUtil . readUnicodeString ( in , numChars ) ; if ( ! isOLELink ( ) && ! isStdDocumentNameIdentifier ( ) ) { if ( isAutomaticLink ( ) ) { if ( in . available ( ) > 0 ) { int nColumns = in . readUByte ( ) + 1 ; int nRows = in . readShort ( ) + 1 ; int totalCount = nRows * nColumns ; _ddeValues = ConstantValueParser . parse ( in , totalCount ) ; _nColumns = nColumns ; _nRows = nRows ; } } else { int formulaLen = in . readUShort ( ) ; field_5_name_definition = Formula . read ( formulaLen , in ) ; } } }
public ExternalNameRecord ( RecordInputStream in1 ) { field_1_option_flag = in1 . ReadShort ( ) ; field_2_ixals = in1 . ReadShort ( ) ; field_3_not_used = in1 . ReadShort ( ) ; int numChars = in1 . ReadUByte ( ) ; field_4_name = StringUtil . ReadUnicodeString ( in1 , numChars ) ; if ( ! IsOLELink && ! IsStdDocumentNameIdentifier ) { if ( IsAutomaticLink ) { if ( in1 . Available ( ) > 0 ) { int nColumns = in1 . ReadUByte ( ) + 1 ; int nRows = in1 . ReadShort ( ) + 1 ; int totalCount = nRows * nColumns ; _ddeValues = ConstantValueParser . Parse ( in1 , totalCount ) ; _nColumns = nColumns ; _nRows = nRows ; } } else { int formulaLen = in1 . ReadUShort ( ) ; field_5_name_definition = Formula . Read ( formulaLen , in1 ) ; } } }
public PorterStemFilter create ( TokenStream input ) { return new PorterStemFilter ( input ) ; }
public override TokenStream Create ( TokenStream input ) { return new PorterStemFilter ( input ) ; }
public LoginProfile ( String userName , java . util . Date createDate ) { setUserName ( userName ) ; setCreateDate ( createDate ) ; }
public LoginProfile ( string userName , DateTime createDate ) { _userName = userName ; _createDate = createDate ; }
public void setUnknownFormulaData ( byte [ ] formularData ) { field_2_unknownFormulaData = formularData ; }
public void SetUnknownFormulaData ( byte [ ] formularData ) { field_2_unknownFormulaData = formularData ; }
public Reader create ( Reader input ) { return normMap == null ? input : new MappingCharFilter ( normMap , input ) ; }
public override TextReader Create ( TextReader input ) { return m_normMap == null ? input : new MappingCharFilter ( m_normMap , input ) ; }
public Iterator < Entry < K , V > > iterator ( ) { return new EntryIterator ( ) ; }
public override java . util . Iterator < java . util . MapClass . Entry < K , V > > iterator ( ) { return new java . util . Hashtable < K , V > . EntryIterator ( this . _enclosing ) ; }
public final Buffer clear ( ) { position = 0 ; mark = UNSET_MARK ; limit = capacity ; return this ; }
public java . nio . Buffer clear ( ) { _position = 0 ; _mark = UNSET_MARK ; _limit = _capacity ; return this ; }
public int getNameIx ( int definedNameIndex ) { return _externalNameRecords [ definedNameIndex ] . getIx ( ) ; }
public int GetNameIx ( int definedNameIndex ) { return _externalNameRecords [ definedNameIndex ] . Ix ; }
public DeleteReceiptRuleResult deleteReceiptRule ( DeleteReceiptRuleRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteReceiptRule ( request ) ; }
public virtual DeleteReceiptRuleResponse DeleteReceiptRule ( DeleteReceiptRuleRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteReceiptRuleRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteReceiptRuleResponseUnmarshaller . Instance ; return Invoke < DeleteReceiptRuleResponse > ( request , options ) ; }
public boolean equals ( Object obj ) { if ( this == obj ) return true ; if ( ! super . equals ( obj ) ) return false ; if ( getClass ( ) != obj . getClass ( ) ) return false ; SortedSetSortField other = ( SortedSetSortField ) obj ; if ( selector != other . selector ) return false ; return true ; }
public override bool Equals ( object obj ) { if ( this == obj ) return true ; if ( ! base . Equals ( obj ) ) return false ; if ( GetType ( ) != obj . GetType ( ) ) return false ; SortedSetSortField other = ( SortedSetSortField ) obj ; if ( selector != other . selector ) return false ; return true ; }
public JobFlowDetail ( String jobFlowId , String name , JobFlowExecutionStatusDetail executionStatusDetail , JobFlowInstancesDetail instances ) { setJobFlowId ( jobFlowId ) ; setName ( name ) ; setExecutionStatusDetail ( executionStatusDetail ) ; setInstances ( instances ) ; }
public JobFlowDetail ( string jobFlowId , string name , JobFlowExecutionStatusDetail executionStatusDetail , JobFlowInstancesDetail instances ) { _jobFlowId = jobFlowId ; _name = name ; _executionStatusDetail = executionStatusDetail ; _instances = instances ; }
public PutVoiceConnectorOriginationResult putVoiceConnectorOrigination ( PutVoiceConnectorOriginationRequest request ) { request = beforeClientExecution ( request ) ; return executePutVoiceConnectorOrigination ( request ) ; }
public virtual PutVoiceConnectorOriginationResponse PutVoiceConnectorOrigination ( PutVoiceConnectorOriginationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PutVoiceConnectorOriginationRequestMarshaller . Instance ; options . ResponseUnmarshaller = PutVoiceConnectorOriginationResponseUnmarshaller . Instance ; return Invoke < PutVoiceConnectorOriginationResponse > ( request , options ) ; }
public DBInstance startDBInstance ( StartDBInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeStartDBInstance ( request ) ; }
public virtual StartDBInstanceResponse StartDBInstance ( StartDBInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = StartDBInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = StartDBInstanceResponseUnmarshaller . Instance ; return Invoke < StartDBInstanceResponse > ( request , options ) ; }
public DeleteChangeSetResult deleteChangeSet ( DeleteChangeSetRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteChangeSet ( request ) ; }
public virtual DeleteChangeSetResponse DeleteChangeSet ( DeleteChangeSetRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteChangeSetRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteChangeSetResponseUnmarshaller . Instance ; return Invoke < DeleteChangeSetResponse > ( request , options ) ; }
public int nextIndex ( ) { return pos + 1 ; }
public int nextIndex ( ) { return this . pos + 1 ; }
public DescribeGameSessionDetailsResult describeGameSessionDetails ( DescribeGameSessionDetailsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeGameSessionDetails ( request ) ; }
public virtual DescribeGameSessionDetailsResponse DescribeGameSessionDetails ( DescribeGameSessionDetailsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeGameSessionDetailsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeGameSessionDetailsResponseUnmarshaller . Instance ; return Invoke < DescribeGameSessionDetailsResponse > ( request , options ) ; }
public ListDatasetImportJobsResult listDatasetImportJobs ( ListDatasetImportJobsRequest request ) { request = beforeClientExecution ( request ) ; return executeListDatasetImportJobs ( request ) ; }
public virtual ListDatasetImportJobsResponse ListDatasetImportJobs ( ListDatasetImportJobsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListDatasetImportJobsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListDatasetImportJobsResponseUnmarshaller . Instance ; return Invoke < ListDatasetImportJobsResponse > ( request , options ) ; }
public String toString ( ) { return new StringBuilder ( ) . append ( "(" ) . append ( x ) . append ( "," ) . append ( y ) . append ( ")" ) . toString ( ) ; }
public override string ToString ( ) { return "Point(" + x + ", " + y + ")" ; }
public CharBlockArray append ( char c ) { if ( this . current . length == this . blockSize ) { addBlock ( ) ; } this . current . chars [ this . current . length ++ ] = c ; this . length ++ ; return this ; }
public virtual CharBlockArray Append ( char c ) { if ( this . current . length == this . blockSize ) { AddBlock ( ) ; } this . current . chars [ this . current . length ++ ] = c ; this . length ++ ; return this ; }
public SimpleBoolFunction ( ValueSource source ) { this . source = source ; }
public SimpleBoolFunction ( ValueSource source ) { this . m_source = source ; }
public String toStringUnquoted ( ) { return getPrefix ( ) ; }
public override string ToStringUnquoted ( ) { return Prefix ; }
public static Transport open ( URIish uri ) throws NotSupportedException , TransportException { for ( WeakReference < TransportProtocol > ref : protocols ) { TransportProtocol proto = ref . get ( ) ; if ( proto == null ) { protocols . remove ( ref ) ; continue ; } if ( proto . canHandle ( uri , null , null ) ) return proto . open ( uri ) ; } throw new NotSupportedException ( MessageFormat . format ( JGitText . get ( ) . URINotSupported , uri ) ) ; }
public static NGit . Transport . Transport Open ( URIish uri ) { foreach ( JavaWeakReference < TransportProtocol > @ ref in protocols ) { TransportProtocol proto = @ ref . Get ( ) ; if ( proto == null ) { protocols . Remove ( @ ref ) ; continue ; } if ( proto . CanHandle ( uri , null , null ) ) { return proto . Open ( uri ) ; } } throw new NGit . Errors . NotSupportedException ( MessageFormat . Format ( JGitText . Get ( ) . URINotSupported , uri ) ) ; }
public void mark ( int readAheadLimit ) throws IOException { throw new IOException ( "mark/reset not supported" ) ; }
public override void mark ( int readAheadLimit ) { throw new System . IO . IOException ( "mark/reset not supported" ) ; }
public DeleteClusterSecurityGroupResult deleteClusterSecurityGroup ( DeleteClusterSecurityGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteClusterSecurityGroup ( request ) ; }
public virtual DeleteClusterSecurityGroupResponse DeleteClusterSecurityGroup ( DeleteClusterSecurityGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteClusterSecurityGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteClusterSecurityGroupResponseUnmarshaller . Instance ; return Invoke < DeleteClusterSecurityGroupResponse > ( request , options ) ; }
public GlobalReplicationGroup rebalanceSlotsInGlobalReplicationGroup ( RebalanceSlotsInGlobalReplicationGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeRebalanceSlotsInGlobalReplicationGroup ( request ) ; }
public virtual RebalanceSlotsInGlobalReplicationGroupResponse RebalanceSlotsInGlobalReplicationGroup ( RebalanceSlotsInGlobalReplicationGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RebalanceSlotsInGlobalReplicationGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = RebalanceSlotsInGlobalReplicationGroupResponseUnmarshaller . Instance ; return Invoke < RebalanceSlotsInGlobalReplicationGroupResponse > ( request , options ) ; }
public DeleteLocalGatewayRouteResult deleteLocalGatewayRoute ( DeleteLocalGatewayRouteRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteLocalGatewayRoute ( request ) ; }
public virtual DeleteLocalGatewayRouteResponse DeleteLocalGatewayRoute ( DeleteLocalGatewayRouteRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteLocalGatewayRouteRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteLocalGatewayRouteResponseUnmarshaller . Instance ; return Invoke < DeleteLocalGatewayRouteResponse > ( request , options ) ; }
public DBCluster restoreDBClusterFromSnapshot ( RestoreDBClusterFromSnapshotRequest request ) { request = beforeClientExecution ( request ) ; return executeRestoreDBClusterFromSnapshot ( request ) ; }
public virtual RestoreDBClusterFromSnapshotResponse RestoreDBClusterFromSnapshot ( RestoreDBClusterFromSnapshotRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RestoreDBClusterFromSnapshotRequestMarshaller . Instance ; options . ResponseUnmarshaller = RestoreDBClusterFromSnapshotResponseUnmarshaller . Instance ; return Invoke < RestoreDBClusterFromSnapshotResponse > ( request , options ) ; }
public String getReading ( int wordId , char surface [ ] , int off , int len ) { return null ; }
public override string GetReading ( int wordId , char [ ] surface , int off , int len ) { return null ; }
public CreateDBSnapshotRequest ( String dBSnapshotIdentifier , String dBInstanceIdentifier ) { setDBSnapshotIdentifier ( dBSnapshotIdentifier ) ; setDBInstanceIdentifier ( dBInstanceIdentifier ) ; }
public CreateDBSnapshotRequest ( string dbSnapshotIdentifier , string dbInstanceIdentifier ) { _dbSnapshotIdentifier = dbSnapshotIdentifier ; _dbInstanceIdentifier = dbInstanceIdentifier ; }
public RemoveRoleFromDBInstanceResult removeRoleFromDBInstance ( RemoveRoleFromDBInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeRemoveRoleFromDBInstance ( request ) ; }
public virtual RemoveRoleFromDBInstanceResponse RemoveRoleFromDBInstance ( RemoveRoleFromDBInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RemoveRoleFromDBInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = RemoveRoleFromDBInstanceResponseUnmarshaller . Instance ; return Invoke < RemoveRoleFromDBInstanceResponse > ( request , options ) ; }
public Token nextToken ( ) { if ( i >= tokens . size ( ) ) { if ( eofToken == null ) { int start = - 1 ; if ( tokens . size ( ) > 0 ) { int previousStop = tokens . get ( tokens . size ( ) - 1 ) . getStopIndex ( ) ; if ( previousStop != - 1 ) { start = previousStop + 1 ; } } int stop = Math . max ( - 1 , start - 1 ) ; eofToken = _factory . create ( new Pair < TokenSource , CharStream > ( this , getInputStream ( ) ) , Token . EOF , "EOF" , Token . DEFAULT_CHANNEL , start , stop , getLine ( ) , getCharPositionInLine ( ) ) ; } return eofToken ; } Token t = tokens . get ( i ) ; if ( i == tokens . size ( ) - 1 && t . getType ( ) == Token . EOF ) { eofToken = t ; } i ++ ; return t ; }
public virtual IToken NextToken ( ) { if ( i >= tokens . Count ) { if ( eofToken == null ) { int start = - 1 ; if ( tokens . Count > 0 ) { int previousStop = tokens [ tokens . Count - 1 ] . StopIndex ; if ( previousStop != - 1 ) { start = previousStop + 1 ; } } int stop = Math . Max ( - 1 , start - 1 ) ; eofToken = _factory . Create ( Tuple . Create ( ( ITokenSource ) this , InputStream ) , TokenConstants . EOF , "EOF" , TokenConstants . DefaultChannel , start , stop , Line , Column ) ; } return eofToken ; } IToken t = tokens [ i ] ; if ( i == tokens . Count - 1 && t . Type == TokenConstants . EOF ) { eofToken = t ; } i ++ ; return t ; }
public QueryMaker getQueryMaker ( ) { return null ; }
public override IQueryMaker GetQueryMaker ( ) { return null ; }
public GC ( FileRepository repo ) { this . repo = repo ; this . pconfig = new PackConfig ( repo ) ; this . pm = NullProgressMonitor . INSTANCE ; }
public GC ( FileRepository repo ) { this . repo = repo ; this . pm = NullProgressMonitor . INSTANCE ; }
public synchronized void setLength ( int length ) { super . setLength ( length ) ; }
public override void setLength ( int length_1 ) { lock ( this ) { base . setLength ( length_1 ) ; } }
public CancelImportTaskResult cancelImportTask ( CancelImportTaskRequest request ) { request = beforeClientExecution ( request ) ; return executeCancelImportTask ( request ) ; }
public virtual CancelImportTaskResponse CancelImportTask ( CancelImportTaskRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CancelImportTaskRequestMarshaller . Instance ; options . ResponseUnmarshaller = CancelImportTaskResponseUnmarshaller . Instance ; return Invoke < CancelImportTaskResponse > ( request , options ) ; }
public int first ( ) { return ( current = start ) ; }
public override int First ( ) { return ( current = start ) ; }
public DeleteDiskResult deleteDisk ( DeleteDiskRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteDisk ( request ) ; }
public virtual DeleteDiskResponse DeleteDisk ( DeleteDiskRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteDiskRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteDiskResponseUnmarshaller . Instance ; return Invoke < DeleteDiskResponse > ( request , options ) ; }
public DeleteVpcEndpointConnectionNotificationsResult deleteVpcEndpointConnectionNotifications ( DeleteVpcEndpointConnectionNotificationsRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteVpcEndpointConnectionNotifications ( request ) ; }
public virtual DeleteVpcEndpointConnectionNotificationsResponse DeleteVpcEndpointConnectionNotifications ( DeleteVpcEndpointConnectionNotificationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteVpcEndpointConnectionNotificationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteVpcEndpointConnectionNotificationsResponseUnmarshaller . Instance ; return Invoke < DeleteVpcEndpointConnectionNotificationsResponse > ( request , options ) ; }
public final boolean equals ( Object o ) { if ( o instanceof AnyObjectId ) { return equals ( ( AnyObjectId ) o ) ; } return false ; }
public bool Equals ( AnyObjectId other ) { return other != null ? Equals ( this , other ) : false ; }
public DescribeConfigurationSettingsRequest ( String applicationName ) { setApplicationName ( applicationName ) ; }
public DescribeConfigurationSettingsRequest ( string applicationName ) { _applicationName = applicationName ; }
public ET next ( ) { if ( expectedModCount == list . modCount ) { LinkedList . Link < ET > next = link . next ; if ( next != list . voidLink ) { lastLink = link = next ; pos ++ ; return link . data ; } throw new NoSuchElementException ( ) ; } throw new ConcurrentModificationException ( ) ; }
public ET next ( ) { if ( expectedModCount == list . modCount ) { java . util . LinkedList . Link < ET > next_1 = link . next ; if ( next_1 != list . voidLink ) { lastLink = link = next_1 ; pos ++ ; return link . data ; } throw new java . util . NoSuchElementException ( ) ; } throw new java . util . ConcurrentModificationException ( ) ; }
public CreateConfigurationResult createConfiguration ( CreateConfigurationRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateConfiguration ( request ) ; }
public virtual CreateConfigurationResponse CreateConfiguration ( CreateConfigurationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateConfigurationRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateConfigurationResponseUnmarshaller . Instance ; return Invoke < CreateConfigurationResponse > ( request , options ) ; }