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 . Instance ; return Invoke < ListMonitoringSchedulesResponse > ( request , options ) ; }
|
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 . coerceValueToString ( veText1 ) ; Matcher m = Imaginary . COMPLEX_NUMBER_PATTERN . matcher ( iNumber ) ; boolean result = m . matches ( ) ; String real = "" ; if ( result ) { String realGroup = m . group ( 2 ) ; boolean hasRealPart = realGroup . length ( ) != 0 ; if ( realGroup . length ( ) == 0 ) { return new StringEval ( String . valueOf ( 0 ) ) ; } if ( hasRealPart ) { String sign = "" ; String realSign = m . group ( Imaginary . GROUP1_REAL_SIGN ) ; if ( realSign . length ( ) != 0 && ! ( realSign . equals ( "+" ) ) ) { sign = realSign ; } String groupRealNumber = m . group ( Imaginary . GROUP2_IMAGINARY_INTEGER_OR_DOUBLE ) ; if ( groupRealNumber . length ( ) != 0 ) { real = sign + groupRealNumber ; } else { real = sign + "1" ; } } } else { return ErrorEval . NUM_ERROR ; } return new StringEval ( real ) ; }
|
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 . CoerceValueToString ( veText1 ) ; System . Text . RegularExpressions . Match m = Imaginary . COMPLEX_NUMBER_PATTERN . Match ( iNumber ) ; bool result = m . Success && ! string . IsNullOrEmpty ( m . Groups [ 0 ] . Value ) ; String real = "" ; if ( result == true ) { String realGroup = m . Groups [ ( 2 ) ] . Value ; bool hasRealPart = realGroup . Length != 0 ; if ( realGroup . Length == 0 ) { return new StringEval ( Convert . ToString ( 0 ) ) ; } if ( hasRealPart ) { String sign = "" ; String realSign = m . Groups [ ( Imaginary . GROUP1_REAL_SIGN ) ] . Value ; if ( realSign . Length != 0 && ! ( realSign . Equals ( "+" ) ) ) { sign = realSign ; } String groupRealNumber = m . Groups [ ( Imaginary . GROUP2_IMAGINARY_INTEGER_OR_DOUBLE ) ] . Value ; if ( groupRealNumber . Length != 0 ) { real = sign + groupRealNumber ; } else { real = sign + "1" ; } } } else { return ErrorEval . NUM_ERROR ; } return new StringEval ( real ) ; }
|
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 > ( request , options ) ; }
|
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 < GetLoadBalancerResponse > ( request , options ) ; }
|
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 = ModifyTrafficMirrorFilterRuleResponseUnmarshaller . Instance ; return Invoke < ModifyTrafficMirrorFilterRuleResponse > ( request , options ) ; }
|
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 = anchor . getCol1 ( ) + ( pref . getCol2 ( ) - pref . getCol1 ( ) ) ; anchor . setCol2 ( ( short ) col2 ) ; anchor . setDx2 ( pref . getDx2 ( ) ) ; anchor . setRow2 ( row2 ) ; anchor . setDy2 ( pref . getDy2 ( ) ) ; }
|
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 = anchor . Col1 + ( pref . Col2 - pref . Col1 ) ; anchor . Col2 = ( ( short ) col2 ) ; anchor . Dx2 = ( pref . Dx2 ) ; anchor . Row2 = ( row2 ) ; anchor . Dy2 = ( pref . Dy2 ) ; }
|
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 . getAccessKeyId ( ) , legacyCredential . getAccessSecret ( ) , legacyCredential . getSecurityToken ( ) ) ; } else { this . credentials = new LegacyCredentials ( legacyCredential ) ; } }
|
public StaticCredentialsProvider ( IClientProfile clientProfile ) { this . clientProfile = clientProfile ; var legacyCredential = this . clientProfile . GetCredential ( ) ; if ( null != legacyCredential . SecurityToken ) { credentials = new BasicSessionCredentials ( legacyCredential . AccessKeyId , legacyCredential . AccessSecret , legacyCredential . SecurityToken ) ; } else { credentials = new LegacyCredentials ( legacyCredential ) ; } }
|
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 = e . key ; if ( eKey == key || ( e . hash == hash && key . equals ( eKey ) ) ) { return e . value ; } } return null ; }
|
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 , V > [ ] tab = table ; { for ( java . util . Hashtable . HashtableEntry < K , V > e = tab [ hash & ( tab . Length - 1 ) ] ; e != null ; e = e . next ) { K eKey = e . key ; if ( Sharpen . Util . Equals ( eKey , key ) || ( e . hash == hash && key . Equals ( eKey ) ) ) { return e . value ; } } } return default ( V ) ; } }
|
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 ) ; rgchDefPivotStyle = in . readUnicodeLEString ( cchDefPivotStyle ) ; }
|
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 ( cchDefListStyle ) ; rgchDefPivotStyle = in1 . ReadUnicodeLEString ( cchDefPivotStyle ) ; }
|
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 . Instance ; return Invoke < AddAttributesToFindingsResponse > ( request , options ) ; }
|
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 ( ) ) { TimeSpec spec = it . previous ( ) ; desc . replace ( spec . pos , spec . pos + spec . len , "%0" + spec . len + "d" ) ; if ( spec . type != topmost . type ) { spec . modBy = modFor ( spec . type , spec . len ) ; } } printfFmt = desc . toString ( ) ; }
|
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 . Remove ( spec . pos , spec . len ) ; desc . Insert ( spec . pos , "D" + spec . len ) ; if ( spec . type != topmost . type ) { spec . modBy = modFor ( spec . type , spec . len ) ; } } printfFmt = desc . ToString ( ) ; }
|
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 = UpdateMatchmakingConfigurationResponseUnmarshaller . Instance ; return Invoke < UpdateMatchmakingConfigurationResponse > ( request , options ) ; }
|
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 , options ) ; }
|
@ 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 . GetObjectId ( ) ) ; } } }
|
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 { ( ( HeapByteBuffer ) byteBuffer ) . get ( dst , dstOffset , charCount ) ; } this . position += charCount ; return this ; }
|
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 ) byteBuffer ) . get ( dst , dstOffset , charCount ) ; } else { ( ( java . nio . HeapByteBuffer ) byteBuffer ) . get ( dst , dstOffset , charCount ) ; } this . _position += charCount ; return this ; }
|
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 : "inc.length=" + inc . length + " vs output.length=" + output . length ; assert inc . length > 0 ; return new BytesRef ( output . bytes , output . offset + inc . length , output . length - inc . 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=" + inc . Length + " vs output.length=" + output . Length ) ; Debug . Assert ( inc . Length > 0 ) ; return new BytesRef ( output . Bytes , output . Offset + 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 ; } jj_consume_token ( AND ) ; c = ModClause ( field ) ; if ( clauses == null ) { clauses = new Vector < QueryNode > ( ) ; clauses . addElement ( first ) ; } clauses . addElement ( c ) ; } if ( clauses != null ) { { if ( true ) return new AndQueryNode ( clauses ) ; } } else { { if ( true ) return first ; } } throw new Error ( "Missing return statement in function" ) ; }
|
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 ( RegexpToken . AND ) ; c = ModClause ( field ) ; if ( clauses == null ) { clauses = new List < IQueryNode > ( ) ; clauses . Add ( first ) ; } clauses . Add ( c ) ; } label_3_break : if ( clauses != null ) { { if ( true ) return new AndQueryNode ( clauses ) ; } } else { { if ( true ) return first ; } } throw new Exception ( "Missing return statement in function" ) ; }
|
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 < GetVoiceChannelResponse > ( request , options ) ; }
|
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 = RevokeSecurityGroupIngressResponseUnmarshaller . Instance ; return Invoke < RevokeSecurityGroupIngressResponse > ( request , options ) ; }
|
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 java . nio . DoubleToByteBufferAdapter ( bb ) ; byteBuffer . clear ( ) ; return result ; }
|
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 ( getEmailAddress ( ) ) ; r . append ( ", " ) ; r . append ( dtfmt . format ( Long . valueOf ( when ) ) ) ; r . append ( "]" ) ; return r . toString ( ) ; }
|
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 ( ", " ) ; r . Append ( GetEmailAddress ( ) ) ; r . Append ( ", " ) ; r . Append ( dtfmt . Format ( Sharpen . Extensions . ValueOf ( when ) ) ) ; r . Append ( "]" ) ; return r . ToString ( ) ; }
|
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 Invoke < ListVoiceConnectorsResponse > ( request , options ) ; }
|
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 > ( request , options ) ; }
|
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 . ResponseUnmarshaller = SetIdentityHeadersInNotificationsEnabledResponseUnmarshaller . Instance ; return Invoke < SetIdentityHeadersInNotificationsEnabledResponse > ( request , options ) ; }
|
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 = DeleteHsmClientCertificateResponseUnmarshaller . Instance ; return Invoke < DeleteHsmClientCertificateResponse > ( request , options ) ; }
|
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 ; return Invoke < CreateAssessmentTargetResponse > ( request , options ) ; }
|
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 = DescribeGlobalReplicationGroupsResponseUnmarshaller . Instance ; return Invoke < DescribeGlobalReplicationGroupsResponse > ( request , options ) ; }
|
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 . getObjectId ( ) ) ; map = NoteMap . read ( walk . getObjectReader ( ) , notesCommit ) ; } Iterator < Note > i = map . iterator ( ) ; while ( i . hasNext ( ) ) notes . add ( i . next ( ) ) ; } catch ( IOException e ) { throw new JGitInternalException ( e . getMessage ( ) , e ) ; } return notes ; }
|
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 . GetObjectId ( ) ) ; map = NoteMap . Read ( walk . GetObjectReader ( ) , notesCommit ) ; } Iterator < Note > i = map . Iterator ( ) ; while ( i . HasNext ( ) ) { notes . AddItem ( i . Next ( ) ) ; } } catch ( IOException e ) { throw new JGitInternalException ( e . Message , e ) ; } finally { walk . Release ( ) ; } return notes ; }
|
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 < ListOrganizationsResponse > ( request , options ) ; }
|
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 = CountPendingDecisionTasksResponseUnmarshaller . Instance ; return Invoke < CountPendingDecisionTasksResponse > ( request , options ) ; }
|
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 < ListStackResourcesResponse > ( request , options ) ; }
|
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 Invoke < AssignIpv6AddressesResponse > ( request , options ) ; }
|
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 < ModifyDBInstanceResponse > ( request , options ) ; }
|
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 = RemoveAttributesFromFindingsResponseUnmarshaller . Instance ; return Invoke < RemoveAttributesFromFindingsResponse > ( request , options ) ; }
|
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 . Instance ; return Invoke < DescribeDirectoryConfigsResponse > ( request , options ) ; }
|
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_visibility ) ) . append ( "\n" ) ; buffer . append ( " .type = " ) . append ( HexDump . byteToHex ( field_3_type ) ) . append ( "\n" ) ; buffer . append ( " .sheetname = " ) . append ( getSheetname ( ) ) . append ( "\n" ) ; buffer . append ( "[/BOUNDSHEET]\n" ) ; return buffer . toString ( ) ; }
|
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_visibility ) ) . Append ( "\n" ) ; buffer . Append ( " .type = " ) . Append ( HexDump . ByteToHex ( field_3_type ) ) . Append ( "\n" ) ; buffer . Append ( " .sheetname = " ) . Append ( Sheetname ) . Append ( "\n" ) ; buffer . Append ( "[/BOUNDSHEET]\n" ) ; return buffer . ToString ( ) ; }
|
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 , srcColumnIndex ) ; double d2 = NumericFunction . singleOperandEvaluate ( arg2 , srcRowIndex , srcColumnIndex ) ; result = evaluate ( getYear ( d0 ) , ( int ) ( d1 - 1 ) , ( int ) d2 ) ; NumericFunction . checkValue ( result ) ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } return new NumberEval ( result ) ; }
|
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 , srcColumnIndex ) ; double d2 = NumericFunction . SingleOperandEvaluate ( arg2 , srcRowIndex , srcColumnIndex ) ; result = Evaluate ( GetYear ( d0 ) , ( int ) d1 , ( int ) d2 ) ; NumericFunction . CheckValue ( result ) ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } return new NumberEval ( result ) ; }
|
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 < GetPublicKeyConfigResponse > ( request , options ) ; }
|
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 > > shift ) ) & 255 ; } } }
|
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 , options ) ; }
|
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 , options ) ; }
|
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.