question
stringlengths 33
1.59k
| target
stringlengths 33
1.58k
|
|---|---|
public ListSolutionsResult listSolutions ( ListSolutionsRequest request ) { request = beforeClientExecution ( request ) ; return executeListSolutions ( request ) ; }
|
public virtual ListSolutionsResponse ListSolutions ( ListSolutionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListSolutionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListSolutionsResponseUnmarshaller . Instance ; return Invoke < ListSolutionsResponse > ( request , options ) ; }
|
public boolean hasPrevious ( ) { return index > from ; }
|
public virtual bool hasPrevious ( ) { return index > from ; }
|
public final void end ( ) { if ( finalState != null ) { restoreState ( finalState ) ; } }
|
public override void End ( ) { if ( finalState != null ) { RestoreState ( finalState ) ; } }
|
public DoubleBuffer put ( int index , double c ) { checkIndex ( index ) ; backingArray [ offset + index ] = c ; return this ; }
|
public override java . nio . DoubleBuffer put ( int index , double c ) { checkIndex ( index ) ; backingArray [ offset + index ] = c ; return this ; }
|
public ThreeWayMerger newMerger ( Repository db ) { return new ResolveMerger ( db , false ) ; }
|
public override Merger NewMerger ( Repository db ) { return new ResolveMerger ( db , false ) ; }
|
public static long pop_union ( long [ ] arr1 , long [ ] arr2 , int wordOffset , int numWords ) { long popCount = 0 ; for ( int i = wordOffset , end = wordOffset + numWords ; i < end ; ++ i ) { popCount += Long . bitCount ( arr1 [ i ] | arr2 [ i ] ) ; } return popCount ; }
|
public static long Pop_Union ( long [ ] arr1 , long [ ] arr2 , int wordOffset , int numWords ) { long popCount = 0 ; for ( int i = wordOffset , end = wordOffset + numWords ; i < end ; ++ i ) { popCount += ( arr1 [ i ] | arr2 [ i ] ) . PopCount ( ) ; } return popCount ; }
|
public LongBuffer put ( long c ) { if ( position == limit ) { throw new BufferOverflowException ( ) ; } backingArray [ offset + position ++ ] = c ; return this ; }
|
public override java . nio . LongBuffer put ( long c ) { if ( _position == _limit ) { throw new java . nio . BufferOverflowException ( ) ; } backingArray [ offset + _position ++ ] = c ; return this ; }
|
public ConstValueSource ( float constant ) { this . constant = constant ; this . dv = constant ; }
|
public ConstValueSource ( float constant ) { this . constant = constant ; this . dv = constant ; }
|
public boolean matches ( char c ) { return punctCharacters . indexOf ( c ) != - 1 ; }
|
public bool Matches ( char c ) { return punctCharacters . IndexOf ( c ) != - 1 ; }
|
public FlushInfo ( int numDocs , long estimatedSegmentSize ) { this . numDocs = numDocs ; this . estimatedSegmentSize = estimatedSegmentSize ; }
|
public FlushInfo ( int numDocs , long estimatedSegmentSize ) { this . NumDocs = numDocs ; this . EstimatedSegmentSize = estimatedSegmentSize ; }
|
public void print ( char [ ] chars ) { print ( new String ( chars , 0 , chars . length ) ) ; }
|
public virtual void print ( char [ ] chars ) { print ( new string ( chars , 0 , chars . Length ) ) ; }
|
public E element ( ) { return getFirstImpl ( ) ; }
|
public virtual E element ( ) { return getFirstImpl ( ) ; }
|
public ListNodegroupsResult listNodegroups ( ListNodegroupsRequest request ) { request = beforeClientExecution ( request ) ; return executeListNodegroups ( request ) ; }
|
public virtual ListNodegroupsResponse ListNodegroups ( ListNodegroupsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListNodegroupsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListNodegroupsResponseUnmarshaller . Instance ; return Invoke < ListNodegroupsResponse > ( request , options ) ; }
|
public PutSkillAuthorizationResult putSkillAuthorization ( PutSkillAuthorizationRequest request ) { request = beforeClientExecution ( request ) ; return executePutSkillAuthorization ( request ) ; }
|
public virtual PutSkillAuthorizationResponse PutSkillAuthorization ( PutSkillAuthorizationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PutSkillAuthorizationRequestMarshaller . Instance ; options . ResponseUnmarshaller = PutSkillAuthorizationResponseUnmarshaller . Instance ; return Invoke < PutSkillAuthorizationResponse > ( request , options ) ; }
|
public DescribeSourceRegionsResult describeSourceRegions ( DescribeSourceRegionsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeSourceRegions ( request ) ; }
|
public virtual DescribeSourceRegionsResponse DescribeSourceRegions ( DescribeSourceRegionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeSourceRegionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeSourceRegionsResponseUnmarshaller . Instance ; return Invoke < DescribeSourceRegionsResponse > ( request , options ) ; }
|
public SplitShardResult splitShard ( SplitShardRequest request ) { request = beforeClientExecution ( request ) ; return executeSplitShard ( request ) ; }
|
public virtual SplitShardResponse SplitShard ( SplitShardRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SplitShardRequestMarshaller . Instance ; options . ResponseUnmarshaller = SplitShardResponseUnmarshaller . Instance ; return Invoke < SplitShardResponse > ( request , options ) ; }
|
public CreateTableRequest ( String tableName , java . util . List < KeySchemaElement > keySchema ) { setTableName ( tableName ) ; setKeySchema ( keySchema ) ; }
|
public CreateTableRequest ( string tableName , List < KeySchemaElement > keySchema ) { _tableName = tableName ; _keySchema = keySchema ; }
|
public void serialize ( LittleEndianOutput out ) { out . writeShort ( field_1_id ) ; out . writeByte ( field_4_text . length ( ) ) ; if ( is16bit ) { out . writeByte ( 0x01 ) ; StringUtil . putUnicodeLE ( field_4_text , out ) ; } else { out . writeByte ( 0x00 ) ; StringUtil . putCompressedUnicode ( field_4_text , out ) ; } }
|
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteShort ( field_1_id ) ; out1 . WriteByte ( field_4_text . Length ) ; if ( is16bit ) { out1 . WriteByte ( 0x01 ) ; StringUtil . PutUnicodeLE ( field_4_text , out1 ) ; } else { out1 . WriteByte ( 0x00 ) ; StringUtil . PutCompressedUnicode ( field_4_text , out1 ) ; } }
|
public UpdateVoiceTemplateResult updateVoiceTemplate ( UpdateVoiceTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateVoiceTemplate ( request ) ; }
|
public virtual UpdateVoiceTemplateResponse UpdateVoiceTemplate ( UpdateVoiceTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateVoiceTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateVoiceTemplateResponseUnmarshaller . Instance ; return Invoke < UpdateVoiceTemplateResponse > ( request , options ) ; }
|
public BookBoolRecord ( RecordInputStream in ) { field_1_save_link_values = in . readShort ( ) ; }
|
public BookBoolRecord ( RecordInputStream in1 ) { field_1_save_link_values = in1 . ReadShort ( ) ; }
|
public final Buffer flip ( ) { limit = position ; position = 0 ; mark = UNSET_MARK ; return this ; }
|
public java . nio . Buffer flip ( ) { _limit = _position ; _position = 0 ; _mark = UNSET_MARK ; return this ; }
|
public IntBuffer get ( int [ ] dst , int dstOffset , int intCount ) { Arrays . checkOffsetAndCount ( dst . length , dstOffset , intCount ) ; if ( intCount > remaining ( ) ) { throw new BufferUnderflowException ( ) ; } for ( int i = dstOffset ; i < dstOffset + intCount ; ++ i ) { dst [ i ] = get ( ) ; } return this ; }
|
public virtual java . nio . IntBuffer get ( int [ ] dst , int dstOffset , int intCount ) { java . util . Arrays . checkOffsetAndCount ( dst . Length , dstOffset , intCount ) ; if ( intCount > remaining ( ) ) { throw new java . nio . BufferUnderflowException ( ) ; } { for ( int i = dstOffset ; i < dstOffset + intCount ; ++ i ) { dst [ i ] = get ( ) ; } } return this ; }
|
public GroupingSearch setGroupDocsOffset ( int groupDocsOffset ) { this . groupDocsOffset = groupDocsOffset ; return this ; }
|
public virtual GroupingSearch SetGroupDocsOffset ( int groupDocsOffset ) { this . groupDocsOffset = groupDocsOffset ; return this ; }
|
public Builder ( ) { this ( 16 , 16 ) ; }
|
public Builder ( ) { InitializeInstanceFields ( ) ; }
|
public String getCommandName ( ) { return command ; }
|
public virtual string GetCommandName ( ) { return command ; }
|
public int getFirstInternalSheetIndexForExtIndex ( int extRefIndex ) { if ( extRefIndex >= _externSheetRecord . getNumOfRefs ( ) || extRefIndex < 0 ) { return - 1 ; } return _externSheetRecord . getFirstSheetIndexFromRefIndex ( extRefIndex ) ; }
|
public int GetFirstInternalSheetIndexForExtIndex ( int extRefIndex ) { if ( extRefIndex >= _externSheetRecord . NumOfRefs || extRefIndex < 0 ) { return - 1 ; } return _externSheetRecord . GetFirstSheetIndexFromRefIndex ( extRefIndex ) ; }
|
public boolean isExpired ( ) { return this . expiredDate == null || this . expiredDate . after ( new Date ( ) ) ; }
|
public bool IsExpired ( ) { if ( null == ExpiredDate ) { return false ; } return ! ( ExpiredDate < DateTime . UtcNow ) ; }
|
public ListPolicyAttachmentsResult listPolicyAttachments ( ListPolicyAttachmentsRequest request ) { request = beforeClientExecution ( request ) ; return executeListPolicyAttachments ( request ) ; }
|
public virtual ListPolicyAttachmentsResponse ListPolicyAttachments ( ListPolicyAttachmentsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListPolicyAttachmentsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListPolicyAttachmentsResponseUnmarshaller . Instance ; return Invoke < ListPolicyAttachmentsResponse > ( request , options ) ; }
|
public double readDouble ( ) { return Double . longBitsToDouble ( readLong ( ) ) ; }
|
public double ReadDouble ( ) { return BitConverter . Int64BitsToDouble ( ReadLong ( ) ) ; }
|
public UpdateLoginProfileRequest ( String userName ) { setUserName ( userName ) ; }
|
public UpdateLoginProfileRequest ( string userName ) { _userName = userName ; }
|
public String getResultPath ( ) { return resultPath ; }
|
public virtual string GetResultPath ( ) { return resultPath ; }
|
public DescribeInstanceAttributeRequest ( String instanceId , InstanceAttributeName attribute ) { setInstanceId ( instanceId ) ; setAttribute ( attribute . toString ( ) ) ; }
|
public DescribeInstanceAttributeRequest ( string instanceId , InstanceAttributeName attribute ) { _instanceId = instanceId ; _attribute = attribute ; }
|
public int previousIndex ( ) { return index - 1 ; }
|
public virtual int previousIndex ( ) { return index - 1 ; }
|
public static RevFilter create ( RevFilter [ ] list ) { if ( list . length == 2 ) return create ( list [ 0 ] , list [ 1 ] ) ; if ( list . length < 2 ) throw new IllegalArgumentException ( JGitText . get ( ) . atLeastTwoFiltersNeeded ) ; final RevFilter [ ] subfilters = new RevFilter [ list . length ] ; System . arraycopy ( list , 0 , subfilters , 0 , list . length ) ; return new List ( subfilters ) ; }
|
public static RevFilter Create ( RevFilter [ ] list ) { if ( list . Length == 2 ) { return Create ( list [ 0 ] , list [ 1 ] ) ; } if ( list . Length < 2 ) { throw new ArgumentException ( JGitText . Get ( ) . atLeastTwoFiltersNeeded ) ; } RevFilter [ ] subfilters = new RevFilter [ list . Length ] ; System . Array . Copy ( list , 0 , subfilters , 0 , list . Length ) ; return new AndRevFilter . List ( subfilters ) ; }
|
public void reset ( ) { seek ( 0 ) ; }
|
public virtual void Reset ( ) { Seek ( 0 ) ; }
|
public ListResourceRecordSetsRequest ( String hostedZoneId ) { setHostedZoneId ( hostedZoneId ) ; }
|
public ListResourceRecordSetsRequest ( string hostedZoneId ) { _hostedZoneId = hostedZoneId ; }
|
public EventBasedExcelExtractor ( POIFSFileSystem fs ) { this ( fs . getRoot ( ) ) ; super . setFilesystem ( fs ) ; }
|
public EventBasedExcelExtractor ( POIFSFileSystem fs ) : base ( null ) { this . fs = fs ; }
|
public ListClustersResult listClusters ( ) { return listClusters ( new ListClustersRequest ( ) ) ; }
|
public virtual ListClustersResponse ListClusters ( ) { return ListClusters ( new ListClustersRequest ( ) ) ; }
|
public CreateAddressResult createAddress ( CreateAddressRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateAddress ( request ) ; }
|
public virtual CreateAddressResponse CreateAddress ( CreateAddressRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateAddressRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateAddressResponseUnmarshaller . Instance ; return Invoke < CreateAddressResponse > ( request , options ) ; }
|
public ListFacePhotosRequest ( ) { super ( "CloudPhoto" , "2017-07-11" , "ListFacePhotos" , "cloudphoto" ) ; setProtocol ( ProtocolType . HTTPS ) ; }
|
public ListFacePhotosRequest ( ) : base ( "CloudPhoto" , "2017-07-11" , "ListFacePhotos" , "cloudphoto" , "openAPI" ) { Protocol = ProtocolType . HTTPS ; }
|
public String toPrivateASCIIString ( ) { return format ( true , true ) ; }
|
public virtual string ToPrivateASCIIString ( ) { return Format ( true , true ) ; }
|
public BatchGetNamedQueryResult batchGetNamedQuery ( BatchGetNamedQueryRequest request ) { request = beforeClientExecution ( request ) ; return executeBatchGetNamedQuery ( request ) ; }
|
public virtual BatchGetNamedQueryResponse BatchGetNamedQuery ( BatchGetNamedQueryRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BatchGetNamedQueryRequestMarshaller . Instance ; options . ResponseUnmarshaller = BatchGetNamedQueryResponseUnmarshaller . Instance ; return Invoke < BatchGetNamedQueryResponse > ( request , options ) ; }
|
public CreateProfilingGroupResult createProfilingGroup ( CreateProfilingGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateProfilingGroup ( request ) ; }
|
public virtual CreateProfilingGroupResponse CreateProfilingGroup ( CreateProfilingGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateProfilingGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateProfilingGroupResponseUnmarshaller . Instance ; return Invoke < CreateProfilingGroupResponse > ( request , options ) ; }
|
@ Override public String toString ( ) { return Arrays . toString ( elements ) ; }
|
public override string ToString ( ) { return java . util . Arrays . toString ( elements ) ; }
|
public String toString ( ) { String padd = getPadding ( ) ; StringBuilder sb = new StringBuilder ( padd ) ; if ( disableCounting ) { sb . append ( '-' ) ; } sb . append ( getName ( ) ) ; if ( getRunInBackground ( ) ) { sb . append ( " &" ) ; int x = getBackgroundDeltaPriority ( ) ; if ( x != 0 ) { sb . append ( x ) ; } } return sb . toString ( ) ; }
|
public override string ToString ( ) { string padd = GetPadding ( ) ; StringBuilder sb = new StringBuilder ( padd ) ; if ( disableCounting ) { sb . Append ( '-' ) ; } sb . Append ( GetName ( ) ) ; if ( RunInBackground ) { sb . Append ( " &" ) ; int x = BackgroundDeltaPriority ; if ( x != 0 ) { sb . Append ( x ) ; } } return sb . ToString ( ) ; }
|
public Counter bytesUsed ( ) { return bytesUsed ; }
|
public override Counter BytesUsed ( ) { return bytesUsed ; }
|
public ListStreamingDistributionsResult listStreamingDistributions ( ListStreamingDistributionsRequest request ) { request = beforeClientExecution ( request ) ; return executeListStreamingDistributions ( request ) ; }
|
public virtual ListStreamingDistributionsResponse ListStreamingDistributions ( ListStreamingDistributionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListStreamingDistributionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListStreamingDistributionsResponseUnmarshaller . Instance ; return Invoke < ListStreamingDistributionsResponse > ( request , options ) ; }
|
public final void writeInt ( int val ) throws IOException { Memory . pokeInt ( scratch , 0 , val , ByteOrder . BIG_ENDIAN ) ; write ( scratch , 0 , SizeOf . INT ) ; }
|
public virtual void writeInt ( int val ) { throw new System . NotImplementedException ( ) ; }
|
public static ExpandedDouble fromRawBitsAndExponent ( long rawBits , int exp ) { return new ExpandedDouble ( getFrac ( rawBits ) , exp ) ; }
|
public static ExpandedDouble FromRawBitsAndExponent ( long rawBits , int exp ) { return new ExpandedDouble ( GetFrac ( rawBits ) , exp ) ; }
|
public boolean offerFirst ( E e ) { return addFirstImpl ( e ) ; }
|
public virtual bool offerFirst ( E e ) { return addFirstImpl ( e ) ; }
|
public BlockTermsWriter ( TermsIndexWriterBase termsIndexWriter , SegmentWriteState state , PostingsWriterBase postingsWriter ) throws IOException { final String termsFileName = IndexFileNames . segmentFileName ( state . segmentInfo . name , state . segmentSuffix , TERMS_EXTENSION ) ; this . termsIndexWriter = termsIndexWriter ; maxDoc = state . segmentInfo . maxDoc ( ) ; out = state . directory . createOutput ( termsFileName , state . context ) ; boolean success = false ; try { fieldInfos = state . fieldInfos ; CodecUtil . writeIndexHeader ( out , CODEC_NAME , VERSION_CURRENT , state . segmentInfo . getId ( ) , state . segmentSuffix ) ; currentField = null ; this . postingsWriter = postingsWriter ; postingsWriter . init ( out , state ) ; success = true ; } finally { if ( ! success ) { IOUtils . closeWhileHandlingException ( out ) ; } } }
|
public BlockTermsWriter ( TermsIndexWriterBase termsIndexWriter , SegmentWriteState state , PostingsWriterBase postingsWriter ) { string termsFileName = IndexFileNames . SegmentFileName ( state . SegmentInfo . Name , state . SegmentSuffix , TERMS_EXTENSION ) ; this . termsIndexWriter = termsIndexWriter ; m_output = state . Directory . CreateOutput ( termsFileName , state . Context ) ; bool success = false ; try { fieldInfos = state . FieldInfos ; WriteHeader ( m_output ) ; currentField = null ; this . postingsWriter = postingsWriter ; postingsWriter . Init ( m_output ) ; success = true ; } finally { if ( ! success ) { IOUtils . DisposeWhileHandlingException ( m_output ) ; } } }
|
public InstanceGroupModifyConfig ( String instanceGroupId , Integer instanceCount ) { setInstanceGroupId ( instanceGroupId ) ; setInstanceCount ( instanceCount ) ; }
|
public InstanceGroupModifyConfig ( string instanceGroupId , int instanceCount ) { _instanceGroupId = instanceGroupId ; _instanceCount = instanceCount ; }
|
public void collect ( int doc ) { totalHits ++ ; }
|
public virtual void Collect ( int doc ) { totalHits ++ ; }
|
public void writeByte ( int v ) { try { out . write ( v ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } }
|
public void WriteByte ( int v ) { try { out1 . WriteByte ( ( byte ) v ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } }
|
public int serializeComplexPart ( byte [ ] data , int pos ) { System . arraycopy ( complexData , 0 , data , pos , complexData . length ) ; return complexData . length ; }
|
public override int SerializeComplexPart ( byte [ ] data , int pos ) { Array . Copy ( _complexData , 0 , data , pos , _complexData . Length ) ; return _complexData . Length ; }
|
public String toString ( ) { return "<notokenfound/>" ; }
|
public override string ToString ( ) { return "<notokenfound/>" ; }
|
public DecisionInfo ( int decision ) { this . decision = decision ; }
|
public DecisionInfo ( int decision ) { this . decision = decision ; }
|
public CFRuleRecord ( RecordInputStream in ) { setConditionType ( in . readByte ( ) ) ; setComparisonOperation ( in . readByte ( ) ) ; int field_3_formula1_len = in . readUShort ( ) ; int field_4_formula2_len = in . readUShort ( ) ; readFormatOptions ( in ) ; setFormula1 ( Formula . read ( field_3_formula1_len , in ) ) ; setFormula2 ( Formula . read ( field_4_formula2_len , in ) ) ; }
|
public CFRuleRecord ( RecordInputStream in1 ) { field_1_condition_type = ( byte ) in1 . ReadByte ( ) ; field_2_comparison_operator = ( byte ) in1 . ReadByte ( ) ; int field_3_formula1_len = in1 . ReadUShort ( ) ; int field_4_formula2_len = in1 . ReadUShort ( ) ; field_5_options = in1 . ReadInt ( ) ; field_6_not_used = in1 . ReadShort ( ) ; if ( ContainsFontFormattingBlock ) { _fontFormatting = new FontFormatting ( in1 ) ; } if ( ContainsBorderFormattingBlock ) { _borderFormatting = new BorderFormatting ( in1 ) ; } if ( ContainsPatternFormattingBlock ) { _patternFormatting = new PatternFormatting ( in1 ) ; } field_17_formula1 = FR . Formula . Read ( field_3_formula1_len , in1 ) ; field_18_formula2 = FR . Formula . Read ( field_4_formula2_len , in1 ) ; }
|
public GroupMarkerSubRecord ( ) { reserved = EMPTY_BYTE_ARRAY ; }
|
public GroupMarkerSubRecord ( ) { reserved = EMPTY_BYTE_ARRAY ; }
|
public SegToken filter ( SegToken token ) { switch ( token . wordType ) { case WordType . FULLWIDTH_NUMBER : case WordType . FULLWIDTH_STRING : for ( int i = 0 ; i < token . charArray . length ; i ++ ) { if ( token . charArray [ i ] >= 0xFF10 ) token . charArray [ i ] -= 0xFEE0 ; if ( token . charArray [ i ] >= 0x0041 && token . charArray [ i ] <= 0x005A ) token . charArray [ i ] += 0x0020 ; } break ; case WordType . STRING : for ( int i = 0 ; i < token . charArray . length ; i ++ ) { if ( token . charArray [ i ] >= 0x0041 && token . charArray [ i ] <= 0x005A ) token . charArray [ i ] += 0x0020 ; } break ; case WordType . DELIMITER : token . charArray = Utility . COMMON_DELIMITER ; break ; default : break ; } return token ; }
|
public virtual SegToken Filter ( SegToken token ) { switch ( token . WordType ) { case WordType . FULLWIDTH_NUMBER : case WordType . FULLWIDTH_STRING : for ( int i = 0 ; i < token . CharArray . Length ; i ++ ) { if ( token . CharArray [ i ] >= 0xFF10 ) { token . CharArray [ i ] = ( char ) ( token . CharArray [ i ] - 0xFEE0 ) ; } if ( token . CharArray [ i ] >= 0x0041 && token . CharArray [ i ] <= 0x005A ) { token . CharArray [ i ] = ( char ) ( token . CharArray [ i ] + 0x0020 ) ; } } break ; case WordType . STRING : for ( int i = 0 ; i < token . CharArray . Length ; i ++ ) { if ( token . CharArray [ i ] >= 0x0041 && token . CharArray [ i ] <= 0x005A ) { token . CharArray [ i ] = ( char ) ( token . CharArray [ i ] + 0x0020 ) ; } } break ; case WordType . DELIMITER : token . CharArray = Utility . COMMON_DELIMITER ; break ; default : break ; } return token ; }
|
public BarRecord ( RecordInputStream in ) { field_1_barSpace = in . readShort ( ) ; field_2_categorySpace = in . readShort ( ) ; field_3_formatFlags = in . readShort ( ) ; }
|
public BarRecord ( RecordInputStream in1 ) { field_1_barSpace = in1 . ReadShort ( ) ; field_2_categorySpace = in1 . ReadShort ( ) ; field_3_formatFlags = in1 . ReadShort ( ) ; }
|
public final boolean tryIncRef ( ) { int count ; while ( ( count = refCount . get ( ) ) > 0 ) { if ( refCount . compareAndSet ( count , count + 1 ) ) { return true ; } } return false ; }
|
public bool TryIncRef ( ) { int count ; while ( ( count = refCount ) > 0 ) { if ( refCount . CompareAndSet ( count , count + 1 ) ) { return true ; } } return false ; }
|
public GetStackPolicyResult getStackPolicy ( GetStackPolicyRequest request ) { request = beforeClientExecution ( request ) ; return executeGetStackPolicy ( request ) ; }
|
public virtual GetStackPolicyResponse GetStackPolicy ( GetStackPolicyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetStackPolicyRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetStackPolicyResponseUnmarshaller . Instance ; return Invoke < GetStackPolicyResponse > ( request , options ) ; }
|
public void removeKeywords ( ) { remove1stProperty ( PropertyIDMap . PID_KEYWORDS ) ; }
|
public void RemoveKeywords ( ) { MutableSection s = ( MutableSection ) FirstSection ; s . RemoveProperty ( PropertyIDMap . PID_KEYWORDS ) ; }
|
public boolean follows ( TextFragment fragment ) { return textStartPos == fragment . textEndPos ; }
|
public virtual bool Follows ( TextFragment fragment ) { return TextStartPos == fragment . TextEndPos ; }
|
public DescribeHyperParameterTuningJobResult describeHyperParameterTuningJob ( DescribeHyperParameterTuningJobRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeHyperParameterTuningJob ( request ) ; }
|
public virtual DescribeHyperParameterTuningJobResponse DescribeHyperParameterTuningJob ( DescribeHyperParameterTuningJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeHyperParameterTuningJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeHyperParameterTuningJobResponseUnmarshaller . Instance ; return Invoke < DescribeHyperParameterTuningJobResponse > ( request , options ) ; }
|
public CharSequence toQueryString ( EscapeQuerySyntax escapeSyntaxParser ) { if ( getChildren ( ) == null || getChildren ( ) . size ( ) == 0 ) return "" ; StringBuilder sb = new StringBuilder ( ) ; String filler = "" ; for ( QueryNode child : getChildren ( ) ) { sb . append ( filler ) . append ( child . toQueryString ( escapeSyntaxParser ) ) ; filler = " AND " ; } if ( ( getParent ( ) != null && getParent ( ) instanceof GroupQueryNode ) || isRoot ( ) ) return sb . toString ( ) ; else return "( " + sb . toString ( ) + " )" ; }
|
public override string ToQueryString ( IEscapeQuerySyntax escapeSyntaxParser ) { var children = GetChildren ( ) ; if ( children == null || children . Count == 0 ) return "" ; StringBuilder sb = new StringBuilder ( ) ; string filler = "" ; foreach ( IQueryNode child in children ) { sb . Append ( filler ) . Append ( child . ToQueryString ( escapeSyntaxParser ) ) ; filler = " AND " ; } if ( ( Parent != null && Parent is GroupQueryNode ) || IsRoot ) return sb . ToString ( ) ; else return "( " + sb . ToString ( ) + " )" ; }
|
public String toString ( ) { return "State [entries=" + entries + ", hosts=" + hosts + "]" ; }
|
public override string ToString ( ) { return "PackWriter.State[" + this . phase + ", memory=" + this . bytesUsed + "]" ; }
|
public DataFormatRecord ( RecordInputStream in ) { field_1_pointNumber = in . readShort ( ) ; field_2_seriesIndex = in . readShort ( ) ; field_3_seriesNumber = in . readShort ( ) ; field_4_formatFlags = in . readShort ( ) ; }
|
public DataFormatRecord ( RecordInputStream in1 ) { field_1_pointNumber = in1 . ReadShort ( ) ; field_2_seriesIndex = in1 . ReadShort ( ) ; field_3_seriesNumber = in1 . ReadShort ( ) ; field_4_formatFlags = in1 . ReadShort ( ) ; }
|
public ModifyVpcEndpointServiceConfigurationResult modifyVpcEndpointServiceConfiguration ( ModifyVpcEndpointServiceConfigurationRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyVpcEndpointServiceConfiguration ( request ) ; }
|
public virtual ModifyVpcEndpointServiceConfigurationResponse ModifyVpcEndpointServiceConfiguration ( ModifyVpcEndpointServiceConfigurationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyVpcEndpointServiceConfigurationRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyVpcEndpointServiceConfigurationResponseUnmarshaller . Instance ; return Invoke < ModifyVpcEndpointServiceConfigurationResponse > ( request , options ) ; }
|
public void serialize ( LittleEndianOutput out ) { out . writeShort ( _encodedTokenLen ) ; out . write ( _byteEncoding ) ; }
|
public void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteShort ( _encodedTokenLen ) ; out1 . Write ( _byteEncoding ) ; }
|
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 ) { AreaEval aeRange ; try { aeRange = convertRangeArg ( arg0 ) ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } return eval ( srcRowIndex , srcColumnIndex , arg1 , aeRange , aeRange ) ; }
|
public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 ) { AreaEval aeRange ; try { aeRange = ConvertRangeArg ( arg0 ) ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } return Eval ( srcRowIndex , srcColumnIndex , arg1 , aeRange , aeRange ) ; }
|
public RecognizeLabelRequest ( ) { super ( "visionai-poc" , "2020-04-08" , "RecognizeLabel" ) ; setMethod ( MethodType . POST ) ; }
|
public RecognizeLabelRequest ( ) : base ( "visionai-poc" , "2020-04-08" , "RecognizeLabel" ) { Method = MethodType . POST ; }
|
public ListStackSetsResult listStackSets ( ListStackSetsRequest request ) { request = beforeClientExecution ( request ) ; return executeListStackSets ( request ) ; }
|
public virtual ListStackSetsResponse ListStackSets ( ListStackSetsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListStackSetsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListStackSetsResponseUnmarshaller . Instance ; return Invoke < ListStackSetsResponse > ( request , options ) ; }
|
public ModifyNetworkInterfaceAttributeResult modifyNetworkInterfaceAttribute ( ModifyNetworkInterfaceAttributeRequest request ) { request = beforeClientExecution ( request ) ; return executeModifyNetworkInterfaceAttribute ( request ) ; }
|
public virtual ModifyNetworkInterfaceAttributeResponse ModifyNetworkInterfaceAttribute ( ModifyNetworkInterfaceAttributeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifyNetworkInterfaceAttributeRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifyNetworkInterfaceAttributeResponseUnmarshaller . Instance ; return Invoke < ModifyNetworkInterfaceAttributeResponse > ( request , options ) ; }
|
public static RevFilter create ( RevFilter a ) { return new NotRevFilter ( a ) ; }
|
public static RevFilter Create ( RevFilter a ) { return new NGit . Revwalk . Filter . NotRevFilter ( a ) ; }
|
public String toString ( ) { String up = parent != null ? parent . toString ( ) : "" ; if ( up . length ( ) == 0 ) { if ( returnState == EMPTY_RETURN_STATE ) { return "$" ; } return String . valueOf ( returnState ) ; } return String . valueOf ( returnState ) + " " + up ; }
|
public override string ToString ( ) { string up = parent != null ? parent . ToString ( ) : "" ; if ( up . Length == 0 ) { if ( returnState == EMPTY_RETURN_STATE ) { return "$" ; } return returnState . ToString ( ) ; } return returnState . ToString ( ) + " " + up ; }
|
public ToParentBlockJoinQuery ( Query childQuery , BitSetProducer parentsFilter , ScoreMode scoreMode ) { super ( ) ; this . childQuery = childQuery ; this . parentsFilter = parentsFilter ; this . scoreMode = scoreMode ; }
|
public ToParentBlockJoinQuery ( Query childQuery , Filter parentsFilter , ScoreMode scoreMode ) : base ( ) { _origChildQuery = childQuery ; _childQuery = childQuery ; _parentsFilter = parentsFilter ; _scoreMode = scoreMode ; }
|
public int previousIndex ( ) { int previous = iterator . previousIndex ( ) ; if ( previous >= start ) { return previous - start ; } return - 1 ; }
|
public int previousIndex ( ) { int previous_1 = iterator . previousIndex ( ) ; if ( previous_1 >= start ) { return previous_1 - start ; } return - 1 ; }
|
public String getSourcePath ( int idx ) { return sourcePaths [ idx ] ; }
|
public virtual string GetSourcePath ( int idx ) { return sourcePaths [ idx ] ; }
|
public DoubleBuffer slice ( ) { return new ReadWriteDoubleArrayBuffer ( remaining ( ) , backingArray , offset + position ) ; }
|
public override java . nio . DoubleBuffer slice ( ) { return new java . nio . ReadWriteDoubleArrayBuffer ( remaining ( ) , backingArray , offset + _position ) ; }
|
public DescribeEvaluationsResult describeEvaluations ( DescribeEvaluationsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeEvaluations ( request ) ; }
|
public virtual DescribeEvaluationsResponse DescribeEvaluations ( DescribeEvaluationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeEvaluationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeEvaluationsResponseUnmarshaller . Instance ; return Invoke < DescribeEvaluationsResponse > ( request , options ) ; }
|
public int getBigBlockSize ( ) { return bigBlockSize ; }
|
public int GetBigBlockSize ( ) { return bigBlockSize ; }
|
public static ValueVector createRowVector ( TwoDEval tableArray , int relativeRowIndex ) { return new RowVector ( tableArray , relativeRowIndex ) ; }
|
public static ValueVector CreateRowVector ( TwoDEval tableArray , int relativeRowIndex ) { return new RowVector ( ( AreaEval ) tableArray , relativeRowIndex ) ; }
|
public void setDbcell ( int cell , int value ) { field_5_dbcells . set ( cell , value ) ; }
|
public void SetDbcell ( int cell , int value ) { field_5_dbcells . Set ( cell , value ) ; }
|
public int compareTo ( MutableValue other ) { Class < ? extends MutableValue > c1 = this . getClass ( ) ; Class < ? extends MutableValue > c2 = other . getClass ( ) ; if ( c1 != c2 ) { int c = c1 . hashCode ( ) - c2 . hashCode ( ) ; if ( c == 0 ) { c = c1 . getCanonicalName ( ) . compareTo ( c2 . getCanonicalName ( ) ) ; } return c ; } return compareSameType ( other ) ; }
|
public virtual int CompareTo ( MutableValue other ) { Type c1 = this . GetType ( ) ; Type c2 = other . GetType ( ) ; if ( c1 != c2 ) { int c = c1 . GetHashCode ( ) - c2 . GetHashCode ( ) ; if ( c == 0 ) { c = c1 . FullName . CompareToOrdinal ( c2 . FullName ) ; } return c ; } return CompareSameType ( other ) ; }
|
public StartSpeechSynthesisTaskResult startSpeechSynthesisTask ( StartSpeechSynthesisTaskRequest request ) { request = beforeClientExecution ( request ) ; return executeStartSpeechSynthesisTask ( request ) ; }
|
public virtual StartSpeechSynthesisTaskResponse StartSpeechSynthesisTask ( StartSpeechSynthesisTaskRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = StartSpeechSynthesisTaskRequestMarshaller . Instance ; options . ResponseUnmarshaller = StartSpeechSynthesisTaskResponseUnmarshaller . Instance ; return Invoke < StartSpeechSynthesisTaskResponse > ( request , options ) ; }
|
public void removeParseListeners ( ) { _parseListeners = null ; }
|
public virtual void RemoveParseListeners ( ) { _parseListeners = null ; }
|
public ListIdentityPoolsResult listIdentityPools ( ListIdentityPoolsRequest request ) { request = beforeClientExecution ( request ) ; return executeListIdentityPools ( request ) ; }
|
public virtual ListIdentityPoolsResponse ListIdentityPools ( ListIdentityPoolsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListIdentityPoolsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListIdentityPoolsResponseUnmarshaller . Instance ; return Invoke < ListIdentityPoolsResponse > ( request , options ) ; }
|
public String toString ( ) { return text + '(' + startOffset + ',' + endOffset + ',' + position + ')' ; }
|
public override string ToString ( ) { StringBuilder sb = new StringBuilder ( ) ; sb . Append ( text ) . Append ( '(' ) . Append ( startOffset ) . Append ( ',' ) . Append ( endOffset ) . Append ( ',' ) . Append ( position ) . Append ( ')' ) ; return sb . ToString ( ) ; }
|
public void setWrapIfNotCachingTokenFilter ( boolean wrap ) { this . wrapToCaching = wrap ; }
|
public virtual void SetWrapIfNotCachingTokenFilter ( bool wrap ) { this . wrapToCaching = wrap ; }
|
public void onChange ( boolean selfChange ) { mCursor . requery ( ) ; }
|
public override void onChange ( bool selfChange ) { this . _enclosing . onContentChanged ( ) ; }
|
public DeleteRuleResult deleteRule ( DeleteRuleRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteRule ( request ) ; }
|
public virtual DeleteRuleResponse DeleteRule ( DeleteRuleRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteRuleRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteRuleResponseUnmarshaller . Instance ; return Invoke < DeleteRuleResponse > ( request , options ) ; }
|
public void serialize ( LittleEndianOutput out ) { out . writeByte ( getAddMenuCount ( ) ) ; out . writeByte ( getDelMenuCount ( ) ) ; }
|
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteByte ( AddMenuCount ) ; out1 . WriteByte ( DelMenuCount ) ; }
|
public String getPattern ( ) { return pattern ; }
|
public virtual string getPattern ( ) { return pattern ; }
|
public String toString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( "[BottomMargin]\n" ) ; buffer . append ( " .margin = " ) . append ( " (" ) . append ( getMargin ( ) ) . append ( " )\n" ) ; buffer . append ( "[/BottomMargin]\n" ) ; return buffer . toString ( ) ; }
|
public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[BottomMargin]\n" ) ; buffer . Append ( " .margin = " ) . Append ( " (" ) . Append ( Margin ) . Append ( " )\n" ) ; buffer . Append ( "[/BottomMargin]\n" ) ; return buffer . ToString ( ) ; }
|
public final void getText ( CharTermAttribute t ) { t . copyBuffer ( zzBuffer , zzStartRead , zzMarkedPos - zzStartRead ) ; }
|
public void GetText ( ICharTermAttribute t ) { t . CopyBuffer ( zzBuffer , zzStartRead , zzMarkedPos - zzStartRead ) ; }
|
public LinkedList ( ) { voidLink = new Link < E > ( null , null , null ) ; voidLink . previous = voidLink ; voidLink . next = voidLink ; }
|
public LinkedList ( ) { voidLink = new java . util . LinkedList . Link < E > ( default ( E ) , null , null ) ; voidLink . previous = voidLink ; voidLink . next = voidLink ; }
|
public SnapshotCopyGrant createSnapshotCopyGrant ( CreateSnapshotCopyGrantRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateSnapshotCopyGrant ( request ) ; }
|
public virtual CreateSnapshotCopyGrantResponse CreateSnapshotCopyGrant ( CreateSnapshotCopyGrantRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateSnapshotCopyGrantRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateSnapshotCopyGrantResponseUnmarshaller . Instance ; return Invoke < CreateSnapshotCopyGrantResponse > ( request , options ) ; }
|
public static int getSingleViableAlt ( Collection < BitSet > altsets ) { BitSet viableAlts = new BitSet ( ) ; for ( BitSet alts : altsets ) { int minAlt = alts . nextSetBit ( 0 ) ; viableAlts . set ( minAlt ) ; if ( viableAlts . cardinality ( ) > 1 ) { return ATN . INVALID_ALT_NUMBER ; } } return viableAlts . nextSetBit ( 0 ) ; }
|
public static int GetSingleViableAlt ( IEnumerable < BitSet > altsets ) { BitSet viableAlts = new BitSet ( ) ; foreach ( BitSet alts in altsets ) { int minAlt = alts . NextSetBit ( 0 ) ; viableAlts . Set ( minAlt ) ; if ( viableAlts . Cardinality ( ) > 1 ) { return ATN . INVALID_ALT_NUMBER ; } } return viableAlts . NextSetBit ( 0 ) ; }
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.