question stringlengths 33 1.59k | target stringlengths 33 1.58k |
|---|---|
public ListMonitoringSchedulesResult listMonitoringSchedules ( ListMonitoringSchedulesRequest request ) { request = beforeClientExecution ( request ) ; return executeListMonitoringSchedules ( request ) ; } | public virtual ListMonitoringSchedulesResponse ListMonitoringSchedules ( ListMonitoringSchedulesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListMonitoringSchedulesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListMonitoringSchedulesResponseUnmarshaller . Ins... |
public static double [ ] grow ( double [ ] array ) { return grow ( array , 1 + array . length ) ; } | public static double [ ] Grow ( double [ ] array ) { return Grow ( array , 1 + array . Length ) ; } |
public E next ( ) { if ( index < to ) { return ( E ) snapshot [ index ++ ] ; } else { throw new NoSuchElementException ( ) ; } } | public virtual E next ( ) { if ( index < to ) { return ( E ) snapshot [ index ++ ] ; } else { throw new java . util . NoSuchElementException ( ) ; } } |
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval inumberVE ) { ValueEval veText1 ; try { veText1 = OperandResolver . getSingleValue ( inumberVE , srcRowIndex , srcColumnIndex ) ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } String iNumber = OperandResolver . coerceValu... | public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval inumberVE ) { ValueEval veText1 ; try { veText1 = OperandResolver . GetSingleValue ( inumberVE , srcRowIndex , srcColumnIndex ) ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } String iNumber = OperandResolver . C... |
public PlacementType ( String availabilityZone ) { setAvailabilityZone ( availabilityZone ) ; } | public PlacementType ( string availabilityZone ) { _availabilityZone = availabilityZone ; } |
public UpdateDomainResult updateDomain ( UpdateDomainRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateDomain ( request ) ; } | public virtual UpdateDomainResponse UpdateDomain ( UpdateDomainRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateDomainRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateDomainResponseUnmarshaller . Instance ; return Invoke < UpdateDomainResponse > ( reques... |
public byte [ ] serialize ( ) { byte [ ] retval = new byte [ getRecordSize ( ) ] ; serialize ( 0 , retval ) ; return retval ; } | public byte [ ] Serialize ( ) { byte [ ] retval = new byte [ RecordSize ] ; int length = Serialize ( 0 , retval ) ; return retval ; } |
public GetLoadBalancerResult getLoadBalancer ( GetLoadBalancerRequest request ) { request = beforeClientExecution ( request ) ; return executeGetLoadBalancer ( request ) ; } | public virtual GetLoadBalancerResponse GetLoadBalancer ( GetLoadBalancerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetLoadBalancerRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetLoadBalancerResponseUnmarshaller . Instance ; return Invoke < GetLoadBalancerR... |
public ModifyTrafficMirrorFilterRuleResult modifyTrafficMirrorFilterRule ( ModifyTrafficMirrorFilterRuleRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyTrafficMirrorFilterRule ( request ) ; } | public virtual ModifyTrafficMirrorFilterRuleResponse ModifyTrafficMirrorFilterRule ( ModifyTrafficMirrorFilterRuleRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyTrafficMirrorFilterRuleRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyTrafficMirrorFilter... |
public void resize ( double scaleX , double scaleY ) { HSSFClientAnchor anchor = getClientAnchor ( ) ; anchor . setAnchorType ( AnchorType . MOVE_DONT_RESIZE ) ; HSSFClientAnchor pref = getPreferredSize ( scaleX , scaleY ) ; int row2 = anchor . getRow1 ( ) + ( pref . getRow2 ( ) - pref . getRow1 ( ) ) ; int col2 = anch... | public void Resize ( double scaleX , double scaleY ) { HSSFClientAnchor anchor = ( HSSFClientAnchor ) ClientAnchor ; anchor . AnchorType = AnchorType . MoveDontResize ; HSSFClientAnchor pref = GetPreferredSize ( scaleX , scaleY ) as HSSFClientAnchor ; int row2 = anchor . Row1 + ( pref . Row2 - pref . Row1 ) ; int col2 ... |
public void reset ( ) throws IOException { throw new IOException ( "mark/reset not supported" ) ; } | public override void reset ( ) { throw new System . IO . IOException ( "mark/reset not supported" ) ; } |
public Body ( Content text ) { setText ( text ) ; } | public Body ( Content text ) { _text = text ; } |
public StaticCredentialsProvider ( IClientProfile clientProfile ) { IClientProfile clientProfile1 = clientProfile ; Credential legacyCredential = clientProfile1 . getCredential ( ) ; if ( null != legacyCredential . getSecurityToken ( ) ) { this . credentials = new BasicSessionCredentials ( legacyCredential . getAccessK... | public StaticCredentialsProvider ( IClientProfile clientProfile ) { this . clientProfile = clientProfile ; var legacyCredential = this . clientProfile . GetCredential ( ) ; if ( null != legacyCredential . SecurityToken ) { credentials = new BasicSessionCredentials ( legacyCredential . AccessKeyId , legacyCredential . A... |
public synchronized V get ( Object key ) { int hash = key . hashCode ( ) ; hash ^= ( hash > > > 20 ) ^ ( hash > > > 12 ) ; hash ^= ( hash > > > 7 ) ^ ( hash > > > 4 ) ; HashtableEntry < K , V > [ ] tab = table ; for ( HashtableEntry < K , V > e = tab [ hash & ( tab . length - 1 ) ] ; e != null ; e = e . next ) { K eKey... | public override V get ( object key ) { lock ( this ) { int hash = key . GetHashCode ( ) ; hash ^= ( ( int ) ( ( ( uint ) hash ) > > 20 ) ) ^ ( ( int ) ( ( ( uint ) hash ) > > 12 ) ) ; hash ^= ( ( int ) ( ( ( uint ) hash ) > > 7 ) ) ^ ( ( int ) ( ( ( uint ) hash ) > > 4 ) ) ; java . util . Hashtable . HashtableEntry < K... |
public void keep ( int pos , int cnt ) { beforeAdd ( cache . getEntry ( pos ) ) ; fastKeep ( pos , cnt ) ; } | public virtual void Keep ( int pos , int cnt ) { BeforeAdd ( cache . GetEntry ( pos ) ) ; FastKeep ( pos , cnt ) ; } |
public TableStylesRecord ( RecordInputStream in ) { rt = in . readUShort ( ) ; grbitFrt = in . readUShort ( ) ; in . readFully ( unused ) ; cts = in . readInt ( ) ; int cchDefListStyle = in . readUShort ( ) ; int cchDefPivotStyle = in . readUShort ( ) ; rgchDefListStyle = in . readUnicodeLEString ( cchDefListStyle ) ; ... | public TableStylesRecord ( RecordInputStream in1 ) { rt = in1 . ReadUShort ( ) ; grbitFrt = in1 . ReadUShort ( ) ; in1 . ReadFully ( unused ) ; cts = in1 . ReadInt ( ) ; int cchDefListStyle = in1 . ReadUShort ( ) ; int cchDefPivotStyle = in1 . ReadUShort ( ) ; rgchDefListStyle = in1 . ReadUnicodeLEString ( cchDefListSt... |
public AddAttributesToFindingsResult addAttributesToFindings ( AddAttributesToFindingsRequest request ) { request = beforeClientExecution ( request ) ; return executeAddAttributesToFindings ( request ) ; } | public virtual AddAttributesToFindingsResponse AddAttributesToFindings ( AddAttributesToFindingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AddAttributesToFindingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = AddAttributesToFindingsResponseUnmarshaller . Ins... |
public CellElapsedFormatter ( String pattern ) { super ( pattern ) ; specs = new ArrayList < > ( ) ; StringBuffer desc = CellFormatPart . parseFormat ( pattern , CellFormatType . ELAPSED , new ElapsedPartHandler ( ) ) ; ListIterator < TimeSpec > it = specs . listIterator ( specs . size ( ) ) ; while ( it . hasPrevious ... | public CellElapsedFormatter ( String pattern ) : base ( pattern ) { specs = new List < TimeSpec > ( ) ; StringBuilder desc = CellFormatPart . ParseFormat ( pattern , CellFormatType . ELAPSED , new ElapsedPartHandler ( this ) ) ; for ( int i = specs . Count - 1 ; i >= 0 ; i -- ) { TimeSpec spec = specs [ i ] ; desc . Re... |
public final int capacity ( ) { return capacity ; } | public int capacity ( ) { return _capacity ; } |
public final boolean matches ( char c ) { return Character . isWhitespace ( c ) ; } | public bool Matches ( char c ) { return char . IsWhiteSpace ( c ) ; } |
public BytesRef get ( int bytesID , BytesRef ref ) { assert bytesStart != null : "bytesStart is null - not initialized" ; assert bytesID < bytesStart . length : "bytesID exceeds byteStart len: " + bytesStart . length ; pool . setBytesRef ( ref , bytesStart [ bytesID ] ) ; return ref ; } | public BytesRef Get ( int bytesID , BytesRef @ ref ) { Debug . Assert ( bytesStart != null , "bytesStart is null - not initialized" ) ; Debug . Assert ( bytesID < bytesStart . Length , "bytesID exceeds byteStart len: " + bytesStart . Length ) ; pool . SetBytesRef ( @ ref , bytesStart [ bytesID ] ) ; return @ ref ; } |
public void run ( ) { display = true ; } | public virtual void Run ( ) { display = true ; } |
public UpdateMatchmakingConfigurationResult updateMatchmakingConfiguration ( UpdateMatchmakingConfigurationRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateMatchmakingConfiguration ( request ) ; } | public virtual UpdateMatchmakingConfigurationResponse UpdateMatchmakingConfiguration ( UpdateMatchmakingConfigurationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateMatchmakingConfigurationRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateMatchmakingConf... |
public boolean isGroup ( char c ) { return groupMap [ characterCategoryMap [ c ] ] ; } | public bool IsGroup ( char c ) { return groupMap [ characterCategoryMap [ c ] ] ; } |
public void setTraverseEmptyCells ( boolean traverseEmptyCells ) { this . traverseEmptyCells = traverseEmptyCells ; } | public void SetTraverseEmptyCells ( bool traverseEmptyCells ) { this . traverseEmptyCells = traverseEmptyCells ; } |
public ListPresetsResult listPresets ( ListPresetsRequest request ) { request = beforeClientExecution ( request ) ; return executeListPresets ( request ) ; } | public virtual ListPresetsResponse ListPresets ( ListPresetsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListPresetsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListPresetsResponseUnmarshaller . Instance ; return Invoke < ListPresetsResponse > ( request , op... |
@ Override public Set < K > keySet ( ) { Set < K > ks = keySet ; return ( ks != null ) ? ks : ( keySet = new KeySet ( ) ) ; } | public override java . util . Set < K > keySet ( ) { java . util . Set < K > ks = _keySet ; return ( ks != null ) ? ks : ( _keySet = new java . util . HashMap < K , V > . KeySet ( this ) ) ; } |
public void include ( Ref r ) { include ( r . getName ( ) , r . getObjectId ( ) ) ; if ( r . getPeeledObjectId ( ) != null ) tagTargets . add ( r . getPeeledObjectId ( ) ) ; else if ( r . getObjectId ( ) != null && r . getName ( ) . startsWith ( Constants . R_HEADS ) ) tagTargets . add ( r . getObjectId ( ) ) ; } | public virtual void Include ( Ref r ) { Include ( r . GetName ( ) , r . GetObjectId ( ) ) ; if ( r . GetPeeledObjectId ( ) != null ) { tagTargets . AddItem ( r . GetPeeledObjectId ( ) ) ; } else { if ( r . GetObjectId ( ) != null && r . GetName ( ) . StartsWith ( Constants . R_HEADS ) ) { tagTargets . AddItem ( r . Get... |
public CharBuffer get ( char [ ] dst , int dstOffset , int charCount ) { byteBuffer . limit ( limit * SizeOf . CHAR ) ; byteBuffer . position ( position * SizeOf . CHAR ) ; if ( byteBuffer instanceof DirectByteBuffer ) { ( ( DirectByteBuffer ) byteBuffer ) . get ( dst , dstOffset , charCount ) ; } else { ( ( HeapByteBu... | public override java . nio . CharBuffer get ( char [ ] dst , int dstOffset , int charCount ) { byteBuffer . limit ( _limit * libcore . io . SizeOf . CHAR ) ; byteBuffer . position ( _position * libcore . io . SizeOf . CHAR ) ; if ( byteBuffer is java . nio . DirectByteBuffer ) { ( ( java . nio . DirectByteBuffer ) byte... |
public BytesRef subtract ( BytesRef output , BytesRef inc ) { assert output != null ; assert inc != null ; if ( inc == NO_OUTPUT ) { return output ; } else { assert StringHelper . startsWith ( output , inc ) ; if ( inc . length == output . length ) { return NO_OUTPUT ; } else { assert inc . length < output . length : "... | public override BytesRef Subtract ( BytesRef output , BytesRef inc ) { Debug . Assert ( output != null ) ; Debug . Assert ( inc != null ) ; if ( inc == NO_OUTPUT ) { return output ; } else if ( inc . Length == output . Length ) { return NO_OUTPUT ; } else { Debug . Assert ( inc . Length < output . Length , "inc.length=... |
public boolean isKanji ( char c ) { final byte characterClass = characterCategoryMap [ c ] ; return characterClass == KANJI || characterClass == KANJINUMERIC ; } | public bool IsKanji ( char c ) { byte characterClass = characterCategoryMap [ c ] ; return characterClass == KANJI || characterClass == KANJINUMERIC ; } |
public int getType ( ) { return type ; } | public override int GetType ( ) { return type ; } |
public ValueEval getItem ( int index ) { if ( index > _size ) { throw new ArrayIndexOutOfBoundsException ( "Specified index (" + index + ") is outside the allowed range (0.." + ( _size - 1 ) + ")" ) ; } return _tableArray . getValue ( index , _columnIndex ) ; } | public ValueEval GetItem ( int index ) { if ( index > _size ) { throw new IndexOutOfRangeException ( "Specified index (" + index + ") is outside the allowed range (0.." + ( _size - 1 ) + ")" ) ; } return _tableArray . GetRelativeValue ( index , _columnIndex ) ; } |
public void writeDouble ( double v ) { writeContinueIfRequired ( 8 ) ; _ulrOutput . writeDouble ( v ) ; } | public void WriteDouble ( double v ) { _out . WriteDouble ( v ) ; _size += 8 ; } |
final public QueryNode ConjQuery ( CharSequence field ) throws ParseException { QueryNode first , c ; Vector < QueryNode > clauses = null ; first = ModClause ( field ) ; label_3 : while ( true ) { switch ( ( jj_ntk == - 1 ) ? jj_ntk ( ) : jj_ntk ) { case AND : ; break ; default : jj_la1 [ 4 ] = jj_gen ; break label_3 ;... | public IQueryNode ConjQuery ( string field ) { IQueryNode first , c ; List < IQueryNode > clauses = null ; first = ModClause ( field ) ; while ( true ) { switch ( ( jj_ntk == - 1 ) ? Jj_ntk ( ) : jj_ntk ) { case RegexpToken . AND : ; break ; default : jj_la1 [ 6 ] = jj_gen ; goto label_3_break ; } Jj_consume_token ( Re... |
public void setRevFilter ( RevFilter newFilter ) { assertNotStarted ( ) ; filter = newFilter != null ? newFilter : RevFilter . ALL ; } | public virtual void SetRevFilter ( RevFilter newFilter ) { AssertNotStarted ( ) ; filter = newFilter != null ? newFilter : RevFilter . ALL ; } |
public void setText ( final char array [ ] , int start , int length ) { this . array = array ; this . start = start ; this . index = start ; this . length = length ; this . limit = start + length ; } | public virtual void SetText ( char [ ] array , int start , int length ) { this . array = array ; this . start = start ; this . index = start ; this . length = length ; this . limit = start + length ; } |
public GetVoiceChannelResult getVoiceChannel ( GetVoiceChannelRequest request ) { request = beforeClientExecution ( request ) ; return executeGetVoiceChannel ( request ) ; } | public virtual GetVoiceChannelResponse GetVoiceChannel ( GetVoiceChannelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetVoiceChannelRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetVoiceChannelResponseUnmarshaller . Instance ; return Invoke < GetVoiceChannelR... |
public RevokeSecurityGroupIngressResult revokeSecurityGroupIngress ( RevokeSecurityGroupIngressRequest request ) { request = beforeClientExecution ( request ) ; return executeRevokeSecurityGroupIngress ( request ) ; } | public virtual RevokeSecurityGroupIngressResponse RevokeSecurityGroupIngress ( RevokeSecurityGroupIngressRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RevokeSecurityGroupIngressRequestMarshaller . Instance ; options . ResponseUnmarshaller = RevokeSecurityGroupIngressResponseUnm... |
public DoubleBuffer slice ( ) { byteBuffer . limit ( limit * SizeOf . DOUBLE ) ; byteBuffer . position ( position * SizeOf . DOUBLE ) ; ByteBuffer bb = byteBuffer . slice ( ) . order ( byteBuffer . order ( ) ) ; DoubleBuffer result = new DoubleToByteBufferAdapter ( bb ) ; byteBuffer . clear ( ) ; return result ; } | public override java . nio . DoubleBuffer slice ( ) { byteBuffer . limit ( _limit * libcore . io . SizeOf . DOUBLE ) ; byteBuffer . position ( _position * libcore . io . SizeOf . DOUBLE ) ; java . nio . ByteBuffer bb = byteBuffer . slice ( ) . order ( byteBuffer . order ( ) ) ; java . nio . DoubleBuffer result = new ja... |
public DoubleValuesSource makeDistanceValueSource ( Point queryPoint , double multiplier ) { return new DistanceValueSource ( this , queryPoint , multiplier ) ; } | public override ValueSource MakeDistanceValueSource ( IPoint queryPoint , double multiplier ) { return new DistanceValueSource ( this , queryPoint , multiplier ) ; } |
public String toString ( ) { final StringBuilder r = new StringBuilder ( ) ; final SimpleDateFormat dtfmt ; dtfmt = new SimpleDateFormat ( "EEE MMM d HH:mm:ss yyyy Z" , Locale . US ) ; dtfmt . setTimeZone ( getTimeZone ( ) ) ; r . append ( "PersonIdent[" ) ; r . append ( getName ( ) ) ; r . append ( ", " ) ; r . append... | public override string ToString ( ) { StringBuilder r = new StringBuilder ( ) ; SimpleDateFormat dtfmt ; dtfmt = new SimpleDateFormat ( "EEE MMM d HH:mm:ss yyyy Z" , CultureInfo . InvariantCulture ) ; dtfmt . SetTimeZone ( GetTimeZone ( ) ) ; r . Append ( "PersonIdent[" ) ; r . Append ( GetName ( ) ) ; r . Append ( ", ... |
public ArabicStemFilterFactory ( Map < String , String > args ) { super ( args ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } } | public ArabicStemFilterFactory ( IDictionary < string , string > args ) : base ( args ) { if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } } |
public int getIndex ( ) { return offset ; } | public int getIndex ( ) { return offset ; } |
public ListVoiceConnectorsResult listVoiceConnectors ( ListVoiceConnectorsRequest request ) { request = beforeClientExecution ( request ) ; return executeListVoiceConnectors ( request ) ; } | public virtual ListVoiceConnectorsResponse ListVoiceConnectors ( ListVoiceConnectorsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListVoiceConnectorsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListVoiceConnectorsResponseUnmarshaller . Instance ; return Invok... |
public GetOperationResult getOperation ( GetOperationRequest request ) { request = beforeClientExecution ( request ) ; return executeGetOperation ( request ) ; } | public virtual GetOperationResponse GetOperation ( GetOperationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetOperationRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetOperationResponseUnmarshaller . Instance ; return Invoke < GetOperationResponse > ( reques... |
public Item ( String name , java . util . List < Attribute > attributes ) { setName ( name ) ; setAttributes ( attributes ) ; } | public Item ( string name , List < Attribute > attributes ) { _name = name ; _attributes = attributes ; } |
public SetIdentityHeadersInNotificationsEnabledResult setIdentityHeadersInNotificationsEnabled ( SetIdentityHeadersInNotificationsEnabledRequest request ) { request = beforeClientExecution ( request ) ; return executeSetIdentityHeadersInNotificationsEnabled ( request ) ; } | public virtual SetIdentityHeadersInNotificationsEnabledResponse SetIdentityHeadersInNotificationsEnabled ( SetIdentityHeadersInNotificationsEnabledRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SetIdentityHeadersInNotificationsEnabledRequestMarshaller . Instance ; options . Resp... |
public void setSensitiveInputCells ( CellCacheEntry [ ] sensitiveInputCells ) { if ( sensitiveInputCells == null ) { _sensitiveInputCells = null ; changeConsumingCells ( CellCacheEntry . EMPTY_ARRAY ) ; } else { _sensitiveInputCells = sensitiveInputCells . clone ( ) ; changeConsumingCells ( _sensitiveInputCells ) ; } } | public void SetSensitiveInputCells ( CellCacheEntry [ ] sensitiveInputCells ) { ChangeConsumingCells ( sensitiveInputCells == null ? CellCacheEntry . EMPTY_ARRAY : sensitiveInputCells ) ; _sensitiveInputCells = sensitiveInputCells ; } |
public synchronized boolean add ( E e ) { Object [ ] newElements = new Object [ elements . length + 1 ] ; System . arraycopy ( elements , 0 , newElements , 0 , elements . length ) ; newElements [ elements . length ] = e ; elements = newElements ; return true ; } | public virtual bool add ( E e ) { lock ( this ) { object [ ] newElements = new object [ elements . Length + 1 ] ; System . Array . Copy ( elements , 0 , newElements , 0 , elements . Length ) ; newElements [ elements . Length ] = e ; elements = newElements ; return true ; } } |
public StringBuilder append ( long l ) { IntegralToString . appendLong ( this , l ) ; return this ; } | public java . lang . StringBuilder append ( bool b ) { append0 ( b ? "true" : "false" ) ; return this ; } |
public DeleteHsmClientCertificateResult deleteHsmClientCertificate ( DeleteHsmClientCertificateRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteHsmClientCertificate ( request ) ; } | public virtual DeleteHsmClientCertificateResponse DeleteHsmClientCertificate ( DeleteHsmClientCertificateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteHsmClientCertificateRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteHsmClientCertificateResponseUnm... |
public CreateAssessmentTargetResult createAssessmentTarget ( CreateAssessmentTargetRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateAssessmentTarget ( request ) ; } | public virtual CreateAssessmentTargetResponse CreateAssessmentTarget ( CreateAssessmentTargetRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateAssessmentTargetRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateAssessmentTargetResponseUnmarshaller . Instance... |
public DescribeGlobalReplicationGroupsResult describeGlobalReplicationGroups ( DescribeGlobalReplicationGroupsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeGlobalReplicationGroups ( request ) ; } | public virtual DescribeGlobalReplicationGroupsResponse DescribeGlobalReplicationGroups ( DescribeGlobalReplicationGroupsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeGlobalReplicationGroupsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeGlobalRep... |
public void write ( LittleEndianOutput out ) { out . writeByte ( sid + getPtgClass ( ) ) ; out . writeShort ( _sheetRefIndex ) ; out . writeShort ( _nameNumber ) ; out . writeShort ( _reserved ) ; } | public override void Write ( ILittleEndianOutput out1 ) { out1 . WriteByte ( sid + PtgClass ) ; out1 . WriteShort ( _sheetRefIndex ) ; out1 . WriteShort ( _nameNumber ) ; out1 . WriteShort ( _reserved ) ; } |
public static String parseSegmentName ( String filename ) { int idx = indexOfSegmentName ( filename ) ; if ( idx != - 1 ) { filename = filename . substring ( 0 , idx ) ; } return filename ; } | public static string ParseSegmentName ( string filename ) { int idx = IndexOfSegmentName ( filename ) ; if ( idx != - 1 ) { filename = filename . Substring ( 0 , idx ) ; } return filename ; } |
public String getRefLogMessage ( ) { return refLogMessage ; } | public virtual string GetRefLogMessage ( ) { return refLogMessage ; } |
public ObjectId getObjectId ( ) { return missing ; } | public virtual ObjectId GetObjectId ( ) { return missing ; } |
public void setPackedGitLimit ( long newLimit ) { packedGitLimit = newLimit ; } | public virtual void SetPackedGitLimit ( long newLimit ) { packedGitLimit = newLimit ; } |
public String toString ( ) { return "" ; } | public override string ToString ( ) { return "" ; } |
public void clear ( ) { if ( size > 0 ) { size = 0 ; voidLink . next = voidLink ; voidLink . previous = voidLink ; modCount ++ ; } } | public override void clear ( ) { if ( _size > 0 ) { _size = 0 ; voidLink . next = voidLink ; voidLink . previous = voidLink ; modCount ++ ; } } |
public List < Note > call ( ) throws GitAPIException { checkCallable ( ) ; List < Note > notes = new ArrayList < > ( ) ; NoteMap map = NoteMap . newEmptyMap ( ) ; try ( RevWalk walk = new RevWalk ( repo ) ) { Ref ref = repo . findRef ( notesRef ) ; if ( ref != null ) { RevCommit notesCommit = walk . parseCommit ( ref .... | public override IList < Note > Call ( ) { CheckCallable ( ) ; IList < Note > notes = new AList < Note > ( ) ; RevWalk walk = new RevWalk ( repo ) ; NoteMap map = NoteMap . NewEmptyMap ( ) ; try { Ref @ ref = repo . GetRef ( notesRef ) ; if ( @ ref != null ) { RevCommit notesCommit = walk . ParseCommit ( @ ref . GetObje... |
public ListOrganizationsResult listOrganizations ( ListOrganizationsRequest request ) { request = beforeClientExecution ( request ) ; return executeListOrganizations ( request ) ; } | public virtual ListOrganizationsResponse ListOrganizations ( ListOrganizationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListOrganizationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListOrganizationsResponseUnmarshaller . Instance ; return Invoke < ListOr... |
public ParseTreeMatch match ( ParseTree tree , String pattern , int patternRuleIndex ) { ParseTreePattern p = compile ( pattern , patternRuleIndex ) ; return match ( tree , p ) ; } | public virtual ParseTreeMatch Match ( IParseTree tree , string pattern , int patternRuleIndex ) { ParseTreePattern p = Compile ( pattern , patternRuleIndex ) ; return Match ( tree , p ) ; } |
public GridsetRecord ( RecordInputStream in ) { field_1_gridset_flag = in . readShort ( ) ; } | public GridsetRecord ( RecordInputStream in1 ) { field_1_gridset_flag = in1 . ReadShort ( ) ; } |
public PagedBytesDataInput clone ( ) { PagedBytesDataInput clone = getDataInput ( ) ; clone . setPosition ( getPosition ( ) ) ; return clone ; } | public override object Clone ( ) { PagedBytesDataInput clone = outerInstance . GetDataInput ( ) ; clone . SetPosition ( GetPosition ( ) ) ; return clone ; } |
public MissingObjectException ( AbbreviatedObjectId id , int type ) { super ( MessageFormat . format ( JGitText . get ( ) . missingObject , Constants . typeString ( type ) , id . name ( ) ) ) ; missing = null ; } | public MissingObjectException ( AbbreviatedObjectId id , int type ) : base ( MessageFormat . Format ( JGitText . Get ( ) . missingObject , Constants . TypeString ( type ) , id . Name ) ) { missing = null ; } |
public void getName ( byte [ ] buffer , int offset ) { System . arraycopy ( path , pathOffset , buffer , offset , pathLen - pathOffset ) ; } | public virtual void GetName ( byte [ ] buffer , int offset ) { System . Array . Copy ( path , pathOffset , buffer , offset , pathLen - pathOffset ) ; } |
public List < ? extends CombinedHunkHeader > getHunks ( ) { return ( List < CombinedHunkHeader > ) super . getHunks ( ) ; } | public override IList < HunkHeader > GetHunks ( ) { return base . GetHunks ( ) ; } |
public long getPointer ( ) { if ( currentBlock == null ) { return 0 ; } else { return ( numBlocks * ( ( long ) blockSize ) ) + upto ; } } | public long GetPointer ( ) { if ( currentBlock == null ) { return 0 ; } else { return ( blocks . Count * ( ( long ) blockSize ) ) + upto ; } } |
public PendingTaskCount countPendingDecisionTasks ( CountPendingDecisionTasksRequest request ) { request = beforeClientExecution ( request ) ; return executeCountPendingDecisionTasks ( request ) ; } | public virtual CountPendingDecisionTasksResponse CountPendingDecisionTasks ( CountPendingDecisionTasksRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CountPendingDecisionTasksRequestMarshaller . Instance ; options . ResponseUnmarshaller = CountPendingDecisionTasksResponseUnmarsha... |
public ListStackResourcesResult listStackResources ( ListStackResourcesRequest request ) { request = beforeClientExecution ( request ) ; return executeListStackResources ( request ) ; } | public virtual ListStackResourcesResponse ListStackResources ( ListStackResourcesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListStackResourcesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListStackResourcesResponseUnmarshaller . Instance ; return Invoke < L... |
public Credential ( String keyId , String secret , String securityToken , int expiredHours ) { this . accessKeyId = keyId ; this . accessSecret = secret ; this . securityToken = securityToken ; this . refreshDate = new Date ( ) ; setExpiredDate ( expiredHours ) ; } | public Credential ( string keyId , string secret , string securityToken , int expiredHours ) { AccessKeyId = keyId ; AccessSecret = secret ; SecurityToken = securityToken ; RefreshDate = new DateTime ( ) ; SetExpiredDate ( expiredHours ) ; } |
public void writeFields ( ) throws IOException { if ( currentPutField == null ) { throw new NotActiveException ( ) ; } writeFieldValues ( currentPutField ) ; } | public virtual void writeFields ( ) { throw new System . NotImplementedException ( ) ; } |
public Result getResult ( ) { return status ; } | public virtual ReceiveCommand . Result GetResult ( ) { return status ; } |
public AssignIpv6AddressesResult assignIpv6Addresses ( AssignIpv6AddressesRequest request ) { request = beforeClientExecution ( request ) ; return executeAssignIpv6Addresses ( request ) ; } | public virtual AssignIpv6AddressesResponse AssignIpv6Addresses ( AssignIpv6AddressesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AssignIpv6AddressesRequestMarshaller . Instance ; options . ResponseUnmarshaller = AssignIpv6AddressesResponseUnmarshaller . Instance ; return Invok... |
public DBInstance modifyDBInstance ( ModifyDBInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyDBInstance ( request ) ; } | public virtual ModifyDBInstanceResponse ModifyDBInstance ( ModifyDBInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyDBInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyDBInstanceResponseUnmarshaller . Instance ; return Invoke < ModifyDBIns... |
public RemoveAttributesFromFindingsResult removeAttributesFromFindings ( RemoveAttributesFromFindingsRequest request ) { request = beforeClientExecution ( request ) ; return executeRemoveAttributesFromFindings ( request ) ; } | public virtual RemoveAttributesFromFindingsResponse RemoveAttributesFromFindings ( RemoveAttributesFromFindingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RemoveAttributesFromFindingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = RemoveAttributesFromFindingsR... |
public JoinDocFreqValueSource ( String field , String qfield ) { super ( field ) ; this . qfield = qfield ; } | public JoinDocFreqValueSource ( string field , string qfield ) : base ( field ) { this . m_qfield = qfield ; } |
public double readDouble ( ) { return Double . longBitsToDouble ( readLong ( ) ) ; } | public virtual double ReadDouble ( ) { return delegate1 . ReadDouble ( ) ; } |
public DescribeDirectoryConfigsResult describeDirectoryConfigs ( DescribeDirectoryConfigsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeDirectoryConfigs ( request ) ; } | public virtual DescribeDirectoryConfigsResponse DescribeDirectoryConfigs ( DescribeDirectoryConfigsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeDirectoryConfigsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeDirectoryConfigsResponseUnmarshaller ... |
public GetAccountResult getAccount ( GetAccountRequest request ) { request = beforeClientExecution ( request ) ; return executeGetAccount ( request ) ; } | public virtual GetAccountResponse GetAccount ( GetAccountRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetAccountRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetAccountResponseUnmarshaller . Instance ; return Invoke < GetAccountResponse > ( request , options ... |
public String toString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( "[BOUNDSHEET]\n" ) ; buffer . append ( " .bof = " ) . append ( HexDump . intToHex ( getPositionOfBof ( ) ) ) . append ( "\n" ) ; buffer . append ( " .visibility = " ) . append ( HexDump . shortToHex ( field_2_visi... | public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[BOUNDSHEET]\n" ) ; buffer . Append ( " .bof = " ) . Append ( HexDump . IntToHex ( PositionOfBof ) ) . Append ( "\n" ) ; buffer . Append ( " .visibility = " ) . Append ( HexDump . ShortToHex ( field_2_vi... |
public short getShortRawValue ( final short holder ) { return ( short ) getRawValue ( holder ) ; } | public short GetShortRawValue ( short holder ) { return ( short ) this . GetRawValue ( holder ) ; } |
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 , ValueEval arg2 ) { double result ; try { double d0 = NumericFunction . singleOperandEvaluate ( arg0 , srcRowIndex , srcColumnIndex ) ; double d1 = NumericFunction . singleOperandEvaluate ( arg1 , srcRowIndex , srcColumn... | public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 , ValueEval arg2 ) { double result ; try { double d0 = NumericFunction . SingleOperandEvaluate ( arg0 , srcRowIndex , srcColumnIndex ) ; double d1 = NumericFunction . SingleOperandEvaluate ( arg1 , srcRowIndex , ... |
public GetPublicKeyConfigResult getPublicKeyConfig ( GetPublicKeyConfigRequest request ) { request = beforeClientExecution ( request ) ; return executeGetPublicKeyConfig ( request ) ; } | public virtual GetPublicKeyConfigResponse GetPublicKeyConfig ( GetPublicKeyConfigRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetPublicKeyConfigRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetPublicKeyConfigResponseUnmarshaller . Instance ; return Invoke < G... |
public URIish setUser ( String n ) { final URIish r = new URIish ( this ) ; r . user = n ; return r ; } | public virtual NGit . Transport . URIish SetUser ( string n ) { NGit . Transport . URIish r = new NGit . Transport . URIish ( this ) ; r . user = n ; return r ; } |
public EscherArrayProperty ( short id , int complexSize ) { super ( id , complexSize ) ; emptyComplexPart = ( complexSize == 0 ) ; } | public EscherArrayProperty ( short id , byte [ ] complexData ) : base ( id , CheckComplexData ( complexData ) ) { emptyComplexPart = complexData . Length == 0 ; } |
public String toASCIIString ( ) { return format ( false , true ) ; } | public virtual string ToASCIIString ( ) { return Format ( false , true ) ; } |
public void decode ( long [ ] blocks , int blocksOffset , long [ ] values , int valuesOffset , int iterations ) { for ( int i = 0 ; i < iterations ; ++ i ) { final long block = blocks [ blocksOffset ++ ] ; for ( int shift = 56 ; shift >= 0 ; shift -= 8 ) { values [ valuesOffset ++ ] = ( block > > > shift ) & 255 ; } } ... | public override void Decode ( long [ ] blocks , int blocksOffset , long [ ] values , int valuesOffset , int iterations ) { for ( int i = 0 ; i < iterations ; ++ i ) { long block = blocks [ blocksOffset ++ ] ; for ( int shift = 56 ; shift >= 0 ; shift -= 8 ) { values [ valuesOffset ++ ] = ( ( long ) ( ( ulong ) block > ... |
public GetContactResult getContact ( GetContactRequest request ) { request = beforeClientExecution ( request ) ; return executeGetContact ( request ) ; } | public virtual GetContactResponse GetContact ( GetContactRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetContactRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetContactResponseUnmarshaller . Instance ; return Invoke < GetContactResponse > ( request , options ... |
public void removeHiddenCount ( ) { remove1stProperty ( PropertyIDMap . PID_HIDDENCOUNT ) ; } | public void RemoveHiddenCount ( ) { MutableSection s = ( MutableSection ) FirstSection ; s . RemoveProperty ( PropertyIDMap . PID_HIDDENCOUNT ) ; } |
public GetRestApisResult getRestApis ( GetRestApisRequest request ) { request = beforeClientExecution ( request ) ; return executeGetRestApis ( request ) ; } | public virtual GetRestApisResponse GetRestApis ( GetRestApisRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetRestApisRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetRestApisResponseUnmarshaller . Instance ; return Invoke < GetRestApisResponse > ( request , op... |
public ArrayPredictionContext ( PredictionContext [ ] parents , int [ ] returnStates ) { super ( calculateHashCode ( parents , returnStates ) ) ; assert parents != null && parents . length > 0 ; assert returnStates != null && returnStates . length > 0 ; this . parents = parents ; this . returnStates = returnStates ; } | public ArrayPredictionContext ( PredictionContext [ ] parents , int [ ] returnStates ) : base ( CalculateHashCode ( parents , returnStates ) ) { this . parents = parents ; this . returnStates = returnStates ; } |
public CharBuffer compact ( ) { System . arraycopy ( backingArray , position + offset , backingArray , offset , remaining ( ) ) ; position = limit - position ; limit = capacity ; mark = UNSET_MARK ; return this ; } | public override java . nio . CharBuffer compact ( ) { System . Array . Copy ( backingArray , _position + offset , backingArray , offset , remaining ( ) ) ; _position = _limit - _position ; _limit = _capacity ; _mark = UNSET_MARK ; return this ; } |
public DeleteStageResult deleteStage ( DeleteStageRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteStage ( request ) ; } | public virtual DeleteStageResponse DeleteStage ( DeleteStageRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteStageRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteStageResponseUnmarshaller . Instance ; return Invoke < DeleteStageResponse > ( request , op... |
public Object [ ] toArray ( ) { return elements . clone ( ) ; } | public virtual object [ ] toArray ( ) { return ( object [ ] ) elements . Clone ( ) ; } |
public synchronized void mark ( int ignoredReadlimit ) { _marked_offset = _current_offset ; _marked_offset_count = Math . max ( 0 , _current_block_count - 1 ) ; } | public override void Mark ( int ignoredReadlimit ) { delegate1 . Mark ( ignoredReadlimit ) ; } |
public String toString ( ) { return "NOT " + a . toString ( ) ; } | public override string ToString ( ) { return "NOT " + a . ToString ( ) ; } |
public void setExpectDataAfterPackFooter ( boolean e ) { expectDataAfterPackFooter = e ; } | public virtual void SetExpectDataAfterPackFooter ( bool e ) { expectDataAfterPackFooter = e ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.