question
stringlengths 33
1.59k
| target
stringlengths 33
1.58k
|
|---|---|
public String toString ( ) { return SpatialArgsParser . writeSpatialArgs ( this ) ; }
|
public override string ToString ( ) { return SpatialArgsParser . WriteSpatialArgs ( this ) ; }
|
public static RowRecord createRow ( int rowNumber ) { return new RowRecord ( rowNumber ) ; }
|
public static RowRecord CreateRow ( int rowNumber ) { return new RowRecord ( rowNumber ) ; }
|
public void serialize ( LittleEndianOutput out ) { out . writeByte ( field_1_last_column_index ) ; out . writeByte ( field_2_first_column_index ) ; out . writeShort ( field_3_row_index ) ; ConstantValueParser . encode ( out , field_4_constant_values ) ; }
|
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteByte ( field_1_last_column_index ) ; out1 . WriteByte ( field_2_first_column_index ) ; out1 . WriteShort ( field_3_row_index ) ; ConstantValueParser . Encode ( out1 , field_4_constant_values ) ; }
|
public DescribeHostReservationOfferingsResult describeHostReservationOfferings ( DescribeHostReservationOfferingsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeHostReservationOfferings ( request ) ; }
|
public virtual DescribeHostReservationOfferingsResponse DescribeHostReservationOfferings ( DescribeHostReservationOfferingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeHostReservationOfferingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeHostReservationOfferingsResponseUnmarshaller . Instance ; return Invoke < DescribeHostReservationOfferingsResponse > ( request , options ) ; }
|
public void setEmpty ( ) { field_2_first_col = 0 ; field_3_last_col = 0 ; }
|
public void SetEmpty ( ) { field_2_first_col = 0 ; field_3_last_col = 0 ; }
|
public CancelBundleTaskResult cancelBundleTask ( CancelBundleTaskRequest request ) { request = beforeClientExecution ( request ) ; return executeCancelBundleTask ( request ) ; }
|
public virtual CancelBundleTaskResponse CancelBundleTask ( CancelBundleTaskRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CancelBundleTaskRequestMarshaller . Instance ; options . ResponseUnmarshaller = CancelBundleTaskResponseUnmarshaller . Instance ; return Invoke < CancelBundleTaskResponse > ( request , options ) ; }
|
public ShingleFilter ( TokenStream input , String tokenType ) { this ( input , DEFAULT_MIN_SHINGLE_SIZE , DEFAULT_MAX_SHINGLE_SIZE ) ; setTokenType ( tokenType ) ; }
|
public ShingleFilter ( TokenStream input , string tokenType ) : this ( input , DEFAULT_MIN_SHINGLE_SIZE , DEFAULT_MAX_SHINGLE_SIZE ) { SetTokenType ( tokenType ) ; }
|
public MergeException ( String message , Directory dir ) { super ( message ) ; this . dir = dir ; }
|
public MergeException ( string message , Directory dir ) : base ( message ) { this . dir = dir ; }
|
public TestDNSAnswerResult testDNSAnswer ( TestDNSAnswerRequest request ) { request = beforeClientExecution ( request ) ; return executeTestDNSAnswer ( request ) ; }
|
public virtual TestDNSAnswerResponse TestDNSAnswer ( TestDNSAnswerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = TestDNSAnswerRequestMarshaller . Instance ; options . ResponseUnmarshaller = TestDNSAnswerResponseUnmarshaller . Instance ; return Invoke < TestDNSAnswerResponse > ( request , options ) ; }
|
public String getFieldAsString ( ) { return field . toString ( ) ; }
|
public virtual string GetFieldAsString ( ) { return field . ToString ( ) ; }
|
public GetMasterAccountResult getMasterAccount ( GetMasterAccountRequest request ) { request = beforeClientExecution ( request ) ; return executeGetMasterAccount ( request ) ; }
|
public virtual GetMasterAccountResponse GetMasterAccount ( GetMasterAccountRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetMasterAccountRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetMasterAccountResponseUnmarshaller . Instance ; return Invoke < GetMasterAccountResponse > ( request , options ) ; }
|
public int getIndexVersion ( ) { return indexVersion ; }
|
public virtual int GetIndexVersion ( ) { return indexVersion ; }
|
public GetAdmChannelResult getAdmChannel ( GetAdmChannelRequest request ) { request = beforeClientExecution ( request ) ; return executeGetAdmChannel ( request ) ; }
|
public virtual GetAdmChannelResponse GetAdmChannel ( GetAdmChannelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetAdmChannelRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetAdmChannelResponseUnmarshaller . Instance ; return Invoke < GetAdmChannelResponse > ( request , options ) ; }
|
public boolean equals ( Object obj ) { if ( ! ( obj instanceof BasicQueryFactory ) ) return false ; BasicQueryFactory other = ( BasicQueryFactory ) obj ; return atMax ( ) == other . atMax ( ) ; }
|
public override bool Equals ( object obj ) { if ( ! ( obj is BasicQueryFactory ) ) return false ; BasicQueryFactory other = ( BasicQueryFactory ) obj ; return AtMax == other . AtMax ; }
|
public byte readByte ( ) { return ( byte ) readUByte ( ) ; }
|
public int ReadByte ( ) { return ( byte ) ReadUByte ( ) ; }
|
public DeletePolicyResult deletePolicy ( DeletePolicyRequest request ) { request = beforeClientExecution ( request ) ; return executeDeletePolicy ( request ) ; }
|
public virtual DeletePolicyResponse DeletePolicy ( DeletePolicyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeletePolicyRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeletePolicyResponseUnmarshaller . Instance ; return Invoke < DeletePolicyResponse > ( request , options ) ; }
|
public String get ( Object key ) { return idMap . get ( key ) ; }
|
public Object Get ( long id ) { return this [ id ] ; }
|
public void setNonLocalizedMessage ( Message message ) { this . message = message ; }
|
public virtual void SetNonLocalizedMessage ( IMessage message ) { this . m_message = message ; }
|
public DescribeClusterVersionsResult describeClusterVersions ( ) { return describeClusterVersions ( new DescribeClusterVersionsRequest ( ) ) ; }
|
public virtual DescribeClusterVersionsResponse DescribeClusterVersions ( ) { return DescribeClusterVersions ( new DescribeClusterVersionsRequest ( ) ) ; }
|
public void onPostReceive ( ReceivePack rp , Collection < ReceiveCommand > commands ) { for ( int i = 0 ; i < count ; i ++ ) hooks [ i ] . onPostReceive ( rp , commands ) ; }
|
public override void OnPostReceive ( ReceivePack rp , ICollection < ReceiveCommand > commands ) { for ( int i = 0 ; i < count ; i ++ ) { hooks [ i ] . OnPostReceive ( rp , commands ) ; } }
|
public String toFormulaString ( String [ ] operands ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( operands [ 0 ] ) ; buffer . append ( "^" ) ; buffer . append ( operands [ 1 ] ) ; return buffer . toString ( ) ; }
|
public override String ToFormulaString ( String [ ] operands ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( operands [ 0 ] ) ; buffer . Append ( "^" ) ; buffer . Append ( operands [ 1 ] ) ; return buffer . ToString ( ) ; }
|
public int stem ( char s [ ] , int len ) { if ( len < 6 ) return len ; if ( s [ len - 1 ] == 'x' ) { if ( s [ len - 3 ] == 'a' && s [ len - 2 ] == 'u' ) s [ len - 2 ] = 'l' ; return len - 1 ; } if ( s [ len - 1 ] == 's' ) len -- ; if ( s [ len - 1 ] == 'r' ) len -- ; if ( s [ len - 1 ] == 'e' ) len -- ; if ( s [ len - 1 ] == 'é' ) len -- ; if ( s [ len - 1 ] == s [ len - 2 ] && Character . isLetter ( s [ len - 1 ] ) ) len -- ; return len ; }
|
public virtual int Stem ( char [ ] s , int len ) { if ( len < 6 ) { return len ; } if ( s [ len - 1 ] == 'x' ) { if ( s [ len - 3 ] == 'a' && s [ len - 2 ] == 'u' ) { s [ len - 2 ] = 'l' ; } return len - 1 ; } if ( s [ len - 1 ] == 's' ) { len -- ; } if ( s [ len - 1 ] == 'r' ) { len -- ; } if ( s [ len - 1 ] == 'e' ) { len -- ; } if ( s [ len - 1 ] == 'é' ) { len -- ; } if ( s [ len - 1 ] == s [ len - 2 ] ) { len -- ; } return len ; }
|
public static RkRec [ ] parseRKs ( RecordInputStream in ) { int nItems = ( in . remaining ( ) - 2 ) / ENCODED_SIZE ; RkRec [ ] retval = new RkRec [ nItems ] ; for ( int i = 0 ; i < nItems ; i ++ ) { retval [ i ] = new RkRec ( in ) ; } return retval ; }
|
public static RkRec [ ] ParseRKs ( RecordInputStream in1 ) { int nItems = ( in1 . Remaining - 2 ) / ENCODED_SIZE ; RkRec [ ] retval = new RkRec [ nItems ] ; for ( int i = 0 ; i < nItems ; i ++ ) { retval [ i ] = new RkRec ( in1 ) ; } return retval ; }
|
public boolean deliverSelfNotifications ( ) { return true ; }
|
public override bool deliverSelfNotifications ( ) { return true ; }
|
public CreateWorkteamResult createWorkteam ( CreateWorkteamRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateWorkteam ( request ) ; }
|
public virtual CreateWorkteamResponse CreateWorkteam ( CreateWorkteamRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateWorkteamRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateWorkteamResponseUnmarshaller . Instance ; return Invoke < CreateWorkteamResponse > ( request , options ) ; }
|
public ProfilingATNSimulator ( Parser parser ) { super ( parser , parser . getInterpreter ( ) . atn , parser . getInterpreter ( ) . decisionToDFA , parser . getInterpreter ( ) . sharedContextCache ) ; numDecisions = atn . decisionToState . size ( ) ; decisions = new DecisionInfo [ numDecisions ] ; for ( int i = 0 ; i < numDecisions ; i ++ ) { decisions [ i ] = new DecisionInfo ( i ) ; } }
|
public ProfilingATNSimulator ( Parser parser ) : base ( parser , parser . Interpreter . atn , parser . Interpreter . decisionToDFA , parser . Interpreter . getSharedContextCache ( ) ) { numDecisions = atn . decisionToState . Count ; decisions = new DecisionInfo [ numDecisions ] ; for ( int i = 0 ; i < numDecisions ; i ++ ) { decisions [ i ] = new DecisionInfo ( i ) ; } }
|
public DescribeDeliveryStreamResult describeDeliveryStream ( DescribeDeliveryStreamRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeDeliveryStream ( request ) ; }
|
public virtual DescribeDeliveryStreamResponse DescribeDeliveryStream ( DescribeDeliveryStreamRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeDeliveryStreamRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeDeliveryStreamResponseUnmarshaller . Instance ; return Invoke < DescribeDeliveryStreamResponse > ( request , options ) ; }
|
public boolean hasNext ( ) { return link . next != list . voidLink ; }
|
public bool hasNext ( ) { return link . next != list . voidLink ; }
|
public static double product ( double [ ] values ) { double product = 0 ; if ( values != null && values . length > 0 ) { product = 1 ; for ( double value : values ) { product *= value ; } } return product ; }
|
public static double Product ( double [ ] values ) { double product = 0 ; if ( values != null && values . Length > 0 ) { product = 1 ; for ( int i = 0 , iSize = values . Length ; i < iSize ; i ++ ) { product *= values [ i ] ; } } return product ; }
|
public RebaseCommand setUpstream ( String upstream ) throws RefNotFoundException { try { ObjectId upstreamId = repo . resolve ( upstream ) ; if ( upstreamId == null ) throw new RefNotFoundException ( MessageFormat . format ( JGitText . get ( ) . refNotResolved , upstream ) ) ; upstreamCommit = walk . parseCommit ( repo . resolve ( upstream ) ) ; upstreamCommitName = upstream ; return this ; } catch ( IOException ioe ) { throw new JGitInternalException ( ioe . getMessage ( ) , ioe ) ; } }
|
public virtual NGit . Api . RebaseCommand SetUpstream ( string upstream ) { try { ObjectId upstreamId = repo . Resolve ( upstream ) ; if ( upstreamId == null ) { throw new RefNotFoundException ( MessageFormat . Format ( JGitText . Get ( ) . refNotResolved , upstream ) ) ; } upstreamCommit = walk . ParseCommit ( repo . Resolve ( upstream ) ) ; upstreamCommitName = upstream ; return this ; } catch ( IOException ioe ) { throw new JGitInternalException ( ioe . Message , ioe ) ; } }
|
public ATN ( ATNType grammarType , int maxTokenType ) { this . grammarType = grammarType ; this . maxTokenType = maxTokenType ; }
|
public ATN ( ATNType grammarType , int maxTokenType ) { this . grammarType = grammarType ; this . maxTokenType = maxTokenType ; }
|
public HyphenatedWordsFilterFactory ( Map < String , String > args ) { super ( args ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } }
|
public HyphenatedWordsFilterFactory ( IDictionary < string , string > args ) : base ( args ) { if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } }
|
public GetBlueprintsResult getBlueprints ( GetBlueprintsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetBlueprints ( request ) ; }
|
public virtual GetBlueprintsResponse GetBlueprints ( GetBlueprintsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetBlueprintsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetBlueprintsResponseUnmarshaller . Instance ; return Invoke < GetBlueprintsResponse > ( request , options ) ; }
|
public synchronized StringBuffer append ( StringBuffer sb ) { if ( sb == null ) { appendNull ( ) ; } else { synchronized ( sb ) { append0 ( sb . getValue ( ) , 0 , sb . length ( ) ) ; } } return this ; }
|
public java . lang . StringBuffer append ( string @ string ) { lock ( this ) { append0 ( @ string ) ; return this ; } }
|
public EngineDefaults describeEngineDefaultClusterParameters ( DescribeEngineDefaultClusterParametersRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeEngineDefaultClusterParameters ( request ) ; }
|
public virtual DescribeEngineDefaultClusterParametersResponse DescribeEngineDefaultClusterParameters ( DescribeEngineDefaultClusterParametersRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeEngineDefaultClusterParametersRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeEngineDefaultClusterParametersResponseUnmarshaller . Instance ; return Invoke < DescribeEngineDefaultClusterParametersResponse > ( request , options ) ; }
|
public DeleteLaunchTemplateResult deleteLaunchTemplate ( DeleteLaunchTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteLaunchTemplate ( request ) ; }
|
public virtual DeleteLaunchTemplateResponse DeleteLaunchTemplate ( DeleteLaunchTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteLaunchTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteLaunchTemplateResponseUnmarshaller . Instance ; return Invoke < DeleteLaunchTemplateResponse > ( request , options ) ; }
|
public Object toObject ( ) { assert exists || ( false == value ) ; return exists ? value : null ; }
|
public override object ToObject ( ) { return Exists ? ( object ) Value : null ; }
|
public ObjectReader newObjectReader ( ) { return getObjectDatabase ( ) . newReader ( ) ; }
|
public virtual ObjectReader NewObjectReader ( ) { return ObjectDatabase . NewReader ( ) ; }
|
public String toString ( ) { String nl = System . getProperty ( "line.separtor" ) ; StringBuilder result = new StringBuilder ( ) ; result . append ( '[' ) . append ( getRecordName ( ) ) . append ( ']' ) . append ( nl ) ; for ( EscherRecord escherRecord : getEscherRecords ( ) ) { result . append ( escherRecord ) ; } result . append ( "[/" ) . append ( getRecordName ( ) ) . append ( ']' ) . append ( nl ) ; return result . toString ( ) ; }
|
public override String ToString ( ) { String nl = Environment . NewLine ; StringBuilder result = new StringBuilder ( ) ; result . Append ( '[' ) . Append ( RecordName ) . Append ( ']' + nl ) ; for ( IEnumerator iterator = EscherRecords . GetEnumerator ( ) ; iterator . MoveNext ( ) ; ) { EscherRecord escherRecord = ( EscherRecord ) iterator . Current ; result . Append ( escherRecord . ToString ( ) + nl ) ; } result . Append ( "[/" ) . Append ( RecordName ) . Append ( ']' + nl ) ; return result . ToString ( ) ; }
|
public GetSnapshotBlockResult getSnapshotBlock ( GetSnapshotBlockRequest request ) { request = beforeClientExecution ( request ) ; return executeGetSnapshotBlock ( request ) ; }
|
public virtual GetSnapshotBlockResponse GetSnapshotBlock ( GetSnapshotBlockRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetSnapshotBlockRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetSnapshotBlockResponseUnmarshaller . Instance ; return Invoke < GetSnapshotBlockResponse > ( request , options ) ; }
|
public HSSFComment createComment ( HSSFAnchor anchor ) { HSSFComment shape = new HSSFComment ( null , anchor ) ; addShape ( shape ) ; onCreate ( shape ) ; return shape ; }
|
public HSSFComment CreateComment ( HSSFAnchor anchor ) { HSSFComment shape = new HSSFComment ( null , anchor ) ; AddShape ( shape ) ; OnCreate ( shape ) ; return shape ; }
|
public CopySnapshotResult copySnapshot ( CopySnapshotRequest request ) { request = beforeClientExecution ( request ) ; return executeCopySnapshot ( request ) ; }
|
public virtual CopySnapshotResponse CopySnapshot ( CopySnapshotRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CopySnapshotRequestMarshaller . Instance ; options . ResponseUnmarshaller = CopySnapshotResponseUnmarshaller . Instance ; return Invoke < CopySnapshotResponse > ( request , options ) ; }
|
public String toString ( ) { return "<quotedfield start='" + this . begin + "' end='" + this . end + "' field='" + this . field + "' term='" + this . text + "'/>" ; }
|
public override string ToString ( ) { return "<quotedfield start='" + this . m_begin + "' end='" + this . m_end + "' field='" + this . m_field + "' term='" + this . m_text + "'/>" ; }
|
public void write ( int b ) throws IOException { throw new IllegalStateException ( JGitText . get ( ) . writingNotPermitted ) ; }
|
public override void Write ( int b ) { throw new InvalidOperationException ( JGitText . Get ( ) . writingNotPermitted ) ; }
|
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 ) { try { String needle = TextFunction . evaluateStringArg ( arg0 , srcRowIndex , srcColumnIndex ) ; String haystack = TextFunction . evaluateStringArg ( arg1 , srcRowIndex , srcColumnIndex ) ; return eval ( haystack , needle , 0 ) ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } }
|
public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 ) { try { String needle = TextFunction . EvaluateStringArg ( arg0 , srcRowIndex , srcColumnIndex ) ; String haystack = TextFunction . EvaluateStringArg ( arg1 , srcRowIndex , srcColumnIndex ) ; return Eval ( haystack , needle , 0 ) ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } }
|
public NumberMatcher ( double value , CmpOp operator ) { super ( operator ) ; _value = value ; }
|
public NumberMatcher ( double value , CmpOp optr ) : base ( optr ) { _value = value ; }
|
public GroupingSearch setCachingInMB ( double maxCacheRAMMB , boolean cacheScores ) { this . maxCacheRAMMB = maxCacheRAMMB ; this . maxDocsToCache = null ; this . cacheScores = cacheScores ; return this ; }
|
public virtual GroupingSearch SetCachingInMB ( double maxCacheRAMMB , bool cacheScores ) { this . maxCacheRAMMB = maxCacheRAMMB ; this . maxDocsToCache = null ; this . cacheScores = cacheScores ; return this ; }
|
public DescribeRegionsResult describeRegions ( DescribeRegionsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeRegions ( request ) ; }
|
public virtual DescribeRegionsResponse DescribeRegions ( DescribeRegionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeRegionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeRegionsResponseUnmarshaller . Instance ; return Invoke < DescribeRegionsResponse > ( request , options ) ; }
|
public ListApplicationRevisionsResult listApplicationRevisions ( ListApplicationRevisionsRequest request ) { request = beforeClientExecution ( request ) ; return executeListApplicationRevisions ( request ) ; }
|
public virtual ListApplicationRevisionsResponse ListApplicationRevisions ( ListApplicationRevisionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListApplicationRevisionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListApplicationRevisionsResponseUnmarshaller . Instance ; return Invoke < ListApplicationRevisionsResponse > ( request , options ) ; }
|
public int set ( int index , long [ ] arr , int off , int len ) { long max = 0 ; for ( int i = off , end = off + len ; i < end ; ++ i ) { max |= arr [ i ] ; } ensureCapacity ( max ) ; return current . set ( index , arr , off , len ) ; }
|
public override int Set ( int index , long [ ] arr , int off , int len ) { long max = 0 ; for ( int i = off , end = off + len ; i < end ; ++ i ) { max |= arr [ i ] ; } EnsureCapacity ( max ) ; return current . Set ( index , arr , off , len ) ; }
|
public MutableValue duplicate ( ) { MutableValueDate v = new MutableValueDate ( ) ; v . value = this . value ; v . exists = this . exists ; return v ; }
|
public override MutableValue Duplicate ( ) { MutableValueDate v = new MutableValueDate ( ) ; v . Value = this . Value ; v . Exists = this . Exists ; return v ; }
|
public DeleteUserResult deleteUser ( DeleteUserRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteUser ( request ) ; }
|
public virtual DeleteUserResponse DeleteUser ( DeleteUserRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteUserRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteUserResponseUnmarshaller . Instance ; return Invoke < DeleteUserResponse > ( request , options ) ; }
|
public String getPath ( ) { return path ; }
|
public string getPath ( ) { return path ; }
|
public ListVerifiedEmailAddressesResult listVerifiedEmailAddresses ( ) { return listVerifiedEmailAddresses ( new ListVerifiedEmailAddressesRequest ( ) ) ; }
|
public virtual ListVerifiedEmailAddressesResponse ListVerifiedEmailAddresses ( ) { return ListVerifiedEmailAddresses ( new ListVerifiedEmailAddressesRequest ( ) ) ; }
|
public DescribeStackResourceResult describeStackResource ( DescribeStackResourceRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeStackResource ( request ) ; }
|
public virtual DescribeStackResourceResponse DescribeStackResource ( DescribeStackResourceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeStackResourceRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeStackResourceResponseUnmarshaller . Instance ; return Invoke < DescribeStackResourceResponse > ( request , options ) ; }
|
public MetricsTagPredicate ( Tag tag ) { this . tag = tag ; }
|
public MetricsTagPredicate ( Tag tag ) { this . tag = tag ; }
|
public void remove ( ) { if ( last == null ) { throw new IllegalStateException ( ) ; } removeInternal ( last ) ; expectedModCount = modCount ; last = null ; }
|
public virtual void remove ( ) { if ( this . last == null ) { throw new System . InvalidOperationException ( ) ; } this . _enclosing . removeInternal ( this . last ) ; this . expectedModCount = this . _enclosing . modCount ; this . last = null ; }
|
public void setExecutor ( Executor executor ) { this . executor = executor ; }
|
public virtual void SetExecutor ( Executor executor ) { this . executor = executor ; }
|
public boolean hasDirectoryEntry ( ) { EmbeddedObjectRefSubRecord subRecord = findObjectRecord ( ) ; Integer streamId = subRecord . getStreamId ( ) ; return streamId != null && streamId . intValue ( ) != 0 ; }
|
public bool HasDirectoryEntry ( ) { EmbeddedObjectRefSubRecord subRecord = FindObjectRecord ( ) ; int ? streamId = subRecord . StreamId ; return streamId != null && streamId != 0 ; }
|
public K higherKey ( K key ) { Entry < K , V > entry = findBounded ( key , HIGHER ) ; return entry != null ? entry . getKey ( ) : null ; }
|
public K higherKey ( K key ) { java . util . MapClass . Entry < K , V > entry = this . findBounded ( key , java . util . TreeMap . Relation . HIGHER ) ; return entry != null ? entry . getKey ( ) : default ( K ) ; }
|
public void exitRule ( ) { if ( matchedEOF ) { _ctx . stop = _input . LT ( 1 ) ; } else { _ctx . stop = _input . LT ( - 1 ) ; } if ( _parseListeners != null ) triggerExitRuleEvent ( ) ; setState ( _ctx . invokingState ) ; _ctx = ( ParserRuleContext ) _ctx . parent ; }
|
public virtual void ExitRule ( ) { _ctx . Stop = _input . LT ( - 1 ) ; if ( _parseListeners != null ) { TriggerExitRuleEvent ( ) ; } State = _ctx . invokingState ; _ctx = ( ParserRuleContext ) _ctx . Parent ; }
|
public DeleteTrafficPolicyInstanceResult deleteTrafficPolicyInstance ( DeleteTrafficPolicyInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteTrafficPolicyInstance ( request ) ; }
|
public virtual DeleteTrafficPolicyInstanceResponse DeleteTrafficPolicyInstance ( DeleteTrafficPolicyInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteTrafficPolicyInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteTrafficPolicyInstanceResponseUnmarshaller . Instance ; return Invoke < DeleteTrafficPolicyInstanceResponse > ( request , options ) ; }
|
public boolean check ( final int level ) { int currentLevel ; try { currentLevel = Integer . parseInt ( System . getProperty ( "poi.log.level" , WARN + "" ) ) ; } catch ( SecurityException e ) { currentLevel = POILogger . DEBUG ; } return level >= currentLevel ; }
|
public override bool Check ( int level ) { int currentLevel ; try { var temp = WARN . ToString ( CultureInfo . InvariantCulture ) ; currentLevel = int . Parse ( temp , CultureInfo . InvariantCulture ) ; } catch ( Exception ) { currentLevel = POILogger . DEBUG ; } if ( level >= currentLevel ) { return true ; } return false ; }
|
public ShortBuffer put ( short c ) { if ( position == limit ) { throw new BufferOverflowException ( ) ; } backingArray [ offset + position ++ ] = c ; return this ; }
|
public override java . nio . ShortBuffer put ( short c ) { if ( _position == _limit ) { throw new java . nio . BufferOverflowException ( ) ; } backingArray [ offset + _position ++ ] = c ; return this ; }
|
public DeletePublicKeyResult deletePublicKey ( DeletePublicKeyRequest request ) { request = beforeClientExecution ( request ) ; return executeDeletePublicKey ( request ) ; }
|
public virtual DeletePublicKeyResponse DeletePublicKey ( DeletePublicKeyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeletePublicKeyRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeletePublicKeyResponseUnmarshaller . Instance ; return Invoke < DeletePublicKeyResponse > ( request , options ) ; }
|
public ObjectId idFor ( int type , byte [ ] data ) { return delegate ( ) . idFor ( type , data ) ; }
|
public override ObjectId IdFor ( int type , byte [ ] data ) { return Delegate ( ) . IdFor ( type , data ) ; }
|
public DeleteDBProxyResult deleteDBProxy ( DeleteDBProxyRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteDBProxy ( request ) ; }
|
public virtual DeleteDBProxyResponse DeleteDBProxy ( DeleteDBProxyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteDBProxyRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteDBProxyResponseUnmarshaller . Instance ; return Invoke < DeleteDBProxyResponse > ( request , options ) ; }
|
public void add ( int n ) { if ( count == entries . length ) grow ( ) ; entries [ count ++ ] = n ; }
|
public virtual void Add ( int n ) { if ( count == entries . Length ) { Grow ( ) ; } entries [ count ++ ] = n ; }
|
public PortugueseStemFilterFactory ( Map < String , String > args ) { super ( args ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } }
|
public PortugueseStemFilterFactory ( IDictionary < string , string > args ) : base ( args ) { if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } }
|
public DisconnectParticipantResult disconnectParticipant ( DisconnectParticipantRequest request ) { request = beforeClientExecution ( request ) ; return executeDisconnectParticipant ( request ) ; }
|
public virtual DisconnectParticipantResponse DisconnectParticipant ( DisconnectParticipantRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DisconnectParticipantRequestMarshaller . Instance ; options . ResponseUnmarshaller = DisconnectParticipantResponseUnmarshaller . Instance ; return Invoke < DisconnectParticipantResponse > ( request , options ) ; }
|
public ObjectId getPeeledObjectId ( ) { return null ; }
|
public override ObjectId GetPeeledObjectId ( ) { return null ; }
|
public DeleteParameterGroupResult deleteParameterGroup ( DeleteParameterGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteParameterGroup ( request ) ; }
|
public virtual DeleteParameterGroupResponse DeleteParameterGroup ( DeleteParameterGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteParameterGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteParameterGroupResponseUnmarshaller . Instance ; return Invoke < DeleteParameterGroupResponse > ( request , options ) ; }
|
public TextRecord ( RecordInputStream in ) { field_1_horizontalAlignment = in . readByte ( ) ; field_2_verticalAlignment = in . readByte ( ) ; field_3_displayMode = in . readShort ( ) ; field_4_rgbColor = in . readInt ( ) ; field_5_x = in . readInt ( ) ; field_6_y = in . readInt ( ) ; field_7_width = in . readInt ( ) ; field_8_height = in . readInt ( ) ; field_9_options1 = in . readShort ( ) ; field_10_indexOfColorValue = in . readShort ( ) ; field_11_options2 = in . readShort ( ) ; field_12_textRotation = in . readShort ( ) ; }
|
public TextRecord ( RecordInputStream in1 ) { field_1_horizontalAlignment = ( byte ) in1 . ReadByte ( ) ; field_2_verticalAlignment = ( byte ) in1 . ReadByte ( ) ; field_3_DisplayMode = in1 . ReadShort ( ) ; field_4_rgbColor = in1 . ReadInt ( ) ; field_5_x = in1 . ReadInt ( ) ; field_6_y = in1 . ReadInt ( ) ; field_7_width = in1 . ReadInt ( ) ; field_8_height = in1 . ReadInt ( ) ; field_9_options1 = in1 . ReadShort ( ) ; field_10_IndexOfColorValue = in1 . ReadShort ( ) ; field_11_options2 = in1 . ReadShort ( ) ; field_12_textRotation = in1 . ReadShort ( ) ; }
|
public ReflogCommand setRef ( String ref ) { checkCallable ( ) ; this . ref = ref ; return this ; }
|
public virtual NGit . Api . ReflogCommand SetRef ( string @ ref ) { CheckCallable ( ) ; this . @ ref = @ ref ; return this ; }
|
@ Override public boolean contains ( Object object ) { Object [ ] a = array ; int s = size ; if ( object != null ) { for ( int i = 0 ; i < s ; i ++ ) { if ( object . equals ( a [ i ] ) ) { return true ; } } } else { for ( int i = 0 ; i < s ; i ++ ) { if ( a [ i ] == null ) { return true ; } } } return false ; }
|
public override bool contains ( object @ object ) { if ( @ object != null ) { foreach ( E element in a ) { if ( @ object . Equals ( element ) ) { return true ; } } } else { foreach ( E element in a ) { if ( ( object ) element == null ) { return true ; } } } return false ; }
|
public CreateFpgaImageResult createFpgaImage ( CreateFpgaImageRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateFpgaImage ( request ) ; }
|
public virtual CreateFpgaImageResponse CreateFpgaImage ( CreateFpgaImageRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateFpgaImageRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateFpgaImageResponseUnmarshaller . Instance ; return Invoke < CreateFpgaImageResponse > ( request , options ) ; }
|
public DescribeAggregateIdFormatResult describeAggregateIdFormat ( DescribeAggregateIdFormatRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeAggregateIdFormat ( request ) ; }
|
public virtual DescribeAggregateIdFormatResponse DescribeAggregateIdFormat ( DescribeAggregateIdFormatRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeAggregateIdFormatRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeAggregateIdFormatResponseUnmarshaller . Instance ; return Invoke < DescribeAggregateIdFormatResponse > ( request , options ) ; }
|
public ListMultipartUploadsRequest ( String vaultName ) { setVaultName ( vaultName ) ; }
|
public ListMultipartUploadsRequest ( string vaultName ) { _vaultName = vaultName ; }
|
public DeleteRepoRequest ( ) { super ( "cr" , "2016-06-07" , "DeleteRepo" , "cr" ) ; setUriPattern ( "/repos/[RepoNamespace]/[RepoName]" ) ; setMethod ( MethodType . DELETE ) ; }
|
public DeleteRepoRequest ( ) : base ( "cr" , "2016-06-07" , "DeleteRepo" , "cr" , "openAPI" ) { UriPattern = "/repos/[RepoNamespace]/[RepoName]" ; Method = MethodType . DELETE ; }
|
public static BOFRecord createSheetBOF ( ) { return new BOFRecord ( TYPE_WORKSHEET ) ; }
|
public static BOFRecord CreateSheetBOF ( ) { return new BOFRecord ( BOFRecordType . Worksheet ) ; }
|
public FloatBuffer put ( float [ ] src , int srcOffset , int floatCount ) { byteBuffer . limit ( limit * SizeOf . FLOAT ) ; byteBuffer . position ( position * SizeOf . FLOAT ) ; if ( byteBuffer instanceof ReadWriteDirectByteBuffer ) { ( ( ReadWriteDirectByteBuffer ) byteBuffer ) . put ( src , srcOffset , floatCount ) ; } else { ( ( ReadWriteHeapByteBuffer ) byteBuffer ) . put ( src , srcOffset , floatCount ) ; } this . position += floatCount ; return this ; }
|
public override java . nio . FloatBuffer put ( float [ ] src , int srcOffset , int floatCount ) { byteBuffer . limit ( _limit * libcore . io . SizeOf . FLOAT ) ; byteBuffer . position ( _position * libcore . io . SizeOf . FLOAT ) ; if ( byteBuffer is java . nio . ReadWriteDirectByteBuffer ) { ( ( java . nio . ReadWriteDirectByteBuffer ) byteBuffer ) . put ( src , srcOffset , floatCount ) ; } else { ( ( java . nio . ReadWriteHeapByteBuffer ) byteBuffer ) . put ( src , srcOffset , floatCount ) ; } this . _position += floatCount ; return this ; }
|
public void execute ( Lexer lexer ) { lexer . popMode ( ) ; }
|
public void Execute ( Lexer lexer ) { lexer . PopMode ( ) ; }
|
public DeleteImageRequest ( ) { super ( "cr" , "2016-06-07" , "DeleteImage" , "cr" ) ; setUriPattern ( "/repos/[RepoNamespace]/[RepoName]/tags/[Tag]" ) ; setMethod ( MethodType . DELETE ) ; }
|
public DeleteImageRequest ( ) : base ( "vod" , "2017-03-21" , "DeleteImage" ) { if ( this . GetType ( ) . GetProperty ( "ProductEndpointMap" ) != null && this . GetType ( ) . GetProperty ( "ProductEndpointType" ) != null ) { this . GetType ( ) . GetProperty ( "ProductEndpointMap" ) . SetValue ( this , Endpoint . endpointMap , null ) ; this . GetType ( ) . GetProperty ( "ProductEndpointType" ) . SetValue ( this , Endpoint . endpointRegionalType , null ) ; } }
|
public CreateImageBuilderResult createImageBuilder ( CreateImageBuilderRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateImageBuilder ( request ) ; }
|
public virtual CreateImageBuilderResponse CreateImageBuilder ( CreateImageBuilderRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateImageBuilderRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateImageBuilderResponseUnmarshaller . Instance ; return Invoke < CreateImageBuilderResponse > ( request , options ) ; }
|
public void serialize ( LittleEndianOutput out ) { out . writeShort ( getRow ( ) ) ; out . writeShort ( getColumn ( ) ) ; out . writeShort ( getXFIndex ( ) ) ; }
|
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteShort ( Row ) ; out1 . WriteShort ( Column ) ; out1 . WriteShort ( XFIndex ) ; }
|
public UpdateSegmentResult updateSegment ( UpdateSegmentRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateSegment ( request ) ; }
|
public virtual UpdateSegmentResponse UpdateSegment ( UpdateSegmentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateSegmentRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateSegmentResponseUnmarshaller . Instance ; return Invoke < UpdateSegmentResponse > ( request , options ) ; }
|
public DescribeSnapshotsResult describeSnapshots ( ) { return describeSnapshots ( new DescribeSnapshotsRequest ( ) ) ; }
|
public virtual DescribeSnapshotsResponse DescribeSnapshots ( ) { return DescribeSnapshots ( new DescribeSnapshotsRequest ( ) ) ; }
|
public AddNoteCommand setObjectId ( RevObject id ) { checkCallable ( ) ; this . id = id ; return this ; }
|
public virtual NGit . Api . AddNoteCommand SetObjectId ( RevObject id ) { CheckCallable ( ) ; this . id = id ; return this ; }
|
public String toString ( ) { return path ; }
|
public override string ToString ( ) { return path ; }
|
public GetMetricStatisticsResult getMetricStatistics ( GetMetricStatisticsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetMetricStatistics ( request ) ; }
|
public virtual GetMetricStatisticsResponse GetMetricStatistics ( GetMetricStatisticsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetMetricStatisticsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetMetricStatisticsResponseUnmarshaller . Instance ; return Invoke < GetMetricStatisticsResponse > ( request , options ) ; }
|
public DescribeAutoScalingInstancesResult describeAutoScalingInstances ( DescribeAutoScalingInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeAutoScalingInstances ( request ) ; }
|
public virtual DescribeAutoScalingInstancesResponse DescribeAutoScalingInstances ( DescribeAutoScalingInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeAutoScalingInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeAutoScalingInstancesResponseUnmarshaller . Instance ; return Invoke < DescribeAutoScalingInstancesResponse > ( request , options ) ; }
|
public TokenFilter create ( TokenStream input ) { return new KStemFilter ( input ) ; }
|
public override TokenStream Create ( TokenStream input ) { return new KStemFilter ( input ) ; }
|
public CreateEnvironmentRequest ( String applicationName , String environmentName ) { setApplicationName ( applicationName ) ; setEnvironmentName ( environmentName ) ; }
|
public CreateEnvironmentRequest ( string applicationName , string environmentName ) { _applicationName = applicationName ; _environmentName = environmentName ; }
|
public static LongBuffer allocate ( int capacity ) { if ( capacity < 0 ) { throw new IllegalArgumentException ( ) ; } return new ReadWriteLongArrayBuffer ( capacity ) ; }
|
public static java . nio . LongBuffer allocate ( int capacity_1 ) { if ( capacity_1 < 0 ) { throw new System . ArgumentException ( ) ; } return new java . nio . ReadWriteLongArrayBuffer ( capacity_1 ) ; }
|
public GetIdentityMailFromDomainAttributesResult getIdentityMailFromDomainAttributes ( GetIdentityMailFromDomainAttributesRequest request ) { request = beforeClientExecution ( request ) ; return executeGetIdentityMailFromDomainAttributes ( request ) ; }
|
public virtual GetIdentityMailFromDomainAttributesResponse GetIdentityMailFromDomainAttributes ( GetIdentityMailFromDomainAttributesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetIdentityMailFromDomainAttributesRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetIdentityMailFromDomainAttributesResponseUnmarshaller . Instance ; return Invoke < GetIdentityMailFromDomainAttributesResponse > ( request , options ) ; }
|
public boolean isForce ( ) { return force ; }
|
public virtual bool IsForce ( ) { return force ; }
|
public DescribeImageScanFindingsResult describeImageScanFindings ( DescribeImageScanFindingsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeImageScanFindings ( request ) ; }
|
public virtual DescribeImageScanFindingsResponse DescribeImageScanFindings ( DescribeImageScanFindingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeImageScanFindingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeImageScanFindingsResponseUnmarshaller . Instance ; return Invoke < DescribeImageScanFindingsResponse > ( request , options ) ; }
|
public SendContactMethodVerificationResult sendContactMethodVerification ( SendContactMethodVerificationRequest request ) { request = beforeClientExecution ( request ) ; return executeSendContactMethodVerification ( request ) ; }
|
public virtual SendContactMethodVerificationResponse SendContactMethodVerification ( SendContactMethodVerificationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SendContactMethodVerificationRequestMarshaller . Instance ; options . ResponseUnmarshaller = SendContactMethodVerificationResponseUnmarshaller . Instance ; return Invoke < SendContactMethodVerificationResponse > ( request , options ) ; }
|
public DeleteReceiptFilterResult deleteReceiptFilter ( DeleteReceiptFilterRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteReceiptFilter ( request ) ; }
|
public virtual DeleteReceiptFilterResponse DeleteReceiptFilter ( DeleteReceiptFilterRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteReceiptFilterRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteReceiptFilterResponseUnmarshaller . Instance ; return Invoke < DeleteReceiptFilterResponse > ( request , options ) ; }
|
public void updateFormulaResult ( ValueEval result , CellCacheEntry [ ] sensitiveInputCells , FormulaUsedBlankCellSet usedBlankAreas ) { updateValue ( result ) ; setSensitiveInputCells ( sensitiveInputCells ) ; _usedBlankCellGroup = usedBlankAreas ; }
|
public void UpdateFormulaResult ( ValueEval result , CellCacheEntry [ ] sensitiveInputCells , FormulaUsedBlankCellSet usedBlankAreas ) { UpdateValue ( result ) ; SetSensitiveInputCells ( sensitiveInputCells ) ; _usedBlankCellGroup = usedBlankAreas ; }
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.